summaryrefslogtreecommitdiffstats
path: root/sbe
diff options
context:
space:
mode:
authorSantosh Puranik <santosh.puranik@in.ibm.com>2016-08-02 00:17:56 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2016-08-02 01:31:27 -0400
commitbe0ec6d5d391af1bf77c1994ba4c9b104c889be9 (patch)
treec0c0c3fc46daf0a152f5fb4f4cdf5cc604430a48 /sbe
parent7c2d1759077f31d157fb61f2f54f27b2268450ff (diff)
downloadtalos-sbe-be0ec6d5d391af1bf77c1994ba4c9b104c889be9.tar.gz
talos-sbe-be0ec6d5d391af1bf77c1994ba4c9b104c889be9.zip
Increase SRAM size for PIBMEM image
Change-Id: Ibd562f7dba8625a46f57d2d6939dc7eb62cf71b4 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27738 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'sbe')
-rw-r--r--sbe/image/linksbe.cmd12
1 files changed, 6 insertions, 6 deletions
diff --git a/sbe/image/linksbe.cmd b/sbe/image/linksbe.cmd
index 24670e06..d37f6086 100644
--- a/sbe/image/linksbe.cmd
+++ b/sbe/image/linksbe.cmd
@@ -37,14 +37,14 @@ MEMORY
{
// increasing ram size as workaround so that pibmem image compilation
// doe not fail.
- // TODO: Reducing the SBE_BASE_ORIGIN by 0xF000 to reduce the size of
+ // TODO: Reducing the SBE_BASE_ORIGIN by 0x1F000 to reduce the size of
// generated sbe_pibmem.bin. Just a workaround to use pibmem for poweron
- sram : ORIGIN = SBE_BASE_ORIGIN - 0xF000, LENGTH = SBE_BASE_LENGTH + 0xF000
+ sram : ORIGIN = SBE_BASE_ORIGIN - 0x1F000, LENGTH = SBE_BASE_LENGTH + 0x1F000
}
SECTIONS
{
- . = SBE_BASE_ORIGIN - 0xF000;
+ . = SBE_BASE_ORIGIN - 0x1F000;
.vectors : {. = ALIGN(512); *(.vectors)} > sram
.fixed . : {. = ALIGN(512); *(.fixed) } > sram
@@ -66,7 +66,7 @@ SECTIONS
.sbss2 . : { *(.sbss2*) } > sram
// Other read-only data.
-
+
. = ALIGN(8);
.rodata . : { ctor_start_address = .;
*(.ctors) *(.ctors.*)
@@ -88,9 +88,9 @@ SECTIONS
_SDA_BASE_ = .;
.sdata . : { *(.sdata*) } > sram
- _sbss_start = .;
+ _sbss_start = .;
.sbss . : { *(.sbss*) } > sram
- _sbss_end = .;
+ _sbss_end = .;
// Other read-write data
// It's not clear why boot.S is generating empty .glink,.iplt
OpenPOWER on IntegriCloud