source: rtems/c/src/lib/libbsp/arm/csb336/ChangeLog @ 3c4d2451

4.104.115
Last change on this file since 3c4d2451 was 3c4d2451, checked in by Joel Sherrill <joel.sherrill@…>, on 05/05/09 at 14:46:08

2009-05-05 Joel Sherrill <joel.sherrill@…>

  • console/uart.c: Remove warning.
  • Property mode set to 100644
File size: 9.0 KB
Line 
12009-05-05      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * console/uart.c: Remove warning.
4
52009-04-28      Chris Johns <chrisj@rtems.org>
6
7        * start/start.S: Update for boot_card command line change.
8
92009-01-06      Joel Sherrill <joel.sherrill@OARcorp.com>
10
11        PR 1350/bsps
12        * network/lan91c11x.c: Do not write 65th element into 64 element array.
13
142008-12-05      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * bsp_specs: Remove -Qy from *link.
17
182008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * bsp_specs: Move -e start from *link to *startfile to avoid warning
21        for undefined entry symbol when linking relocatables with binutils
22        2.19.
23
242008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
25
26        * Makefile.am, preinstall.am: Use shared tm27.h stub.
27        * include/tm27.h: Removed.
28
292008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
30
31        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
32        of building libbspstart.a, using automake-rules.
33
342008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
35
36        * Makefile.am: Eliminate *_SOURCES.
37
382008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
39
40        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
41        components.
42
432008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
44
45        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
46
472008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * configure.ac: Make letting boot_card() handle work area allocation
50        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
51        BSP_BOOTCARD_OPTIONS.
52
532008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * startup/bspclean.c: Removed.
56
572008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * Makefile.am, configure.ac, console/uart.c, startup/bspclean.c,
60        startup/bspstart.c: Use standardized bsp_cleanup() which can
61        optionally print a message, poll for user to press key, and call
62        bsp_reset(). Using this eliminates the various bsp_cleanup()
63        implementations which had their own implementation and variety of
64        string constants.
65        * startup/bspreset.c: New file.
66
672008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * Makefile.am, startup/linkcmds: Use top level shared
70        bsp_get_work_area() implementation.
71
722008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * startup/bspstart.c: Remove unnecessary includes of
75        rtems/libcsupport.h and rtems/libio.h.
76
772008-09-12      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * Makefile.am, configure.ac, startup/bspstart.c: Split out
80        bsp_get_work_area() into its own file and user BSP Framework to
81        perform more initialization. Let edb7312 and csb336 shared the
82        implementation.
83
842008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
87        routine.
88        * startup/bspclean.c: New file.
89        * startup/exit.c: Removed.
90
912008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
92
93        * startup/exit.c: Add missing prototypes.
94
952008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
96
97        * Makefile.am: Rework to avoid .rel files.
98
992008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * startup/bspstart.c: Refactored and renamed initialization routines to
102        rtems_initialize_data_structures, rtems_initialize_before_drivers,
103        rtems_initialize_device_drivers, and
104        rtems_initialize_start_multitasking. This opened the sequence up so
105        that bootcard() could provide a more robust and flexible framework
106        which is easier to explain and understand. This also lays the
107        groundwork for sharing the division of available memory between the
108        RTEMS workspace and heap and the C library initialization across all
109        BSPs.
110
1112008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
112
113        * startup/linkcmds: Add wildcard to gcc_except_table section so
114        programs compiled with gcc 4.3.x can link.
115
1162007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
117
118        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
119        Configuration Table. Use the RTEMS provided accessor macros to obtain
120        configuration fields.
121
1222007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
123
124        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
125        from CPU Table to Configuration Table. Eliminate CPU Table from all
126        ports. Delete references to CPU Table in all forms.
127
1282007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
129
130        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
131        Table fields to the Configuration Table. This included
132        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
133        do_zero_of_workspace, extra_mpci_receive_server_stack,
134        stack_allocate_hook, and stack_free_hook. As a side-effect of this
135        effort some multiprocessing code was made conditional and some style
136        clean up occurred.
137
1382007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
139
140        PR 1257/bsps
141        * network/lan91c11x.c: Code outside of cpukit should use the public
142        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
143        the public API and directly accessing _CPU_ISR_Disable and
144        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
145        directive which could lead to problems. This patch also changes the
146        type of the variable passed into these routines and addresses minor
147        style issues.
148
1492007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
150
151        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
152        since it was used to configure a no longer used feature. Device names
153        are now part of the filesystem not in a table.
154
1552007-05-15      Ray Xu <rayx@gmail.com>
156
157        * Makefile.am: Add abort.rel since it is now in the BSP shared source,
158        not in score/cpu.
159
1602007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
161
162        * bsp_specs: Remove qrtems_debug.
163
1642007-03-12      Joel Sherrill <joel@OARcorp.com>
165
166        * include/bsp.h, network/lan91c11x.c, network/lan91c11x.h,
167        network/network.c, start/start.S, startup/bspstart.c, startup/exit.c,
168        startup/linkcmds, startup/memmap.c: Correct license URL and/or fix
169        mistake in copyright notice. Both of these mistakes appear to be from
170        code submitted after these changes were made previously.
171
1722007-03-11      Joel Sherrill <joel@OARcorp.com>
173
174        * startup/bspstart.c: Remove assignments of
175        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
176        value in boot_card.c
177
1782006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
179
180        * network/network.c (mc9328mxl_enet_ioctl): Use ioctl_command_t.
181
1822006-11-15      Joel Sherrill <joel@OARcorp.com>
183
184        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
185        file and simplified initialization.
186
1872006-11-01      Joel Sherrill <joel@OARcorp.com>
188
189        * bsp_specs: Fix typo.
190
1912006-10-30      Joel Sherrill <joel@OARcorp.com>
192
193        * bsp_specs: Add crti, crtbegin, crtend, and crtn.
194
1952006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
196
197        * Makefile.am: Remove superfluous -DASM.
198
1992006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
200
201        * configure.ac: Require autoconf-2.60. Require automake-1.10.
202
2032006-06-02      Jay Monkman <jtm@lopingdog.com>
204
205        * startup/linkcmds: Removed unnecessary global definition of
206        bsp_vector_table.
207
2082006-06-02      Jay Monkman <jtm@lopingdog.com>
209
210        * times: Reran timing tests and updated 'times' file.
211
2122006-06-02      Jay Monkman <jtm@lopingdog.com>
213
214        * startup/bspstart.c: Fixed PLL calculations.
215
2162006-06-02      Jay Monkman <jtm@lopingdog.com>
217
218        * Makefile.am, console/uart.c, startup/exit.c:  Changed UART
219          driver to be interrupt driven, added support for both UARTs.
220
221
2222006-06-02      Jay Monkman <jtm@lopingdog.com>
223
224        * network/network.c: Changed interrupt handling
225        to use shared rtems_irq_connect_data struct.
226
2272006-06-02      Jay Monkman <jtm@lopingdog.com>
228
229        * start/start.S, startup/linkcmds: Defined UNDEF exception
230        stack space.
231
2322006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
233
234        * Makefile.am: Add preinstall.am.
235
2362005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
237
238        * bsp_specs: remove %lib.
239
2402005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * bsp_specs: Remove %cpp.
243
2442005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
245
246        * include/bsp.h: New header guard.
247
2482005-04-26      Joel Sherrill <joel@OARcorp.com>
249
250        * network/network.c: Add include rtems/bspIo.h to eliminate warning.
251
2522005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
253
254        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
255
2562005-01-04      Joel Sherrill <joel@OARcorp.com>
257
258        * startup/bspstart.c, startup/exit.c: Remove warnings.
259
2602005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * Makefile.am: Remove build-variant support.
263
2642004-11-05      Joel Sherrill <joel@OARcorp.com>
265
266        * startup/linkcmds: Add .gnu.linkonce.b section and account for memory
267        area being named sdram NOT RAM.
268
2692004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
270
271        * startup/bspstart.c: Use POSIX fixed size types.
272
2732004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
274
275        * configure.ac: Require automake > 1.9.
276
2772004-07-24      Joel Sherrill <joel@OARcorp.com>
278
279        * .cvsignore: New file.
280
2812004-07-15      Jay Monkman
282
283        * console/.cvsignore, include/.cvsignore, network/.cvsignore,
284        start/.cvsignore, startup/.cvsignore: New files.
285
2862004-07-15      Jay Monkman
287
288        * ChangeLog, Makefile.am, README, bsp_specs, configure.ac, times,
289        console/uart.c, include/bsp.h, include/tm27.h, network/lan91c11x.c,
290        network/lan91c11x.h, network/network.c, start/start.S,
291        startup/bspstart.c, startup/exit.c, startup/linkcmds,
292        startup/memmap.c: New files.
293
Note: See TracBrowser for help on using the repository browser.