source: rtems/c/src/lib/libbsp/arm/gba/ChangeLog @ 35f52a6

4.104.114.95
Last change on this file since 35f52a6 was 35f52a6, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/08 at 16:07:58

2008-08-31 Joel Sherrill <joel.sherrill@…>

  • timer/timer.c: Rename timer driver methods to follow RTEMS programming conventions.
  • Property mode set to 100644
File size: 5.3 KB
Line 
12008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * timer/timer.c: Rename timer driver methods to follow RTEMS
4        programming conventions.
5
62008-08-27      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * timer/timer.c: Eliminate rtems_boolean.
9
102008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
13        routine.
14        * startup/bspclean.c: New file.
15        * startup/exit.c: Removed.
16
172008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * clock/clockdrv.c: Add missing prototypes.
20
212008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
22
23        * Makefile.am: Rework to avoid .rel files.
24
252008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
26
27        * startup/bspstart.c: Refactored and renamed initialization routines to
28        rtems_initialize_data_structures, rtems_initialize_before_drivers,
29        rtems_initialize_device_drivers, and
30        rtems_initialize_start_multitasking. This opened the sequence up so
31        that bootcard() could provide a more robust and flexible framework
32        which is easier to explain and understand. This also lays the
33        groundwork for sharing the division of available memory between the
34        RTEMS workspace and heap and the C library initialization across all
35        BSPs.
36
372008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/linkcmds: Add wildcard to gcc_except_table section so
40        programs compiled with gcc 4.3.x can link.
41
422008-02-15      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * console/console.c: Do not have BSP specific __assert.
45
462007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
47
48        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c: Eliminate copies
49        of the Configuration Table. Use the RTEMS provided accessor macros to
50        obtain configuration fields.
51
522007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
53
54        * startup/bspstart.c, startup/cpu.c: Move interrupt_stack_size field
55        from CPU Table to Configuration Table. Eliminate CPU Table from all
56        ports. Delete references to CPU Table in all forms.
57
582007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
59
60        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
61        Table fields to the Configuration Table. This included
62        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
63        do_zero_of_workspace, extra_mpci_receive_server_stack,
64        stack_allocate_hook, and stack_free_hook. As a side-effect of this
65        effort some multiprocessing code was made conditional and some style
66        clean up occurred.
67
682007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        PR 1257/bsps
71        * irq/irq.c, irq/irq_init.c: Code outside of cpukit should use the public
72        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
73        the public API and directly accessing _CPU_ISR_Disable and
74        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
75        directive which could lead to problems. This patch also changes the
76        type of the variable passed into these routines and addresses minor
77        style issues.
78
792007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
822007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
85        since it was used to configure a no longer used feature. Device names
86        are now part of the filesystem not in a table.
87
882007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
89
90        * bsp_specs: Remove qrtems_debug.
91
922007-03-11      Joel Sherrill <joel@OARcorp.com>
93
94        * startup/bspstart.c: Remove assignments of
95        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
96        value in boot_card.c
97
982006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * configure.ac: New BUG-REPORT address.
101
1022006-11-15      Joel Sherrill <joel@OARcorp.com>
103
104        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
105        file and simplified initialization.
106
1072006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
108
109        * Makefile.am: Remove superfluous -DASM.
110
1112006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
112
113        * configure.ac: Require autoconf-2.60. Require automake-1.10.
114
1152006-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * console/defaultfont.c: Convert to utf-8.
118
1192006-09-11      Joel Sherrill <joel@OARcorp.com>
120
121        * include/arm_mode_bits.h: Convert C++ style comments to C style.
122
1232006-09-11      Chris Johns <chrisj@rtems.org>
124
125        * README, configure.ac: Remove extra CRLF.
126       
1272006-06-02      Jay Monkman <jtm@lopingdog.com>
128
129        * irq/bsp_irq_init.c: Changed interrupt handling
130        to use shared rtems_irq_connect_data struct.
131
1322006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
133
134        * Makefile.am: Add preinstall.am.
135
1362005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
137
138        * bsp_specs: remove %lib.
139
1402005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
141
142        * bsp_specs: Remove %cpp.
143
1442005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
145
146        * irq/irq.c, startup/bspstart.c: Remove obsolete types (*unsigned32).
147
1482005-07-06      Markku Puro <markku.puro@kopteri.net>
149
150        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac,
151        clock/clockdrv.c, console/conio.c, console/console.c,
152        console/defaultfont.c, include/arm_mode_bits.h, include/asm_macros.h,
153        include/bsp.h, include/bspopts.h.in, include/conio.h, include/gba.h,
154        include/gba_registers.h, include/tm27.h, irq/bsp_irq_asm.S,
155        irq/bsp_irq_init.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
156        irq/irq_init.c, start/logo.S, start/start.S, startup/bspstart.c,
157        startup/cpu.c, startup/cpu_asm.S, startup/exit.c, startup/linkcmds,
158        timer/timer.c: New files.
159
Note: See TracBrowser for help on using the repository browser.