source: rtems/c/src/lib/libbsp/powerpc/gen5200/ChangeLog @ 520b092

4.104.114.95
Last change on this file since 520b092 was 520b092, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/20/08 at 04:28:08

2008-08-20 Ralf Corsépius <ralf.corsepius@…>

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