2008-07-14 15:03:10 +00:00
|
|
|
#include "config.h"
|
|
|
|
#undef mips
|
|
|
|
|
2008-07-30 09:54:25 +00:00
|
|
|
OUTPUT_FORMAT("elf32-littlemips")
|
2008-07-14 15:03:10 +00:00
|
|
|
OUTPUT_ARCH(MIPS)
|
|
|
|
ENTRY(_start)
|
|
|
|
STARTUP(target/mips/ingenic_jz47xx/crt0.o)
|
|
|
|
|
2009-02-09 10:02:38 +00:00
|
|
|
#define DRAMSIZE ((MEMORYSIZE-4) * 0x100000)
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2009-02-09 10:02:38 +00:00
|
|
|
#define DRAMORIG 0x80404000
|
2008-07-14 15:03:10 +00:00
|
|
|
#define IRAMORIG 0x80000000
|
|
|
|
#define IRAMSIZE 16K
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
. = DRAMORIG;
|
|
|
|
|
2008-08-09 23:31:38 +00:00
|
|
|
.text :
|
|
|
|
{
|
2008-07-14 15:03:10 +00:00
|
|
|
_loadaddress = .;
|
|
|
|
*(.init.text);
|
|
|
|
*(.text*);
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.rodata :
|
|
|
|
{
|
|
|
|
*(.rodata); /* problems without this, dunno why */
|
|
|
|
*(.rodata*);
|
|
|
|
*(.rodata.str1.1);
|
|
|
|
*(.rodata.str1.4);
|
|
|
|
} > DRAM
|
2009-02-09 10:02:38 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2008-08-09 23:31:38 +00:00
|
|
|
.data :
|
|
|
|
{
|
2008-07-14 15:03:10 +00:00
|
|
|
*(.data*);
|
|
|
|
*(.sdata*);
|
2009-02-09 10:02:38 +00:00
|
|
|
*(.rel.dyn);
|
2008-07-14 15:03:10 +00:00
|
|
|
} > DRAM
|
|
|
|
|
2009-02-09 10:02:38 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.iram IRAMORIG:
|
2008-08-09 23:31:38 +00:00
|
|
|
{
|
2009-02-09 10:02:38 +00:00
|
|
|
_iramstart = .;
|
|
|
|
*(.vectors.1);
|
|
|
|
. = 0x100;
|
|
|
|
*(.vectors.2);
|
|
|
|
. = 0x180;
|
|
|
|
*(.vectors.3);
|
|
|
|
. = 0x200;
|
|
|
|
*(.vectors.4);
|
|
|
|
*(.vectors);
|
|
|
|
|
|
|
|
*(.icode);
|
|
|
|
*(.irodata);
|
|
|
|
*(.idata);
|
|
|
|
KEEP(*(.vectors*))
|
|
|
|
_iramend = .;
|
|
|
|
} > IRAM AT> DRAM
|
|
|
|
_iramcopy = LOADADDR(.iram);
|
2008-07-14 15:03:10 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
2009-02-09 10:02:38 +00:00
|
|
|
|
|
|
|
.bss (NOLOAD):
|
2008-07-14 15:03:10 +00:00
|
|
|
{
|
|
|
|
_edata = .;
|
|
|
|
*(.sbss*);
|
|
|
|
*(.bss*);
|
2009-02-09 10:02:38 +00:00
|
|
|
*(COMMON);
|
2008-08-06 20:39:02 +00:00
|
|
|
*(.scommon*);
|
2008-07-14 15:03:10 +00:00
|
|
|
_end = .;
|
|
|
|
} > DRAM
|
2008-08-26 21:48:49 +00:00
|
|
|
|
2009-02-09 10:02:38 +00:00
|
|
|
_bootend = .;
|
|
|
|
|
2008-08-26 21:48:49 +00:00
|
|
|
.ibss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_iedata = .;
|
2009-02-09 10:02:38 +00:00
|
|
|
*(.ibss*)
|
2008-08-26 21:48:49 +00:00
|
|
|
_iend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
2009-02-09 10:02:38 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.stack (NOLOAD):
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
stackend = .;
|
|
|
|
} > IRAM
|
2008-07-14 15:03:10 +00:00
|
|
|
}
|