diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2011-11-13 01:40:46 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 23:59:32 +0100 |
commit | 3e43c749f2c9c22e0841294c304639907b444608 (patch) | |
tree | 7029f62c3c01fac729468aa164accd6b75de1fed /include/configs/vpac270.h | |
parent | 7c7204db357eedc93b3b0ff1b760f58263b6c789 (diff) |
PXA: Unify vpac270 environment size
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Diffstat (limited to 'include/configs/vpac270.h')
-rw-r--r-- | include/configs/vpac270.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/include/configs/vpac270.h b/include/configs/vpac270.h index 41f8a6b0160..e78b83ac88b 100644 --- a/include/configs/vpac270.h +++ b/include/configs/vpac270.h @@ -209,7 +209,8 @@ #define CONFIG_SYS_MONITOR_LEN 0x80000 #define CONFIG_ENV_ADDR \ (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) -#define CONFIG_ENV_SIZE 0x4000 +#define CONFIG_ENV_SIZE 0x20000 +#define CONFIG_ENV_SECT_SIZE 0x20000 #if defined(CONFIG_CMD_FLASH) /* NOR */ #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */ @@ -238,22 +239,11 @@ #define CONFIG_ENV_IS_IN_FLASH 1 -/* - * The first four sectors of the NOR flash are 0x8000 bytes big, the rest of the - * flash consists of 0x20000 bytes big sectors. - */ -#if (CONFIG_ENV_ADDR <= 0x18000) -#define CONFIG_ENV_SECT_SIZE 0x8000 -#else -#define CONFIG_ENV_SECT_SIZE 0x20000 -#endif - #elif defined(CONFIG_CMD_ONENAND) /* OneNAND */ #define CONFIG_SYS_NO_FLASH #define CONFIG_SYS_ONENAND_BASE 0x00000000 #define CONFIG_ENV_IS_IN_ONENAND 1 -#define CONFIG_ENV_SECT_SIZE 0x20000 #else /* No flash */ #define CONFIG_SYS_NO_FLASH |