source: rtems/cpukit/score/cpu/arm/ChangeLog @ 3ce764a

4.115
Last change on this file since 3ce764a was 3ce764a, checked in by Sebastian Huber <sebastian.huber@…>, on 09/16/11 at 09:47:09

2011-09-16 Sebastian Huber <sebastian.huber@…>

  • rtems/score/arm.h: More CPU_MODEL_NAME variants.
  • Property mode set to 100644
File size: 19.9 KB
Line 
12011-09-16      Sebastian Huber <sebastian.huber@embedded-brains.de>
2
3        * rtems/score/arm.h: More CPU_MODEL_NAME variants.
4
52011-05-18      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * Makefile.am: Reformat.
8
92011-04-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
10
11        PR 1780/cpukit
12        * rtems/score/cpu.h: Lower alignment requirements for
13        CPU_PARTITION_ALIGNMENT according to AAPCS.
14
152011-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
16
17        * cpu.c, rtems/score/cpu.h:
18        Use "__asm__" instead of "asm" for improved c99-compliance.
19
202010-11-23      Gedare Bloom <giddyup44@yahoo.com>
21
22        PR 1719/cpukit
23        * arm_exc_abort.S: Avoid "bx" instruction to support ARMv4 and below.
24
252010-11-22      Sebastian Huber <sebastian.huber@embedded-brains.de>
26
27        * rtems/score/cpu.h: Set alignment requirements according to AAPCS.
28
292010-07-29      Gedare Bloom <giddyup44@yahoo.com>
30
31        PR 1635/cpukit
32        * rtems/score/types.h: Refactoring of priority handling, to isolate the
33        bitmap implementation of priorities in the supercore so that priority
34        management is a little more modular. This change is in anticipation
35        of scheduler implementations that can select how they manage tracking
36        priority levels / finding the highest priority ready task. Note that
37        most of the changes here are simple renaming, to clarify the use of
38        the bitmap-based priority management.
39
402010-07-16      Sebastian Huber <sebastian.huber@embedded-brains.de>
41
42        * rtems/score/cpu.h: Include <rtems/score/types.h> first.
43        * rtems/score/types.h: Use <rtems/score/basedefs.h> header file.
44
452010-07-06      Sebastian Huber <sebastian.huber@embedded-brains.de>
46
47        * rtems/score/cpu.h: Removed CPU_ENABLE_C_ISR_DISPATCH_IMPLEMENTATION
48        define.
49
502010-06-28      Joel Sherrill <joel.sherrill@oarcorp.com>
51
52        PR 1573/cpukit
53        * arm_exc_interrupt.S: Add a per cpu data structure which contains the
54        information required by RTEMS for each CPU core. This encapsulates
55        information such as thread executing, heir, idle and dispatch needed.
56
572010-05-10      Joel Sherrill <joel.sherrilL@OARcorp.com>
58
59        * rtems/score/arm.h: Make it a warning not error that the FPU multilib
60        is not supported yet.
61
622010-04-08      Sebastian Huber <sebastian.huber@embedded-brains.de>
63
64        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
65        arm_exc_interrupt.S, cpu.c, cpu_asm.S, rtems/asm.h, rtems/score/arm.h,
66        rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h:
67        Documentation.
68
692010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * arm_exc_abort.S: Fix warnings about TRUE/FALSE not defined.
72
732010-03-27      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
76        arm_exc_interrupt.S, cpu.c, cpu_asm.S: Add include of config.h
77
782010-01-12      Sebastian Huber <sebastian.huber@embedded-brains.de>
79
80        * arm_exc_abort.S: New file.
81        * Makefile.am: Update for new file.
82        * arm_exc_interrupt.S, cpu.c, rtems/asm.h, rtems/score/cpu.h: Changed
83        macros which switch from and to THUMB mode.  Added a default prefetch
84        and data abort handler which reports the complete processor context.
85        Added PSR defines.
86
872009-12-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
88
89        * rtems/score/arm.h: Recognize ARMv5TEJ.
90        * arm_exc_interrupt.S: The previous implementation was broken.  In
91        case of a nested interrupt the link register of the INT mode was not
92        properly restored.  This lead to a major rewrite.  Interrupt
93        processing is now done in SVC mode.
94
952009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
96
97        * rtems/score/arm.h: Recognize ARMv7A.
98
992009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * rtems/score/arm.h: Recognize ARMv6J as needed by arm1136 variants.
102
1032009-09-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
104
105        * rtems/score/cpu.h: Fix for inline asm in _CPU_Fatal_halt().
106        * rtems/asm.h: Added macro to define ARM functions.
107        * cpu_asm.S, arm_exc_handler_low.S: Use macro from above.
108
1092009-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * rtems/score/cpu.h: Mark _CPU_Context_restore() as noreturn so the
112        compiler will not generate code thinking it returns.
113
1142009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
115
116        * arm_exc_handler_high.c, arm_exc_handler_low.S, arm_exc_interrupt.S:
117        New files.
118        * Makefile.am: Update.
119        * rtems/score/cpu.h:  Removed all generic comments.  Changed inline
120        assembler of interrupt support functions.  Removed operating system
121        support for fast interrupts (FIQ).  Overall cleanup.
122        * cpu.c: Changed type of arm_cpu_mode to uint32_t to match the type in
123        _CPU_Context_Initialize().  Moved exception handler code into
124        'arm_exc_handler_high.c'.  _CPU_ISR_install_vector() writes now only
125        if necessary.
126        * cpu_asm.S: Moved exception handler code into 'arm_exc_handler_low.S'.
127        * rtems/score/types.h: Removed superfluous defines.
128        * ChangeLog, thumb_isr.c: Removed files.
129
1302009-05-05      Joel Sherrill <joel.sherrill@oarcorp.com>
131
132        * rtems/score/cpu.h: Remove warnings.
133
1342009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
135
136        * cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
137        passing address of _Thread_Dispatch to _CPU_Initialize. Clean up
138        comments.
139
1402008-09-11      Ralf Corsépius <ralf.corsepius@rtems.org>
141
142        * rtems/score/types.h: Do not define boolean, single_precision,
143        double_precision unless RTEMS_DEPRECATED_TYPES is given.
144
1452008-09-08      Joel Sherrill <joel.sherrill@oarcorp.com>
146
147        * cpu.c: Remove extraneous spaces.
148
1492008-09-07      Ralf Corsépius <ralf.corsepius@rtems.org>
150
151        * Makefile.am: Merge thumb/Makefile.am.
152        * thumb/Makefile.am: Remove (superfluous).
153
1542008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
155
156        * cpu.c, rtems/score/cpu.h: Convert to "bool".
157
1582008-08-21      Ralf Corsépius <ralf.corsepius@rtems.org>
159
160        * rtems/score/types.h: Include stdbool.h.
161        Use bool as base-type for boolean.
162
1632008-08-18      Joel Sherrill <joel.sherrill@OARcorp.com>
164
165        * cpu.c, rtems/score/cpu.h: Add void.
166
1672008-04-18      Joel Sherrill <joel.sherrill@OARcorp.com>
168
169        * cpu.c: Add comment.
170
1712008-04-17      Joel Sherrill <joel.sherrill@oarcorp.com>
172
173        * cpu.c: Add arm_cpu_mode so ARM BSP can overrid default value for
174        cpsr.
175
1762007-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
177
178        * rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
179
1802007-12-17      Joel Sherrill <joel.sherrill@OARcorp.com>
181
182        * rtems/score/cpu_asm.h: Sweep to make sure grep for COPYRIGHT passes.
183
1842007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
185
186        * rtems/score/cpu.h: Temporarily use C implementation of swap u32 for
187        thumb mode.
188
1892007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
190
191        * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
192        Table to Configuration Table. Eliminate CPU Table from all ports.
193        Delete references to CPU Table in all forms.
194
1952007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
196
197        * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
198        the Configuration Table. This included pretasking_hook,
199        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
200        extra_mpci_receive_server_stack, stack_allocate_hook, and
201        stack_free_hook. As a side-effect of this effort some multiprocessing
202        code was made conditional and some style clean up occurred.
203
2042007-11-27      Joel Sherrill <joel.sherrill@OARcorp.com>
205
206        * rtems/score/cpu.h: Do not inline _Thread_Enable_dispatch for Thumb to
207        save space.
208
2092007-11-26      Ray Xu <rayx.cn@gmail.com>
210
211        * cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
212        * cpu_asm.S: Note origin of Thumb support.
213
2142007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
215
216        * cpu.c: Fix headers.
217
2182007-11-03      Ray Xu <rayx.cn@gmail.com>
219
220        * cpu.c, cpu_asm.S, score/cpu.h : add support for ARM<->THUMB veneer
221          thumb  new dir to controll CPSR/SPRS in thumb mode
222
2232007-05-09      Ray Xu <rayx.cn@gmail.com>
224
225        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
226          implement a compact do_data_abort() in simple_abort.c
227
2282007-05-09      Ray Xu <rayx@gmail.com>
229
230        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
231          implement a compact do_data_abort() in simple_abort.c
232
2332007-05-09      Ray Xu <rayx@gmail.com>
234
235        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
236          implement a compact do_data_abort() in simple_abort.c
237
2382007-05-09      Ralf Corsépius <ralf.corsepius@rtems.org>
239
240        * rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
241
2422007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
243
244        * rtems/score/cpu.h:
245          Use Context_Control_fp* instead of void* for fp_contexts.
246          Eliminate evil casts.
247
2482006-11-17      Ralf Corsépius <ralf.corsepius@rtems.org>
249
250        * rtems/score/types.h: Remove unsigned64, signed64.
251
2522006-09-11      Joel Sherrill <joel@OARcorp.com>
253
254        * cpu.c: Remove warning.
255
2562006-06-02      Jay Monkman <jtm@lopingdog.com>
257
258        * cpu.c, cpu_asm.S: Fixed ARM Data Abort handling.
259
2602005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * rtems/score/types.h: Eliminate unsigned16, unsigned32.
263
2642005-10-27      Ralf Corsepius <ralf.corsepius@rtems.org>
265
266        * rtems/asm.h: Remove private version of CONCAT macros.
267        Include <rtems/concat.h> instead.
268
2692005-09-15      Jay Monkman <jtm@lopingdog.com>
270
271        PR 365/rtems
272        * rtems/score/arm.h, rtems/score/cpu.h: Removed unused ARM_HAS_CLZ
273        macro.
274
2752005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
276
277        * Makefile.am: Split out preinstallation rules.
278        * preinstall.am: New (Split out from Makefile.am).
279
2802005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
281
282        PR 754/rtems
283        * rtems/asm.h: New (relocated from .).
284        * asm.h: Remove (moved to rtems/asm.h).
285        * Makefile.am: Reflect changes above.
286
2872004-01-28      Ralf Corsepius <ralf.corsepiu@rtems.org>
288
289        * asm.h, rtems/score/arm.h, rtems/score/cpu.h,
290        rtems/score/cpu_asm.h, rtems/score/types.h: New header guards.
291
2922005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
293
294        * rtems/score/types.h: Remove signed8, signed16, signed32,
295        unsigned8, unsigned16, unsigned32.
296
2972005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
298
299        * rtems/score/cpu.h: *_swap_u32( uint32_t ).
300
3012005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
302
303        * rtems/score/types.h: #include <rtems/stdint.h>.
304
3052005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
306
307        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
308
3092005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
310
311        * Makefile.am: Remove build-variant support.
312
3132004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
314
315        * rtems/score/types.h: Use __rtems_score_types_h as preprocessor
316        guard.
317
3182004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
319
320        * asm.h: Add doxygen preamble.
321
3222004-10-02      Ralf Corsepius <ralf_corsepius@rtems.org>
323
324        * rtems/score/arm.h: Add doxygen preamble.
325        * rtems/score/cpu.h: Add doxygen preamble.
326        * rtems/score/cpu_asm.h: Add doxygen preamble.
327        * rtems/score/types.h: Add doxygen preamble.
328
3292004-09-29      Joel Sherrill <joel@OARcorp.com>
330
331        * rtems/score/cpu.h: i960 obsoleted and all references removed.
332
3332004-08-19      Jay Monkman <jtm@lopingdog.com>
334
335        PR 671/bsps
336        * rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
337        was always ignored.
338
3392004-04-09      Joel Sherrill <joel@OARcorp.com>
340
341        * rtems/score/cpu.h: Fix typo.
342
3432004-04-06      Ralf Corsepius <ralf_corsepius@rtems.org>
344
345        * configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
346        * Makefile.am: Don't include multilib.am.
347        Reflect merging configure.ac into $(top_srcdir)/configure.ac.
348
3492004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
350
351        * Makefile.am: Install asm.h to $(includedir)/rtems.
352
3532004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
354
355        * cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
356
3572004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
358
359        * cpu.c, rtems/score/cpu.h: Convert to using c99 fixed size types.
360
3612004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
362
363        * configure.ac: RTEMS_TOP([../../../..]).
364
3652004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * configure.ac: Move RTEMS_TOP one subdir down.
368
3692004-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * Makefile.am: Add PREINSTALL_DIRS.
372
3732004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
376        Add PREINSTALL_FILES to CLEANFILES.
377
3782004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        * configure.ac: Requires automake >= 1.8.1.
381
3822004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * Makefile.am: Include compile.am, again.
385
3862004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * Makefile.am: Convert to using automake compilation rules.
389
3902003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES.
393
3942003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
397
3982003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * Makefile.am: Remove TMPINSTALL_FILES.
401
4022003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
403
404        * Makefile.am: Add $(dirstamp) to preinstallation rules.
405
4062003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * Makefile.am: Add $(dirstamp) to preinstallation rules.
409
4102003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * Makefile.am: Don't use gmake rules for preinstallation.
413
4142003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * configure.ac: Remove RTEMS_CANONICAL_HOST.
417
4182003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * configure.ac: Remove RTEMS_CHECK_CPU.
421
4222003-09-26      Joel Sherrill <joel@OARcorp.com>
423
424        * rtems/score/cpu.h: Obsoleting HP PA-RISC port and removing all
425        references.
426
4272003-09-04      Joel Sherrill <joel@OARcorp.com>
428
429        * asm.h, cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
430        rtems/score/cpu_asm.h, rtems/score/types.h: URL for license changed.
431
4322003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
435
4362003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * Makefile.am: Use "all-local:" instead of "all:".
439
4402003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * configure.ac: Remove AC_CONFIG_AUX_DIR.
443
4442003-03-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * rtems/score/arm.h: Remove ARM_HAS_THUMB (Unused).
447
4482003-03-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
449
450        * rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
451        -D__ARMEB__. Fix minor typo in comment.
452
4532003-02-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__.
456
4572002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * configure.ac: Require autoconf-2.57 + automake-1.7.2.
460        * Makefile.am: Eliminate C_O_FILES, S_O_FILES, libscorecpu_a_OBJECTS.
461
4622002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * configure.ac: Fix package name.
465
4662002-11-04      Joel Sherrill <joel@OARcorp.com>
467
468        * cpu.c: Removed warning.
469
4702002-11-01      Joel Sherrill <joel@OARcorp.com>
471
472        * cpu.c: Removed warnings.
473
4742002-10-31      Joel Sherrill <joel@OARcorp.com>
475
476        * rtems/score/cpu.h: Removed warning.
477
4782002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
481
4822002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * .cvsignore: Reformat.
485        Add autom4te*cache.
486        Remove autom4te.cache.
487
4882002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
489
490        * rtems/score/cpu.h: Fix u16 and u32 swap routines.
491
4922002-08-05      Joel Sherrill <joel@OARcorp.com>
493
494        * rtems/score/cpu.h, rtems/score/types.h: Updated to fix some typos.
495
4962002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
497
498        * cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
499        rtems/score/cpu_asm.h, rtems/score/types.h: ARM port works
500        well enough to run all sptests, tmtests, and ttcp. 
501        In addition to general cleanup, there has been considerable
502        optimization to interrupt disable/enable, endian swapping,
503        and context switching.
504
5052002-07-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
508
5092002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * Makefile.am: Use .$(OBJEXT) instead of .o.
512
5132002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * Makefile.am: Use . instead of .o.
516
5172002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
518
519        * rtems/score/cpu_asm.h: Enhanced to include register offsets.
520        * Makefile.am: Install rtems/score/cpu_asm.h.
521        * cpu.c: Significantly enhanced including the implementation of
522        _CPU_ISR_Get_level.
523        * cpu_asm.S: Improved behavior of context switch and interrupt
524        dispatching.
525        * rtems/score/arm.h: Improved the CPU model name determination.
526        * rtems/score/cpu.h: Improved interrupt disable/enable functions.
527
5282002-07-05      Joel Sherrill <joel@OARcorp.com>
529
530        * rtems/score/cpu.h: Filled in something that was marked XXX.
531
5322002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * configure.ac: RTEMS_TOP(../../../..).
535
5362002-07-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * rtems.c: Remove.
539        * Makefile.am: Reflect changes above.
540
5412002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * configure.ac: Remove RTEMS_PROJECT_ROOT.
544
5452002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * configure.ac: Add RTEMS_PROG_CCAS
548
5492002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
550
551        * configure.ac: Use AC_CONFIG_AUX_DIR(../../../..).
552        Add AC_PROG_RANLIB.
553
5542002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * Makefile.am: Include $(top_srcdir)/../../../automake/*.am.
557        Use ../../../aclocal.
558
5592002-04-18      Jay Monkman <jtm@smoothsmoothie.com>
560
561        * rtems/score/cpu.h (CPU_ISR_Disable and CPU_ISR_Enable): Correct them
562        where they correctly inform the compiler about the register they
563        are modifying.
564
5652001-04-03      Joel Sherrill <joel@OARcorp.com>
566
567        * Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
568        * rtems/score/a29ktypes.h: Removed.
569        * rtems/score/types.h: New file via CVS magic.
570        * Makefile.am, rtems/score/cpu.h: Account for name change.
571
5722002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
573
574        * configure.ac:
575        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
576        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
577        * Makefile.am: Remove AUTOMAKE_OPTIONS.
578
5792001-02-04      Joel Sherrill <joel@OARcorp.com>
580
581        * configure.ac: Removed references to rtems/Makefile and
582        rtems/score/Makefile.
583
5842002-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
585
586        * rtems/Makefile.am: Removed.
587        * rtems/score/Makefile.am: Removed.
588        * configure.ac: Reflect changes above.
589        * Makefile.am: Reflect changes above.
590
5912002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
592
593        * configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
594
5952002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
596
597        * cpu.c: Include rtems/bspIo.h instead of bspIo.h.
598
5992001-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
600
601        * configure.ac: Use RTEMS_ENV_RTEMSCPU.
602
6032001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
604
605        * Makefile.am: Add multilib support.
606
6072001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
608
609        * asm.h: include cpuopts.h instead of targopts.h
610        * rtems/score/arm.h: Use __arm__.
611
6122001-11-28      Joel Sherrill <joel@OARcorp.com>,
613
614        This was tracked as PR91.
615        * rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which
616        is used to specify if the port uses the standard macro for this (FALSE).
617        A TRUE setting indicates the port provides its own implementation.
618
6192001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
620
621        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
622        * configure.in: Remove.
623        * configure.ac: New file, generated from configure.in by autoupdate.
624
6252001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
626
627        * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
628        * Makefile.am: Use 'PREINSTALL_FILES ='.
629
6302001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
631
632        * Makefile.am, rtems/score/Makefile.am:
633        Apply include_*HEADERS instead of H_FILES.
634
6352001-01-03      Joel Sherrill <joel@OARcorp.com>
636
637        * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
638
6392000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
640
641        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
642
6432000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
644
645        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
646
6472000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
648
649        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
650        Switch to GNU canonicalization.
651
6522000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
653
654        * Makefile.am: Include compile.am, formatting.
655        * rtems/Makefile.am: Formatting.
656        * rtems/score/Makefile.am: Formatting.
657
6582000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
659
660        * cpu.c: Spacing issues.
661        * rtems/score/cpu.h: Removed warning by setting _level.
662
6632000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
664
665        * Makefile.am: Added S_O_FILES to list of objects.
666
6672000-08-10      Joel Sherrill <joel@OARcorp.com>
668
669        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.