mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-26 17:57:16 +00:00
ram linuxbios_ram instead of linuxbios_c and linuxbios_payload... - Reordered the linker sections so the LinuxBIOS fallback image can take more the 64KiB on x86 - ROM_IMAGE_SIZE now will work when it is specified as larger than 64KiB. - Tweaked the reset16.inc and reset16.lds to move the sanity check to see if everything will work. - Start using romcc's built in preprocessor (This will simplify header compiler checks) - Add helper functions for examining all of the resources - Remove debug strings from chip.h - Add llshell to src/arch/i386/llshell (Sometime later I can try it...) - Add the ability to catch exceptions on x86 - Add gdb_stub support to x86 - Removed old cpu options - Added an option so we can detect movnti support - Remove some duplicate definitions from pci_ids.h - Remove the 64bit resource code in amdk8/northbridge.c in preparation for making it generic - Minor romcc bug fixes git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1727 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
95 lines
1.6 KiB
Plaintext
95 lines
1.6 KiB
Plaintext
/*
|
|
* Memory map:
|
|
*
|
|
* _ROMBASE : start of ROM
|
|
* _RESET : reset vector (may be at top of ROM)
|
|
* _EXCEPTIONS_VECTORS : exception table
|
|
*
|
|
* _ROMSTART : linuxbios text
|
|
* : payload text
|
|
*
|
|
* _RAMBASE : address to copy payload
|
|
*/
|
|
|
|
/*
|
|
* Written by Johan Rydberg, based on work by Daniel Kahlin.
|
|
* Rewritten by Eric Biederman
|
|
* Re-rewritten by Greg Watson for PPC
|
|
*/
|
|
|
|
/*
|
|
* We use ELF as output format. So that we can
|
|
* debug the code in some form.
|
|
*/
|
|
|
|
OUTPUT_FORMAT("elf32-powerpc")
|
|
ENTRY(_start)
|
|
|
|
TARGET(binary)
|
|
INPUT(linuxbios_ram.rom)
|
|
SECTIONS
|
|
{
|
|
/*
|
|
* Absolute location of base of ROM
|
|
*/
|
|
. = _ROMBASE;
|
|
|
|
/*
|
|
* Absolute location of reset vector. This may actually be at the
|
|
* the top of ROM.
|
|
*/
|
|
. = _RESET;
|
|
.reset . : {
|
|
*(.rom.reset);
|
|
. = ALIGN(16);
|
|
}
|
|
|
|
/*
|
|
* Absolute location of exception vector table.
|
|
*/
|
|
. = _EXCEPTION_VECTORS;
|
|
.exception_vectors . : {
|
|
*(.rom.exception_vectors);
|
|
. = ALIGN(16);
|
|
}
|
|
|
|
/*
|
|
* Absolute location of LinuxBIOS initialization code in ROM.
|
|
*/
|
|
. = _ROMSTART;
|
|
.rom . : {
|
|
_rom = .;
|
|
*(.rom.text);
|
|
*(.text);
|
|
*(.rom.data);
|
|
*(.rodata);
|
|
*(EXCLUDE_FILE(linuxbios_ram.rom) .data);
|
|
. = ALIGN(16);
|
|
_erom = .;
|
|
}
|
|
_lrom = LOADADDR(.rom);
|
|
_elrom = LOADADDR(.rom) + SIZEOF(.rom);
|
|
|
|
/*
|
|
* Ram is the LinuxBIOS code that runs from RAM.
|
|
*/
|
|
.ram . : {
|
|
_ram = . ;
|
|
linuxbios_ram.rom(*)
|
|
_eram = . ;
|
|
}
|
|
|
|
/*
|
|
* Absolute location of where LinuxBIOS will be relocated in RAM.
|
|
*/
|
|
_iseg = _RAMBASE;
|
|
_eiseg = _iseg + SIZEOF(.ram);
|
|
_liseg = _ram;
|
|
_eliseg = _eram;
|
|
|
|
/DISCARD/ : {
|
|
*(.comment)
|
|
*(.note)
|
|
}
|
|
}
|