[PATCH v4,1/2] driver: watchdog: reset watchdog in designware_wdt_stop() function
Stefan Roese
sr at denx.de
Sat May 22 14:08:25 CEST 2021
On 11.05.21 09:35, Meng.Li at windriver.com wrote:
> From: MengLi <meng.li at windriver.com>
>
> In uboot command line environment, watchdog is not able to be
> stopped with below commands:
> SOCFPGA_STRATIX10 # wdt dev watchdog at ffd00200
> SOCFPGA_STRATIX10 # wdt stop
> Refer to watchdog driver in linux kernel, it is also need to reset
> watchdog after disable it so that the disable action takes effect.
>
> Signed-off-by: Meng Li <Meng.Li at windriver.com>
> Reviewed-by: Stefan Roese <sr at denx.de>
>
> ---
> v4:
> Remove the unauthorized signature.
> v3:
> Add the resets to designware_wdt_priv and initialize it in probe().
> v2:
> Change "#if CONFIG_IS_ENABLED(DM_RESET)" into
> "if (CONFIG_IS_ENABLED(DM_RESET)) {", and define the variable
> into if condition sentence.
> ---
> drivers/watchdog/designware_wdt.c | 31 +++++++++++++++++++++----------
> 1 file changed, 21 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/watchdog/designware_wdt.c b/drivers/watchdog/designware_wdt.c
> index 12f09a7a39..cdf6b5709b 100644
> --- a/drivers/watchdog/designware_wdt.c
> +++ b/drivers/watchdog/designware_wdt.c
> @@ -23,6 +23,7 @@
> struct designware_wdt_priv {
> void __iomem *base;
> unsigned int clk_khz;
> + struct reset_ctl_bulk *resets;
> };
>
> /*
> @@ -96,6 +97,18 @@ static int designware_wdt_stop(struct udevice *dev)
> designware_wdt_reset(dev);
> writel(0, priv->base + DW_WDT_CR);
>
> + if (CONFIG_IS_ENABLED(DM_RESET)) {
> + int ret;
> +
> + ret = reset_assert_bulk(priv->resets);
> + if (ret)
> + return ret;
> +
> + ret = reset_deassert_bulk(priv->resets);
> + if (ret)
> + return ret;
> + }
> +
> return 0;
> }
>
> @@ -143,13 +143,11 @@ static int designware_wdt_probe(struct udevice *dev)
> #endif
>
> if (CONFIG_IS_ENABLED(DM_RESET)) {
> - struct reset_ctl_bulk resets;
> -
> - ret = reset_get_bulk(dev, &resets);
> + ret = reset_get_bulk(dev, priv->resets);
> if (ret)
> goto err;
>
> - ret = reset_deassert_bulk(&resets);
> + ret = reset_deassert_bulk((priv->resets);
Please see the double open "(" and the single closing ")" above!
Did you ever at least build-test this? Please send a fixed and also
*tested* v5.
Thanks,
Stefan
More information about the U-Boot
mailing list