2008-03-27 23:58:03 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-01-16 01:40:15 +00:00
|
|
|
/* Can't link all Sansa PP devices the same way at this time */
|
|
|
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
2012-01-03 04:39:56 +00:00
|
|
|
#include "../pp/boot-pp502x-bl-usb.lds"
|
2011-01-16 01:40:15 +00:00
|
|
|
#else /* !HAVE_BOOTLOADER_USB_MODE */
|
|
|
|
|
2008-03-27 23:58:03 +00:00
|
|
|
ENTRY(start)
|
|
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
|
|
OUTPUT_ARCH(arm)
|
2012-01-03 04:44:27 +00:00
|
|
|
STARTUP(target/arm/pp/crt0-pp-bl.o)
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000)
|
|
|
|
|
2009-07-13 21:09:39 +00:00
|
|
|
#ifdef SANSA_VIEW
|
|
|
|
#define DRAMORIG 0x10f00000
|
|
|
|
#else
|
2008-03-27 23:58:03 +00:00
|
|
|
#define DRAMORIG 0x10000000
|
2009-07-13 21:09:39 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-27 23:58:03 +00:00
|
|
|
#ifndef IRAMORIG
|
|
|
|
#define IRAMORIG 0x40000000
|
|
|
|
#endif
|
|
|
|
#define IRAMSIZE 0x20000
|
|
|
|
#define FLASHORIG 0x001f0000
|
|
|
|
#define FLASHSIZE 2M
|
|
|
|
|
2008-05-01 17:13:33 +00:00
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
|
|
}
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2011-09-02 21:34:28 +00:00
|
|
|
#ifdef SANSA_PP_ERASE
|
2008-10-21 18:57:11 +00:00
|
|
|
. = IRAMORIG+0x4000;
|
|
|
|
#else
|
2008-03-27 23:58:03 +00:00
|
|
|
. = IRAMORIG;
|
2008-10-21 18:57:11 +00:00
|
|
|
#endif
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
.text : {
|
|
|
|
*(.init.text)
|
|
|
|
*(.text*)
|
2008-05-01 17:13:33 +00:00
|
|
|
*(.glue_7)
|
|
|
|
*(.glue_7t)
|
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.icode)
|
|
|
|
*(.irodata)
|
|
|
|
*(.idata)
|
|
|
|
*(.data*)
|
2008-04-06 04:34:57 +00:00
|
|
|
*(.ncdata*)
|
2008-05-01 17:13:33 +00:00
|
|
|
*(.rodata*)
|
2008-03-27 23:58:03 +00:00
|
|
|
_dataend = . ;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
2010-03-08 23:16:57 +00:00
|
|
|
.stack (NOLOAD) : {
|
2008-03-27 23:58:03 +00:00
|
|
|
*(.stack)
|
|
|
|
_stackbegin = .;
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
_stackend = .;
|
|
|
|
stackend = .;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > IRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
/* The bss section is too large for IRAM - we just move it 16MB into the
|
|
|
|
DRAM */
|
|
|
|
|
2008-05-04 14:42:53 +00:00
|
|
|
. = DRAMORIG;
|
2010-03-08 23:16:57 +00:00
|
|
|
.bss . + (16*1024*1024) (NOLOAD) : {
|
2008-03-27 23:58:03 +00:00
|
|
|
_edata = .;
|
|
|
|
*(.bss*);
|
|
|
|
*(.ibss);
|
2008-11-07 00:15:53 +00:00
|
|
|
*(COMMON)
|
2008-04-06 04:34:57 +00:00
|
|
|
*(.ncbss*);
|
2008-03-27 23:58:03 +00:00
|
|
|
_end = .;
|
2008-05-01 17:13:33 +00:00
|
|
|
} > DRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
}
|
2011-01-16 01:40:15 +00:00
|
|
|
#endif /* HAVE_BOOTLOADER_USB_MODE */
|