diff options
author | wdenk <wdenk> | 2003-12-20 22:45:10 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-12-20 22:45:10 +0000 |
commit | b2001f273fcb34d0f2ca43a9b01a24e5c50da6cd (patch) | |
tree | dd6dc8e652da48b306248ca77c71312968c52b28 /include/configs/trab.h | |
parent | 5c745d2613cddf5d029a163a95584e770496c7e4 (diff) |
* Fix IceCube CLKIN configuration (it's 33.000000MHz)
* Add new configuration for IceCube board with DDR memory
* Update TRAB memory configurations
Diffstat (limited to 'include/configs/trab.h')
-rw-r--r-- | include/configs/trab.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/configs/trab.h b/include/configs/trab.h index 95ee37e2a..e9ba90f2a 100644 --- a/include/configs/trab.h +++ b/include/configs/trab.h @@ -26,10 +26,15 @@ #ifndef __CONFIG_H #define __CONFIG_H -#ifdef CONFIG_OLD_VERSION /* Old configuration: */ -#define CONFIG_RAM_16MB /* 16 MB SDRAM */ +/* + * Default configuration is with 8 MB Flash, 32 MB RAM + */ +#if (!defined(CONFIG_FLASH_8MB)) && (!defined(CONFIG_FLASH_16MB)) +# define CONFIG_FLASH_8MB /* 8 MB Flash */ +#endif +#if (!defined(CONFIG_RAM_16MB)) && (!defined(CONFIG_RAM_32MB)) +# define CONFIG_RAM_32MB /* 32 MB SDRAM */ #endif -#define CONFIG_FLASH_8MB /* 8 MB Flash */ /* * If we are developing, we might want to start armboot from ram |