aboutsummaryrefslogtreecommitdiff
path: root/include/mem-map.h
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2020-10-01 16:52:16 +1000
committerOliver O'Halloran <oohall@gmail.com>2020-10-01 17:40:29 +1000
commit45f67b179e6c2a6be59c0305066dd4a0bcafd002 (patch)
tree291ebbb44b0df7813851ad472734ee19bde6afd7 /include/mem-map.h
parentbcecf330f4f18893fbeca697de104258d071da51 (diff)
downloadskiboot-45f67b179e6c2a6be59c0305066dd4a0bcafd002.zip
skiboot-45f67b179e6c2a6be59c0305066dd4a0bcafd002.tar.gz
skiboot-45f67b179e6c2a6be59c0305066dd4a0bcafd002.tar.bz2
skiboot.lds.S: Move BSS start up a bit to accommodate a larger .data
Witht addition of libtss and mbedtls the .data section now overlaps the start of the .bss section. Adding a few MB to the offset doesn't hurt. Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'include/mem-map.h')
-rw-r--r--include/mem-map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mem-map.h b/include/mem-map.h
index 15ec09e..9250a63 100644
--- a/include/mem-map.h
+++ b/include/mem-map.h
@@ -84,8 +84,8 @@
*
* As of mid-2019, a 2 socket Romulus uses ~4MB heap.
*/
-#define HEAP_BASE (SKIBOOT_BASE + 0x00500000)
-#define HEAP_SIZE 0x00b00000
+#define HEAP_BASE (SKIBOOT_BASE + 0x00600000)
+#define HEAP_SIZE 0x00a00000
/* This is the location of our console buffer at base + 16M */
#define INMEM_CON_START (SKIBOOT_BASE + 0x01000000)