2008-03-27 23:58:03 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
ENTRY(start)
|
|
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
|
|
OUTPUT_ARCH(arm)
|
2008-04-29 06:19:32 +00:00
|
|
|
STARTUP(target/arm/crt0-pp-bl.o)
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000)
|
|
|
|
|
|
|
|
#define DRAMORIG 0x10000000
|
|
|
|
#ifndef IRAMORIG
|
|
|
|
#define IRAMORIG 0x40000000
|
|
|
|
#endif
|
|
|
|
#define IRAMSIZE 0x20000
|
|
|
|
#define FLASHORIG 0x001f0000
|
|
|
|
#define FLASHSIZE 2M
|
|
|
|
|
2008-05-01 17:13:33 +00:00
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
|
|
}
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2008-10-21 18:57:11 +00:00
|
|
|
#ifdef C200_ERASE
|
|
|
|
. = IRAMORIG+0x4000;
|
|
|
|
#else
|
2008-03-27 23:58:03 +00:00
|
|
|
. = IRAMORIG;
|
2008-10-21 18:57:11 +00:00
|
|
|
#endif
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
.text : {
|
|
|
|
*(.init.text)
|
|
|
|
*(.text*)
|
2008-05-01 17:13:33 +00:00
|
|
|
*(.glue_7)
|
|
|
|
*(.glue_7t)
|
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.icode)
|
|
|
|
*(.irodata)
|
|
|
|
*(.idata)
|
|
|
|
*(.data*)
|
2008-04-06 04:34:57 +00:00
|
|
|
*(.ncdata*)
|
2008-05-01 17:13:33 +00:00
|
|
|
*(.rodata*)
|
2008-03-27 23:58:03 +00:00
|
|
|
_dataend = . ;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
2008-05-01 17:13:33 +00:00
|
|
|
.stack : {
|
2008-03-27 23:58:03 +00:00
|
|
|
*(.stack)
|
|
|
|
_stackbegin = .;
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
_stackend = .;
|
|
|
|
stackend = .;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
/* The bss section is too large for IRAM - we just move it 16MB into the
|
|
|
|
DRAM */
|
|
|
|
|
2008-05-04 14:42:53 +00:00
|
|
|
. = DRAMORIG;
|
|
|
|
.bss . + (16*1024*1024) : {
|
2008-03-27 23:58:03 +00:00
|
|
|
_edata = .;
|
|
|
|
*(.bss*);
|
|
|
|
*(.ibss);
|
2008-11-07 00:15:53 +00:00
|
|
|
*(COMMON)
|
2008-04-06 04:34:57 +00:00
|
|
|
*(.ncbss*);
|
2008-03-27 23:58:03 +00:00
|
|
|
_end = .;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > DRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
}
|