2011-05-01 13:02:46 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
|
|
|
|
ENTRY(start)
|
|
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
|
|
OUTPUT_ARCH(arm)
|
|
|
|
STARTUP(target/arm/imx233/crt0.o)
|
|
|
|
|
2011-09-13 23:38:08 +00:00
|
|
|
/* Leave a hole at the beginning of the RAM to load the firmware */
|
|
|
|
#define RAM_HOLE 1024 * 1024
|
|
|
|
|
|
|
|
/* Make a difference between virtual and physical address so that we can use
|
|
|
|
* the resulting elf file with the elftosb tools which loads at the *physical*
|
|
|
|
* address */
|
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
MEMORY
|
|
|
|
{
|
2011-07-23 13:48:01 +00:00
|
|
|
IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAM_SIZE
|
2011-09-13 23:38:08 +00:00
|
|
|
DRAM : ORIGIN = CACHED_DRAM_ADDR + RAM_HOLE, LENGTH = DRAM_SIZE - TTB_SIZE - FRAME_SIZE - RAM_HOLE
|
|
|
|
UDRAM : ORIGIN = UNCACHED_DRAM_ADDR + RAM_HOLE, LENGTH = DRAM_SIZE - TTB_SIZE - FRAME_SIZE - RAM_HOLE
|
2011-05-01 13:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2011-09-13 23:38:08 +00:00
|
|
|
loadaddress = UNCACHED_DRAM_ADDR;
|
|
|
|
_loadaddress = UNCACHED_DRAM_ADDR;
|
|
|
|
loadaddressend = UNCACHED_DRAM_ADDR + RAM_HOLE;
|
|
|
|
_loadaddressend = UNCACHED_DRAM_ADDR + RAM_HOLE;
|
2011-09-23 20:40:52 +00:00
|
|
|
|
|
|
|
.dramcopystart (NOLOAD) :
|
|
|
|
{
|
|
|
|
_dramcopystart = .;
|
|
|
|
} > DRAM
|
2011-09-13 23:38:08 +00:00
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
.text :
|
|
|
|
{
|
|
|
|
*(.text*)
|
|
|
|
*(.data*)
|
|
|
|
*(.rodata*)
|
|
|
|
} > DRAM
|
|
|
|
|
2011-09-13 23:38:08 +00:00
|
|
|
.itext :
|
2011-07-02 02:12:10 +00:00
|
|
|
{
|
|
|
|
_iramstart = .; // always 0
|
|
|
|
*(.vectors)
|
2011-07-23 11:45:18 +00:00
|
|
|
KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it
|
2011-07-02 02:12:10 +00:00
|
|
|
*(.icode)
|
|
|
|
*(.irodata)
|
|
|
|
*(.idata)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iramend = .;
|
|
|
|
} > IRAM AT> DRAM
|
|
|
|
|
2011-09-13 23:38:08 +00:00
|
|
|
_iramcopy = LOADADDR(.itext);
|
2011-07-02 02:12:10 +00:00
|
|
|
|
2011-09-23 20:40:52 +00:00
|
|
|
.dramcopyend (NOLOAD) :
|
|
|
|
{
|
|
|
|
_dramcopyend = .;
|
|
|
|
} > DRAM
|
|
|
|
|
2011-07-02 02:12:10 +00:00
|
|
|
.ibss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_iedata = .;
|
|
|
|
*(.qharray)
|
|
|
|
*(.ibss)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
.stack (NOLOAD) :
|
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
stackend = .;
|
|
|
|
} > DRAM
|
|
|
|
|
2011-09-13 23:38:08 +00:00
|
|
|
/* physical address of the stack */
|
|
|
|
stackend_phys = stackend - CACHED_DRAM_ADDR + UNCACHED_DRAM_ADDR;
|
|
|
|
|
2011-09-05 11:29:32 +00:00
|
|
|
/* treat .bss and .ncbss as a single section */
|
2011-05-01 13:02:46 +00:00
|
|
|
.bss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_edata = .;
|
|
|
|
*(.bss*);
|
2011-09-05 11:29:32 +00:00
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
/* align on cache size boundary to avoid mixing cached and noncached stuff */
|
|
|
|
.ncbss . - CACHED_DRAM_ADDR + UNCACHED_DRAM_ADDR (NOLOAD) :
|
|
|
|
{
|
|
|
|
. = ALIGN(CACHEALIGN_SIZE);
|
|
|
|
*(.ncbss*)
|
|
|
|
. = ALIGN(CACHEALIGN_SIZE);
|
|
|
|
} AT> DRAM
|
|
|
|
|
2011-09-13 23:38:08 +00:00
|
|
|
.bssendadr (NOLOAD) :
|
2011-09-05 11:29:32 +00:00
|
|
|
{
|
2011-05-01 13:02:46 +00:00
|
|
|
_end = .;
|
|
|
|
} > DRAM
|
|
|
|
}
|