1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8 #include <linux/interrupt.h>
11 #include <linux/platform_device.h>
12 #include <linux/watchdog.h>
14 /* minimum and maximum watchdog trigger timeout, in seconds */
15 #define MIN_WDT_TIMEOUT 1
16 #define MAX_WDT_TIMEOUT 255
19 * Base of the WDT registers, from the timer base address. There are
20 * actually 5 watchdogs that can be configured (by pairing with an available
21 * timer), at bases 0x100 + (WDT ID) * 0x20, where WDT ID is 0 through 4.
22 * This driver only configures the first watchdog (WDT ID 0).
24 #define WDT_BASE 0x100
28 * Register base of the timer that's selected for pairing with the watchdog.
29 * This driver arbitrarily uses timer 5, which is currently unused by
30 * other drivers (in particular, the Tegra clocksource driver). If this
31 * needs to change, take care that the new timer is not used by the
34 #define WDT_TIMER_BASE 0x60
35 #define WDT_TIMER_ID 5
39 #define WDT_CFG_PERIOD_SHIFT 4
40 #define WDT_CFG_PERIOD_MASK 0xff
41 #define WDT_CFG_INT_EN (1 << 12)
42 #define WDT_CFG_PMC2CAR_RST_EN (1 << 15)
44 #define WDT_STS_COUNT_SHIFT 4
45 #define WDT_STS_COUNT_MASK 0xff
46 #define WDT_STS_EXP_SHIFT 12
47 #define WDT_STS_EXP_MASK 0x3
49 #define WDT_CMD_START_COUNTER (1 << 0)
50 #define WDT_CMD_DISABLE_COUNTER (1 << 1)
51 #define WDT_UNLOCK (0xc)
52 #define WDT_UNLOCK_PATTERN (0xc45a << 0)
56 #define TIMER_EN (1 << 31)
57 #define TIMER_PERIODIC (1 << 30)
60 struct watchdog_device wdd
;
61 void __iomem
*wdt_regs
;
62 void __iomem
*tmr_regs
;
65 #define WDT_HEARTBEAT 120
66 static int heartbeat
= WDT_HEARTBEAT
;
67 module_param(heartbeat
, int, 0);
68 MODULE_PARM_DESC(heartbeat
,
69 "Watchdog heartbeats in seconds. (default = "
70 __MODULE_STRING(WDT_HEARTBEAT
) ")");
72 static bool nowayout
= WATCHDOG_NOWAYOUT
;
73 module_param(nowayout
, bool, 0);
74 MODULE_PARM_DESC(nowayout
,
75 "Watchdog cannot be stopped once started (default="
76 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
78 static int tegra_wdt_start(struct watchdog_device
*wdd
)
80 struct tegra_wdt
*wdt
= watchdog_get_drvdata(wdd
);
84 * This thing has a fixed 1MHz clock. Normally, we would set the
85 * period to 1 second by writing 1000000ul, but the watchdog system
86 * reset actually occurs on the 4th expiration of this counter,
87 * so we set the period to 1/4 of this amount.
90 val
|= (TIMER_EN
| TIMER_PERIODIC
);
91 writel(val
, wdt
->tmr_regs
+ TIMER_PTV
);
94 * Set number of periods and start counter.
96 * Interrupt handler is not required for user space
97 * WDT accesses, since the caller is responsible to ping the
98 * WDT to reset the counter before expiration, through ioctls.
101 (wdd
->timeout
<< WDT_CFG_PERIOD_SHIFT
) |
102 WDT_CFG_PMC2CAR_RST_EN
;
103 writel(val
, wdt
->wdt_regs
+ WDT_CFG
);
105 writel(WDT_CMD_START_COUNTER
, wdt
->wdt_regs
+ WDT_CMD
);
110 static int tegra_wdt_stop(struct watchdog_device
*wdd
)
112 struct tegra_wdt
*wdt
= watchdog_get_drvdata(wdd
);
114 writel(WDT_UNLOCK_PATTERN
, wdt
->wdt_regs
+ WDT_UNLOCK
);
115 writel(WDT_CMD_DISABLE_COUNTER
, wdt
->wdt_regs
+ WDT_CMD
);
116 writel(0, wdt
->tmr_regs
+ TIMER_PTV
);
121 static int tegra_wdt_ping(struct watchdog_device
*wdd
)
123 struct tegra_wdt
*wdt
= watchdog_get_drvdata(wdd
);
125 writel(WDT_CMD_START_COUNTER
, wdt
->wdt_regs
+ WDT_CMD
);
130 static int tegra_wdt_set_timeout(struct watchdog_device
*wdd
,
131 unsigned int timeout
)
133 wdd
->timeout
= timeout
;
135 if (watchdog_active(wdd
)) {
137 return tegra_wdt_start(wdd
);
143 static unsigned int tegra_wdt_get_timeleft(struct watchdog_device
*wdd
)
145 struct tegra_wdt
*wdt
= watchdog_get_drvdata(wdd
);
150 val
= readl(wdt
->wdt_regs
+ WDT_STS
);
152 /* Current countdown (from timeout) */
153 count
= (val
>> WDT_STS_COUNT_SHIFT
) & WDT_STS_COUNT_MASK
;
155 /* Number of expirations (we are waiting for the 4th expiration) */
156 exp
= (val
>> WDT_STS_EXP_SHIFT
) & WDT_STS_EXP_MASK
;
159 * The entire thing is divided by 4 because we are ticking down 4 times
160 * faster due to needing to wait for the 4th expiration.
162 return (((3 - exp
) * wdd
->timeout
) + count
) / 4;
165 static const struct watchdog_info tegra_wdt_info
= {
166 .options
= WDIOF_SETTIMEOUT
|
169 .firmware_version
= 0,
170 .identity
= "Tegra Watchdog",
173 static const struct watchdog_ops tegra_wdt_ops
= {
174 .owner
= THIS_MODULE
,
175 .start
= tegra_wdt_start
,
176 .stop
= tegra_wdt_stop
,
177 .ping
= tegra_wdt_ping
,
178 .set_timeout
= tegra_wdt_set_timeout
,
179 .get_timeleft
= tegra_wdt_get_timeleft
,
182 static int tegra_wdt_probe(struct platform_device
*pdev
)
184 struct watchdog_device
*wdd
;
185 struct tegra_wdt
*wdt
;
186 struct resource
*res
;
190 /* This is the timer base. */
191 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
192 regs
= devm_ioremap_resource(&pdev
->dev
, res
);
194 return PTR_ERR(regs
);
197 * Allocate our watchdog driver data, which has the
198 * struct watchdog_device nested within it.
200 wdt
= devm_kzalloc(&pdev
->dev
, sizeof(*wdt
), GFP_KERNEL
);
204 /* Initialize struct tegra_wdt. */
205 wdt
->wdt_regs
= regs
+ WDT_BASE
;
206 wdt
->tmr_regs
= regs
+ WDT_TIMER_BASE
;
208 /* Initialize struct watchdog_device. */
210 wdd
->timeout
= heartbeat
;
211 wdd
->info
= &tegra_wdt_info
;
212 wdd
->ops
= &tegra_wdt_ops
;
213 wdd
->min_timeout
= MIN_WDT_TIMEOUT
;
214 wdd
->max_timeout
= MAX_WDT_TIMEOUT
;
215 wdd
->parent
= &pdev
->dev
;
217 watchdog_set_drvdata(wdd
, wdt
);
219 watchdog_set_nowayout(wdd
, nowayout
);
221 ret
= devm_watchdog_register_device(&pdev
->dev
, wdd
);
224 "failed to register watchdog device\n");
228 platform_set_drvdata(pdev
, wdt
);
231 "initialized (heartbeat = %d sec, nowayout = %d)\n",
232 heartbeat
, nowayout
);
237 static int tegra_wdt_remove(struct platform_device
*pdev
)
239 struct tegra_wdt
*wdt
= platform_get_drvdata(pdev
);
241 tegra_wdt_stop(&wdt
->wdd
);
243 dev_info(&pdev
->dev
, "removed wdt\n");
248 #ifdef CONFIG_PM_SLEEP
249 static int tegra_wdt_runtime_suspend(struct device
*dev
)
251 struct tegra_wdt
*wdt
= dev_get_drvdata(dev
);
253 if (watchdog_active(&wdt
->wdd
))
254 tegra_wdt_stop(&wdt
->wdd
);
259 static int tegra_wdt_runtime_resume(struct device
*dev
)
261 struct tegra_wdt
*wdt
= dev_get_drvdata(dev
);
263 if (watchdog_active(&wdt
->wdd
))
264 tegra_wdt_start(&wdt
->wdd
);
270 static const struct of_device_id tegra_wdt_of_match
[] = {
271 { .compatible
= "nvidia,tegra30-timer", },
274 MODULE_DEVICE_TABLE(of
, tegra_wdt_of_match
);
276 static const struct dev_pm_ops tegra_wdt_pm_ops
= {
277 SET_SYSTEM_SLEEP_PM_OPS(tegra_wdt_runtime_suspend
,
278 tegra_wdt_runtime_resume
)
281 static struct platform_driver tegra_wdt_driver
= {
282 .probe
= tegra_wdt_probe
,
283 .remove
= tegra_wdt_remove
,
286 .pm
= &tegra_wdt_pm_ops
,
287 .of_match_table
= tegra_wdt_of_match
,
290 module_platform_driver(tegra_wdt_driver
);
292 MODULE_AUTHOR("NVIDIA Corporation");
293 MODULE_DESCRIPTION("Tegra Watchdog Driver");
294 MODULE_LICENSE("GPL v2");