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

4.104.115
Last change on this file since 92b73bec was 92b73bec, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/11/09 at 04:09:43

2009-12-11 Ralf Corsépius <ralf.corsepius@…>

  • console/console-io.c: Let eZKit533_BSP_poll_char return int.
  • Property mode set to 100644
File size: 7.9 KB
Line 
12009-12-11      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * console/console-io.c: Let eZKit533_BSP_poll_char return int.
4
52009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * make/custom/eZKit533.cfg: Remove RTEMS_BSP_FAMILY.
8
92009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * make/custom/eZKit533.cfg: Switch to compiling at O2.
12
132009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * startup/bspstart.c: Add missing prototype.
16
172009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * configure.ac: Don't add -ansi -fasm to CFLAGS.
20
212009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * make/custom/eZKit533.cfg: New (relocated from /make/custom).
24
252009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
28
29 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
32        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
33        have the same options.
34
352008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
36
37        * bsp_specs: Move -e start from *link to *startfile to avoid warning
38        for undefined entry symbol when linking relocatables with binutils
39        2.19.
40
412008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
42
43        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
44        of building libbspstart.a, using automake-rules.
45
462008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
47
48        * Makefile.am: Eliminate *_SOURCES.
49
502008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
51
52        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
53        components.
54
552008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
56
57        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
58
592008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * include/bsp.h: Rely on clock driver to determine when we should use
62        fast idle.
63
642008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
65
66        * configure.ac: Add BFIN_ON_SKYEYE define to disable features not
67        supported on simulator.
68
692008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * configure.ac: Make letting boot_card() handle work area allocation
72        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
73        BSP_BOOTCARD_OPTIONS.
74
752008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * include/bsp.h: Remove unnecessary boilerplate comments.
78
792008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * Makefile.am, startup/linkcmds: Use top level shared
82        bsp_get_work_area() implementation.
83
842008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * startup/bspstart.c: Remove unnecessary includes of
87        rtems/libcsupport.h and rtems/libio.h.
88
892008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
90
91        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
92        Split out bsp_get_work_area() into its own file and user BSP
93        Framework to perform more initialization.
94
952008-08-18      Allan Hessenflow <allanh@kallisti.com>
96
97        * Makefile.am, console/console-io.c, startup/bspstart.c: Update to use
98        shared libcpu version of code implemented as part of bf537Stamp
99        effort.
100
1012008-08-15      Joel Sherrill <joel.sherrill@OARcorp.com>
102
103        * include/bsp.h: Fix CVS Id.
104
1052008-06-04      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * Makefile.am, preinstall.am: Need cplb.h
108
1092008-05-16      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * preinstall.am, console/console-io.c: Install cplb.h and use it.
112
1132008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
116        Framework to ask the BSP where it has memory for the RTEMS Workspace
117        and C Program Heap. These collectively are referred to as work area.
118        If the BSP supports this, then it does not have to include code to
119        split the available memory between the two areas. This reduces the
120        amount of code in the BSP specific bspstart.c file. Additionally, the
121        shared framework can initialize the C Library, call
122        rtems_debug_enable(), and dirty the work area memory. Until most/all
123        BSPs support this new capability, if the BSP supports this, it should
124        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
125        When the transition is complete, this autoconf macro can be removed.
126
1272008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
128
129        * Makefile.am: Rework to avoid .rel files.
130
1312008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
132
133        * startup/bspstart.c: Refactored and renamed initialization routines to
134        rtems_initialize_data_structures, rtems_initialize_before_drivers,
135        rtems_initialize_device_drivers, and
136        rtems_initialize_start_multitasking. This opened the sequence up so
137        that bootcard() could provide a more robust and flexible framework
138        which is easier to explain and understand. This also lays the
139        groundwork for sharing the division of available memory between the
140        RTEMS workspace and heap and the C library initialization across all
141        BSPs.
142
1432008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
144
145        * startup/linkcmds: Add wildcard to gcc_except_table section so
146        programs compiled with gcc 4.3.x can link.
147
1482008-02-15      Joel Sherrill <joel.sherrill@oarcorp.com>
149
150        * preinstall.am: Add cplb.h
151
1522007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
153
154        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
155        Configuration Table. Use the RTEMS provided accessor macros to obtain
156        configuration fields.
157
1582007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
159
160        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
161        from CPU Table to Configuration Table. Eliminate CPU Table from all
162        ports. Delete references to CPU Table in all forms.
163
1642007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
165
166        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
167        Table fields to the Configuration Table. This included
168        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
169        do_zero_of_workspace, extra_mpci_receive_server_stack,
170        stack_allocate_hook, and stack_free_hook. As a side-effect of this
171        effort some multiprocessing code was made conditional and some style
172        clean up occurred.
173
1742007-09-24      Chris Johns <chrisj@rtems.org>
175
176        * include/bsp.h: Do not use C++ comments.
177
1782007-09-20      Joel Sherrill <joel.sherrill@OARcorp.com>
179
180        * preinstall.am: Add cplb.h.
181        * startup/bspstart.c: Add cast of constant.
182
1832007-09-10      Alain Schaefer <alani@easc.ch>
184
185        * preinstall.am, startup/bspstart.c, startup/linkcmds: Complete earlier
186        patch.
187        * include/cplb.h: New file.
188
1892007-09-10      Alain Schaefer <alani@easc.ch>
190
191        * startup/bspstart.c: Add a useful routine to program memory protection
192        in bfin. It is not used but a user of ezKit533 can customize its bsp
193        and use this function.
194
1952007-05-24      Alain Schaefer <alani@easc.ch>
196
197        * startup/bspstart.c: Fix a problem in the InitEBIU method.
198
1992007-04-17      Joel Sherrill <joel@OARcorp.com>
200
201        * include/bsp.h, startup/bspstart.c: Fix compile errors and address
202        most warnings about constants being too large.
203
2042007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
205
206        * bsp_specs: Remove qrtems_debug.
207
2082007-03-11      Joel Sherrill <joel@OARcorp.com>
209
210        * startup/bspstart.c: Remove assignments of
211        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
212        value in boot_card.c
213
2142006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
215
216        * configure.ac: New BUG-REPORT address.
217
2182006-11-20  Ralf Corsépius <ralf.corsepius@rtems.org>
219
220        * include/coverhd.h: Remove (Use shared default template instead).
221
2222006-11-15      Joel Sherrill <joel@OARcorp.com>
223
224        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
225        file and simplified initialization.
226
2272006-11-11  Ralf Corsépius <ralf.corsepius@rtems.org>
228
229        * startup/linkcmds: Use___start_set_sysctl_set, ___stop_set_sysctl_set
230        instead of __start_set_sysctl_set, __stop_set_sysctl_set
231        (bfin uses '_' prefixed c-symbols.)
232
2332006-11-10  Alain Schaefer <alani@easc.ch>
234
235        * startup/linkcmds: Put .fini into sdram.
236        Add __edata, __etext.
237
2382006-10-26      Joel Sherrill <joel@OARcorp.com>
239
240        * configure, include/bspopts.h.in: Removed.
241
2422006-10-24      Joel Sherrill <joel@OARcorp.com>
243
244        * include/bsp.h: Eliminate hi, lo, HI, LO, and MK_BMSK.
245
2462006-06-05  Alain Schaefer <alani@easc.ch>
247
248    * all files : Initial copy and port from no_cpu
Note: See TracBrowser for help on using the repository browser.