1 // SPDX-License-Identifier: GPL-2.0+
3 * drivers/char/watchdog/sp805-wdt.c
5 * Watchdog driver for ARM SP805 watchdog module
7 * Copyright (C) 2010 ST Microelectronics
8 * Viresh Kumar <vireshk@kernel.org>
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2 or later. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
15 #include <linux/device.h>
16 #include <linux/resource.h>
17 #include <linux/amba/bus.h>
18 #include <linux/bitops.h>
19 #include <linux/clk.h>
21 #include <linux/ioport.h>
22 #include <linux/kernel.h>
23 #include <linux/math64.h>
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
27 #include <linux/property.h>
28 #include <linux/reset.h>
29 #include <linux/slab.h>
30 #include <linux/spinlock.h>
31 #include <linux/types.h>
32 #include <linux/watchdog.h>
34 /* default timeout in seconds */
35 #define DEFAULT_TIMEOUT 60
37 #define MODULE_NAME "sp805-wdt"
39 /* watchdog register offsets and masks */
41 #define LOAD_MIN 0x00000001
42 #define LOAD_MAX 0xFFFFFFFF
43 #define WDTVALUE 0x004
44 #define WDTCONTROL 0x008
45 /* control register masks */
46 #define INT_ENABLE (1 << 0)
47 #define RESET_ENABLE (1 << 1)
48 #define ENABLE_MASK (INT_ENABLE | RESET_ENABLE)
49 #define WDTINTCLR 0x00C
52 #define INT_MASK (1 << 0)
54 #define UNLOCK 0x1ACCE551
55 #define LOCK 0x00000001
58 * struct sp805_wdt: sp805 wdt device structure
59 * @wdd: instance of struct watchdog_device
60 * @lock: spin lock protecting dev structure and io access
61 * @base: base address of wdt
62 * @clk: (optional) clock structure of wdt
63 * @rate: (optional) clock rate when provided via properties
64 * @adev: amba device structure of wdt
65 * @status: current status of wdt
66 * @load_val: load value to be set for current timeout
69 struct watchdog_device wdd
;
74 struct amba_device
*adev
;
75 unsigned int load_val
;
78 static bool nowayout
= WATCHDOG_NOWAYOUT
;
79 module_param(nowayout
, bool, 0);
80 MODULE_PARM_DESC(nowayout
,
81 "Set to 1 to keep watchdog running after device release");
83 /* returns true if wdt is running; otherwise returns false */
84 static bool wdt_is_running(struct watchdog_device
*wdd
)
86 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
87 u32 wdtcontrol
= readl_relaxed(wdt
->base
+ WDTCONTROL
);
89 return (wdtcontrol
& ENABLE_MASK
) == ENABLE_MASK
;
92 /* This routine finds load value that will reset system in required timeout */
93 static int wdt_setload(struct watchdog_device
*wdd
, unsigned int timeout
)
95 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
101 * sp805 runs counter with given value twice, after the end of first
102 * counter it gives an interrupt and then starts counter again. If
103 * interrupt already occurred then it resets the system. This is why
104 * load is half of what should be required.
106 load
= div_u64(rate
, 2) * timeout
- 1;
108 load
= (load
> LOAD_MAX
) ? LOAD_MAX
: load
;
109 load
= (load
< LOAD_MIN
) ? LOAD_MIN
: load
;
111 spin_lock(&wdt
->lock
);
112 wdt
->load_val
= load
;
113 /* roundup timeout to closest positive integer value */
114 wdd
->timeout
= div_u64((load
+ 1) * 2 + (rate
/ 2), rate
);
115 spin_unlock(&wdt
->lock
);
120 /* returns number of seconds left for reset to occur */
121 static unsigned int wdt_timeleft(struct watchdog_device
*wdd
)
123 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
126 spin_lock(&wdt
->lock
);
127 load
= readl_relaxed(wdt
->base
+ WDTVALUE
);
129 /*If the interrupt is inactive then time left is WDTValue + WDTLoad. */
130 if (!(readl_relaxed(wdt
->base
+ WDTRIS
) & INT_MASK
))
131 load
+= wdt
->load_val
+ 1;
132 spin_unlock(&wdt
->lock
);
134 return div_u64(load
, wdt
->rate
);
138 wdt_restart(struct watchdog_device
*wdd
, unsigned long mode
, void *cmd
)
140 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
142 writel_relaxed(UNLOCK
, wdt
->base
+ WDTLOCK
);
143 writel_relaxed(0, wdt
->base
+ WDTCONTROL
);
144 writel_relaxed(0, wdt
->base
+ WDTLOAD
);
145 writel_relaxed(INT_ENABLE
| RESET_ENABLE
, wdt
->base
+ WDTCONTROL
);
147 /* Flush posted writes. */
148 readl_relaxed(wdt
->base
+ WDTLOCK
);
153 static int wdt_config(struct watchdog_device
*wdd
, bool ping
)
155 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
160 ret
= clk_prepare_enable(wdt
->clk
);
162 dev_err(&wdt
->adev
->dev
, "clock enable fail");
167 spin_lock(&wdt
->lock
);
169 writel_relaxed(UNLOCK
, wdt
->base
+ WDTLOCK
);
170 writel_relaxed(wdt
->load_val
, wdt
->base
+ WDTLOAD
);
171 writel_relaxed(INT_MASK
, wdt
->base
+ WDTINTCLR
);
174 writel_relaxed(INT_ENABLE
| RESET_ENABLE
, wdt
->base
+
177 writel_relaxed(LOCK
, wdt
->base
+ WDTLOCK
);
179 /* Flush posted writes. */
180 readl_relaxed(wdt
->base
+ WDTLOCK
);
181 spin_unlock(&wdt
->lock
);
186 static int wdt_ping(struct watchdog_device
*wdd
)
188 return wdt_config(wdd
, true);
191 /* enables watchdog timers reset */
192 static int wdt_enable(struct watchdog_device
*wdd
)
194 return wdt_config(wdd
, false);
197 /* disables watchdog timers reset */
198 static int wdt_disable(struct watchdog_device
*wdd
)
200 struct sp805_wdt
*wdt
= watchdog_get_drvdata(wdd
);
202 spin_lock(&wdt
->lock
);
204 writel_relaxed(UNLOCK
, wdt
->base
+ WDTLOCK
);
205 writel_relaxed(0, wdt
->base
+ WDTCONTROL
);
206 writel_relaxed(LOCK
, wdt
->base
+ WDTLOCK
);
208 /* Flush posted writes. */
209 readl_relaxed(wdt
->base
+ WDTLOCK
);
210 spin_unlock(&wdt
->lock
);
212 clk_disable_unprepare(wdt
->clk
);
217 static const struct watchdog_info wdt_info
= {
218 .options
= WDIOF_MAGICCLOSE
| WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
,
219 .identity
= MODULE_NAME
,
222 static const struct watchdog_ops wdt_ops
= {
223 .owner
= THIS_MODULE
,
227 .set_timeout
= wdt_setload
,
228 .get_timeleft
= wdt_timeleft
,
229 .restart
= wdt_restart
,
233 sp805_wdt_probe(struct amba_device
*adev
, const struct amba_id
*id
)
235 struct sp805_wdt
*wdt
;
236 struct reset_control
*rst
;
240 wdt
= devm_kzalloc(&adev
->dev
, sizeof(*wdt
), GFP_KERNEL
);
246 wdt
->base
= devm_ioremap_resource(&adev
->dev
, &adev
->res
);
247 if (IS_ERR(wdt
->base
))
248 return PTR_ERR(wdt
->base
);
251 * When driver probe with ACPI device, clock devices
252 * are not available, so watchdog rate get from
253 * clock-frequency property given in _DSD object.
255 device_property_read_u64(&adev
->dev
, "clock-frequency", &rate
);
257 wdt
->clk
= devm_clk_get_optional(&adev
->dev
, NULL
);
258 if (IS_ERR(wdt
->clk
))
259 return dev_err_probe(&adev
->dev
, PTR_ERR(wdt
->clk
), "Clock not found\n");
261 wdt
->rate
= clk_get_rate(wdt
->clk
);
265 dev_err(&adev
->dev
, "no clock-frequency property\n");
269 rst
= devm_reset_control_get_optional_exclusive(&adev
->dev
, NULL
);
271 return dev_err_probe(&adev
->dev
, PTR_ERR(rst
), "Can not get reset\n");
273 reset_control_deassert(rst
);
276 wdt
->wdd
.info
= &wdt_info
;
277 wdt
->wdd
.ops
= &wdt_ops
;
278 wdt
->wdd
.parent
= &adev
->dev
;
280 spin_lock_init(&wdt
->lock
);
281 watchdog_set_nowayout(&wdt
->wdd
, nowayout
);
282 watchdog_set_drvdata(&wdt
->wdd
, wdt
);
283 watchdog_set_restart_priority(&wdt
->wdd
, 128);
284 watchdog_stop_on_unregister(&wdt
->wdd
);
287 * If 'timeout-sec' devicetree property is specified, use that.
288 * Otherwise, use DEFAULT_TIMEOUT
290 wdt
->wdd
.timeout
= DEFAULT_TIMEOUT
;
291 watchdog_init_timeout(&wdt
->wdd
, 0, &adev
->dev
);
292 wdt_setload(&wdt
->wdd
, wdt
->wdd
.timeout
);
295 * If HW is already running, enable/reset the wdt and set the running
296 * bit to tell the wdt subsystem
298 if (wdt_is_running(&wdt
->wdd
)) {
299 wdt_enable(&wdt
->wdd
);
300 set_bit(WDOG_HW_RUNNING
, &wdt
->wdd
.status
);
303 watchdog_stop_on_reboot(&wdt
->wdd
);
304 ret
= watchdog_register_device(&wdt
->wdd
);
307 amba_set_drvdata(adev
, wdt
);
309 dev_info(&adev
->dev
, "registration successful\n");
313 dev_err(&adev
->dev
, "Probe Failed!!!\n");
317 static void sp805_wdt_remove(struct amba_device
*adev
)
319 struct sp805_wdt
*wdt
= amba_get_drvdata(adev
);
321 watchdog_unregister_device(&wdt
->wdd
);
322 watchdog_set_drvdata(&wdt
->wdd
, NULL
);
325 static int __maybe_unused
sp805_wdt_suspend(struct device
*dev
)
327 struct sp805_wdt
*wdt
= dev_get_drvdata(dev
);
329 if (watchdog_active(&wdt
->wdd
))
330 return wdt_disable(&wdt
->wdd
);
335 static int __maybe_unused
sp805_wdt_resume(struct device
*dev
)
337 struct sp805_wdt
*wdt
= dev_get_drvdata(dev
);
339 if (watchdog_active(&wdt
->wdd
))
340 return wdt_enable(&wdt
->wdd
);
345 static SIMPLE_DEV_PM_OPS(sp805_wdt_dev_pm_ops
, sp805_wdt_suspend
,
348 static const struct amba_id sp805_wdt_ids
[] = {
360 MODULE_DEVICE_TABLE(amba
, sp805_wdt_ids
);
362 static struct amba_driver sp805_wdt_driver
= {
365 .pm
= &sp805_wdt_dev_pm_ops
,
367 .id_table
= sp805_wdt_ids
,
368 .probe
= sp805_wdt_probe
,
369 .remove
= sp805_wdt_remove
,
372 module_amba_driver(sp805_wdt_driver
);
374 MODULE_AUTHOR("Viresh Kumar <vireshk@kernel.org>");
375 MODULE_DESCRIPTION("ARM SP805 Watchdog Driver");
376 MODULE_LICENSE("GPL");