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/scb9328.h | |
parent | 914f2bd1f07fba93639ad1273d4cd458b0ee99cc (diff) | |
download | u-boot-imx-f90aea2a65e71a37ff029849d908538ae9e98283.zip u-boot-imx-f90aea2a65e71a37ff029849d908538ae9e98283.tar.gz u-boot-imx-f90aea2a65e71a37ff029849d908538ae9e98283.tar.bz2 |
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/scb9328.h')
-rw-r--r-- | include/configs/scb9328.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/scb9328.h b/include/configs/scb9328.h index a09310c..c0048ac 100644 --- a/include/configs/scb9328.h +++ b/include/configs/scb9328.h @@ -69,7 +69,7 @@ #define CONFIG_SYS_MEMTEST_START 0x08100000 /* memtest test area */ #define CONFIG_SYS_MEMTEST_END 0x08F00000 -#define CONFIG_SYS_HZ 3686400 /* incrementer freq: 3.6864 MHz */ +#define CONFIG_SYS_HZ 1000 #define CONFIG_SYS_CPUSPEED 0x141 /* core clock - register value */ #define CONFIG_BAUDRATE 115200 @@ -143,8 +143,8 @@ now.*/ #undef CONFIG_SYS_FLASH_CFI -#define CONFIG_SYS_FLASH_ERASE_TOUT (2*CONFIG_SYS_HZ) /* timeout for Erase operation */ -#define CONFIG_SYS_FLASH_WRITE_TOUT (2*CONFIG_SYS_HZ) /* timeout for Write operation */ +#define CONFIG_SYS_FLASH_ERASE_TOUT 240000 /* timeout for Erase operation */ +#define CONFIG_SYS_FLASH_WRITE_TOUT 240000 /* timeout for Write operation */ #define CONFIG_SYS_FLASH_BASE SCB9328_FLASH_BASE |