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