summaryrefslogtreecommitdiffstats
path: root/include/configs/davinci_dm355evm.h
diff options
context:
space:
mode:
authorSandeep Paulraj <s-paulraj@ti.com>2009-09-08 17:09:52 -0400
committerTom Rix <Tom.Rix@windriver.com>2009-10-13 06:17:33 -0500
commita16df2c11188297eca43cf6080c70fb69b960232 (patch)
tree459e2f91cfa7c5033c31d99d5e14a459d8c1f4f5 /include/configs/davinci_dm355evm.h
parent14abfe361b3ed23b02f564e2f5d663e158cd5799 (diff)
downloadtalos-obmc-uboot-a16df2c11188297eca43cf6080c70fb69b960232.tar.gz
talos-obmc-uboot-a16df2c11188297eca43cf6080c70fb69b960232.zip
TI DaVinci: Remove references to SZ_xx
This patch removes the asm/sizes.h header file from being included in the DaVinci SOC configs. References to SZ_xx have been replaced by appropriate bit shifted values. Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> Acked-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/configs/davinci_dm355evm.h')
-rw-r--r--include/configs/davinci_dm355evm.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/configs/davinci_dm355evm.h b/include/configs/davinci_dm355evm.h
index c35f5c933f..4546f64b06 100644
--- a/include/configs/davinci_dm355evm.h
+++ b/include/configs/davinci_dm355evm.h
@@ -19,7 +19,6 @@
#ifndef __CONFIG_H
#define __CONFIG_H
-#include <asm/sizes.h>
/* Spectrum Digital TMS320DM355 EVM board */
#define DAVINCI_DM355EVM
@@ -40,7 +39,7 @@
/* Memory Info */
#define CONFIG_NR_DRAM_BANKS 1
#define PHYS_SDRAM_1 0x80000000
-#define PHYS_SDRAM_1_SIZE SZ_128M
+#define PHYS_SDRAM_1_SIZE (128 << 20) /* 128 MiB */
/* Serial Driver info: UART0 for console */
#define CONFIG_SYS_NS16550
@@ -130,7 +129,7 @@
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
#define CONFIG_SYS_LONGHELP
-#define CONFIG_ENV_SIZE SZ_16K
+#define CONFIG_ENV_SIZE (16 << 10) /* 16 KiB */
/* NYET -- #define CONFIG_BOOTDELAY 5 */
#define CONFIG_BOOTCOMMAND \
@@ -146,8 +145,8 @@
#define CONFIG_NET_RETRY_COUNT 10
/* U-Boot memory configuration */
-#define CONFIG_STACKSIZE SZ_256K /* regular stack */
-#define CONFIG_SYS_MALLOC_LEN SZ_512K /* malloc() arena */
+#define CONFIG_STACKSIZE (256 << 10) /* 256 KiB */
+#define CONFIG_SYS_MALLOC_LEN (512 << 10) /* 512 KiB */
#define CONFIG_SYS_GBL_DATA_SIZE 128 /* for initial data */
#define CONFIG_SYS_MEMTEST_START 0x87000000 /* physical address */
#define CONFIG_SYS_MEMTEST_END 0x88000000 /* test 16MB RAM */
OpenPOWER on IntegriCloud