source: rtems/c/src/lib/libbsp/powerpc/gen5200/ChangeLog @ 913b3a27

4.104.114.95
Last change on this file since 913b3a27 was 913b3a27, checked in by Joel Sherrill <joel.sherrill@…>, on 06/10/08 at 18:53:21

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

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