source: rtems/c/src/lib/libbsp/bfin/eZKit533/ChangeLog @ bcd26b2

4.115
Last change on this file since bcd26b2 was bcd26b2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/11 at 11:58:04

2011-02-11 Ralf Corsépius <ralf.corsepius@…>

  • include/tm27.h, startup/bspstart.c: Use "asm" instead of "asm" for improved c99-compliance.
  • Property mode set to 100644
File size: 8.3 KB
Line 
12011-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * include/tm27.h, startup/bspstart.c:
4        Use "__asm__" instead of "asm" for improved c99-compliance.
5
62011-02-02      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * configure.ac: Require autoconf-2.68, automake-1.11.1.
9
102010-08-15      Joel Sherrill <joel.sherrilL@OARcorp.com>
11
12        * Makefile.am: Do not use .rel files for libbsp pieces.
13
142009-12-11      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * console/console-io.c: Let eZKit533_BSP_poll_char return int.
17
182009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * make/custom/eZKit533.cfg: Remove RTEMS_BSP_FAMILY.
21
222009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * make/custom/eZKit533.cfg: Switch to compiling at O2.
25
262009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * startup/bspstart.c: Add missing prototype.
29
302009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * configure.ac: Don't add -ansi -fasm to CFLAGS.
33
342009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
35
36        * make/custom/eZKit533.cfg: New (relocated from /make/custom).
37
382009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
39
40        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
41
42 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
43
44        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
45        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
46        have the same options.
47
482008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
49
50        * bsp_specs: Move -e start from *link to *startfile to avoid warning
51        for undefined entry symbol when linking relocatables with binutils
52        2.19.
53
542008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
55
56        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
57        of building libbspstart.a, using automake-rules.
58
592008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
60
61        * Makefile.am: Eliminate *_SOURCES.
62
632008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
64
65        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
66        components.
67
682008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
71
722008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * include/bsp.h: Rely on clock driver to determine when we should use
75        fast idle.
76
772008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * configure.ac: Add BFIN_ON_SKYEYE define to disable features not
80        supported on simulator.
81
822008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
83
84        * configure.ac: Make letting boot_card() handle work area allocation
85        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
86        BSP_BOOTCARD_OPTIONS.
87
882008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * include/bsp.h: Remove unnecessary boilerplate comments.
91
922008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
93
94        * Makefile.am, startup/linkcmds: Use top level shared
95        bsp_get_work_area() implementation.
96
972008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
98
99        * startup/bspstart.c: Remove unnecessary includes of
100        rtems/libcsupport.h and rtems/libio.h.
101
1022008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
103
104        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
105        Split out bsp_get_work_area() into its own file and user BSP
106        Framework to perform more initialization.
107
1082008-08-18      Allan Hessenflow <allanh@kallisti.com>
109
110        * Makefile.am, console/console-io.c, startup/bspstart.c: Update to use
111        shared libcpu version of code implemented as part of bf537Stamp
112        effort.
113
1142008-08-15      Joel Sherrill <joel.sherrill@OARcorp.com>
115
116        * include/bsp.h: Fix CVS Id.
117
1182008-06-04      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * Makefile.am, preinstall.am: Need cplb.h
121
1222008-05-16      Joel Sherrill <joel.sherrill@OARcorp.com>
123
124        * preinstall.am, console/console-io.c: Install cplb.h and use it.
125
1262008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
129        Framework to ask the BSP where it has memory for the RTEMS Workspace
130        and C Program Heap. These collectively are referred to as work area.
131        If the BSP supports this, then it does not have to include code to
132        split the available memory between the two areas. This reduces the
133        amount of code in the BSP specific bspstart.c file. Additionally, the
134        shared framework can initialize the C Library, call
135        rtems_debug_enable(), and dirty the work area memory. Until most/all
136        BSPs support this new capability, if the BSP supports this, it should
137        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
138        When the transition is complete, this autoconf macro can be removed.
139
1402008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * Makefile.am: Rework to avoid .rel files.
143
1442008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
145
146        * startup/bspstart.c: Refactored and renamed initialization routines to
147        rtems_initialize_data_structures, rtems_initialize_before_drivers,
148        rtems_initialize_device_drivers, and
149        rtems_initialize_start_multitasking. This opened the sequence up so
150        that bootcard() could provide a more robust and flexible framework
151        which is easier to explain and understand. This also lays the
152        groundwork for sharing the division of available memory between the
153        RTEMS workspace and heap and the C library initialization across all
154        BSPs.
155
1562008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
157
158        * startup/linkcmds: Add wildcard to gcc_except_table section so
159        programs compiled with gcc 4.3.x can link.
160
1612008-02-15      Joel Sherrill <joel.sherrill@oarcorp.com>
162
163        * preinstall.am: Add cplb.h
164
1652007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
166
167        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
168        Configuration Table. Use the RTEMS provided accessor macros to obtain
169        configuration fields.
170
1712007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
172
173        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
174        from CPU Table to Configuration Table. Eliminate CPU Table from all
175        ports. Delete references to CPU Table in all forms.
176
1772007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
178
179        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
180        Table fields to the Configuration Table. This included
181        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
182        do_zero_of_workspace, extra_mpci_receive_server_stack,
183        stack_allocate_hook, and stack_free_hook. As a side-effect of this
184        effort some multiprocessing code was made conditional and some style
185        clean up occurred.
186
1872007-09-24      Chris Johns <chrisj@rtems.org>
188
189        * include/bsp.h: Do not use C++ comments.
190
1912007-09-20      Joel Sherrill <joel.sherrill@OARcorp.com>
192
193        * preinstall.am: Add cplb.h.
194        * startup/bspstart.c: Add cast of constant.
195
1962007-09-10      Alain Schaefer <alani@easc.ch>
197
198        * preinstall.am, startup/bspstart.c, startup/linkcmds: Complete earlier
199        patch.
200        * include/cplb.h: New file.
201
2022007-09-10      Alain Schaefer <alani@easc.ch>
203
204        * startup/bspstart.c: Add a useful routine to program memory protection
205        in bfin. It is not used but a user of ezKit533 can customize its bsp
206        and use this function.
207
2082007-05-24      Alain Schaefer <alani@easc.ch>
209
210        * startup/bspstart.c: Fix a problem in the InitEBIU method.
211
2122007-04-17      Joel Sherrill <joel@OARcorp.com>
213
214        * include/bsp.h, startup/bspstart.c: Fix compile errors and address
215        most warnings about constants being too large.
216
2172007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
218
219        * bsp_specs: Remove qrtems_debug.
220
2212007-03-11      Joel Sherrill <joel@OARcorp.com>
222
223        * startup/bspstart.c: Remove assignments of
224        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
225        value in boot_card.c
226
2272006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
228
229        * configure.ac: New BUG-REPORT address.
230
2312006-11-20  Ralf Corsépius <ralf.corsepius@rtems.org>
232
233        * include/coverhd.h: Remove (Use shared default template instead).
234
2352006-11-15      Joel Sherrill <joel@OARcorp.com>
236
237        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
238        file and simplified initialization.
239
2402006-11-11  Ralf Corsépius <ralf.corsepius@rtems.org>
241
242        * startup/linkcmds: Use___start_set_sysctl_set, ___stop_set_sysctl_set
243        instead of __start_set_sysctl_set, __stop_set_sysctl_set
244        (bfin uses '_' prefixed c-symbols.)
245
2462006-11-10  Alain Schaefer <alani@easc.ch>
247
248        * startup/linkcmds: Put .fini into sdram.
249        Add __edata, __etext.
250
2512006-10-26      Joel Sherrill <joel@OARcorp.com>
252
253        * configure, include/bspopts.h.in: Removed.
254
2552006-10-24      Joel Sherrill <joel@OARcorp.com>
256
257        * include/bsp.h: Eliminate hi, lo, HI, LO, and MK_BMSK.
258
2592006-06-05  Alain Schaefer <alani@easc.ch>
260
261    * all files : Initial copy and port from no_cpu
Note: See TracBrowser for help on using the repository browser.