source: rtems/c/src/lib/libbsp/powerpc/gen5200/ChangeLog @ 5223d6b5

4.104.114.95
Last change on this file since 5223d6b5 was 6e2fcea, checked in by Joel Sherrill <joel.sherrill@…>, on 07/01/08 at 19:12:48

2008-07-01 Joel Sherrill <joel.sherrill@…>

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