source: rtems/c/src/lib/libbsp/powerpc/shared/ChangeLog @ c483a4e

4.104.114.84.95
Last change on this file since c483a4e was c483a4e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/18/03 at 06:22:53

Fix broken ChangeLog? entries.

  • Property mode set to 100644
File size: 14.7 KB
Line 
12003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * Makefile.am: Reflect having moved automake/.
4        * bootloader/Makefile.am: Reflect having moved automake/.
5        * clock/Makefile.am: Reflect having moved automake/.
6        * console/Makefile.am: Reflect having moved automake/.
7        * include/Makefile.am: Reflect having moved automake/.
8        * irq/Makefile.am: Reflect having moved automake/.
9        * motorola/Makefile.am: Reflect having moved automake/.
10        * openpic/Makefile.am: Reflect having moved automake/.
11        * pci/Makefile.am: Reflect having moved automake/.
12        * residual/Makefile.am: Reflect having moved automake/.
13        * start/Makefile.am: Reflect having moved automake/.
14        * startup/Makefile.am: Reflect having moved automake/.
15        * vectors/Makefile.am: Reflect having moved automake/.
16        * vme/Makefile.am: Reflect having moved automake/.
17
182003-08-05      Till Strauman <strauman@slac.stanford.edu>
19
20        PR 437/bsps
21        * irq/irc.c: calls to bspIo/printk must not use '%i' format which is
22        apparently not supported
23        * pci/pci.c: calls to bspIo/printk must not use '%i' format which is
24        apparently not supported
25
262003-07-18      Till Straumann <strauman@slac.stanford.edu>
27
28        PR 288/rtems
29        * irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
30        maintained and any BSP which does not do so will trip a panic in the
31        shared code.
32
332003-07-18      Till Straumann <strauman@slac.stanford.edu>
34
35        PR 415/bsps
36        * pci/detect_raven_bridge.c, startup/bspstart.c:
37        This patch reverts enabling MCP interrupts for the motorola_powerpc
38        BSPs. REASON: pci config space scanning (as e.g. done by the DEC
39        Ethernet driver) would raise machine check exceptions.
40
412003-07-16      Greg Menke <gregory.menke@gsfc.nasa.gov>
42
43        PR 428/bsps
44        PR 432/bsps
45        * bootloader/pci.c: Re-instated code that prevents remapping small
46        IO regions, which if remapped would cause i8259 registers to move
47        out from under the #define'd base addresses.
48        * startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
49        megs, I incorrectly had extended it which would cause problems with
50        PCI devices that defined prefetchable memory.
51
522003-07-16      Greg Menke <gregory.menke@gsfc.nasa.gov>
53        PR 432/bsps
54        * bootloader/pci.c: Re-instated code that prevents remapping small
55        IO regions, which if remapped would cause i8259 registers to move
56        out from under the #define'd base addresses.
57        * startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
58        megs, I incorrectly had extended it which would cause problems with
59        PCI devices that defined prefetchable memory.
60       
612003-06-13      Greg Menke <gregory.menke@gsfc.nasa.gov>
62
63        PR 405/bsps
64        * bootloader/pci.c: Added support for configuring devices for pci
65        busses > 0
66        * pci/pci.c, pci/pci.h: Added FixupPCI() to store vectors in the
67        INTERRUPT_LINE register of pci devices any # of hops away
68        from the host processor.
69        * motorola/motorola.c, motorola/motorola.h: Added interrupt
70        routing tables in support of FixupPCI.  This is board-specific,
71        each board will have to supply information for FixupPCI() to do
72        anything for it.
73        * startup/bspstart.c: Extended bat2 to cover entire PCI address space.
74        * irq/irq.c, irq/irq.h: Added support for shared interrupts.
75        Existing single hander vectors are undisturbed, a new function
76        added to allow adding/removing handlers from a vector.
77
782003-06-13  Till Straumann <strauman@slac.stanford.edu>
79
80        PR 415/bsps
81        * include/bsp.h, pci/detect_raven_bridge.c, startup/bspstart.c:
82        Support enabling MCP exceptions on the host bridge. This can
83        be used for memory probing on the VME bus.
84
852003-04-15      Joel Sherrill <joel@OARcorp.com>
86
87        PR 386/bsps
88        * vme/vmeconfig.c: Removed declaration of _BSP_vme_bridge_irq.
89
902003-04-10  Till Straumann <strauman@slac.stanford.edu>
91
92        PR 379/bsps
93        * console/polled_io.c: libcpu provides 'printk' already.
94        Therefore, the implementation in this file was removed (still
95        used for the bootloader, though).  It now provides BSP_output_char()
96        for libcpu's printk().
97        * console/uart.c, console/uart.h: BSP_output_char_via_serial()
98        prototype changed to match the BSP_output_char_function_type.  Note
99        that the motorola BSPs use polled-io for the output_char routine, not
100        the uart.c version. The latter can be used be other BSPs however
101        (e.g. SVGM).
102        * console/console.c, console/consoleIo.h, console/polled_io.c,
103        irq/irq_init.c, openpic/openpic.c, pci/detect_raven_bridge.c:
104        Unfortunately, the supported 'printk' format string subset of the
105        polled-io and libcpu implementations are different - hence, a few
106        format strings in the ppc/shared BSP were changed.
107
1082003-04-10      Joel Sherrill <joel@OARcorp.com>
109
110        PR 383/bsps
111        * irq/irq.c: Fix bug introduced by conflicts in previous patches.
112
1132003-03-25  Till Straumann <strauman@slac.stanford.edu>
114
115        PR 360/bsps
116        * irq/irq.c, irq/irq_init.c, openpic/openpic.c, openpic/openpic.h:
117        BSP code had set the task priority register multiple times of
118        the OpenPIC instead of setting the individual source priorities.
119        This patch adds openpic_get_source_priority() and
120        openpic_set_source_priority() calls and lets IRQ management code
121        use them.
122
1232003-03-25  Till Straumann <strauman@slac.stanford.edu>
124
125        PR 349/bsps
126        * irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
127        on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
128        code on non-VME BSPs without triggering linkage of the vmeUniverse
129        driver.
130
1312003-03-25  Till Straumann <strauman@slac.stanford.edu>
132
133        PR 349/bsps
134        * irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
135        on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
136        code on non-VME BSPs without triggering linkage of the vmeUniverse
137        driver.
138
1392003-03-18  Till Straumann <strauman@slac.stanford.edu>
140
141        PR 356/bsps
142        This patch makes RTEMS/powerpc/shared EABI compliant.
143        * irq/irq_init.c, start/Makefile.am, start/start.S, startup/bspstart.c,
144        startup/pgtbl_setup.c, vectors/vectors.h, vectors/vectors_init.c:
145        zero_bss() should clear not only bss but sbss and sbss2
146        also (this is probably a bugfix, as sbss/sbss2 are
147        probably used even if -msdata=eabi is not specified).
148        * start/rtems_crti.S: New file which must
149        be linked immediately after ecrti.o. rtems_crti.o contains
150        a code snippet who lets __init() return immediately. Also,
151        a new entry point '_init' to the C++ Ctors is generated
152        for use by the RTEMS Thread_Handler.
153
1542003-02-20      Till Straumann <strauman@slac.stanford.edu>
155
156        PR 349/bsps
157        * console/polled_io.c, console/reboot.c, irq/irq.c, irq/irq_asm.S,
158        irq/irq_init.c, openpic/Makefile.am, startup/linkcmds,
159        vectors/vectors.S, vectors/vectors_init.c:
160          - install the 'openpic.h' and 'pci.h' headers
161          - avoid a name clash by renaming 'vsprintf' & friends
162            to 'k_vsprintf' etc.
163          - let 'rtemsReboot' print a stack trace (in case an 'assert' failed)
164          - irq.c:
165             * fix: remove implicit assumption that ISA interrupt vectors start
166                    at 0
167             * add BSP hook to let a VME interrupt acknowledge the PCI/openpic
168               IRQ. (SEE ALSO THE ppc-sharedbsp-vme.diff patch)
169          - fix: EABI compliance; isr/exception lowlevel handlers must not
170                 clobber R2 or R13
171          - fix: openpic_init was called with the polarity/senses tables
172                 swapped (fixed wrong order of arguments)
173          - cosmetics: use new _read_SPRXX() _write_SPRXX() macros
174
1752003-02-20      Till Straumann <strauman@slac.stanford.edu>
176
177        PR 349/bsps
178        * startup/pgtbl_setup.c, startup/pgtbl_activate.c: New files
179        * startup/Makefile.am, startup/bspstart.c, startup/linkcmds:
180        Let the powerpc/shared (+derived) BSPs use pagetable support
181        from libcpu.
182
1832003-02-20      Till Straumann <strauman@slac.stanford.edu>
184
185        PR 349/bsps
186        * vme/.cvsignore, vme/Makefile.am, vme/VME.h, vme/VMEConfig.h,
187        vme/vmeconfig.c: Add glue to the powerpc/shared BSP to use
188        the vmeUniverse VME-PCI bridge driver.
189
1902003-02-20      Till Straumann <strauman@slac.stanford.edu>
191
192        PR 349/bsps
193        * console/console.c, console/uart.c, console/uart.h: implement
194        IOCTLs for the serial (UART) console to install/retrieve a BREAK-IRQ
195        callback.  The callback routine (if installed) is invoked from the
196        UART ISR when a BREAK interrupt is detected.  This can be used
197        e.g. to enforce a "hotkey" reboot a la vxWorks Ctrl-X (although we
198        use the serial line break condition) NOTE: The callback runs in
199        ISR context. 
200
2012003-01-20      Joel Sherrill <joel@OARcorp.com>
202
203        * startup/linkcmds*: Add FreeBSD sysctl() sections.
204
2052002-12-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
206 
207        * bootloader/head.S: Added support for optional debug via PPCbug.
208        Also turn off mmu/caches for the bootstrap phase, which seems to
209        cause trouble with the 603.  The cpu init functions in the bsp
210        get all that stuff going properly.
211
2122002-12-19      Joel Sherrill <joel@OARcorp.com>
213
214        * console/console.c: Removed __assert() which conflicts with newlib.
215
2162002-11-17      Greg Menke <gregory.menke@gsfc.nasa.gov>
217
218        * irq/irq_init.c, motorola/motorola.c: Support for MTX603e.
219
2202002-10-31      Joel Sherrill <joel@OARcorp.com>
221
222        * bootloader/em86.c, console/inch.c, console/polled_io.c, irq/irq.c,
223        motorola/motorola.c, pci/detect_raven_bridge.c,
224        vectors/vectors_init.c: Removed warnings.
225
2262002-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
227
228        * bootloader/em86real.S: Fix syntax error in comment near line 1185.
229
2302001-05-14      Till Straumann <strauman@slac.stanford.edu>
231
232        * bootloader/misc.c, console/Makefile.am, console/console.c,
233        console/consoleIo.h, console/inch.c, console/polled_io.c,
234        console/uart.c, console/uart.h, include/bsp.h, irq/Makefile.am,
235        irq/irq.c, irq/irq.h, irq/irq_init.c, openpic/openpic.c,
236        openpic/openpic.h, pci/Makefile.am, pci/pci.c, pci/pci.h,
237        residual/Makefile.am, start/start.S, startup/bspstart.c,
238        vectors/vectors.S, vectors/vectors.h, vectors/vectors_init.c:
239        Per PR216, "libbsp/powerpc/shared" BSP has been modified considerably
240        with the goal to make it more flexible and reusable by other
241        BSPs. The main strategies were:
242            - eliminate hardcoded base addresses; devices use offsets
243              and a BSP defined base address.
244            - separate functionality into different files (e.g. reboot from
245              inch.c to reboot.c) which can be overridden by a 'derived' BSP.
246            - separate initialization code into separate files (e.g.  PCI
247              bridge detection/initialization was separated from the more
248              generic PCI access routines), also to make it easier for
249              'derived' BSPs to substitute their own initialization code.
250        There are also a couple of enhancements and fixes:
251            - IRQ handling code now has a hook for attaching a VME bridge.
252            - OpenPIC is now explicitely initialized (polarities, senses).
253              Eliminated the implicit assumption on the presence of an ISA PIC.
254            - UART and console driver now supports more than 1 port. The current
255              maximum of 2 can easily be extended by enlarging a table (it
256              would even be easier if the ISR API was not broken by design).
257            - fixed polled_io.c so it correctly supports console on COM2
258            - fixed TLB invalidation code (start.S).
259            - exception handler prints a stack backtrace.
260            - added BSP_pciFindDevice() to scan the pci bus for a particular
261              vendor/device/instance.
262
2632001-05-09      Joel Sherrill <joel@OARcorp.com>
264
265        * startup/linkcmds: In support of gcc 3.1, added one of more
266        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
267        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
268        and direction of segments to memory regions may also have been
269        addressed.  This was a sweep across all BSPs.
270 
2712002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * bootloader/exception.S: Reflect changes to <rtems/score/cpu.h>.
274        * bootloader/head.S: Ditto.
275        * bootloader/misc.c: Ditto.
276        * console/polled_io.c: Ditto.
277        * irq/irq.c: Ditto.
278        * irq/irq_asm.S: Ditto.
279        * irq/irq_init.c: Include <rtems/bspIo.h>.
280        * start/start.S: Reflect changes to <rtems/score/cpu.h>.
281        * vectors/vectors.S: Ditto.
282
2832002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * startup/bspstart.c: Include <libcpu/cpuIdent.h>.
286
2872001-04-08      Joel Sherrill <joel@OARcorp.com>
288
289        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
290 
2912002-04-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * residual/residual.c: Include <string.h>.
294        * vectors/vectors_init.c: Include <rtems/bspIo.h> for printk.
295        * bootloader/mm.c: Ditto.
296        * bootloader/pci.c: Ditto.
297        * console/console.c: Ditto.
298        * openpic/openpic.c: Ditto.
299
3002002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * bootloader/Makefile.am: Remove AUTOMAKE_OPTIONS.
303        * Makefile.am: Remove AUTOMAKE_OPTIONS.
304        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
305        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
306        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
307        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
308        * motorola/Makefile.am: Remove AUTOMAKE_OPTIONS.
309        * openpic/Makefile.am: Remove AUTOMAKE_OPTIONS.
310        * pci/Makefile.am: Remove AUTOMAKE_OPTIONS.
311        * residual/Makefile.am: Remove AUTOMAKE_OPTIONS.
312        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
313        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
314        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
315
3162001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * include/Makefile.am: Use _HEADER instead of H_FILES.
319        * irq/Makefile.am: Ditto.
320        * openpic/Makefile.am: Ditto.
321        * include/bsp.h: Include <bspopts.h>.
322
3232001-10-25      Joel Sherrill <joel@OARcorp.com>
324
325        * startup/linkcmds: Added _init and _fini.
326
3272001-10-12      Joel Sherrill <joel@OARcorp.com>
328
329        * clock/p_clock.c, startup/bspstart.c: Fixed typo.
330
3312001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * console/Makefile.am: Use 'PREINSTALL_FILES ='.
334        * residual/Makefile.am: Use 'PREINSTALL_FILES ='.
335        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
336        * motorola/Makefile.am: Use 'PREINSTALL_FILES ='.
337        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
338        * pci/Makefile.am: Use 'PREINSTALL_FILES ='.
339        * openpic/Makefile.am: Use 'PREINSTALL_FILES ='.
340
3412001-05-14      Tom Armistead <tom_armistead@phx.mcd.mot.com>
342
343        * start/start.S: Increased BAT0 mapping of RAM from 64 meg to
344        256 meg to allow operation on boards with larger RAM sizes.
345        * vectors/vectors_init.c: Modified to call 'generic' powerpc
346        vector function (mpc60x_vector_is_valid) instead of MPC750
347        specific function to allow operation on boards with CPUs other
348        than the MPC750.
349
3502001-03-30      Eric Valette <valette@crf.canon.fr>
351
352        * Makefile.am, console/consoleIo.h, include/bsp.h:
353        These modifications are part of the conversion of the
354        mpc8xx CPU to the "new exception processing model."
355
3562000-11-01      Joel Sherrill <joel@OARcorp.com>
357
358        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
359        and libcsupport.h moved from libc to lib/include/rtems and
360        now must be referenced as <rtems/XXX.h>.   Header file order
361        was cleaned up while doing this.
362
3632000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
364
365        * startup/linkcmds: Added lines so DWARF debug information
366        would be available.  Otherwise gdb complains that the offsets
367        for the debug info are incorrect and doesn't load the files.
368
3692000-09-05      Joel Sherrill <joel@OARcorp.com>
370
371        * start/start.S: Include proper files to compile.
372
3732000-08-10      Joel Sherrill <joel@OARcorp.com>
374
375        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.