2003-12-12 13:29:34 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-05-02 14:05:51 +00:00
|
|
|
ENTRY(start)
|
2004-10-06 13:30:44 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
|
|
|
OUTPUT_FORMAT(elf32-m68k)
|
|
|
|
#else
|
2002-03-28 15:09:10 +00:00
|
|
|
OUTPUT_FORMAT(elf32-sh)
|
2004-10-06 13:30:44 +00:00
|
|
|
#endif
|
2002-05-29 09:12:34 +00:00
|
|
|
INPUT(crt0.o)
|
2002-08-01 08:12:17 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
#define PLUGINSIZE 0x8000
|
|
|
|
|
2003-02-26 16:05:30 +00:00
|
|
|
#ifdef DEBUG
|
2004-10-06 13:30:44 +00:00
|
|
|
#define STUBOFFSET 0x10000
|
2003-02-26 16:05:30 +00:00
|
|
|
#else
|
2004-10-06 13:30:44 +00:00
|
|
|
#define STUBOFFSET 0
|
2003-02-26 16:05:30 +00:00
|
|
|
#endif
|
2004-10-06 13:30:44 +00:00
|
|
|
|
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE - STUBOFFSET
|
2003-02-26 09:18:13 +00:00
|
|
|
|
2004-10-06 13:30:44 +00:00
|
|
|
#ifdef IRIVER_H100
|
2004-10-08 08:02:50 +00:00
|
|
|
#define DRAMORIG 0x30000000 + STUBOFFSET
|
2004-10-06 13:30:44 +00:00
|
|
|
#define IRAMORIG 0x10000000
|
|
|
|
#define IRAMSIZE 0x18000
|
|
|
|
#else
|
|
|
|
#define DRAMORIG 0x09000000 + STUBOFFSET
|
|
|
|
#define IRAMORIG 0x0f000000
|
|
|
|
#define IRAMSIZE 0x1000
|
|
|
|
#endif
|
|
|
|
|
2004-10-06 13:48:25 +00:00
|
|
|
#define ENDADDR (DRAMORIG + DRAMSIZE)
|
|
|
|
|
2002-08-01 08:12:17 +00:00
|
|
|
MEMORY
|
|
|
|
{
|
2004-10-06 13:30:44 +00:00
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
2002-08-01 08:12:17 +00:00
|
|
|
}
|
|
|
|
|
2002-03-28 15:09:10 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
2002-08-01 08:12:17 +00:00
|
|
|
.vectors :
|
2002-03-28 15:09:10 +00:00
|
|
|
{
|
2002-05-29 09:12:34 +00:00
|
|
|
*(.resetvectors);
|
2002-03-28 15:09:10 +00:00
|
|
|
*(.vectors);
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-05-02 14:05:51 +00:00
|
|
|
|
|
|
|
.text :
|
|
|
|
{
|
2004-07-24 17:56:38 +00:00
|
|
|
. = ALIGN(0x200);
|
|
|
|
*(.init.text)
|
2002-03-28 15:09:10 +00:00
|
|
|
*(.text)
|
2003-04-24 20:25:10 +00:00
|
|
|
. = ALIGN(0x4);
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-03-28 15:09:10 +00:00
|
|
|
|
2004-07-24 17:56:38 +00:00
|
|
|
.rodata :
|
2002-05-02 14:05:51 +00:00
|
|
|
{
|
2004-07-24 17:56:38 +00:00
|
|
|
*(.rodata)
|
2004-10-07 08:37:25 +00:00
|
|
|
*(.rodata.str1.1)
|
2004-07-24 17:56:38 +00:00
|
|
|
*(.rodata.str1.4)
|
2004-01-28 20:43:31 +00:00
|
|
|
. = ALIGN(0x4);
|
2004-07-24 17:56:38 +00:00
|
|
|
|
|
|
|
/* Pseudo-allocate the copies of the data sections */
|
|
|
|
_datacopy = .;
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-05-02 14:05:51 +00:00
|
|
|
|
2004-07-24 17:56:38 +00:00
|
|
|
/* TRICK ALERT! For RAM execution, we put the .data section at the
|
|
|
|
same load address as the copy. Thus, we don't waste extra RAM
|
|
|
|
when we don't actually need the copy. */
|
|
|
|
.data : AT ( _datacopy )
|
2002-05-02 14:05:51 +00:00
|
|
|
{
|
2004-07-24 17:56:38 +00:00
|
|
|
_datastart = .;
|
|
|
|
*(.data)
|
2003-04-24 20:25:10 +00:00
|
|
|
. = ALIGN(0x4);
|
2004-07-24 17:56:38 +00:00
|
|
|
_dataend = .;
|
|
|
|
_iramcopy = .;
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-05-24 15:37:26 +00:00
|
|
|
|
2004-10-07 08:37:25 +00:00
|
|
|
.iram IRAMORIG : AT ( _iramcopy)
|
2004-07-24 17:56:38 +00:00
|
|
|
{
|
|
|
|
_iramstart = .;
|
|
|
|
*(.icode)
|
|
|
|
*(.idata)
|
|
|
|
_iramend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
|
|
|
/* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section
|
|
|
|
size smaller, and allow the stack to grow into the .iram copy */
|
2004-08-09 21:35:57 +00:00
|
|
|
.stack ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram):
|
2002-05-24 15:37:26 +00:00
|
|
|
{
|
|
|
|
*(.stack)
|
2004-08-09 21:35:57 +00:00
|
|
|
_stackbegin = . - SIZEOF(.iram);
|
2004-10-15 02:14:45 +00:00
|
|
|
stackbegin = . - SIZEOF(.iram);
|
2004-08-09 21:35:57 +00:00
|
|
|
. += 0x2000 - SIZEOF(.iram);
|
2002-07-15 22:15:00 +00:00
|
|
|
_stackend = .;
|
2004-10-15 02:14:45 +00:00
|
|
|
stackend = .;
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-05-24 15:37:26 +00:00
|
|
|
|
2002-08-01 08:58:17 +00:00
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
_edata = .;
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
|
|
|
_end = .;
|
|
|
|
} > DRAM
|
|
|
|
|
2002-05-24 15:37:26 +00:00
|
|
|
.mp3buf :
|
|
|
|
{
|
2003-05-09 16:01:21 +00:00
|
|
|
_mp3buffer = .;
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-05-24 15:37:26 +00:00
|
|
|
|
2003-10-12 16:40:45 +00:00
|
|
|
.mp3end ENDADDR:
|
2002-05-24 15:37:26 +00:00
|
|
|
{
|
|
|
|
_mp3end = .;
|
2002-08-01 08:12:17 +00:00
|
|
|
} > DRAM
|
2002-03-28 15:09:10 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
.plugin ENDADDR:
|
|
|
|
{
|
|
|
|
_pluginbuf = .;
|
|
|
|
}
|
2002-05-24 15:37:26 +00:00
|
|
|
}
|