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

4.104.115
Last change on this file since 25038501 was 25038501, checked in by Joel Sherrill <joel.sherrill@…>, on 09/21/08 at 16:37:20

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

  • include/bsp.h: Remove define of BSP_ZERO_WORKSPACE_AUTOMATICALLY.
  • Property mode set to 100644
File size: 5.5 KB
RevLine 
[25038501]12008-09-21      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * include/bsp.h: Remove define of BSP_ZERO_WORKSPACE_AUTOMATICALLY.
4
[127e726a]52008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * Makefile.am, startup/linkcmds: Use top level shared
8        bsp_get_work_area() implementation.
9
[a196084]102008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * startup/bspstart.c: Remove unnecessary includes of
13        rtems/libcsupport.h and rtems/libio.h.
14
[f560d0a]152008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * Makefile.am, configure.ac, startup/bspstart.c: Split out
18        bsp_get_work_area() into its own file and user BSP Framework to
19        perform more initialization. Use same shared implementation as
20        edb7312 and csb336.
21
[1d0ee80e]222008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
23
24        * Makefile.am: Rework to avoid .rel files.
25
[6ea100c1]262008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * startup/bspstart.c: Refactored and renamed initialization routines to
29        rtems_initialize_data_structures, rtems_initialize_before_drivers,
30        rtems_initialize_device_drivers, and
31        rtems_initialize_start_multitasking. This opened the sequence up so
32        that bootcard() could provide a more robust and flexible framework
33        which is easier to explain and understand. This also lays the
34        groundwork for sharing the division of available memory between the
35        RTEMS workspace and heap and the C library initialization across all
36        BSPs.
37
[d1f57b5]382008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
39
40        * startup/linkcmds: Add wildcard to gcc_except_table section so
41        programs compiled with gcc 4.3.x can link.
42
[4130d8e2]432007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
44
45        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
46        Configuration Table. Use the RTEMS provided accessor macros to obtain
47        configuration fields.
48
[d34d8692]492007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
50
51        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
52        from CPU Table to Configuration Table. Eliminate CPU Table from all
53        ports. Delete references to CPU Table in all forms.
54
[b5e7018]552007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * Makefile.am, include/bsp.h, startup/bspstart.c: Moved most of the
58        remaining CPU Table fields to the Configuration Table. This included
59        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
60        do_zero_of_workspace, extra_mpci_receive_server_stack,
61        stack_allocate_hook, and stack_free_hook. As a side-effect of this
62        effort some multiprocessing code was made conditional and some style
63        clean up occurred.
64
[ac654234]652007-11-03      Ray Xu <rayx.cn@gmail.com>
66
67        * start/start.S, startup/bspclean.c: Add veneer between ARM and
68        Thumb instructions.  also moved bss init after CPSR/stack init in
69        start.S
70
[80231685]712007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
72
73        PR 1257/bsps
74        * startup/bspstart.c: Code outside of cpukit should use the public
75        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
76        the public API and directly accessing _CPU_ISR_Disable and
77        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
78        directive which could lead to problems. This patch also changes the
79        type of the variable passed into these routines and addresses minor
80        style issues.
81
822007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
[7e8039b]852007-08-28      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * README: Clean up.
88
[3aa0564]892007-06-22      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * network/network.c: Remove cs8900_get_mac_addr which conflicted with
92        one in libchip AND contained a hard-coded MAC address.
93
[b016200a]942007-06-13      Ray Xu <rayx@gmail.com>
95
96        * startup/linkcmds: Shrink the aligment requirements.
97
[15aecdc]982007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
101        since it was used to configure a no longer used feature. Device names
102        are now part of the filesystem not in a table.
103
[a5ef8c53]1042007-05-15      Ray Xu <rayx@gmail.com>
105
106        * Makefile.am: Add abort.rel since it is now in the BSP shared source,
107        not in score/cpu.
108
[3673ee7c]1092007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * startup/bspclean.c: Remove incldue stdio.h
112
[d81d057]1132007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * Makefile.am, console/lpc22xx_uart.h: Remove warnings, cleanup and do
116        not build SPARC code accidentally referenced in Makefile.am.
117
[0bb47ebd]1182007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * console/uart.c, startup/bspclean.c, startup/bspstart.c: Remove debug
121        print methods that are redundant with prntk and replace their usage
122        with printk.
123
[79a1352]1242007-05-01      Joel Sherrill <joel@OARcorp.com>
125
126        * Makefile.am: Tinkering to reduce .text size of minimum executable
127        from ~64K to ~47K.
128        * Renamed startup/exit.c to startup/bspclean.c
129          * startup/bspclean.c: New file.
130          * startup/exit.c: Removed.
131
[e890774]1322007-05-01      Ray Xu <xr@trasin.net>
133
134        * README, times, console/lpc22xx_uart.h, console/uart.c, include/bsp.h,
135        start/start.S, startup/bspstart.c, startup/exit.c, startup/linkcmds:
136        Update BSP to address changes between 4.7 and CVS head as well as to
137        address comments from Ralf and Joel.
138
[36c8d162]1392007-04-26      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * Makefile.am: Remove reference to ../../shared/main.c.
142
[c6523793]1432007-04-25      Ray Xu <xr@trasin.net>
144
145        * times: New (Initial submission).
146
[96981a48]1472007-04-25      Ralf Corsépius <ralf.corsepius@rtems.org>
148
[85457eb5]149        * Makefile.am: Include preinstall.am
[96981a48]150        * bsp_specs: Sync with modern GCC.
151
[f4392b88]1522007-04-25      Ray Xu <xr@trasin.net>
153
[4f181b3]154        * include/tm27.h, startup/bspstart.c, startup/exit.c,
[8a3c70b]155        startup/linkcmds, start/start.S: New (Initial submission).
[f4392b88]156        * Makefile.am, README, bsp_specs, configure.ac,
157        console/lpc22xx_uart.h, console/uart.c, include/bsp.h,
158        network/network.c: New (Initial submission).
Note: See TracBrowser for help on using the repository browser.