summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseedshope <[email protected]>2011-01-22 10:06:09 +0000
committerAlbert Aribaud <[email protected]>2011-03-27 19:19:00 +0200
commit6d56073c60edbade4c2e83a45e631dbd3ea392e0 (patch)
tree460a2af03d1ad648f91ded94c0b5b5b9e7d47a51
parentf326cbba98bae21d41df8daac0bd78121d557af1 (diff)
SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined
Fix CONFIG_SYS_INIT_SP_ADDR undefined issue. Signed-off-by: Zhong Hongbo <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
-rw-r--r--include/configs/smdk6400.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h
index 671f2c7c8b1..c9acf5815f1 100644
--- a/include/configs/smdk6400.h
+++ b/include/configs/smdk6400.h
@@ -44,6 +44,11 @@
#define CONFIG_PERIPORT_BASE 0x70000000
#define CONFIG_PERIPORT_SIZE 0x13
+#define CONFIG_SYS_IRAM_BASE 0x0c000000 /* Internal SRAM base address */
+#define CONFIG_SYS_IRAM_SIZE 0x2000 /* 8 KB of internal SRAM memory */
+#define CONFIG_SYS_IRAM_END (CONFIG_SYS_IRAM_BASE + CONFIG_SYS_IRAM_SIZE)
+#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_IRAM_END - GENERATED_GBL_DATA_SIZE)
+
#define CONFIG_SYS_SDRAM_BASE 0x50000000
/* input clock of PLL: SMDK6400 has 12MHz input clock */