source: rtems/c/src/lib/libbsp/m68k/uC5282/ChangeLog @ 3e2f58a1

4.104.115
Last change on this file since 3e2f58a1 was 3e2f58a1, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/08 at 15:28:23

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

  • Makefile.am, configure.ac, include/bsp.h, startup/bspstart.c: Rename existing bsp_reset() to bsp_sysReset() since the prototype did not match the standard one. Add standard bsp_reset().
  • startup/bspreset.c: New file.
  • Property mode set to 100644
File size: 12.0 KB
Line 
12008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, include/bsp.h, startup/bspstart.c: Rename
4        existing bsp_reset() to bsp_sysReset() since the prototype did not
5        match the standard one. Add standard bsp_reset().
6        * startup/bspreset.c: New file.
7
82008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
9
10        * include/bsp.h: Remove unnecessary boilerplate comments.
11
122008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
13
14        * Makefile.am, startup/bspstart.c, startup/linkcmds: Use top level
15        shared bsp_get_work_area() implementation.
16
172008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
18
19        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
20        use of bsp_get_work_area() in its own file and rely on BSP Framework
21        to perform more initialization. Remove unnecessary includes of
22        rtems/libio.h and rtems/libcsupport.h.
23
242008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
27        phase, all prototypes were removed from bsp.h and empty
28        implementations were removed and made to use the shared stub.
29
302008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * timer/timer.c: Convert to "bool".
33
342008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * timer/timer.c: Eliminate empty function from every benchmark timer
37        driver. Fix spelling.
38
392008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
40
41        * timer/timer.c: Rename timer driver methods to follow RTEMS
42        programming conventions.
43
442008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
45
46        * console/console.c: Eliminate copies of switches to convert termios
47        Bxxx constants to xxx as an integer. Use the shared
48        termios_baud_to_number() routine to do the same conversion.
49
502008-05-19      Eric Norum <norume@aps.anl.gov>
51
52        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Back
53        out changes from 2008-05-16 -- they don't seem to work.
54
552008-05-16      Eric Norum <norume@aps.anl.gov>
56
57        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
58        shared version of bootstrap to set up workspace.
59
602008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
61
62        * Makefile.am: Rework to avoid .rel files.
63
642008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
65
66        * startup/bspstart.c: Refactored and renamed initialization routines to
67        rtems_initialize_data_structures, rtems_initialize_before_drivers,
68        rtems_initialize_device_drivers, and
69        rtems_initialize_start_multitasking. This opened the sequence up so
70        that bootcard() could provide a more robust and flexible framework
71        which is easier to explain and understand. This also lays the
72        groundwork for sharing the division of available memory between the
73        RTEMS workspace and heap and the C library initialization across all
74        BSPs.
75
762008-04-24      Eric Norum <norume@aps.anl.gov>
77
78    * startup/bspstart.c: More clean up of FPGA interrupts.
79
802008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
81
82        * console/console.c: Remove all references to console_reserve_resources
83        and termios_reserve_resources.
84
852008-04-07      Eric Norum <norume@aps.anl.gov>
86
87    * startup/bspstart.c: Clean up non-FPGA use of EPORT interrupts.
88
892008-04-07      Eric Norum <norume@aps.anl.gov>
90
91    * network/network.c: Track half/fullduplex changes from 4.7 branch.
92
932008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * startup/linkcmds: Add wildcard to gcc_except_table section so
96        programs compiled with gcc 4.3.x can link.
97
982007-12-17      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * clock/clock.c, include/bsp.h: Correct prototype of idle thread. Eric
101        Norum pointed out this was wrong.
102
1032007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
106        the Configuration Table. Use the RTEMS provided accessor macros to
107        obtain configuration fields.
108
1092007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * Makefile.am, startup/bspstart.c: Move interrupt_stack_size field from
112        CPU Table to Configuration Table. Eliminate CPU Table from all ports.
113        Delete references to CPU Table in all forms.
114
1152007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * include/bsp.h, startup/bspstart.c: Moved most of the remaining CPU
118        Table fields to the Configuration Table. This included
119        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
120        do_zero_of_workspace, extra_mpci_receive_server_stack,
121        stack_allocate_hook, and stack_free_hook. As a side-effect of this
122        effort some multiprocessing code was made conditional and some style
123        clean up occurred.
124
1252007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
126
127        * startup/bspstart.c: Eliminate the interrupt_vector_table field in the
128        m68k CPU Table since it is never read.
129
1302007-11-26      Eric Norum <norume@aps.anl.gov>
131
132        * network/network.c: Fix LED configuration to match uCDIMM.
133
1342007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * startup/linkcmds: Formatting.
137
1382007-10-14      Eric Norum <norume@aps.anl.gov>
139
140        * clock/clock.c: Add nanoseconds since tick support.
141
1422007-05-03      Joel Sherrill <joel@OARcorp.com>
143
144        * startup/linkcmds: Handle .data.* sections
145
1462007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * bsp_specs: Remove qrtems_debug.
149
1502007-03-12      Joel Sherrill <joel@OARcorp.com>
151
152        * clock/clock.c, console/console.c, include/bsp.h, include/coverhd.h,
153        include/tm27.h, network/network.c, start/start.S, startup/bspclean.c,
154        startup/bspstart.c, startup/init5282.c, startup/linkcmds,
155        timer/timer.c: Correct license URL and/or fix mistake in copyright
156        notice. Both of these mistakes appear to be from code submitted after
157        these changes were made previously.
158
1592007-03-11      Joel Sherrill <joel@OARcorp.com>
160
161        * startup/bspstart.c: Remove assignments of
162        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
163        value in boot_card.c
164
1652007-03-10      Joel Sherrill <joel@OARcorp.com>
166
167        PR 1227/bsps
168        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
169        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
170
1712006-12-14      Till Straumann <strauman@slac.stanford.edu>
172
173        * startup/bspstart.c: Changed BSP_installVME_isr() so that
174        the special handling of a 'FPGA interrupt' [this FPGA is *not*
175        present on the uC5282 module but is externally connected to
176        IRQ1 on Eric Norum's particular 'motherboard'] is only
177        activated when connecting to the special vectors > 192.
178        The change allows us ordinary users [:-)] to use IRQ1
179        normally, simply by connecting an ISR to vector 64+1...
180        Also, BSP_enable_irq_at_pic(), BSP_disable_irq_at_pic(),
181        BSP_irq_is_enabled_at_pic() were introduced (compat. with
182        some PPC BSPs).
183
1842006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
185
186        * configure.ac: New BUG-REPORT address.
187
1882006-11-15      Joel Sherrill <joel@OARcorp.com>
189
190        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
191        file and simplified initialization.
192
1932006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
194
195        * Makefile.am: Remove superfluous -DASM.
196
1972006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
198
199        * configure.ac: Require autoconf-2.60. Require automake-1.10.
200
2012006-08-01  Eric Norum <norume@aps.anl.gov>
202
203        * startup/bspstart.c: Add bsp_setbenv system call.
204
2052006-05-15  Eric Norum <norume@aps.anl.gov>
206
207        * startup/bspstart.c: Add checks for FPGA interrupt request overflow.
208                          Allow single spurious FPGA interrupt.
209
2102006-04-11  Eric Norum <norume@aps.anl.gov>
211
212        * startup/bspstart.c: Install default exception handler.
213
2142006-03-24  Eric Norum <norume@aps.anl.gov>
215
216        * startup/bspstart.c: Add missing reset-cause bit.
217
2182006-02-08      Joel Sherrill <joel@OARcorp.com>
219
220        * startup/linkcmds: Add sections required by newer gcc versions.
221
2222006-02-06  Eric Norum <norume@aps.anl.gov>
223
224    * clock/clock.c: Avoid division by zero.
225
2262006-01-29  Eric Norum <norume@aps.anl.gov>
227
228        * clock/clock.c, network/network.c, startup/bspstart.c:
229        Add an 'extended BSP' routine which returns the CPU load average.
230
2312006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
232
233        * Makefile.am: Add preinstall.am.
234
2352005-12-19  Eric Norum <norume@aps.anl.gov>
236
237    * startup/bspstart.c: Add another 'extended BSP' routine which return
238                          reboot status register information.
239
2402005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * bsp_specs: Remove %cpp.
243
2442005-11-11  Eric Norum <norume@aps.anl.gov>
245
246    * console/console.c: Clean up UART2 pin setup.  Protect pin setup code.
247
2482005-11-08  Eric Norum <norume@aps.anl.gov>
249
250    * console/console.c: Add code to set up pin assignments
251
2522005-11-07  Eric Norum <norume@aps.anl.gov>
253
254    * Almost everything: Assign copyright to OAR.
255
2562005-10-26  Eric Norum <norume@aps.anl.gov>
257
258        * README, network/network.c: Add support for forcing link parameters.
259
2602005-09-16  Eric Norum <norume@aps.anl.gov>
261
262        * startup/bspstart.c: Add bsp_reset bootrom call.
263        * startup/bspclean.c: Call bsp_reset from bsp_cleanup().
264
2652005-07-05  Eric Norum <norume@aps.anl.gov>
266
267        * startup/linkcmdc: Add .gnu.linkonce.b
268
2692005-07-05  Eric Norum <norume@aps.anl.gov>
270
271        * startup/bspstart.c: Ensure that CS[12]n are enabled.
272
2732005-06-28  Eric Norum <norume@aps.anl.gov>
274
275        * network/network.c: Add full/half-duplex auto-negotiation support.
276
2772005-06-20  Eric Norum <norume@aps.anl.gov>
278
279        * network/network.c: Clean up transmit buffer realignment.  Many
280        thanks to Mr. Kolja Waschk for identifying the problem.
281
2822005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
283
284        * include/bsp.h: New header guard.
285
2862005-05-23  Eric Norum <norume@aps.anl.gov>
287
288        * startup/linkcmds
289          startup/bspstart.c: Followup fix to Joel's/Chris's VBR changes.
290
2912005-05-11  Eric Norum <norume@aps.anl.gov>
292
293        * startup/bspstart.c: Followup fix to Joel's changes of 2005-05-03.
294
2952005-05-10  Eric Norum <norume@aps.anl.gov>
296
297        * network/network.c: Poke RDAR/TDAR every time.
298                         Add more diagnostic printout.
299
3002005-05-03      Joel Sherrill <joel@OARcorp.com>
301
302        * startup/init5282.c: Remove use of _Coldfire_VBR and use _VBR as rest
303        of m68k family.
304
3052005-04-26      Joel Sherrill <joel@OARcorp.com>
306
307        * network/network.c: Eliminate warnings.
308
3092005-04-20  Eric Norum <norume@aps.anl.gov>
310
311        * startup/bspstart.c
312        * network/network.c: Try instruction-only cache.
313
3142005-04-19  Eric Norum <norume@aps.anl.gov>
315
316        * startup/bspstart.c: Expose read/write copy of cache control registers
317                          in case some application diagnostic code wants to
318                          display the values.
319
3202005-04-13  Eric Norum <norume@aps.anl.gov>
321
322        * network/network.c: Add some more diagnostics.
323                         Poke TDAR/RDAR only when necessary.
324
3252005-04-10  Eric Norum <norume@aps.anl.gov>
326
327        * startup/bspstart.c: Set up IRQ1* handling properly.
328
3292005-04-08  Eric Norum <norume@aps.anl.gov>
330
331        * startup/bspstart.c: FPGA interrupt status register is now 16-bit.
332
3332005-03-12  Eric Norum <norume@aps.anl.gov>
334
335        * network/network.c: Add statistics counter for number of realigned bytes.
336
3372005-03-10  Eric Norum <norume@aps.anl.gov>
338
339        * startup/bspstart.c: Add NOP after CACR writes (work around hardware bug).
340
3412005-02-14  Eric Norum <norume@aps.anl.gov>
342
343        * startup/bspstart.c: Don't cache flash -- it messes up programming.
344
3452005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
346
347        * console/console.c, include/bsp.h, network/network.c,
348        startup/bspstart.c: Remove obsolete fixed size types.
349
3502005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
351
352        * startup/bspstart.c:
353        rtems_interrupt_catch(trampoline, vector, &old_handler).
354
3552005-02-03  Eric Norum <norume@aps.anl.gov>
356
357        * include/bsp.h, startup/bspstart.c: Add 'extended' BSP
358        support (pseudo-VME).
359
3602005-02-02  Eric Norum <norume@aps.anl.gov>
361
362        * network/network.c: Lock FEC/PHYS at 100 Mbs, full-duplex
363
3642005-02-01  Eric Norum <norume@aps.anl.gov>
365
366        * include/bsp.h, network/network.c, startup/bspstart.c: Add some
367          bootprom system calls.
368
3692005-02-01  Eric Norum <norume@aps.anl.gov>
370
371        * start/start.S, network/network.c: Place FEC buffer descriptors
372        in SRAM.  No longer need to worry about buffer descriptor caching.
373
3742005-01-31  Eric Norum <norume@aps.anl.gov>
375
376        * network/network.c, startup/bspstart.c: Processor doesn't snoop
377        FEC DMA so we must invalidate the cache appropriately.
378
3792005-01-31      Joel Sherrill <joel@OARcorp.com>
380
381        * .cvsignore: New file.
382
3832005-01-28      Eric Norum <norume@aps.anl.gov>
384
385        * uC5282: New BSP
386        * acinclude.m4: uC5282 BSP
387
Note: See TracBrowser for help on using the repository browser.