]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
watchdog: Clean up defaults for imx_watchdog / ulp_wdog
authorTom Rini <trini@konsulko.com>
Tue, 10 Jan 2023 16:19:44 +0000 (11:19 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 20 Jan 2023 17:27:23 +0000 (12:27 -0500)
In imx_watchdog, clean up the comment to just note the range now, as we
do not need to set the default here as Kconfig does this for us. For
ulp_wdog, set the default value via Kconfig instead.

Cc: Stefan Roese <sr@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Stefan Roese <sr@denx.de>
drivers/watchdog/Kconfig
drivers/watchdog/imx_watchdog.c
drivers/watchdog/ulp_wdog.c

index f1b1cf63ca3a8d6d01986dcaa51353e966d735c1..b5ac8f7f50dc5bbeea6ad64690b4250b33c26612 100644 (file)
@@ -30,6 +30,7 @@ config WATCHDOG_TIMEOUT_MSECS
        default 128000 if ARCH_MX7 || ARCH_VF610
        default 30000 if ARCH_SOCFPGA
        default 16000 if ARCH_SUNXI
+       default 5376 if ULP_WATCHDOG
        default 60000
        help
          Watchdog timeout in msec
index 3586246fbfbc2bcec77b6d450364a450dde966f4..894158b304a73625652926efeefacfc2412be3c0 100644 (file)
@@ -68,13 +68,8 @@ static void imx_watchdog_init(struct watchdog_regs *wdog, bool ext_reset,
 
        /*
         * The timer watchdog can be set between
-        * 0.5 and 128 Seconds. If not defined
-        * in configuration file, sets 128 Seconds
+        * 0.5 and 128 Seconds.
         */
-#ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS
-#define CONFIG_WATCHDOG_TIMEOUT_MSECS 128000
-#endif
-
        timeout = max_t(u64, timeout, TIMEOUT_MIN);
        timeout = min_t(u64, timeout, TIMEOUT_MAX);
        timeout = lldiv(timeout, 500) - 1;
index e0810543048533eda56fc24daa6b0a67727d69e8..c21aa3af55fa1754f6bc5e431ede70a6465e47d5 100644 (file)
@@ -25,10 +25,6 @@ struct ulp_wdt_priv {
        u32 clk_rate;
 };
 
-#ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS
-#define CONFIG_WATCHDOG_TIMEOUT_MSECS 0x1500
-#endif
-
 #define REFRESH_WORD0 0xA602 /* 1st refresh word */
 #define REFRESH_WORD1 0xB480 /* 2nd refresh word */