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)
|
|
|
|
|
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000)
|
|
|
|
|
|
|
|
#define DRAMORIG 0x80E00000 /* HACK */
|
|
|
|
#define IRAMORIG 0x80000000
|
|
|
|
#define IRAMSIZE 16K
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
. = DRAMORIG;
|
|
|
|
|
|
|
|
.text : {
|
|
|
|
loadaddress = .;
|
|
|
|
_loadaddress = .;
|
2008-07-17 10:13:56 +00:00
|
|
|
_resetvectorsstart = .;
|
|
|
|
KEEP(*(.resetvectors));
|
|
|
|
*(.resetvectors);
|
|
|
|
_resetvectorsend = .;
|
2008-07-14 15:03:10 +00:00
|
|
|
*(.init.text);
|
|
|
|
*(.text*);
|
|
|
|
*(.glue_7);
|
|
|
|
*(.glue_7t);
|
2008-07-30 09:54:25 +00:00
|
|
|
*(.rel.dyn);
|
2008-07-14 15:03:10 +00:00
|
|
|
. = ALIGN(0x4);
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.rodata :
|
|
|
|
{
|
|
|
|
*(.rodata); /* problems without this, dunno why */
|
|
|
|
*(.rodata*);
|
|
|
|
*(.rodata.str1.1);
|
|
|
|
*(.rodata.str1.4);
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
|
|
|
|
/* Pseudo-allocate the copies of the data sections */
|
|
|
|
_datacopy = .;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.icode);
|
|
|
|
*(.irodata);
|
|
|
|
*(.idata);
|
|
|
|
*(.data*);
|
|
|
|
*(.sdata*);
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_dataend = . ;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
_gp = ALIGN(16);
|
|
|
|
.got : {
|
|
|
|
*(.got*)
|
|
|
|
}> DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.stack :
|
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
_stackbegin = .;
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
_stackend = .;
|
|
|
|
stackend = .;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
_edata = .;
|
|
|
|
*(.sbss*);
|
|
|
|
*(.bss*);
|
|
|
|
*(.ibss);
|
|
|
|
*(COMMON)
|
2008-08-06 20:39:02 +00:00
|
|
|
*(.scommon*);
|
2008-07-14 15:03:10 +00:00
|
|
|
_end = .;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
|
2008-07-17 10:13:56 +00:00
|
|
|
.vectors :
|
2008-07-14 15:03:10 +00:00
|
|
|
{
|
|
|
|
_vectorsstart = .;
|
|
|
|
KEEP(*(.vectors));
|
|
|
|
*(.vectors);
|
|
|
|
_vectorsend = .;
|
2008-07-17 10:13:56 +00:00
|
|
|
} > DRAM
|
2008-07-14 15:03:10 +00:00
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
}
|