source: rtems/c/src/lib/libbsp/arm/gba/ChangeLog @ 7ae2775

4.104.115
Last change on this file since 7ae2775 was 7ae2775, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/17/09 at 13:53:04

ARM bsp maintenance

  • Property mode set to 100644
File size: 10.0 KB
Line 
12009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
4        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
5        have the same options.
6
72009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
8
9        * startup/cpu.c, startup/cpu_asm.S: Removed files.
10        * Makefile.am: Removed references to deleted files 'startup/cpu.c' and
11        'startup/cpu_asm.S'.
12        * irq/irq_asm.S, irq/bsp_irq_asm.S: Renamed ExecuteITHandler() into
13        bsp_interrupt_dispatch().
14
152009-05-08      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * startup/bspgetworkarea.c: Switch from ssize_t to uintptr_t for
18        bsp_get_work_area() since the work area is larger than a single
19        allocatable object.
20
212009-04-28      Chris Johns <chrisj@rtems.org>
22
23        * start/start.S: Update for boot_card command line change.
24
252009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
26
27        PR 1385/cpukit
28        * irq/irq_asm.S: When the type rtems_boolean was switched to the C99
29        bool, the size changed from 4 bytes to 1 byte. The interrupt
30        dispatching code accesses two boolean variables for scheduling
31        purposes and the assembly implementations of this code did not get
32        updated.
33
342009-02-26      Joel Sherrill <joel.sherrill@OARcorp.com>
35
36        * startup/cpu.c: Now compiles. Does not run.
37
382008-12-11      Ralf Corsépius <ralf.corsepius@rtems.org>
39
40        * startup/cpu.c: Add missing prototype.
41
422008-12-05      Ralf Corsépius <ralf.corsepius@rtems.org>
43
44        * bsp_specs: Remove -Qy from *link.
45
462008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * bsp_specs: Move -e start from *link to *startfile to avoid warning
49        for undefined entry symbol when linking relocatables with binutils
50        2.19.
51
522008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
53
54        * Makefile.am, preinstall.am: Use shared tm27.h stub.
55        * include/tm27.h: Removed.
56
572008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * startup/bspgetworkarea.c: Change size_t to ssize_t on
60        bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits
61        which would limit the work area to 64K.
62
632008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
64
65        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
66        * Makefile.am: Reflect changes above.
67
682008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * console/defaultfont.c: Remove (Renamed into console/defaultfont.h).
71        * console/defaultfont.h: New (Renamed from console/defaultfont.c).
72        * Makefile.am, console/conio.c: Reflect renamer.
73
742008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
75
76        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
77        of building libbspstart.a, using automake-rules.
78
792008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
80
81        * Makefile.am: Eliminate *_SOURCES.
82
832008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
84
85        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
86        components.
87
882008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
89
90        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
91
922008-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
93
94        * Makefile.am: Remove empty HAS_NETWORKING conditional.
95
962008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
97
98        * configure.ac: Make letting boot_card() handle work area allocation
99        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
100        BSP_BOOTCARD_OPTIONS.
101
1022008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
103
104        * startup/bspreset.c: New file.
105
1062008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
107
108        * Makefile.am, configure.ac, console/console.c: Use standardized
109        bsp_cleanup() which can optionally print a message, poll for user to
110        press key, and call bsp_reset(). Using this eliminates the various
111        bsp_cleanup() implementations which had their own implementation and
112        variety of string constants.
113        * startup/bspclean.c: Removed.
114
1152008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
116
117        * startup/bspstart.c: Remove unnecessary includes of
118        rtems/libcsupport.h and rtems/libio.h.
119
1202008-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * Makefile.am, configure.ac, startup/bspstart.c: Now support
123        bsp_get_work_area() and used shared implementation of it and
124        bsp_pretasking_hook. Ticker runs.
125        * startup/bspgetworkarea.c: New file.
126
1272008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
128
129        * startup/bspstart.c: Review of all bsp_cleanup() implementations. In
130        this phase, all prototypes were removed from bsp.h and empty
131        implementations were removed and made to use the shared stub.
132
1332008-09-06      Ralf Corsepius <ralf.corsepius@rtems.org>
134
135        * irq/irq.c: Minor "bool" fixes.
136
1372008-09-05      Ralf Corsepius <ralf.corsepius@rtems.org>
138
139        * startup/cpu.c, timer/timer.c: Convert to "bool".
140
1412008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
142
143        * timer/timer.c: Eliminate empty function from every benchmark timer
144        driver. Fix spelling.
145
1462008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
147
148        * timer/timer.c: Rename timer driver methods to follow RTEMS
149        programming conventions.
150
1512008-08-27      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * timer/timer.c: Eliminate rtems_boolean.
154
1552008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
156
157        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
158        routine.
159        * startup/bspclean.c: New file.
160        * startup/exit.c: Removed.
161
1622008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
163
164        * clock/clockdrv.c: Add missing prototypes.
165
1662008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
167
168        * Makefile.am: Rework to avoid .rel files.
169
1702008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
171
172        * startup/bspstart.c: Refactored and renamed initialization routines to
173        rtems_initialize_data_structures, rtems_initialize_before_drivers,
174        rtems_initialize_device_drivers, and
175        rtems_initialize_start_multitasking. This opened the sequence up so
176        that bootcard() could provide a more robust and flexible framework
177        which is easier to explain and understand. This also lays the
178        groundwork for sharing the division of available memory between the
179        RTEMS workspace and heap and the C library initialization across all
180        BSPs.
181
1822008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
183
184        * startup/linkcmds: Add wildcard to gcc_except_table section so
185        programs compiled with gcc 4.3.x can link.
186
1872008-02-15      Joel Sherrill <joel.sherrill@OARcorp.com>
188
189        * console/console.c: Do not have BSP specific __assert.
190
1912007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
192
193        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c: Eliminate copies
194        of the Configuration Table. Use the RTEMS provided accessor macros to
195        obtain configuration fields.
196
1972007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
198
199        * startup/bspstart.c, startup/cpu.c: Move interrupt_stack_size field
200        from CPU Table to Configuration Table. Eliminate CPU Table from all
201        ports. Delete references to CPU Table in all forms.
202
2032007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
204
205        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
206        Table fields to the Configuration Table. This included
207        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
208        do_zero_of_workspace, extra_mpci_receive_server_stack,
209        stack_allocate_hook, and stack_free_hook. As a side-effect of this
210        effort some multiprocessing code was made conditional and some style
211        clean up occurred.
212
2132007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
214
215        PR 1257/bsps
216        * irq/irq.c, irq/irq_init.c: Code outside of cpukit should use the public
217        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
218        the public API and directly accessing _CPU_ISR_Disable and
219        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
220        directive which could lead to problems. This patch also changes the
221        type of the variable passed into these routines and addresses minor
222        style issues.
223
2242007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
225
226        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
2272007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
228
229        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
230        since it was used to configure a no longer used feature. Device names
231        are now part of the filesystem not in a table.
232
2332007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
234
235        * bsp_specs: Remove qrtems_debug.
236
2372007-03-11      Joel Sherrill <joel@OARcorp.com>
238
239        * startup/bspstart.c: Remove assignments of
240        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
241        value in boot_card.c
242
2432006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
244
245        * configure.ac: New BUG-REPORT address.
246
2472006-11-15      Joel Sherrill <joel@OARcorp.com>
248
249        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
250        file and simplified initialization.
251
2522006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
253
254        * Makefile.am: Remove superfluous -DASM.
255
2562006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
257
258        * configure.ac: Require autoconf-2.60. Require automake-1.10.
259
2602006-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
261
262        * console/defaultfont.c: Convert to utf-8.
263
2642006-09-11      Joel Sherrill <joel@OARcorp.com>
265
266        * include/arm_mode_bits.h: Convert C++ style comments to C style.
267
2682006-09-11      Chris Johns <chrisj@rtems.org>
269
270        * README, configure.ac: Remove extra CRLF.
271       
2722006-06-02      Jay Monkman <jtm@lopingdog.com>
273
274        * irq/bsp_irq_init.c: Changed interrupt handling
275        to use shared rtems_irq_connect_data struct.
276
2772006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
278
279        * Makefile.am: Add preinstall.am.
280
2812005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
282
283        * bsp_specs: remove %lib.
284
2852005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
286
287        * bsp_specs: Remove %cpp.
288
2892005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
290
291        * irq/irq.c, startup/bspstart.c: Remove obsolete types (*unsigned32).
292
2932005-07-06      Markku Puro <markku.puro@kopteri.net>
294
295        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac,
296        clock/clockdrv.c, console/conio.c, console/console.c,
297        console/defaultfont.c, include/arm_mode_bits.h, include/asm_macros.h,
298        include/bsp.h, include/bspopts.h.in, include/conio.h, include/gba.h,
299        include/gba_registers.h, include/tm27.h, irq/bsp_irq_asm.S,
300        irq/bsp_irq_init.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
301        irq/irq_init.c, start/logo.S, start/start.S, startup/bspstart.c,
302        startup/cpu.c, startup/cpu_asm.S, startup/exit.c, startup/linkcmds,
303        timer/timer.c: New files.
304
Note: See TracBrowser for help on using the repository browser.