diff options
author | Stefan Roese <sr@denx.de> | 2014-12-19 12:49:10 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-12-21 13:39:04 (GMT) |
commit | d0e932de7c8e46ade1994e03e864636db3922520 (patch) | |
tree | 8f970145dada1fbb056c87a1061003161c1e18bc /include | |
parent | d8bec60c1b0de7770f9b56ad092ab9be801d99af (diff) | |
download | u-boot-fsl-qoriq-d0e932de7c8e46ade1994e03e864636db3922520.tar.xz |
arm: socfpga: Change watchdog timeout
The current current watchdog timeout of 12 seconds is a bit small for
booting into Linux, especially when using a NFS based rootfs. So lets
change this timeout to a more defensive value of 30 seconds.
Also we now call the hw_watchdog_init() function so that we override
the value already configured from the Preloader.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Vince Bridgers <vbridger@opensource.altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Chin Liang See <clsee@altera.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Pavel Machek <pavel@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/socfpga_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/socfpga_common.h b/include/configs/socfpga_common.h index 6bb9473..6b1f967 100644 --- a/include/configs/socfpga_common.h +++ b/include/configs/socfpga_common.h @@ -139,7 +139,7 @@ #define CONFIG_DESIGNWARE_WATCHDOG #define CONFIG_DW_WDT_BASE SOCFPGA_L4WD0_ADDRESS #define CONFIG_DW_WDT_CLOCK_KHZ 25000 -#define CONFIG_HW_WATCHDOG_TIMEOUT_MS 12000 +#define CONFIG_HW_WATCHDOG_TIMEOUT_MS 30000 #endif /* |