source: rtems/c/src/lib/libbsp/mips/hurricane/ChangeLog @ d2c730f8

4.104.115
Last change on this file since d2c730f8 was d2c730f8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/09 at 14:18:21

2009-03-12 Joel Sherrill <joel.sherrill@…>

PR 1385/cpukit

  • startup/exception.S: When the type rtems_boolean was switched to the C99 bool, the size changed from 4 bytes to 1 byte. The interrupt dispatching code accesses two boolean variables for scheduling purposes and the assembly implementations of this code did not get updated.
  • Property mode set to 100644
File size: 8.3 KB
Line 
12009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        PR 1385/cpukit
4        * startup/exception.S: When the type rtems_boolean was switched to the
5        C99 bool, the size changed from 4 bytes to 1 byte. The interrupt
6        dispatching code accesses two boolean variables for scheduling
7        purposes and the assembly implementations of this code did not get
8        updated.
9
102008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * bsp_specs: Move -e start from *link to *startfile to avoid warning
13        for undefined entry symbol when linking relocatables with binutils
14        2.19.
15
162008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
17
18        * Makefile.am, preinstall.am: Use shared tm27.h stub.
19        * include/tm27.h: Removed.
20
212008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * liblnk/regs.S: Remove (Renamed into liblnk/regs.h).
24        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
25        * Makefile.am, liblnk/pmon.S: Reflect renamer.
26
272008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
30        of building libbspstart.a, using automake-rules.
31
322008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * liblnk/regs.S: Remove (Renamed into liblnk/regs.h).
35        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
36        * Makefile.am, liblnk/pmon.S: Reflect renamer.
37
382008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
39
40        * Makefile.am: Eliminate *_SOURCES.
41
422008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
43
44        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
45        components.
46
472008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
48
49        * Makefile.am: Remove noinst_PROGRAMS (Unused).
50
512008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
52
53        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
54
552008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * start/start.S: Fix name of idtsim__exit.
58
592008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * configure.ac: Make letting boot_card() handle work area allocation
62        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
63        BSP_BOOTCARD_OPTIONS.
64
652008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
66
67        * start/start.S: bsp_cleanup() had the same code which was executed
68        when you returned from boot_card() to start.S. So just use the stub
69        bsp_cleanup() implementation and remove a file.
70        * startup/bspclean.c: Removed.
71
722008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * include/bsp.h: Eliminate tm27 items from bsp.h
75
762008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * include/bsp.h: Remove unnecessary boilerplate comments.
79
802008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
81
82        * Makefile.am, startup/linkcmds: Use top level shared
83        bsp_get_work_area() implementation.
84        * startup/bspgetworkarea.c: Removed.
85
862008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
87
88        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
89        rtems/libcsupport.h and rtems/libio.h.
90
912008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
92
93        * Makefile.am, configure.ac, startup/bspstart.c: Split out
94        bsp_get_work_area() into its own file and user BSP Framework to
95        perform more initialization.
96        * startup/bspgetworkarea.c: New file.
97
982008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * clock/ckinit.c: The Shared Memory Driver no longer requires the
101        special IOCTL in Clock_control. This was a hack which has existed
102        since before the Classic API Timer Manager was implemented. All
103        implementations of and references to Clock_control were removed.
104
1052008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
106
107        * console/console.c: Convert to "bool".
108
1092008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
112        Framework to ask the BSP where it has memory for the RTEMS Workspace
113        and C Program Heap. These collectively are referred to as work area.
114        If the BSP supports this, then it does not have to include code to
115        split the available memory between the two areas. This reduces the
116        amount of code in the BSP specific bspstart.c file. Additionally, the
117        shared framework can initialize the C Library, call
118        rtems_debug_enable(), and dirty the work area memory. Until most/all
119        BSPs support this new capability, if the BSP supports this, it should
120        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
121        When the transition is complete, this autoconf macro can be removed.
122
1232008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
124
125        * Makefile.am: Rework to avoid .rel files.
126
1272008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
128
129        * startup/bspstart.c: Refactored and renamed initialization routines to
130        rtems_initialize_data_structures, rtems_initialize_before_drivers,
131        rtems_initialize_device_drivers, and
132        rtems_initialize_start_multitasking. This opened the sequence up so
133        that bootcard() could provide a more robust and flexible framework
134        which is easier to explain and understand. This also lays the
135        groundwork for sharing the division of available memory between the
136        RTEMS workspace and heap and the C library initialization across all
137        BSPs.
138
1392008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        * startup/linkcmds: Add wildcard to gcc_except_table section so
142        programs compiled with gcc 4.3.x can link.
143
1442007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
145
146        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
147        Configuration Table. Use the RTEMS provided accessor macros to obtain
148        configuration fields.
149
1502007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
151
152        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
153        from CPU Table to Configuration Table. Eliminate CPU Table from all
154        ports. Delete references to CPU Table in all forms.
155
1562007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
157
158        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
159        Table fields to the Configuration Table. This included
160        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
161        do_zero_of_workspace, extra_mpci_receive_server_stack,
162        stack_allocate_hook, and stack_free_hook. As a side-effect of this
163        effort some multiprocessing code was made conditional and some style
164        clean up occurred.
165
1662007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
167
168        * clock/ckinit.c, startup/bspstart.c: Eliminate the
169        clicks_per_microsecond field in the MIPS CPU Table and define another
170        mechanism for drivers to obtain this information.
171
1722007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * bsp_specs: Remove qrtems_debug.
175
1762007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
177
178        * bsp_specs: Remove --oformat=...
179        Use old_link for -qrtems (Prevents *.link from killing endianness).
180
1812007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * bsp_specs: Remove lib (Now expected to exist in GCC).
184
1852007-03-12      Joel Sherrill <joel@OARcorp.com>
186
187        * clock/ckinit.c, startup/exception.S: Correct license URL and/or fix
188        mistake in copyright notice. Both of these mistakes appear to be from
189        code submitted after these changes were made previously.
190
1912007-03-10      Joel Sherrill <joel@OARcorp.com>
192
193        PR 1227/bsps
194        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
195        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
196
1972006-12-12      Ralf Corsépius <ralf.corsepius@rtems.org>
198
199        * include/bsp.h: Use uint32_t instead of unsigned32.
200
2012006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
202
203        * configure.ac: New BUG-REPORT address.
204
2052006-11-15      Joel Sherrill <joel@OARcorp.com>
206
207        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
208        file and simplified initialization.
209
2102006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
211
212        * Makefile.am: Remove superfluous -DASM.
213
2142006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
215
216        * configure.ac: Require autoconf-2.60. Require automake-1.10.
217
2182006-09-11      Chris Johns <chrisj@rtems.org>
219
220        * include/usc.h: Remove extra CRLF.
221       
2222006-03-22      Joel Sherrill <joel@OARcorp.com>
223
224        * include/.cvsignore: New file.
225
2262006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
227
228        * liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S, README,
229        bsp_specs, configure.ac, startup/inittlb.c, startup/bspstart.c,
230        startup/setvec.c, startup/ghlinkcmds, startup/idtmem.S,
231        startup/exception.S, startup/bspclean.c, startup/idttlb.S,
232        startup/linkcmds, include/usc.h, include/tm27.h, include/bsp.h,
233        include/coverhd.h, clock/clock.h, clock/clock.S, clock/ckinit.c,
234        Makefile.am, start/start.S, console/console.c, times:
235        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
236
237        * The HURRICANE BSP is for a Quick Logic Hurricane evaluation board.
238          This board has a PMC-Sierra RM5230 or RM5231 MIPS Processor.
Note: See TracBrowser for help on using the repository browser.