aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2017-08-24 16:52:23 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-08-24 16:54:44 +1000
commit01af87cd8953de0a0c9056dc45d0c11232ba5849 (patch)
treedfef0ad2f893a42cf94cae6b2469ab0d743eb95e /include
parentf2174579b6dd2205567da19d73efd8504c8bdc1c (diff)
downloadskiboot-01af87cd8953de0a0c9056dc45d0c11232ba5849.zip
skiboot-01af87cd8953de0a0c9056dc45d0c11232ba5849.tar.gz
skiboot-01af87cd8953de0a0c9056dc45d0c11232ba5849.tar.bz2
bump skiboot size from 3 to 4MB, reduce heap by 1MB
GCOV enabled builds with modern GCC are getting bigger. At some point we're going to have to go do something sensible, but even on our larger systems we're not *that* close to running out of heap that this would be a problem. HEAP is now 12MB rather than 13MB. Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-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 2bcaf07..0573351 100644
--- a/include/mem-map.h
+++ b/include/mem-map.h
@@ -72,8 +72,8 @@
* As of 2015/5/7 we use approx 800k for skiboot, 500k HEAP for
* mambo boot.
*/
-#define HEAP_BASE (SKIBOOT_BASE + 0x00300000)
-#define HEAP_SIZE 0x00d00000
+#define HEAP_BASE (SKIBOOT_BASE + 0x00400000)
+#define HEAP_SIZE 0x00c00000
/* This is the location of our console buffer at base + 16M */
#define INMEM_CON_START (SKIBOOT_BASE + 0x01000000)