sw: Add full memory map to .h and use it for litedram .lds
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>pull/178/head
parent
bdb428a40b
commit
8d64090a68
@ -1,11 +1,13 @@
|
||||
#include "microwatt_soc.h"
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 0xffff0000;
|
||||
. = DRAM_INIT_BASE;
|
||||
start = .;
|
||||
.head : {
|
||||
KEEP(*(.head))
|
||||
}
|
||||
. = 0xffff1000;
|
||||
}
|
||||
. = DRAM_INIT_BASE | 0x1000;
|
||||
.text : { *(.text*) *(.sfpr) *(.rodata*) }
|
||||
.data : { *(.data*) }
|
||||
.bss : { *(.bss*) }
|
Loading…
Reference in New Issue