blob: 72e13787448e366036dce4a451cc2294e5b60a0d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +01002/*
3 * [origin: Linux kernel drivers/watchdog/at91sam9_wdt.c]
4 *
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -07005 * Watchdog driver for AT91SAM9x processors.
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +01006 *
7 * Copyright (C) 2008 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8 * Copyright (C) 2008 Renaud CERRATO r.cerrato@til-technologies.fr
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +01009 */
10
11/*
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
15 */
16
Simon Glass0f2af882020-05-10 11:40:05 -060017#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Reinhard Meyer585273f2011-02-04 20:17:33 +010019#include <asm/io.h>
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010020#include <asm/arch/at91_wdt.h>
Stefan Roesed052ef82019-04-02 10:57:19 +020021#include <div64.h>
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070022#include <dm.h>
23#include <errno.h>
24#include <wdt.h>
25
26DECLARE_GLOBAL_DATA_PTR;
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010027
28/*
29 * AT91SAM9 watchdog runs a 12bit counter @ 256Hz,
30 * use this to convert a watchdog
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070031 * value from seconds.
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010032 */
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070033#define WDT_SEC2TICKS(s) (((s) << 8) - 1)
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010034
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010035/*
36 * Set the watchdog time interval in 1/256Hz (write-once)
37 * Counter is 12 bit.
38 */
Stefan Roesed052ef82019-04-02 10:57:19 +020039static int at91_wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010040{
Zixun LI7c480ad2025-04-28 11:16:25 +020041 struct at91_wdt_priv *wdt = dev_get_priv(dev);
Stefan Roesed052ef82019-04-02 10:57:19 +020042 u64 timeout;
43 u32 ticks;
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070044
Stefan Roesed052ef82019-04-02 10:57:19 +020045 /* Calculate timeout in seconds and the resulting ticks */
46 timeout = timeout_ms;
47 do_div(timeout, 1000);
48 timeout = min_t(u64, timeout, WDT_MAX_TIMEOUT);
49 ticks = WDT_SEC2TICKS(timeout);
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010050
51 /* Check if disabled */
Zixun LI991fdec2025-04-28 11:16:26 +020052 if (readl(wdt->regs + AT91_WDT_MR) & wdt->wddis) {
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010053 printf("sorry, watchdog is disabled\n");
54 return -1;
55 }
56
57 /*
58 * All counting occurs at SLOW_CLOCK / 128 = 256 Hz
59 *
60 * Since WDV is a 12-bit counter, the maximum period is
61 * 4096 / 256 = 16 seconds.
62 */
Zixun LI991fdec2025-04-28 11:16:26 +020063
64 if (wdt->mode == AT91_WDT_MODE_SAM9260) {
65 wdt->mr = AT91_WDT_MR_WDRSTEN /* causes watchdog reset */
66 | AT91_WDT_MR_WDDBGHLT /* disabled in debug mode */
67 | AT91_WDT_MR_WDD(0xfff) /* restart at any time */
68 | AT91_WDT_MR_WDV(ticks); /* timer value */
69 writel(wdt->mr, wdt->regs + AT91_WDT_MR);
70 } else if (wdt->mode == AT91_WDT_MODE_SAM9X60) {
71 writel(AT91_SAM9X60_WLR_COUNTER(ticks), /* timer value */
72 wdt->regs + AT91_SAM9X60_WLR);
73
74 wdt->mr = AT91_SAM9X60_MR_PERIODRST /* causes watchdog reset */
75 | AT91_SAM9X60_MR_WDDBGHLT; /* disabled in debug mode */
76 writel(wdt->mr, wdt->regs + AT91_WDT_MR);
77 }
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070078
79 return 0;
80}
81
82static int at91_wdt_stop(struct udevice *dev)
83{
Zixun LI7c480ad2025-04-28 11:16:25 +020084 struct at91_wdt_priv *wdt = dev_get_priv(dev);
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070085
86 /* Disable Watchdog Timer */
Zixun LI991fdec2025-04-28 11:16:26 +020087 wdt->mr |= wdt->wddis;
Zixun LI7c480ad2025-04-28 11:16:25 +020088 writel(wdt->mr, wdt->regs + AT91_WDT_MR);
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010089
90 return 0;
91}
92
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070093static int at91_wdt_reset(struct udevice *dev)
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +010094{
Zixun LI7c480ad2025-04-28 11:16:25 +020095 struct at91_wdt_priv *wdt = dev_get_priv(dev);
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070096
Zixun LI7c480ad2025-04-28 11:16:25 +020097 writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, wdt->regs + AT91_WDT_CR);
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070098
99 return 0;
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +0100100}
101
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700102static const struct wdt_ops at91_wdt_ops = {
103 .start = at91_wdt_start,
104 .stop = at91_wdt_stop,
105 .reset = at91_wdt_reset,
106};
107
108static const struct udevice_id at91_wdt_ids[] = {
Zixun LI991fdec2025-04-28 11:16:26 +0200109 { .compatible = "atmel,at91sam9260-wdt",
110 .data = AT91_WDT_MODE_SAM9260 },
111 { .compatible = "atmel,sama5d4-wdt",
112 .data = AT91_WDT_MODE_SAM9260 },
113 { .compatible = "microchip,sam9x60-wdt",
114 .data = AT91_WDT_MODE_SAM9X60 },
115 { .compatible = "microchip,sama7g5-wdt",
116 .data = AT91_WDT_MODE_SAM9X60 },
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700117 {}
118};
119
120static int at91_wdt_probe(struct udevice *dev)
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +0100121{
Zixun LI7c480ad2025-04-28 11:16:25 +0200122 struct at91_wdt_priv *wdt = dev_get_priv(dev);
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700123
Zixun LI7c480ad2025-04-28 11:16:25 +0200124 wdt->regs = dev_remap_addr(dev);
125 if (!wdt->regs)
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700126 return -EINVAL;
127
Zixun LI991fdec2025-04-28 11:16:26 +0200128 wdt->mode = dev_get_driver_data(dev);
129 if (wdt->mode == AT91_WDT_MODE_SAM9260)
130 wdt->wddis = AT91_WDT_MR_WDDIS;
131 else if (wdt->mode == AT91_WDT_MODE_SAM9X60)
132 wdt->wddis = AT91_SAM9X60_MR_WDDIS;
133
Simon Glass75e534b2020-12-16 21:20:07 -0700134 debug("%s: Probing wdt%u\n", __func__, dev_seq(dev));
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700135
136 return 0;
Jean-Christophe PLAGNIOL-VILLARDd5ee38e2009-03-27 23:26:42 +0100137}
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700138
Walter Lozano2901ac62020-06-25 01:10:04 -0300139U_BOOT_DRIVER(atmel_at91sam9260_wdt) = {
140 .name = "atmel_at91sam9260_wdt",
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700141 .id = UCLASS_WDT,
142 .of_match = at91_wdt_ids,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700143 .priv_auto = sizeof(struct at91_wdt_priv),
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700144 .ops = &at91_wdt_ops,
145 .probe = at91_wdt_probe,
146};