[PATCH v1 1/2] watchdog: ar9344-wdt: disable watchdog in probe

Oleksij Rempel linux at rempel-privat.de
Wed Feb 28 09:22:05 PST 2018


This should avoid of triggering reset if we boot barebox from
barebox.

Signed-off-by: Oleksij Rempel <linux at rempel-privat.de>
---
 drivers/watchdog/ar9344_wdt.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/watchdog/ar9344_wdt.c b/drivers/watchdog/ar9344_wdt.c
index d570cb40f..b61786b1b 100644
--- a/drivers/watchdog/ar9344_wdt.c
+++ b/drivers/watchdog/ar9344_wdt.c
@@ -101,6 +101,8 @@ static int ar9344_wdt_probe(struct device_d *dev)
 	dev->priv = priv;
 
 	ar9344_watchdog_detect_reset_source(priv);
+	/* disable watchdog on probe */
+	iowrite32be(0, priv->base + AR9344_WD_REG_CTRL);
 
 	priv->clk = clk_get(dev, NULL);
 	if (IS_ERR(priv->clk)) {
-- 
2.14.1




More information about the barebox mailing list