[U-Boot] [PATCH v3 15/15] exynos: Enable pre-relocation malloc()
Simon Glass
sjg at chromium.org
Tue Sep 23 20:59:37 CEST 2014
Enable this feature to support driver model before relocation.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
Changes in v3: None
Changes in v2: None
include/configs/exynos-common.h | 5 +++--
include/configs/odroid.h | 2 --
include/configs/s5p_goni.h | 5 +++--
include/configs/smdkc100.h | 4 ++++
4 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h
index 1e0ceab..98ea46f 100644
--- a/include/configs/exynos-common.h
+++ b/include/configs/exynos-common.h
@@ -40,8 +40,9 @@
#define CONFIG_CMDLINE_EDITING
#define CONFIG_ENV_OVERWRITE
-/* Size of malloc() pool */
-#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M))
+/* Size of malloc() pool before and after relocation */
+#define CONFIG_SYS_MALLOC_F_LEN (1 << 10)
+#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
/* select serial console configuration */
#define CONFIG_BAUDRATE 115200
diff --git a/include/configs/odroid.h b/include/configs/odroid.h
index 3309469..cecee68 100644
--- a/include/configs/odroid.h
+++ b/include/configs/odroid.h
@@ -39,8 +39,6 @@
#define CONFIG_SYS_TEXT_BASE 0x43e00000
#include <linux/sizes.h>
-/* Size of malloc() pool */
-#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M))
/* select serial console configuration */
#define CONFIG_SERIAL1
diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h
index b22ac18..ec78b6e 100644
--- a/include/configs/s5p_goni.h
+++ b/include/configs/s5p_goni.h
@@ -39,8 +39,9 @@
#define CONFIG_INITRD_TAG
#define CONFIG_CMDLINE_EDITING
-/* Size of malloc() pool.*/
-#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 80 * SZ_1M)
+/* Size of malloc() pool before and after relocation */
+#define CONFIG_SYS_MALLOC_F_LEN (1 << 10)
+#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
/*
* select serial console configuration
diff --git a/include/configs/smdkc100.h b/include/configs/smdkc100.h
index 1623963..2ccae5c 100644
--- a/include/configs/smdkc100.h
+++ b/include/configs/smdkc100.h
@@ -47,6 +47,10 @@
* 1MB = 0x100000, 0x100000 = 1024 * 1024
*/
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (1 << 20))
+
+/* Small malloc pool before relocation */
+#define CONFIG_SYS_MALLOC_F_LEN (1 << 10)
+
/*
* select serial console configuration
*/
--
2.1.0.rc2.206.gedb03e5
More information about the U-Boot
mailing list