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

Last change on this file since 5ef84356 was 5ef84356, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/04 at 17:36:01

Spacing.

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