diff options
author | Marek Vasut <marex@denx.de> | 2013-11-04 20:50:21 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-12-18 20:40:05 +0100 |
commit | f90aea2a65e71a37ff029849d908538ae9e98283 (patch) | |
tree | 4b09830b2c216ccbef6c8f3d5e94087e544d2ee8 /include/configs/palmtc.h | |
parent | 914f2bd1f07fba93639ad1273d4cd458b0ee99cc (diff) | |
download | u-boot-f90aea2a65e71a37ff029849d908538ae9e98283.tar.gz |
ARM: pxa: Fix CONFIG_SYS_HZ on PXA
The PXA incorrectly uses CONFIG_SYS_HZ, which should be 1000 across
U-Boot. Fix this.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Diffstat (limited to 'include/configs/palmtc.h')
-rw-r--r-- | include/configs/palmtc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/configs/palmtc.h b/include/configs/palmtc.h index 661101ccb6..7303e1c31f 100644 --- a/include/configs/palmtc.h +++ b/include/configs/palmtc.h @@ -118,7 +118,7 @@ * Clock Configuration */ #undef CONFIG_SYS_CLKS_IN_HZ -#define CONFIG_SYS_HZ 3686400 /* Timer @ 3686400 Hz */ +#define CONFIG_SYS_HZ 1000 #define CONFIG_SYS_CPUSPEED 0x161 /* 400MHz;L=1 M=3 T=1 */ /* @@ -156,10 +156,10 @@ #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 -#define CONFIG_SYS_FLASH_ERASE_TOUT (2*CONFIG_SYS_HZ) -#define CONFIG_SYS_FLASH_WRITE_TOUT (2*CONFIG_SYS_HZ) -#define CONFIG_SYS_FLASH_LOCK_TOUT (2*CONFIG_SYS_HZ) -#define CONFIG_SYS_FLASH_UNLOCK_TOUT (2*CONFIG_SYS_HZ) +#define CONFIG_SYS_FLASH_ERASE_TOUT 240000 +#define CONFIG_SYS_FLASH_WRITE_TOUT 240000 +#define CONFIG_SYS_FLASH_LOCK_TOUT 240000 +#define CONFIG_SYS_FLASH_UNLOCK_TOUT 240000 #define CONFIG_SYS_FLASH_PROTECTION #define CONFIG_ENV_IS_IN_FLASH 1 |