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)
|
|
|
|
|
2008-09-03 12:42:14 +00:00
|
|
|
#define DRAMORIG 0x80004000
|
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 = .;
|
|
|
|
_loadaddress = .;
|
|
|
|
*(.init.text);
|
|
|
|
*(.text*);
|
|
|
|
*(.glue_7);
|
|
|
|
*(.glue_7t);
|
2008-07-30 09:54:25 +00:00
|
|
|
*(.rel.dyn);
|
2008-08-26 21:48:49 +00:00
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
.vectors :
|
|
|
|
{
|
2008-08-09 23:31:38 +00:00
|
|
|
_vectorsstart = .;
|
|
|
|
KEEP(*(.vectors))
|
|
|
|
*(.vectors);
|
2008-07-14 15:03:10 +00:00
|
|
|
} > 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
|
|
|
|
|
2008-08-09 23:31:38 +00:00
|
|
|
.data :
|
|
|
|
{
|
2008-07-14 15:03:10 +00:00
|
|
|
*(.icode);
|
|
|
|
*(.irodata);
|
|
|
|
*(.idata);
|
|
|
|
*(.data*);
|
|
|
|
*(.sdata*);
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_dataend = . ;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
_gp = ALIGN(16);
|
2008-08-09 23:31:38 +00:00
|
|
|
.got :
|
|
|
|
{
|
2008-07-14 15:03:10 +00:00
|
|
|
*(.got*)
|
2008-08-09 23:31:38 +00:00
|
|
|
} > DRAM
|
2008-07-14 15:03:10 +00:00
|
|
|
|
|
|
|
. = 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
|
2008-08-26 21:48:49 +00:00
|
|
|
|
|
|
|
.iram IRAMORIG:
|
|
|
|
{
|
|
|
|
. = 0x220; /* Vectors take in 0x80000000 -> 0x80000220 */
|
|
|
|
_iramstart = .;
|
|
|
|
*(.icode)
|
|
|
|
*(.irodata)
|
|
|
|
*(.idata)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iramend = .;
|
|
|
|
} > IRAM AT> DRAM
|
|
|
|
|
|
|
|
_iramcopy = LOADADDR(.iram);
|
|
|
|
|
|
|
|
.ibss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_iedata = .;
|
|
|
|
*(.ibss)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
|
|
|
.stack :
|
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_stackbegin = .;
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
_stackend = .;
|
|
|
|
stackend = .;
|
|
|
|
} > IRAM
|
2008-07-14 15:03:10 +00:00
|
|
|
}
|