source: rtems/c/src/lib/libbsp/powerpc/gen5200/ChangeLog @ 6826a4c

4.104.114.95
Last change on this file since 6826a4c was 6826a4c, checked in by Joel Sherrill <joel.sherrill@…>, on 06/06/08 at 21:43:02

2008-06-06 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, irq/irq.c, irq/irq_init.c, startup/bspclean.c, startup/bspstart.c: Slightly better names for IRQ benchmarking. Make sure the routines are present all the time.
  • Property mode set to 100644
File size: 18.3 KB
Line 
12008-06-06      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * include/bsp.h, irq/irq.c, irq/irq_init.c, startup/bspclean.c,
4        startup/bspstart.c: Slightly better names for IRQ benchmarking. Make
5        sure the routines are present all the time.
6
72008-05-22      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * console/console.c: Remove explicit switch and call
10        termios_baud_to_number().
11
122008-05-22      Joel Sherrill <joel.sherrill@oarcorp.com>
13
14        * console/console.c: Properly inform termios of our initial baud rate.
15        If it is not the default, this causes problems when an application
16        changes any termios attributes since termios thinks our baud rate is
17        one thing when in fact, it is another.
18
192008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
22        Framework to ask the BSP where it has memory for the RTEMS Workspace
23        and C Program Heap. These collectively are referred to as work area.
24        If the BSP supports this, then it does not have to include code to
25        split the available memory between the two areas. This reduces the
26        amount of code in the BSP specific bspstart.c file. Additionally, the
27        shared framework can initialize the C Library, call
28        rtems_debug_enable(), and dirty the work area memory. Until most/all
29        BSPs support this new capability, if the BSP supports this, it should
30        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
31        When the transition is complete, this autoconf macro can be removed.
32
332008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
34
35        * Makefile.am: Rework to avoid .rel files.
36
372008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/bspstart.c: Refactored and renamed initialization routines to
40        rtems_initialize_data_structures, rtems_initialize_before_drivers,
41        rtems_initialize_device_drivers, and
42        rtems_initialize_start_multitasking. This opened the sequence up so
43        that bootcard() could provide a more robust and flexible framework
44        which is easier to explain and understand. This also lays the
45        groundwork for sharing the division of available memory between the
46        RTEMS workspace and heap and the C library initialization across all
47        BSPs.
48
492008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
50
51        * startup/linkcmds, startup/linkcmds.brs5l, startup/linkcmds.icecube,
52        startup/linkcmds.pm520: Add wildcard to gcc_except_table section so
53        programs compiled with gcc 4.3.x can link.
54
552008-01-11      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * configure.ac, irq/irq.c, startup/bspclean.c, startup/bspstart.c: Add
58        ALLOW_IRQ_NESTING option. The MPC5200 has a settle time after
59        acknowledging the IRQs and currently the BSP does not account for
60        that. After acknowledging an interrupt, it currently gets a second
61        spurious IRQ a significant percentage of the time. Rename to
62        BENCHMARK_IRQ_PROCESSING and get it working again. Under one test
63        load, not nesting interrupts resulted in a 50% reduction in the
64        number of IRQs and an ~30% reduction in time spent in IRQs.
65
662007-12-18      Joel Sherrill <joel.sherrill@OARcorp.com>
67
68        * startup/linkcmds: Spacing.
69        * startup/linkcmds.brs5l: Add wildcard to .bss section.
70
712007-12-14      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * irq/irq.c, startup/bspclean.c, startup/bspstart.c: I give. The code
74        is now in conditionally so I can avoid putting it in accidently
75        again.
76
77        * startup/bspclean.c: Revert patch with test code.
78
792007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * irq/irq.c: Revert accidentally committed test code.
82
832007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * bsp_specs, clock/clock.c, include/bsp.h, irq/irq.c,
86        startup/bspclean.c, startup/bspstart.c: Eliminate copies of the
87        Configuration Table. Use the RTEMS provided accessor macros to obtain
88        configuration fields.
89
902007-12-06      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * include/mpc5200.h: Expand tabs.
93
942007-12-05      Joel Sherrill <joel.sherrill@oarcorp.com>
95
96        * include/bsp.h: Correct BSP specific Idle thread support.
97
982007-12-05      Till Straumann <strauman@slac.stanford.edu>
99
100        * irq/irq_init.c, irq_asm.S:
101        Converted exception vector names to new ones
102        (qualified by <cpu_type> if non-std ppc exceptions).
103
1042007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
107        Configuration Table. Eliminate CPU Table from all ports. Delete
108        references to CPU Table in all forms.
109
1102007-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
111
112        * clock/clock.c: Fix typo.
113
1142007-12-03      Joel Sherrill <joel.sherrill@oarcorp.com>
115
116        * irq/irq.c: Spacing.
117
1182007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * startup/bspstart.c: Moved most of the remaining CPU Table fields to
121        the Configuration Table. This included pretasking_hook,
122        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
123        extra_mpci_receive_server_stack, stack_allocate_hook, and
124        stack_free_hook. As a side-effect of this effort some multiprocessing
125        code was made conditional and some style clean up occurred.
126
1272007-11-30      Till Straumann <strauman@slac.stanford.edu>
128
129        * startup/bspstart: removed _Cpu_table.exceptions_in_RAM.
130
1312007-11-30      Till Straumann <strauman@slac.stanford.edu>
132
133        * irq/irq.h, irq/irq_init.c: Removed the definition
134        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
135        initialize the irqBase member of the rtems_irq_global_settings
136        struct. However, irqBase is an rtems_irq_symbolic_name,
137        so using BSP_LOWEST_OFFSET is more appropriate.
138
1392007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        * clock/clock.c, startup/bspstart.c: Eliminate PowerPC specific
142        elements from the CPU Table. They have been replaced with variables
143        named bsp_XXX as needed.
144
1452007-10-31      Joel Sherrill <joel.sherrill@oarcorp.com>
146
147        * include/mpc5200.h: Fix typo.
148
1492007-10-30      Joel Sherrill <joel.sherrill@oarcorp.com>
150
151        * include/mpc5200.h: Fix constants off by one nibble.
152
1532007-10-30      Joel Sherrill <joel.sherrill@oarcorp.com>
154
155        * include/mpc5200.h: Added some simple interrupt GPIO constants.
156
1572007-10-26      Joel Sherrill <joel.sherrill@oarcorp.com>
158
159        * irq/irq.h: Fixed typos.
160
1612007-09-21      Joel Sherrill <joel.sherrill@OARcorp.com>
162
163        * network_5200/network.c: Add multicast support.
164
1652007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
166
167        PR 1257/bsps
168        * irq/irq.c: Code outside of cpukit should use the public API for
169        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
170        public API and directly accessing _CPU_ISR_Disable and
171        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
172        directive which could lead to problems. This patch also changes the
173        type of the variable passed into these routines and addresses minor
174        style issues.
175
1762007-09-05      Joel Sherrill <joel.sherrill@oarcorp.com>
177
178        * irq/irq.h: Reformat -- make things line up.
179
1802007-08-28      Joel Sherrill <joel.sherrill@oarcorp.com>
181
182        * console/console.c: Add missing semi-colon.
183
1842007-08-06      Joel Sherrill <joel.sherrill@OARcorp.com>
185
186        * Makefile.am, README.IceCube, preinstall.am, include/bsp.h,
187        vectors/vectors.S: Rename EP5200 to IceCube since that is the
188        nickname for the Freescale evaluation board it is based upon. BSP was
189        tested on a Freescale MPC5200LITE.
190
1912007-08-02      Joel Sherrill <joel.sherrill@oarcorp.com>
192
193        * ide/pcmcia_ide.c: Added prototype of mpc5200_pcmciaide_dma_blockop to
194        eliminate warning.
195
1962007-08-02      Joel Sherrill <joel.sherrill@oarcorp.com>
197
198        * Makefile.am: Add shared ShowBATS().
199        * startup/cpuinit.c: Split out BAT initialization into subroutine
200        that is defined based upon conditionals set.  More critically
201        added code to detect and correct for a buggy U-Boot found on
202        some Freescale LITE5200B boards which report Flash memory to
203        be for 32MB at 0xFF000000 instead of 0xFE000000.  If we use
204        the reported information, the system gives an exception just
205        after the BAT is programmed.
206        * vectors/vectors_init.c: Turn off message unless verbose is on.
207
2082007-07-18      Joel Sherrill <joel.sherrill@oarcorp.com>
209
210        * Makefile.am, vectors/vectors_init.c: Print stack trace on exception.
211
2122007-07-12      Joel Sherrill <joel.sherrill@OARcorp.com>
213
214        * startup/linkcmds.brs5l: Add .jcr section.
215
2162007-07-11      Joel Sherrill <joel.sherrill@oarcorp.com>
217
218        * README.IceCube: New file.
219
2202007-07-11      Joel Sherrill <joel.sherrill@oarcorp.com>
221
222        * console/console.c: Fix typo accidentally introduced.
223        * network_5200/network.c: Fix warning.
224
2252007-07-11      Joel Sherrill <joel.sherrill@oarcorp.com>
226
227        * startup/linkcmds.ep5200: Add .jcr section.
228
2292007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
230
231        * bsp_specs, startup/linkcmds, startup/linkcmds.pm520:
232        add c++ support again
233        * preinstall.am: some fixes
234
2352007-07-06      Joel Sherrill <joel.sherrill@oarcorp.com>
236
237        * Makefile.am: Add startup/bspclean.c
238        * console/console.c: Remove warning.
239        * include/bsp.h: Add conditionals for prompt for reset and resetting
240        board.
241        * start/start.S: Remove if 1 around section.
242        * vectors/vectors_init.c: Do not print unless noisy init enabled.
243        * startup/bspclean.c: New file. Will prompt for reset and reset.
244
2452007-07-06      Joel Sherrill <joel.sherrill@oarcorp.com>
246
247        * clock/clock.c, console/console.c: Add clock HW initialization missed
248        in earlier conversion.
249
2502007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
251
252        * irq_init.c, Makefile.am: adapted to shared exception code
253
2542007-06-22      Joel Sherrill <joel.sherrill@oarcorp.com>
255
256        * clock/clock.c, network_5200/network.c: Convert to using clock driver
257        template.
258
2592007-06-22      Joel Sherrill <joel.sherrill@OARcorp.com>
260
261        * startup/linkcmds.brs5l: Add missing wild card on .sdata section so
262        all class examples build.
263
2642007-06-21      Joel Sherrill <joel.sherrill@oarcorp.com>
265
266        * clock/clock.c: Add nanoseconds since last tick support.
267
2682007-06-20      Joel Sherrill <joel.sherrill@oarcorp.com>
269
270        Add Embedded Planets EP5200 which is the same as the Freescale
271        5200Lite (a.k.a. IceCube) evaluation board.
272        * Makefile.am: Add linkcmds.ep5200.
273        Add -DMPC5200_BAPI_LIBC_HEADERS to remove some warnings in bestcomm.
274        * preinstall.am: Add linkcmds.ep5200.
275        * clock/clock.c: Correct math for prescaler/counter when bus speed
276        is high enough to require multiple passes of loop.
277        * console/console.c: Use same math for initial baud rate as when it
278        is changed via ioctl.  When HAS_UBOOT is defined, initialize console
279        to the same baud as it was with U-Boot.
280        * include/bsp.h: Add EP5200 and console boot baud support.
281        * include/mpc5200.h: Spacing.
282        * startup/bspstart.c: If HAS_UBOOT and SHOW_MORE_INIT_SETTINGS are
283        both defined, dump the U-Boot BD info structure.
284        * vectors/vectors.S: ep5200 cannot use vectors segment.  When loading
285        it, U-Boot freezes.  Besides, U-Boot can automatically start the BSP
286        so we do not have to run from board reset.
287        * startup/linkcmds.ep5200: New file.
288
2892007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
290
291        * mscan/mscan.c: Use size_t for message sizes. Remove absurd type
292          cast.
293
2942007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
295
296        * bsp_specs: Remove qrtems_debug.
297
2982007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
299
300        * bsp_specs: Remove lib (Now expected to exist in GCC).
301
3022007-03-12      Joel Sherrill <joel@OARcorp.com>
303
304        * clock/clock.c, console/console.c, ide/pcmcia_ide.c, irq/irq.c,
305        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, nvram/nvram.c,
306        nvram/nvram.h, slicetimer/slicetimer.c, startup/bspstart.c,
307        vectors/vectors.h, vectors/vectors_init.c: Correct license URL and/or
308        fix mistake in copyright notice. Both of these mistakes appear to be
309        from code submitted after these changes were made previously.
310
3112007-03-11      Joel Sherrill <joel@OARcorp.com>
312
313        * startup/bspstart.c: Remove assignments of
314        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
315        value in boot_card.c
316
3172007-03-10      Joel Sherrill <joel@OARcorp.com>
318
319        PR 1227/bsps
320        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
321        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
322
3232007-01-23      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
324
325        * console/console.c: corrected typo in UART error handler (usage
326        * of ISR_PE instead of ISR_OE)
327       
3282006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
329
330        * bestcomm/load_task.c: Remove bogus casts.
331        * network_5200/network.c: Use ioctl_command_t as arg to ioctl functions.
332
3332006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
334
335        * configure.ac: New BUG-REPORT address.
336
3372006-11-15      Joel Sherrill <joel@OARcorp.com>
338
339        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
340        file and simplified initialization.
341
3422006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
343
344        * Makefile.am: Remove superfluous -DASM.
345
3462006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
347
348        * configure.ac: Require autoconf-2.60. Require automake-1.10.
349
3502006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
351
352        * clock/clock.c, console/console.c, ide/pcmcia_ide.c,
353        ide/pcmcia_ide.h, irq/irq.c, irq/irq.h, irq/irq_asm.S,
354        irq/irq_init.c, nvram/m93cxx.h, nvram/nvram.c, nvram/nvram.h,
355        slicetimer/slicetimer.c, start/start.S, startup/bspstart.c,
356        startup/cpuinit.c, vectors/vectors.S, vectors/vectors_init.c:
357        Convert to utf-8.
358
3592006-09-11      Joel Sherrill <joel@OARcorp.com>
360
361        * include/mpc5200.h, network_5200/network.c: Convert C++ style comments
362        to C style.
363
3642006-08-15      Joel Sherrill <joel@OARcorp.com>
365
366        * Makefile.am, preinstall.am, startup/linkcmds, startup/linkcmds.brs5l,
367        startup/linkcmds.pm520: Add support for missing .rela sections.
368        Install linkcmds.
369
3702006-08-08      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
371
372        * linkcmds.brs5l:
373        (PR1117) Add  startup/linkcmds.brs5l
374
3752006-06-28      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
376
377        * Makefile.am, preinstall.am:
378        (PR1117) Add  startup/linkcmds.brs5l, slicetimer.h, nvram.h
379        to distributed files, add start/start.S to startup sources
380
381        * bestcomm/bestcomm_glue.c:
382        (PR1117) make SDMA interrupt operations interrupt save
383       
384        * bsp_specs: (PR1117) move ecrti to proper location
385
386        * console/console.c: (PR1117) round baudrate divider to nearest match
387
388        * include/bsp.h: (PR1117) activate interrupt for ATA,
389        modify calculation of ROM size, add BSP_Convert_decrementer
390
391        * include/mpc5200.h: (PR1117) add some register definitions
392
393        * include/tm27.h:
394        (PR1117) adapt to make tm27 compile again with this BSP
395
396        * mscan/mscan.[ch]:
397        (PR1117) many improvements and fixes,
398        transmit queue added,
399        baud rate settings adapted
400
401        * network/network.c:
402        (PR1117) add handler code to detect and restart FEC on DMA overflow
403
404        * start/start.S:
405        (PR1117) fixed some typos and minor bugs
406        enable FPU in start sequence
407
408        * startup/linkcmds:
409        (PR1117) removed, no longer used
410       
411        * startup/linkcmds.brs5l:
412        (PR1117) added
413
414        * tod/pcf8563.c:
415        (PR1117) fixed bug which read wrong hour from RTC
416
4172006-03-08      Joel Sherrill <joel@OARcorp.com>
418
419        * startup/linkcmds, startup/linkcmds.pm520: Add .gnu.linkonce.b.*
420        section.
421
4222006-02-08      Joel Sherrill <joel@OARcorp.com>
423
424        * startup/linkcmds, startup/linkcmds.pm520: Add sections required by
425        newer gcc versions.
426
4272006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
428
429        * configure.ac: Remove explicit ampolish3 support (now in
430        RTEMS_BSP_CONFIGURE).
431
4322006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
433
434        * configure.ac: Add ampolish3 support.
435        * Makefile.am: Add preinstall.am.
436
4372006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
438
439        * Makefile.am: Don't include subdirs.am.
440
4412006-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
442
443        * vectors/asm_utils.S: Remove (Bogus, now in libcpu).
444
4452006-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
446
447        * bestcomm/bestcomm_glue.c, bestcomm/bestcomm_glue.h, clock/clock.c,
448        console/console.c, i2c/i2cdrv.c, i2c/mpc5200mbus.c,
449        i2c/mpc5200mbus.h, ide/idecfg.c, ide/pcmcia_ide.c, ide/pcmcia_ide.h,
450        include/bsp.h, include/mpc5200.h, irq/irq.c, irq/irq.h,
451        irq/irq_asm.S, irq/irq_init.c, mscan/mscan.c, mscan/mscan.h,
452        network_5200/network.c, nvram/m93cxx.h, nvram/nvram.c,
453        nvram/nvram.h, slicetimer/slicetimer.c, slicetimer/slicetimer.h,
454        start/start.S, startup/bspstart.c, startup/cpuinit.c, tod/pcf8563.c,
455        tod/pcf8563.h, tod/todcfg.c, vectors/vectors.S,
456        vectors/vectors_init.c: Cleanup CVS data.
457
4582005-12-31      Ralf Corsepius <ralf.corsepius@rtems.org>
459
460        * irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
461        include <libcpu/raw_exceptions.h>.
462        * include/raw_exception.h, vectors/raw_exception.c: Remove.
463        Use implementation from libcpu instead.
464
4652005-12-31      Ralf Corsepius <ralf.corsepius@rtems.org>
466
467        * bestcomm/bestcomm_glue.c, clock/clock.c, console/console.c,
468        i2c/i2c.c, i2c/i2cdrv.c, ide/idecfg.c, ide/pcmcia_ide.c,
469        ide/pcmcia_ide.h, include/i2c.h, irq/irq.c, irq/irq_init.c,
470        mscan/mscan.c, network_5200/network.c, nvram/nvram.c, nvram/nvram.h,
471        slicetimer/slicetimer.c, startup/bspstart.c, startup/cpuinit.c,
472        tod/todcfg.c, vectors/vectors_init.c: Misc include file fixes.
473
4742005-12-31      Ralf Corsepius <ralf.corsepius@rtems.org>
475
476        * Makefile.am, README, bsp_specs, configure.ac,
477        bestcomm/bestcomm_api.c, bestcomm/bestcomm_api.h,
478        bestcomm/bestcomm_glue.c, bestcomm/bestcomm_glue.h,
479        bestcomm/bestcomm_priv.h, bestcomm/dma_image.c,
480        bestcomm/dma_image.capi.h, bestcomm/dma_image.h,
481        bestcomm/dma_image.reloc.c, bestcomm/load_task.c,
482        bestcomm/tasksetup_ata.c, bestcomm/tasksetup_bdtable.c,
483        bestcomm/tasksetup_crc16_dp_0.c, bestcomm/tasksetup_crc16_dp_1.c,
484        bestcomm/tasksetup_fec_rx_bd.c, bestcomm/tasksetup_fec_tx_bd.c,
485        bestcomm/tasksetup_gen_dp_0.c, bestcomm/tasksetup_gen_dp_1.c,
486        bestcomm/tasksetup_gen_dp_2.c, bestcomm/tasksetup_gen_dp_3.c,
487        bestcomm/tasksetup_gen_dp_bd_0.c, bestcomm/tasksetup_gen_dp_bd_1.c,
488        bestcomm/tasksetup_gen_rx_bd.c, bestcomm/tasksetup_gen_tx_bd.c,
489        bestcomm/tasksetup_lpc.c, bestcomm/tasksetup_pci_rx.c,
490        bestcomm/tasksetup_pci_tx.c, bestcomm/include/mgt5200/mgt5200.h,
491        bestcomm/include/mgt5200/sdma.h,
492        bestcomm/task_api/bestcomm_api_mem.h,
493        bestcomm/task_api/bestcomm_cntrl.h,
494        bestcomm/task_api/tasksetup_bdtable.h,
495        bestcomm/task_api/tasksetup_general.h, clock/clock.c,
496        console/console.c, i2c/i2c.c, i2c/i2cdrv.c, i2c/mpc5200mbus.c,
497        i2c/mpc5200mbus.h, ide/idecfg.c, ide/pcmcia_ide.c, ide/pcmcia_ide.h,
498        include/bsp.h, include/coverhd.h, include/i2c.h, include/i2cdrv.h,
499        include/mpc5200.h, include/raw_exception.h, include/tm27.h,
500        include/u-boot.h, irq/irq.c, irq/irq.h, irq/irq_asm.S,
501        irq/irq_init.c, mscan/mscan.c, mscan/mscan.h,
502        network_5200/network.c, nvram/m93cxx.h, nvram/nvram.c,
503        nvram/nvram.h, slicetimer/slicetimer.c, slicetimer/slicetimer.h,
504        start/start.S, startup/bspstart.c, startup/cpuinit.c,
505        startup/linkcmds, startup/linkcmds.pm520, tod/pcf8563.c,
506        tod/pcf8563.h, tod/todcfg.c, vectors/asm_utils.S,
507        vectors/raw_exception.c, vectors/vectors.S, vectors/vectors.h,
508        vectors/vectors_init.c: New (CVS import submission by
509        Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>)
510
5112005-12-09      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
512
513        * Integrated gen5200 BSP to source tree
Note: See TracBrowser for help on using the repository browser.