1 // SPDX-License-Identifier: GPL-2.0+
3 * [origin: Linux kernel drivers/watchdog/at91sam9_wdt.c]
5 * Watchdog driver for AT91SAM9x processors.
12 * The Watchdog Timer Mode Register can be only written to once. If the
13 * timeout need to be set from U-Boot, be sure that the bootstrap doesn't
14 * write to this register. Inform Linux to it too
19 #include <asm/arch/at91_wdt.h>
26 DECLARE_GLOBAL_DATA_PTR;
29 * AT91SAM9 watchdog runs a 12bit counter @ 256Hz,
30 * use this to convert a watchdog
33 #define WDT_SEC2TICKS(s) (((s) << 8) - 1)
36 * Set the watchdog time interval in 1/256Hz (write-once)
39 static int at91_wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
41 struct at91_wdt_priv *priv = dev_get_priv(dev);
45 /* Calculate timeout in seconds and the resulting ticks */
47 do_div(timeout, 1000);
48 timeout = min_t(u64, timeout, WDT_MAX_TIMEOUT);
49 ticks = WDT_SEC2TICKS(timeout);
51 /* Check if disabled */
52 if (readl(priv->regs + AT91_WDT_MR) & AT91_WDT_MR_WDDIS) {
53 printf("sorry, watchdog is disabled\n");
58 * All counting occurs at SLOW_CLOCK / 128 = 256 Hz
60 * Since WDV is a 12-bit counter, the maximum period is
61 * 4096 / 256 = 16 seconds.
63 priv->regval = AT91_WDT_MR_WDRSTEN /* causes watchdog reset */
64 | AT91_WDT_MR_WDDBGHLT /* disabled in debug mode */
65 | AT91_WDT_MR_WDD(0xfff) /* restart at any time */
66 | AT91_WDT_MR_WDV(ticks); /* timer value */
67 writel(priv->regval, priv->regs + AT91_WDT_MR);
72 static int at91_wdt_stop(struct udevice *dev)
74 struct at91_wdt_priv *priv = dev_get_priv(dev);
76 /* Disable Watchdog Timer */
77 priv->regval |= AT91_WDT_MR_WDDIS;
78 writel(priv->regval, priv->regs + AT91_WDT_MR);
83 static int at91_wdt_reset(struct udevice *dev)
85 struct at91_wdt_priv *priv = dev_get_priv(dev);
87 writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, priv->regs + AT91_WDT_CR);
92 static const struct wdt_ops at91_wdt_ops = {
93 .start = at91_wdt_start,
94 .stop = at91_wdt_stop,
95 .reset = at91_wdt_reset,
98 static const struct udevice_id at91_wdt_ids[] = {
99 { .compatible = "atmel,at91sam9260-wdt" },
103 static int at91_wdt_probe(struct udevice *dev)
105 struct at91_wdt_priv *priv = dev_get_priv(dev);
107 priv->regs = dev_remap_addr(dev);
111 debug("%s: Probing wdt%u\n", __func__, dev->seq);
116 U_BOOT_DRIVER(atmel_at91sam9260_wdt) = {
117 .name = "atmel_at91sam9260_wdt",
119 .of_match = at91_wdt_ids,
120 .priv_auto_alloc_size = sizeof(struct at91_wdt_priv),
121 .ops = &at91_wdt_ops,
122 .probe = at91_wdt_probe,