1 // SPDX-License-Identifier: GPL-2.0+
3 * Cadence WDT driver - Used by Xilinx Zynq
5 * Copyright (C) 2010 - 2014 Xilinx, Inc.
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
13 #include <linux/irq.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/watchdog.h>
20 #define CDNS_WDT_DEFAULT_TIMEOUT 10
21 /* Supports 1 - 516 sec */
22 #define CDNS_WDT_MIN_TIMEOUT 1
23 #define CDNS_WDT_MAX_TIMEOUT 516
26 #define CDNS_WDT_RESTART_KEY 0x00001999
28 /* Counter register access key */
29 #define CDNS_WDT_REGISTER_ACCESS_KEY 0x00920000
31 /* Counter value divisor */
32 #define CDNS_WDT_COUNTER_VALUE_DIVISOR 0x1000
34 /* Clock prescaler value and selection */
35 #define CDNS_WDT_PRESCALE_64 64
36 #define CDNS_WDT_PRESCALE_512 512
37 #define CDNS_WDT_PRESCALE_4096 4096
38 #define CDNS_WDT_PRESCALE_SELECT_64 1
39 #define CDNS_WDT_PRESCALE_SELECT_512 2
40 #define CDNS_WDT_PRESCALE_SELECT_4096 3
42 /* Input clock frequency */
43 #define CDNS_WDT_CLK_10MHZ 10000000
44 #define CDNS_WDT_CLK_75MHZ 75000000
46 /* Counter maximum value */
47 #define CDNS_WDT_COUNTER_MAX 0xFFF
49 static int wdt_timeout
;
50 static int nowayout
= WATCHDOG_NOWAYOUT
;
52 module_param(wdt_timeout
, int, 0644);
53 MODULE_PARM_DESC(wdt_timeout
,
54 "Watchdog time in seconds. (default="
55 __MODULE_STRING(CDNS_WDT_DEFAULT_TIMEOUT
) ")");
57 module_param(nowayout
, int, 0644);
58 MODULE_PARM_DESC(nowayout
,
59 "Watchdog cannot be stopped once started (default="
60 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
63 * struct cdns_wdt - Watchdog device structure
64 * @regs: baseaddress of device
66 * @clk: struct clk * of a clock source
67 * @prescaler: for saving prescaler value
68 * @ctrl_clksel: counter clock prescaler selection
69 * @io_lock: spinlock for IO register access
70 * @cdns_wdt_device: watchdog device structure
72 * Structure containing parameters specific to cadence watchdog.
81 struct watchdog_device cdns_wdt_device
;
84 /* Write access to Registers */
85 static inline void cdns_wdt_writereg(struct cdns_wdt
*wdt
, u32 offset
, u32 val
)
87 writel_relaxed(val
, wdt
->regs
+ offset
);
90 /*************************Register Map**************************************/
92 /* Register Offsets for the WDT */
93 #define CDNS_WDT_ZMR_OFFSET 0x0 /* Zero Mode Register */
94 #define CDNS_WDT_CCR_OFFSET 0x4 /* Counter Control Register */
95 #define CDNS_WDT_RESTART_OFFSET 0x8 /* Restart Register */
96 #define CDNS_WDT_SR_OFFSET 0xC /* Status Register */
99 * Zero Mode Register - This register controls how the time out is indicated
100 * and also contains the access code to allow writes to the register (0xABC).
102 #define CDNS_WDT_ZMR_WDEN_MASK 0x00000001 /* Enable the WDT */
103 #define CDNS_WDT_ZMR_RSTEN_MASK 0x00000002 /* Enable the reset output */
104 #define CDNS_WDT_ZMR_IRQEN_MASK 0x00000004 /* Enable IRQ output */
105 #define CDNS_WDT_ZMR_RSTLEN_16 0x00000030 /* Reset pulse of 16 pclk cycles */
106 #define CDNS_WDT_ZMR_ZKEY_VAL 0x00ABC000 /* Access key, 0xABC << 12 */
108 * Counter Control register - This register controls how fast the timer runs
109 * and the reset value and also contains the access code to allow writes to
112 #define CDNS_WDT_CCR_CRV_MASK 0x00003FFC /* Counter reset value */
115 * cdns_wdt_stop - Stop the watchdog.
117 * @wdd: watchdog device
119 * Read the contents of the ZMR register, clear the WDEN bit
120 * in the register and set the access key for successful write.
124 static int cdns_wdt_stop(struct watchdog_device
*wdd
)
126 struct cdns_wdt
*wdt
= watchdog_get_drvdata(wdd
);
128 spin_lock(&wdt
->io_lock
);
129 cdns_wdt_writereg(wdt
, CDNS_WDT_ZMR_OFFSET
,
130 CDNS_WDT_ZMR_ZKEY_VAL
& (~CDNS_WDT_ZMR_WDEN_MASK
));
131 spin_unlock(&wdt
->io_lock
);
137 * cdns_wdt_reload - Reload the watchdog timer (i.e. pat the watchdog).
139 * @wdd: watchdog device
141 * Write the restart key value (0x00001999) to the restart register.
145 static int cdns_wdt_reload(struct watchdog_device
*wdd
)
147 struct cdns_wdt
*wdt
= watchdog_get_drvdata(wdd
);
149 spin_lock(&wdt
->io_lock
);
150 cdns_wdt_writereg(wdt
, CDNS_WDT_RESTART_OFFSET
,
151 CDNS_WDT_RESTART_KEY
);
152 spin_unlock(&wdt
->io_lock
);
158 * cdns_wdt_start - Enable and start the watchdog.
160 * @wdd: watchdog device
162 * The counter value is calculated according to the formula:
163 * calculated count = (timeout * clock) / prescaler + 1.
164 * The calculated count is divided by 0x1000 to obtain the field value
165 * to write to counter control register.
166 * Clears the contents of prescaler and counter reset value. Sets the
167 * prescaler to 4096 and the calculated count and access key
168 * to write to CCR Register.
169 * Sets the WDT (WDEN bit) and either the Reset signal(RSTEN bit)
170 * or Interrupt signal(IRQEN) with a specified cycles and the access
171 * key to write to ZMR Register.
175 static int cdns_wdt_start(struct watchdog_device
*wdd
)
177 struct cdns_wdt
*wdt
= watchdog_get_drvdata(wdd
);
178 unsigned int data
= 0;
179 unsigned short count
;
180 unsigned long clock_f
= clk_get_rate(wdt
->clk
);
183 * Counter value divisor to obtain the value of
184 * counter reset to be written to control register.
186 count
= (wdd
->timeout
* (clock_f
/ wdt
->prescaler
)) /
187 CDNS_WDT_COUNTER_VALUE_DIVISOR
+ 1;
189 if (count
> CDNS_WDT_COUNTER_MAX
)
190 count
= CDNS_WDT_COUNTER_MAX
;
192 spin_lock(&wdt
->io_lock
);
193 cdns_wdt_writereg(wdt
, CDNS_WDT_ZMR_OFFSET
,
194 CDNS_WDT_ZMR_ZKEY_VAL
);
196 count
= (count
<< 2) & CDNS_WDT_CCR_CRV_MASK
;
198 /* Write counter access key first to be able write to register */
199 data
= count
| CDNS_WDT_REGISTER_ACCESS_KEY
| wdt
->ctrl_clksel
;
200 cdns_wdt_writereg(wdt
, CDNS_WDT_CCR_OFFSET
, data
);
201 data
= CDNS_WDT_ZMR_WDEN_MASK
| CDNS_WDT_ZMR_RSTLEN_16
|
202 CDNS_WDT_ZMR_ZKEY_VAL
;
204 /* Reset on timeout if specified in device tree. */
206 data
|= CDNS_WDT_ZMR_RSTEN_MASK
;
207 data
&= ~CDNS_WDT_ZMR_IRQEN_MASK
;
209 data
&= ~CDNS_WDT_ZMR_RSTEN_MASK
;
210 data
|= CDNS_WDT_ZMR_IRQEN_MASK
;
212 cdns_wdt_writereg(wdt
, CDNS_WDT_ZMR_OFFSET
, data
);
213 cdns_wdt_writereg(wdt
, CDNS_WDT_RESTART_OFFSET
,
214 CDNS_WDT_RESTART_KEY
);
215 spin_unlock(&wdt
->io_lock
);
221 * cdns_wdt_settimeout - Set a new timeout value for the watchdog device.
223 * @wdd: watchdog device
224 * @new_time: new timeout value that needs to be set
225 * Return: 0 on success
227 * Update the watchdog_device timeout with new value which is used when
228 * cdns_wdt_start is called.
230 static int cdns_wdt_settimeout(struct watchdog_device
*wdd
,
231 unsigned int new_time
)
233 wdd
->timeout
= new_time
;
235 return cdns_wdt_start(wdd
);
239 * cdns_wdt_irq_handler - Notifies of watchdog timeout.
241 * @irq: interrupt number
242 * @dev_id: pointer to a platform device structure
243 * Return: IRQ_HANDLED
245 * The handler is invoked when the watchdog times out and a
246 * reset on timeout has not been enabled.
248 static irqreturn_t
cdns_wdt_irq_handler(int irq
, void *dev_id
)
250 struct platform_device
*pdev
= dev_id
;
253 "Watchdog timed out. Internal reset not enabled\n");
259 * Info structure used to indicate the features supported by the device
260 * to the upper layers. This is defined in watchdog.h header file.
262 static const struct watchdog_info cdns_wdt_info
= {
263 .identity
= "cdns_wdt watchdog",
264 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
|
268 /* Watchdog Core Ops */
269 static const struct watchdog_ops cdns_wdt_ops
= {
270 .owner
= THIS_MODULE
,
271 .start
= cdns_wdt_start
,
272 .stop
= cdns_wdt_stop
,
273 .ping
= cdns_wdt_reload
,
274 .set_timeout
= cdns_wdt_settimeout
,
277 /************************Platform Operations*****************************/
279 * cdns_wdt_probe - Probe call for the device.
281 * @pdev: handle to the platform device structure.
282 * Return: 0 on success, negative error otherwise.
284 * It does all the memory allocation and registration for the device.
286 static int cdns_wdt_probe(struct platform_device
*pdev
)
288 struct resource
*res
;
290 unsigned long clock_f
;
291 struct cdns_wdt
*wdt
;
292 struct watchdog_device
*cdns_wdt_device
;
294 wdt
= devm_kzalloc(&pdev
->dev
, sizeof(*wdt
), GFP_KERNEL
);
298 cdns_wdt_device
= &wdt
->cdns_wdt_device
;
299 cdns_wdt_device
->info
= &cdns_wdt_info
;
300 cdns_wdt_device
->ops
= &cdns_wdt_ops
;
301 cdns_wdt_device
->timeout
= CDNS_WDT_DEFAULT_TIMEOUT
;
302 cdns_wdt_device
->min_timeout
= CDNS_WDT_MIN_TIMEOUT
;
303 cdns_wdt_device
->max_timeout
= CDNS_WDT_MAX_TIMEOUT
;
305 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
306 wdt
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
307 if (IS_ERR(wdt
->regs
))
308 return PTR_ERR(wdt
->regs
);
310 /* Register the interrupt */
311 wdt
->rst
= of_property_read_bool(pdev
->dev
.of_node
, "reset-on-timeout");
312 irq
= platform_get_irq(pdev
, 0);
313 if (!wdt
->rst
&& irq
>= 0) {
314 ret
= devm_request_irq(&pdev
->dev
, irq
, cdns_wdt_irq_handler
, 0,
318 "cannot register interrupt handler err=%d\n",
324 /* Initialize the members of cdns_wdt structure */
325 cdns_wdt_device
->parent
= &pdev
->dev
;
327 ret
= watchdog_init_timeout(cdns_wdt_device
, wdt_timeout
, &pdev
->dev
);
329 dev_err(&pdev
->dev
, "unable to set timeout value\n");
333 watchdog_set_nowayout(cdns_wdt_device
, nowayout
);
334 watchdog_stop_on_reboot(cdns_wdt_device
);
335 watchdog_set_drvdata(cdns_wdt_device
, wdt
);
337 wdt
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
338 if (IS_ERR(wdt
->clk
)) {
339 dev_err(&pdev
->dev
, "input clock not found\n");
340 ret
= PTR_ERR(wdt
->clk
);
344 ret
= clk_prepare_enable(wdt
->clk
);
346 dev_err(&pdev
->dev
, "unable to enable clock\n");
350 clock_f
= clk_get_rate(wdt
->clk
);
351 if (clock_f
<= CDNS_WDT_CLK_75MHZ
) {
352 wdt
->prescaler
= CDNS_WDT_PRESCALE_512
;
353 wdt
->ctrl_clksel
= CDNS_WDT_PRESCALE_SELECT_512
;
355 wdt
->prescaler
= CDNS_WDT_PRESCALE_4096
;
356 wdt
->ctrl_clksel
= CDNS_WDT_PRESCALE_SELECT_4096
;
359 spin_lock_init(&wdt
->io_lock
);
361 ret
= watchdog_register_device(cdns_wdt_device
);
363 dev_err(&pdev
->dev
, "Failed to register wdt device\n");
364 goto err_clk_disable
;
366 platform_set_drvdata(pdev
, wdt
);
368 dev_info(&pdev
->dev
, "Xilinx Watchdog Timer at %p with timeout %ds%s\n",
369 wdt
->regs
, cdns_wdt_device
->timeout
,
370 nowayout
? ", nowayout" : "");
375 clk_disable_unprepare(wdt
->clk
);
381 * cdns_wdt_remove - Probe call for the device.
383 * @pdev: handle to the platform device structure.
384 * Return: 0 on success, otherwise negative error.
386 * Unregister the device after releasing the resources.
388 static int cdns_wdt_remove(struct platform_device
*pdev
)
390 struct cdns_wdt
*wdt
= platform_get_drvdata(pdev
);
392 cdns_wdt_stop(&wdt
->cdns_wdt_device
);
393 watchdog_unregister_device(&wdt
->cdns_wdt_device
);
394 clk_disable_unprepare(wdt
->clk
);
400 * cdns_wdt_shutdown - Stop the device.
402 * @pdev: handle to the platform structure.
405 static void cdns_wdt_shutdown(struct platform_device
*pdev
)
407 struct cdns_wdt
*wdt
= platform_get_drvdata(pdev
);
409 cdns_wdt_stop(&wdt
->cdns_wdt_device
);
410 clk_disable_unprepare(wdt
->clk
);
414 * cdns_wdt_suspend - Stop the device.
416 * @dev: handle to the device structure.
419 static int __maybe_unused
cdns_wdt_suspend(struct device
*dev
)
421 struct cdns_wdt
*wdt
= dev_get_drvdata(dev
);
423 if (watchdog_active(&wdt
->cdns_wdt_device
)) {
424 cdns_wdt_stop(&wdt
->cdns_wdt_device
);
425 clk_disable_unprepare(wdt
->clk
);
432 * cdns_wdt_resume - Resume the device.
434 * @dev: handle to the device structure.
435 * Return: 0 on success, errno otherwise.
437 static int __maybe_unused
cdns_wdt_resume(struct device
*dev
)
440 struct cdns_wdt
*wdt
= dev_get_drvdata(dev
);
442 if (watchdog_active(&wdt
->cdns_wdt_device
)) {
443 ret
= clk_prepare_enable(wdt
->clk
);
445 dev_err(dev
, "unable to enable clock\n");
448 cdns_wdt_start(&wdt
->cdns_wdt_device
);
454 static SIMPLE_DEV_PM_OPS(cdns_wdt_pm_ops
, cdns_wdt_suspend
, cdns_wdt_resume
);
456 static const struct of_device_id cdns_wdt_of_match
[] = {
457 { .compatible
= "cdns,wdt-r1p2", },
458 { /* end of table */ }
460 MODULE_DEVICE_TABLE(of
, cdns_wdt_of_match
);
462 /* Driver Structure */
463 static struct platform_driver cdns_wdt_driver
= {
464 .probe
= cdns_wdt_probe
,
465 .remove
= cdns_wdt_remove
,
466 .shutdown
= cdns_wdt_shutdown
,
469 .of_match_table
= cdns_wdt_of_match
,
470 .pm
= &cdns_wdt_pm_ops
,
474 module_platform_driver(cdns_wdt_driver
);
476 MODULE_AUTHOR("Xilinx, Inc.");
477 MODULE_DESCRIPTION("Watchdog driver for Cadence WDT");
478 MODULE_LICENSE("GPL");