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

4.104.115
Last change on this file since 212f7b0 was 9957dbf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 21:39:40

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am: Use shared tm27.h stub.
  • include/tm27.h: Removed.
  • Property mode set to 100644
File size: 7.8 KB
Line 
12008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * Makefile.am, preinstall.am: Use shared tm27.h stub.
4        * include/tm27.h: Removed.
5
62008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * liblnk/regs.S: Remove (Renamed into liblnk/regs.h).
9        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
10        * Makefile.am, liblnk/pmon.S: Reflect renamer.
11
122008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
15        of building libbspstart.a, using automake-rules.
16
172008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * liblnk/regs.S: Remove (Renamed into liblnk/regs.h).
20        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
21        * Makefile.am, liblnk/pmon.S: Reflect renamer.
22
232008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
24
25        * Makefile.am: Eliminate *_SOURCES.
26
272008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
30        components.
31
322008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * Makefile.am: Remove noinst_PROGRAMS (Unused).
35
362008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
37
38        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
39
402008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * start/start.S: Fix name of idtsim__exit.
43
442008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
45
46        * configure.ac: Make letting boot_card() handle work area allocation
47        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
48        BSP_BOOTCARD_OPTIONS.
49
502008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
51
52        * start/start.S: bsp_cleanup() had the same code which was executed
53        when you returned from boot_card() to start.S. So just use the stub
54        bsp_cleanup() implementation and remove a file.
55        * startup/bspclean.c: Removed.
56
572008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * include/bsp.h: Eliminate tm27 items from bsp.h
60
612008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * include/bsp.h: Remove unnecessary boilerplate comments.
64
652008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
66
67        * Makefile.am, startup/linkcmds: Use top level shared
68        bsp_get_work_area() implementation.
69        * startup/bspgetworkarea.c: Removed.
70
712008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
74        rtems/libcsupport.h and rtems/libio.h.
75
762008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * Makefile.am, configure.ac, startup/bspstart.c: Split out
79        bsp_get_work_area() into its own file and user BSP Framework to
80        perform more initialization.
81        * startup/bspgetworkarea.c: New file.
82
832008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * clock/ckinit.c: The Shared Memory Driver no longer requires the
86        special IOCTL in Clock_control. This was a hack which has existed
87        since before the Classic API Timer Manager was implemented. All
88        implementations of and references to Clock_control were removed.
89
902008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
91
92        * console/console.c: Convert to "bool".
93
942008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
97        Framework to ask the BSP where it has memory for the RTEMS Workspace
98        and C Program Heap. These collectively are referred to as work area.
99        If the BSP supports this, then it does not have to include code to
100        split the available memory between the two areas. This reduces the
101        amount of code in the BSP specific bspstart.c file. Additionally, the
102        shared framework can initialize the C Library, call
103        rtems_debug_enable(), and dirty the work area memory. Until most/all
104        BSPs support this new capability, if the BSP supports this, it should
105        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
106        When the transition is complete, this autoconf macro can be removed.
107
1082008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
109
110        * Makefile.am: Rework to avoid .rel files.
111
1122008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
113
114        * startup/bspstart.c: Refactored and renamed initialization routines to
115        rtems_initialize_data_structures, rtems_initialize_before_drivers,
116        rtems_initialize_device_drivers, and
117        rtems_initialize_start_multitasking. This opened the sequence up so
118        that bootcard() could provide a more robust and flexible framework
119        which is easier to explain and understand. This also lays the
120        groundwork for sharing the division of available memory between the
121        RTEMS workspace and heap and the C library initialization across all
122        BSPs.
123
1242008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * startup/linkcmds: Add wildcard to gcc_except_table section so
127        programs compiled with gcc 4.3.x can link.
128
1292007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
130
131        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
132        Configuration Table. Use the RTEMS provided accessor macros to obtain
133        configuration fields.
134
1352007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
136
137        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
138        from CPU Table to Configuration Table. Eliminate CPU Table from all
139        ports. Delete references to CPU Table in all forms.
140
1412007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
142
143        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
144        Table fields to the Configuration Table. This included
145        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
146        do_zero_of_workspace, extra_mpci_receive_server_stack,
147        stack_allocate_hook, and stack_free_hook. As a side-effect of this
148        effort some multiprocessing code was made conditional and some style
149        clean up occurred.
150
1512007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
152
153        * clock/ckinit.c, startup/bspstart.c: Eliminate the
154        clicks_per_microsecond field in the MIPS CPU Table and define another
155        mechanism for drivers to obtain this information.
156
1572007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * bsp_specs: Remove qrtems_debug.
160
1612007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
162
163        * bsp_specs: Remove --oformat=...
164        Use old_link for -qrtems (Prevents *.link from killing endianness).
165
1662007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
167
168        * bsp_specs: Remove lib (Now expected to exist in GCC).
169
1702007-03-12      Joel Sherrill <joel@OARcorp.com>
171
172        * clock/ckinit.c, startup/exception.S: Correct license URL and/or fix
173        mistake in copyright notice. Both of these mistakes appear to be from
174        code submitted after these changes were made previously.
175
1762007-03-10      Joel Sherrill <joel@OARcorp.com>
177
178        PR 1227/bsps
179        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
180        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
181
1822006-12-12      Ralf Corsépius <ralf.corsepius@rtems.org>
183
184        * include/bsp.h: Use uint32_t instead of unsigned32.
185
1862006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
187
188        * configure.ac: New BUG-REPORT address.
189
1902006-11-15      Joel Sherrill <joel@OARcorp.com>
191
192        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
193        file and simplified initialization.
194
1952006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
196
197        * Makefile.am: Remove superfluous -DASM.
198
1992006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
200
201        * configure.ac: Require autoconf-2.60. Require automake-1.10.
202
2032006-09-11      Chris Johns <chrisj@rtems.org>
204
205        * include/usc.h: Remove extra CRLF.
206       
2072006-03-22      Joel Sherrill <joel@OARcorp.com>
208
209        * include/.cvsignore: New file.
210
2112006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
212
213        * liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S, README,
214        bsp_specs, configure.ac, startup/inittlb.c, startup/bspstart.c,
215        startup/setvec.c, startup/ghlinkcmds, startup/idtmem.S,
216        startup/exception.S, startup/bspclean.c, startup/idttlb.S,
217        startup/linkcmds, include/usc.h, include/tm27.h, include/bsp.h,
218        include/coverhd.h, clock/clock.h, clock/clock.S, clock/ckinit.c,
219        Makefile.am, start/start.S, console/console.c, times:
220        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
221
222        * The HURRICANE BSP is for a Quick Logic Hurricane evaluation board.
223          This board has a PMC-Sierra RM5230 or RM5231 MIPS Processor.
Note: See TracBrowser for help on using the repository browser.