forked from Imagelibrary/rtems
Spacing.
This commit is contained in:
@@ -1,97 +1,14 @@
|
||||
2004-03-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
2003-11-01 Greg Menke <gregory.menke@gsfc.nasa.gov>
|
||||
|
||||
* startup/Makefile.am: Remove references to linkcmds.
|
||||
|
||||
2004-02-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
PR 575/bsps
|
||||
* startup/linkcmds: Remove.
|
||||
|
||||
2003-10-22 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
PR 510/bsps
|
||||
* irq/irq.h: Add extern C wrapper.
|
||||
|
||||
2003-09-29 Till Strauman <strauman@slac.stanford.edu>
|
||||
|
||||
PR 497/bsps
|
||||
* ChangeLog, bootloader/head.S, startup/bspstart.c: Disable code that
|
||||
returned to the firmware when the loader starts.
|
||||
* startup/sbrk.c: New file.
|
||||
|
||||
2003-09-26 Till Strauman <strauman@slac.stanford.edu>
|
||||
|
||||
PR 496/bsps
|
||||
* startup/sbrk.c: New file.
|
||||
* startup/bspstart.c: This patch implements 'sbrk'
|
||||
for the powerpc-shared BSP to work around what's known as the
|
||||
'32Mb problem' in combination with run-time loaded code.
|
||||
GCC normally generates (PowerPC) code doing 'short jumps' which
|
||||
requires all text segments being in the same 32Mb area of memory.
|
||||
However, some run-time loaders use (e.g. heap-) memory violating the
|
||||
stated limitation on hardware with more than 32Mb of memory.
|
||||
(NOTE: portable loaders are probably not even aware of this
|
||||
GCC/CPU specific problem.)
|
||||
|
||||
This patch implements a simple workaround: At boot time, the system is
|
||||
only provided with 32Mb of memory. The user is supposed to load all
|
||||
necessary modules prior to that limit being exhausted. Once that
|
||||
happens, newlib/malloc end up trying to 'sbrk()' for more memory and
|
||||
the implementation provided by this patch will then make the rest of
|
||||
the physical memory available.
|
||||
|
||||
2003-09-26 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 497/bsps
|
||||
* bootloader/head.S: Let the bootloader shut down the
|
||||
network interface. NOTE: this involves a PPCBug system
|
||||
call and will hence fail if other software is used
|
||||
to boot. Need to #undef USE_PPCBUG in such cases!
|
||||
|
||||
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bootloader/bootldr.h, bootloader/em86.c, bootloader/em86real.S,
|
||||
bootloader/exception.S, bootloader/head.S, bootloader/lib.c,
|
||||
bootloader/misc.c, bootloader/mm.c, bootloader/pci.c,
|
||||
clock/p_clock.c, console/console.c, console/consoleIo.h,
|
||||
console/inch.c, console/keyboard.h, console/polled_io.c,
|
||||
include/bsp.h, irq/i8259.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
|
||||
irq/irq_init.c, motorola/motorola.c, motorola/motorola.h,
|
||||
openpic/openpic.c, openpic/openpic.h, pci/pci.c, residual/residual.c,
|
||||
start/start.S, startup/bspstart.c, vectors/vectors.h,
|
||||
vectors/vectors_init.c: URL for license changed.
|
||||
|
||||
2003-08-21 Till Strauman <strauman@slac.stanford.edu>
|
||||
|
||||
PR 456/bsps
|
||||
* irq/irq.c: Fix race condition when installing an ISR.
|
||||
|
||||
2003-08-05 Till Strauman <strauman@slac.stanford.edu>
|
||||
|
||||
PR 437/bsps
|
||||
* irq/irc.c: calls to bspIo/printk must not use '%i' format which is
|
||||
apparently not supported
|
||||
* pci/pci.c: calls to bspIo/printk must not use '%i' format which is
|
||||
apparently not supported
|
||||
|
||||
2003-07-18 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 288/rtems
|
||||
* irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
|
||||
maintained and any BSP which does not do so will trip a panic in the
|
||||
shared code.
|
||||
|
||||
2003-07-18 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 415/bsps
|
||||
* pci/detect_raven_bridge.c, startup/bspstart.c:
|
||||
This patch reverts enabling MCP interrupts for the motorola_powerpc
|
||||
BSPs. REASON: pci config space scanning (as e.g. done by the DEC
|
||||
Ethernet driver) would raise machine check exceptions.
|
||||
PR 606/bsps
|
||||
* bootloader/pci.c: Fixed IO remapping so buses >= 1 are remapped.
|
||||
Reduced PCI space to match bat2. Fixed incorrect region size
|
||||
calculation in pci_read_bases. Set PCI latency timers to known
|
||||
sane values. Changed bridge PCI settings to minimum sane instead
|
||||
of whatever sounded neat in the PCI spec. Force pf regions to
|
||||
memory mapped to preserve byte access.
|
||||
|
||||
2003-07-16 Greg Menke <gregory.menke@gsfc.nasa.gov>
|
||||
|
||||
PR 428/bsps
|
||||
PR 432/bsps
|
||||
* bootloader/pci.c: Re-instated code that prevents remapping small
|
||||
IO regions, which if remapped would cause i8259 registers to move
|
||||
@@ -124,6 +41,16 @@
|
||||
Support enabling MCP exceptions on the host bridge. This can
|
||||
be used for memory probing on the VME bus.
|
||||
|
||||
2003-04-15 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
PR 386/bsps
|
||||
* vme/vmeconfig.c: Removed declaration of _BSP_vme_bridge_irq.
|
||||
|
||||
2003-04-15 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
PR 386/bsps
|
||||
* vme/vmeconfig.c: Removed declaration of _BSP_vme_bridge_irq.
|
||||
|
||||
2003-04-10 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 379/bsps
|
||||
@@ -165,6 +92,22 @@
|
||||
code on non-VME BSPs without triggering linkage of the vmeUniverse
|
||||
driver.
|
||||
|
||||
2003-03-25 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 349/bsps
|
||||
* irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
|
||||
on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
|
||||
code on non-VME BSPs without triggering linkage of the vmeUniverse
|
||||
driver.
|
||||
|
||||
2003-03-25 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 349/bsps
|
||||
* irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
|
||||
on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
|
||||
code on non-VME BSPs without triggering linkage of the vmeUniverse
|
||||
driver.
|
||||
|
||||
2003-03-18 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
PR 356/bsps
|
||||
|
||||
Reference in New Issue
Block a user