summaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2015-01-21 08:38:22 +0100
committerAndreas Bießmann <andreas.devel@googlemail.com>2015-02-07 23:43:20 +0100
commit7bae0d6f62723bdfba50ffbd7491ebd282573c0a (patch)
tree30463a7f38b29efc8ba83b0f3f85de18fd0ef9db /drivers/watchdog
parent2b8b38eacad9bd8dd0e30f324f2aa2b9d717e97a (diff)
downloadblackbird-obmc-uboot-7bae0d6f62723bdfba50ffbd7491ebd282573c0a.tar.gz
blackbird-obmc-uboot-7bae0d6f62723bdfba50ffbd7491ebd282573c0a.zip
arm, at91, wdt: make timeout configurable
make the HW WDT timeout configurable through the define CONFIG_AT91_HW_WDT_TIMEOUT. Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/at91sam9_wdt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c
index ffd49a2bef..03c786c53b 100644
--- a/drivers/watchdog/at91sam9_wdt.c
+++ b/drivers/watchdog/at91sam9_wdt.c
@@ -30,7 +30,11 @@
#define ticks_to_ms(t) (((t + 1) * 1000) >> 8)
/* Hardware timeout in seconds */
+#if !defined(CONFIG_AT91_HW_WDT_TIMEOUT)
#define WDT_HW_TIMEOUT 2
+#else
+#define WDT_HW_TIMEOUT CONFIG_AT91_HW_WDT_TIMEOUT
+#endif
/*
* Set the watchdog time interval in 1/256Hz (write-once)
OpenPOWER on IntegriCloud