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

4.104.115
Last change on this file since 7a6f8d0 was de237f4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/07/10 at 21:50:11

2010-04-07 Joel Sherrill <joel.sherrill@…>

  • start/start.S: Verify boot_card() is passed a NULL.
  • Property mode set to 100644
File size: 10.8 KB
Line 
12010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * start/start.S: Verify boot_card() is passed a NULL.
4
52009-12-07      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * console/conio.c, console/console.c, include/conio.h:
8        Let *getch return "int". Remove casts.
9
102009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * make/custom/gba.cfg: Remove RTEMS_BSP_FAMILY.
13
142009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * configure.ac: Don't add -ansi -fasm to CFLAGS.
17
182009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * make/custom/gba.cfg: New (relocated from /make/custom).
21
222009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
25
26 2009-08-21     Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * include/bsp.h: Eliminate BSPs defining NUMBER_OF_TERMIOS_PORTS.
29        Should be automatically handled by confdefs.h or the application.
30
312009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
34        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
35        have the same options.
36
372009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
38
39        * startup/cpu.c, startup/cpu_asm.S: Removed files.
40        * Makefile.am: Removed references to deleted files 'startup/cpu.c' and
41        'startup/cpu_asm.S'.
42        * irq/irq_asm.S, irq/bsp_irq_asm.S: Renamed ExecuteITHandler() into
43        bsp_interrupt_dispatch().
44
452009-05-08      Joel Sherrill <joel.sherrill@oarcorp.com>
46
47        * startup/bspgetworkarea.c: Switch from ssize_t to uintptr_t for
48        bsp_get_work_area() since the work area is larger than a single
49        allocatable object.
50
512009-04-28      Chris Johns <chrisj@rtems.org>
52
53        * start/start.S: Update for boot_card command line change.
54
552009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        PR 1385/cpukit
58        * irq/irq_asm.S: When the type rtems_boolean was switched to the C99
59        bool, the size changed from 4 bytes to 1 byte. The interrupt
60        dispatching code accesses two boolean variables for scheduling
61        purposes and the assembly implementations of this code did not get
62        updated.
63
642009-02-26      Joel Sherrill <joel.sherrill@OARcorp.com>
65
66        * startup/cpu.c: Now compiles. Does not run.
67
682008-12-11      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * startup/cpu.c: Add missing prototype.
71
722008-12-05      Ralf Corsépius <ralf.corsepius@rtems.org>
73
74        * bsp_specs: Remove -Qy from *link.
75
762008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * bsp_specs: Move -e start from *link to *startfile to avoid warning
79        for undefined entry symbol when linking relocatables with binutils
80        2.19.
81
822008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * Makefile.am, preinstall.am: Use shared tm27.h stub.
85        * include/tm27.h: Removed.
86
872008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
88
89        * startup/bspgetworkarea.c: Change size_t to ssize_t on
90        bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits
91        which would limit the work area to 64K.
92
932008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
94
95        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
96        * Makefile.am: Reflect changes above.
97
982008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * console/defaultfont.c: Remove (Renamed into console/defaultfont.h).
101        * console/defaultfont.h: New (Renamed from console/defaultfont.c).
102        * Makefile.am, console/conio.c: Reflect renamer.
103
1042008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
105
106        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
107        of building libbspstart.a, using automake-rules.
108
1092008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
110
111        * Makefile.am: Eliminate *_SOURCES.
112
1132008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
114
115        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
116        components.
117
1182008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
119
120        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
121
1222008-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
123
124        * Makefile.am: Remove empty HAS_NETWORKING conditional.
125
1262008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
127
128        * configure.ac: Make letting boot_card() handle work area allocation
129        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
130        BSP_BOOTCARD_OPTIONS.
131
1322008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
133
134        * startup/bspreset.c: New file.
135
1362008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
137
138        * Makefile.am, configure.ac, console/console.c: Use standardized
139        bsp_cleanup() which can optionally print a message, poll for user to
140        press key, and call bsp_reset(). Using this eliminates the various
141        bsp_cleanup() implementations which had their own implementation and
142        variety of string constants.
143        * startup/bspclean.c: Removed.
144
1452008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
146
147        * startup/bspstart.c: Remove unnecessary includes of
148        rtems/libcsupport.h and rtems/libio.h.
149
1502008-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
151
152        * Makefile.am, configure.ac, startup/bspstart.c: Now support
153        bsp_get_work_area() and used shared implementation of it and
154        bsp_pretasking_hook. Ticker runs.
155        * startup/bspgetworkarea.c: New file.
156
1572008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
158
159        * startup/bspstart.c: Review of all bsp_cleanup() implementations. In
160        this phase, all prototypes were removed from bsp.h and empty
161        implementations were removed and made to use the shared stub.
162
1632008-09-06      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * irq/irq.c: Minor "bool" fixes.
166
1672008-09-05      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * startup/cpu.c, timer/timer.c: Convert to "bool".
170
1712008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
172
173        * timer/timer.c: Eliminate empty function from every benchmark timer
174        driver. Fix spelling.
175
1762008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
177
178        * timer/timer.c: Rename timer driver methods to follow RTEMS
179        programming conventions.
180
1812008-08-27      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * timer/timer.c: Eliminate rtems_boolean.
184
1852008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
186
187        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
188        routine.
189        * startup/bspclean.c: New file.
190        * startup/exit.c: Removed.
191
1922008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
193
194        * clock/clockdrv.c: Add missing prototypes.
195
1962008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
197
198        * Makefile.am: Rework to avoid .rel files.
199
2002008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
201
202        * startup/bspstart.c: Refactored and renamed initialization routines to
203        rtems_initialize_data_structures, rtems_initialize_before_drivers,
204        rtems_initialize_device_drivers, and
205        rtems_initialize_start_multitasking. This opened the sequence up so
206        that bootcard() could provide a more robust and flexible framework
207        which is easier to explain and understand. This also lays the
208        groundwork for sharing the division of available memory between the
209        RTEMS workspace and heap and the C library initialization across all
210        BSPs.
211
2122008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
213
214        * startup/linkcmds: Add wildcard to gcc_except_table section so
215        programs compiled with gcc 4.3.x can link.
216
2172008-02-15      Joel Sherrill <joel.sherrill@OARcorp.com>
218
219        * console/console.c: Do not have BSP specific __assert.
220
2212007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
222
223        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c: Eliminate copies
224        of the Configuration Table. Use the RTEMS provided accessor macros to
225        obtain configuration fields.
226
2272007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
228
229        * startup/bspstart.c, startup/cpu.c: Move interrupt_stack_size field
230        from CPU Table to Configuration Table. Eliminate CPU Table from all
231        ports. Delete references to CPU Table in all forms.
232
2332007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
234
235        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
236        Table fields to the Configuration Table. This included
237        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
238        do_zero_of_workspace, extra_mpci_receive_server_stack,
239        stack_allocate_hook, and stack_free_hook. As a side-effect of this
240        effort some multiprocessing code was made conditional and some style
241        clean up occurred.
242
2432007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
244
245        PR 1257/bsps
246        * irq/irq.c, irq/irq_init.c: Code outside of cpukit should use the public
247        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
248        the public API and directly accessing _CPU_ISR_Disable and
249        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
250        directive which could lead to problems. This patch also changes the
251        type of the variable passed into these routines and addresses minor
252        style issues.
253
2542007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
255
256        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
2572007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
258
259        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
260        since it was used to configure a no longer used feature. Device names
261        are now part of the filesystem not in a table.
262
2632007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
264
265        * bsp_specs: Remove qrtems_debug.
266
2672007-03-11      Joel Sherrill <joel@OARcorp.com>
268
269        * startup/bspstart.c: Remove assignments of
270        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
271        value in boot_card.c
272
2732006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
274
275        * configure.ac: New BUG-REPORT address.
276
2772006-11-15      Joel Sherrill <joel@OARcorp.com>
278
279        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
280        file and simplified initialization.
281
2822006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
283
284        * Makefile.am: Remove superfluous -DASM.
285
2862006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
287
288        * configure.ac: Require autoconf-2.60. Require automake-1.10.
289
2902006-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
291
292        * console/defaultfont.c: Convert to utf-8.
293
2942006-09-11      Joel Sherrill <joel@OARcorp.com>
295
296        * include/arm_mode_bits.h: Convert C++ style comments to C style.
297
2982006-09-11      Chris Johns <chrisj@rtems.org>
299
300        * README, configure.ac: Remove extra CRLF.
301       
3022006-06-02      Jay Monkman <jtm@lopingdog.com>
303
304        * irq/bsp_irq_init.c: Changed interrupt handling
305        to use shared rtems_irq_connect_data struct.
306
3072006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
308
309        * Makefile.am: Add preinstall.am.
310
3112005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
312
313        * bsp_specs: remove %lib.
314
3152005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
316
317        * bsp_specs: Remove %cpp.
318
3192005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
320
321        * irq/irq.c, startup/bspstart.c: Remove obsolete types (*unsigned32).
322
3232005-07-06      Markku Puro <markku.puro@kopteri.net>
324
325        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac,
326        clock/clockdrv.c, console/conio.c, console/console.c,
327        console/defaultfont.c, include/arm_mode_bits.h, include/asm_macros.h,
328        include/bsp.h, include/bspopts.h.in, include/conio.h, include/gba.h,
329        include/gba_registers.h, include/tm27.h, irq/bsp_irq_asm.S,
330        irq/bsp_irq_init.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
331        irq/irq_init.c, start/logo.S, start/start.S, startup/bspstart.c,
332        startup/cpu.c, startup/cpu_asm.S, startup/exit.c, startup/linkcmds,
333        timer/timer.c: New files.
334
Note: See TracBrowser for help on using the repository browser.