source: rtems/c/src/lib/libbsp/arm/rtl22xx/ChangeLog @ f560d0a

4.104.115
Last change on this file since f560d0a was f560d0a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/08 at 20:22:57

2008-09-14 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, startup/bspstart.c: Split out bsp_get_work_area() into its own file and user BSP Framework to perform more initialization. Use same shared implementation as edb7312 and csb336.
  • Property mode set to 100644
File size: 5.1 KB
Line 
12008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, startup/bspstart.c: Split out
4        bsp_get_work_area() into its own file and user BSP Framework to
5        perform more initialization. Use same shared implementation as
6        edb7312 and csb336.
7
82008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
9
10        * Makefile.am: Rework to avoid .rel files.
11
122008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
13
14        * startup/bspstart.c: Refactored and renamed initialization routines to
15        rtems_initialize_data_structures, rtems_initialize_before_drivers,
16        rtems_initialize_device_drivers, and
17        rtems_initialize_start_multitasking. This opened the sequence up so
18        that bootcard() could provide a more robust and flexible framework
19        which is easier to explain and understand. This also lays the
20        groundwork for sharing the division of available memory between the
21        RTEMS workspace and heap and the C library initialization across all
22        BSPs.
23
242008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
25
26        * startup/linkcmds: Add wildcard to gcc_except_table section so
27        programs compiled with gcc 4.3.x can link.
28
292007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
30
31        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
32        Configuration Table. Use the RTEMS provided accessor macros to obtain
33        configuration fields.
34
352007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
36
37        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
38        from CPU Table to Configuration Table. Eliminate CPU Table from all
39        ports. Delete references to CPU Table in all forms.
40
412007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
42
43        * Makefile.am, include/bsp.h, startup/bspstart.c: Moved most of the
44        remaining CPU Table fields to the Configuration Table. This included
45        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
46        do_zero_of_workspace, extra_mpci_receive_server_stack,
47        stack_allocate_hook, and stack_free_hook. As a side-effect of this
48        effort some multiprocessing code was made conditional and some style
49        clean up occurred.
50
512007-11-03      Ray Xu <rayx.cn@gmail.com>
52
53        * start/start.S, startup/bspclean.c: Add veneer between ARM and
54        Thumb instructions.  also moved bss init after CPSR/stack init in
55        start.S
56
572007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        PR 1257/bsps
60        * startup/bspstart.c: Code outside of cpukit should use the public
61        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
62        the public API and directly accessing _CPU_ISR_Disable and
63        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
64        directive which could lead to problems. This patch also changes the
65        type of the variable passed into these routines and addresses minor
66        style issues.
67
682007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
712007-08-28      Joel Sherrill <joel.sherrill@OARcorp.com>
72
73        * README: Clean up.
74
752007-06-22      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * network/network.c: Remove cs8900_get_mac_addr which conflicted with
78        one in libchip AND contained a hard-coded MAC address.
79
802007-06-13      Ray Xu <rayx@gmail.com>
81
82        * startup/linkcmds: Shrink the aligment requirements.
83
842007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
87        since it was used to configure a no longer used feature. Device names
88        are now part of the filesystem not in a table.
89
902007-05-15      Ray Xu <rayx@gmail.com>
91
92        * Makefile.am: Add abort.rel since it is now in the BSP shared source,
93        not in score/cpu.
94
952007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
96
97        * startup/bspclean.c: Remove incldue stdio.h
98
992007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * Makefile.am, console/lpc22xx_uart.h: Remove warnings, cleanup and do
102        not build SPARC code accidentally referenced in Makefile.am.
103
1042007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * console/uart.c, startup/bspclean.c, startup/bspstart.c: Remove debug
107        print methods that are redundant with prntk and replace their usage
108        with printk.
109
1102007-05-01      Joel Sherrill <joel@OARcorp.com>
111
112        * Makefile.am: Tinkering to reduce .text size of minimum executable
113        from ~64K to ~47K.
114        * Renamed startup/exit.c to startup/bspclean.c
115          * startup/bspclean.c: New file.
116          * startup/exit.c: Removed.
117
1182007-05-01      Ray Xu <xr@trasin.net>
119
120        * README, times, console/lpc22xx_uart.h, console/uart.c, include/bsp.h,
121        start/start.S, startup/bspstart.c, startup/exit.c, startup/linkcmds:
122        Update BSP to address changes between 4.7 and CVS head as well as to
123        address comments from Ralf and Joel.
124
1252007-04-26      Ralf Corsépius <ralf.corsepius@rtems.org>
126
127        * Makefile.am: Remove reference to ../../shared/main.c.
128
1292007-04-25      Ray Xu <xr@trasin.net>
130
131        * times: New (Initial submission).
132
1332007-04-25      Ralf Corsépius <ralf.corsepius@rtems.org>
134
135        * Makefile.am: Include preinstall.am
136        * bsp_specs: Sync with modern GCC.
137
1382007-04-25      Ray Xu <xr@trasin.net>
139
140        * include/tm27.h, startup/bspstart.c, startup/exit.c,
141        startup/linkcmds, start/start.S: New (Initial submission).
142        * Makefile.am, README, bsp_specs, configure.ac,
143        console/lpc22xx_uart.h, console/uart.c, include/bsp.h,
144        network/network.c: New (Initial submission).
Note: See TracBrowser for help on using the repository browser.