summaryrefslogtreecommitdiffstats
path: root/firmware/target/mips/ingenic_x1000/spl.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/spl.lds')
-rw-r--r--firmware/target/mips/ingenic_x1000/spl.lds14
1 files changed, 13 insertions, 1 deletions
diff --git a/firmware/target/mips/ingenic_x1000/spl.lds b/firmware/target/mips/ingenic_x1000/spl.lds
index 2a0b6b3eaa..ab4a2720f3 100644
--- a/firmware/target/mips/ingenic_x1000/spl.lds
+++ b/firmware/target/mips/ingenic_x1000/spl.lds
@@ -5,13 +5,20 @@ OUTPUT_ARCH(MIPS)
ENTRY(_start)
STARTUP(target/mips/ingenic_x1000/crt0.o)
+#define DRAMORIG 0x80000000
+#define DRAMSIZE (MEMORYSIZE * 0x100000)
+#define USED_DRAM 16K
+
/* TCSM is 16 KiB and is mapped starting at address 0xf4000000.
*
* The SPL is loaded to TCSM + 0x1000. The area below that is stack space.
* The first 2 KiB of SPL is just headers. The code begins at TCSM + 0x1800.
* The maskrom will jump to that address (via jalr) after loading the SPL.
*/
-MEMORY { TCSM : ORIGIN = 0xf4001800, LENGTH = 0x2800 }
+MEMORY {
+ TCSM : ORIGIN = 0xf4001800, LENGTH = 0x2800
+ DRAM : ORIGIN = DRAMORIG + DRAMSIZE - USED_DRAM, LENGTH = USED_DRAM
+}
SECTIONS
{
@@ -44,4 +51,9 @@ SECTIONS
*(.scommon*);
_bssend = .;
} > TCSM
+
+ .sdram (NOLOAD) :
+ {
+ *(.sdram);
+ } > DRAM
}