27f59f64c6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17357 a1c6a512-1295-4272-9138-f99709370657
79 lines
1.4 KiB
Text
79 lines
1.4 KiB
Text
#include "config.h"
|
|
|
|
ENTRY(start)
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
OUTPUT_ARCH(arm)
|
|
STARTUP(target/arm/crt0-pp-bl.o)
|
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000)
|
|
|
|
#if CONFIG_CPU == PP5020
|
|
#define DRAMORIG 0x10000000
|
|
#define IRAMORIG 0x40000000
|
|
#define IRAMSIZE 0x18000
|
|
#define FLASHORIG 0x001f0000
|
|
#define FLASHSIZE 2M
|
|
#elif (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024)
|
|
#define DRAMORIG 0x10000000
|
|
#ifndef IRAMORIG
|
|
#define IRAMORIG 0x40000000
|
|
#endif
|
|
#define IRAMSIZE 0x20000
|
|
#define FLASHORIG 0x001f0000
|
|
#define FLASHSIZE 2M
|
|
#elif CONFIG_CPU == PP5002
|
|
#define DRAMORIG 0x28000000
|
|
#define IRAMORIG 0x40000000
|
|
#define IRAMSIZE 0x18000
|
|
#define FLASHORIG 0x001f0000
|
|
#define FLASHSIZE 2M
|
|
#endif
|
|
|
|
MEMORY
|
|
{
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = IRAMORIG;
|
|
|
|
.text : {
|
|
*(.init.text)
|
|
*(.text*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
} > IRAM
|
|
|
|
.data : {
|
|
*(.icode)
|
|
*(.irodata)
|
|
*(.idata)
|
|
*(.data*)
|
|
*(.ncdata*)
|
|
*(.rodata*)
|
|
_dataend = . ;
|
|
} > IRAM
|
|
|
|
.stack : {
|
|
*(.stack)
|
|
_stackbegin = .;
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
_stackend = .;
|
|
stackend = .;
|
|
} > IRAM
|
|
|
|
/* The bss section is too large for IRAM - we just move it 16MB into the
|
|
DRAM */
|
|
|
|
. = DRAMORIG;
|
|
.bss . + (16*1024*1024): {
|
|
_edata = .;
|
|
*(.bss*);
|
|
*(.ibss);
|
|
*(.ncbss*);
|
|
_end = .;
|
|
} > DRAM
|
|
}
|