2 * drivers/char/watchdog/davinci_wdt.c
4 * Watchdog driver for DaVinci DM644x/DM646x processors
6 * Copyright (C) 2006-2013 Texas Instruments.
8 * 2007 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/types.h>
17 #include <linux/kernel.h>
18 #include <linux/watchdog.h>
19 #include <linux/platform_device.h>
21 #include <linux/device.h>
22 #include <linux/clk.h>
23 #include <linux/err.h>
25 #define MODULE_NAME "DAVINCI-WDT: "
27 #define DEFAULT_HEARTBEAT 60
28 #define MAX_HEARTBEAT 600 /* really the max margin is 264/27MHz*/
30 /* Timer register set definition */
41 /* TCR bit definitions */
42 #define ENAMODE12_DISABLED (0 << 6)
43 #define ENAMODE12_ONESHOT (1 << 6)
44 #define ENAMODE12_PERIODIC (2 << 6)
46 /* TGCR bit definitions */
47 #define TIM12RS_UNRESET (1 << 0)
48 #define TIM34RS_UNRESET (1 << 1)
49 #define TIMMODE_64BIT_WDOG (2 << 2)
51 /* WDTCR bit definitions */
52 #define WDEN (1 << 14)
53 #define WDFLAG (1 << 15)
54 #define WDKEY_SEQ0 (0xa5c6 << 16)
55 #define WDKEY_SEQ1 (0xda7e << 16)
60 * struct to hold data for each WDT device
61 * @base - base io address of WD device
62 * @clk - source clock of WDT
63 * @wdd - hold watchdog device as is in WDT core
65 struct davinci_wdt_device
{
68 struct watchdog_device wdd
;
71 static int davinci_wdt_start(struct watchdog_device
*wdd
)
75 unsigned long wdt_freq
;
76 struct davinci_wdt_device
*davinci_wdt
= watchdog_get_drvdata(wdd
);
78 wdt_freq
= clk_get_rate(davinci_wdt
->clk
);
80 /* disable, internal clock source */
81 iowrite32(0, davinci_wdt
->base
+ TCR
);
82 /* reset timer, set mode to 64-bit watchdog, and unreset */
83 iowrite32(0, davinci_wdt
->base
+ TGCR
);
84 tgcr
= TIMMODE_64BIT_WDOG
| TIM12RS_UNRESET
| TIM34RS_UNRESET
;
85 iowrite32(tgcr
, davinci_wdt
->base
+ TGCR
);
86 /* clear counter regs */
87 iowrite32(0, davinci_wdt
->base
+ TIM12
);
88 iowrite32(0, davinci_wdt
->base
+ TIM34
);
89 /* set timeout period */
90 timer_margin
= (((u64
)wdd
->timeout
* wdt_freq
) & 0xffffffff);
91 iowrite32(timer_margin
, davinci_wdt
->base
+ PRD12
);
92 timer_margin
= (((u64
)wdd
->timeout
* wdt_freq
) >> 32);
93 iowrite32(timer_margin
, davinci_wdt
->base
+ PRD34
);
94 /* enable run continuously */
95 iowrite32(ENAMODE12_PERIODIC
, davinci_wdt
->base
+ TCR
);
96 /* Once the WDT is in pre-active state write to
97 * TIM12, TIM34, PRD12, PRD34, TCR, TGCR, WDTCR are
98 * write protected (except for the WDKEY field)
100 /* put watchdog in pre-active state */
101 iowrite32(WDKEY_SEQ0
| WDEN
, davinci_wdt
->base
+ WDTCR
);
102 /* put watchdog in active state */
103 iowrite32(WDKEY_SEQ1
| WDEN
, davinci_wdt
->base
+ WDTCR
);
107 static int davinci_wdt_ping(struct watchdog_device
*wdd
)
109 struct davinci_wdt_device
*davinci_wdt
= watchdog_get_drvdata(wdd
);
111 /* put watchdog in service state */
112 iowrite32(WDKEY_SEQ0
, davinci_wdt
->base
+ WDTCR
);
113 /* put watchdog in active state */
114 iowrite32(WDKEY_SEQ1
, davinci_wdt
->base
+ WDTCR
);
118 static unsigned int davinci_wdt_get_timeleft(struct watchdog_device
*wdd
)
123 struct davinci_wdt_device
*davinci_wdt
= watchdog_get_drvdata(wdd
);
125 /* if timeout has occured then return 0 */
126 val
= ioread32(davinci_wdt
->base
+ WDTCR
);
130 freq
= clk_get_rate(davinci_wdt
->clk
);
135 timer_counter
= ioread32(davinci_wdt
->base
+ TIM12
);
136 timer_counter
|= ((u64
)ioread32(davinci_wdt
->base
+ TIM34
) << 32);
138 do_div(timer_counter
, freq
);
140 return wdd
->timeout
- timer_counter
;
143 static int davinci_wdt_restart(struct watchdog_device
*wdd
,
144 unsigned long action
, void *data
)
146 struct davinci_wdt_device
*davinci_wdt
= watchdog_get_drvdata(wdd
);
149 /* disable, internal clock source */
150 iowrite32(0, davinci_wdt
->base
+ TCR
);
152 /* reset timer, set mode to 64-bit watchdog, and unreset */
154 iowrite32(tgcr
, davinci_wdt
->base
+ TGCR
);
155 tgcr
= TIMMODE_64BIT_WDOG
| TIM12RS_UNRESET
| TIM34RS_UNRESET
;
156 iowrite32(tgcr
, davinci_wdt
->base
+ TGCR
);
158 /* clear counter and period regs */
159 iowrite32(0, davinci_wdt
->base
+ TIM12
);
160 iowrite32(0, davinci_wdt
->base
+ TIM34
);
161 iowrite32(0, davinci_wdt
->base
+ PRD12
);
162 iowrite32(0, davinci_wdt
->base
+ PRD34
);
164 /* put watchdog in pre-active state */
165 wdtcr
= WDKEY_SEQ0
| WDEN
;
166 iowrite32(wdtcr
, davinci_wdt
->base
+ WDTCR
);
168 /* put watchdog in active state */
169 wdtcr
= WDKEY_SEQ1
| WDEN
;
170 iowrite32(wdtcr
, davinci_wdt
->base
+ WDTCR
);
172 /* write an invalid value to the WDKEY field to trigger a restart */
174 iowrite32(wdtcr
, davinci_wdt
->base
+ WDTCR
);
179 static const struct watchdog_info davinci_wdt_info
= {
180 .options
= WDIOF_KEEPALIVEPING
,
181 .identity
= "DaVinci/Keystone Watchdog",
184 static const struct watchdog_ops davinci_wdt_ops
= {
185 .owner
= THIS_MODULE
,
186 .start
= davinci_wdt_start
,
187 .stop
= davinci_wdt_ping
,
188 .ping
= davinci_wdt_ping
,
189 .get_timeleft
= davinci_wdt_get_timeleft
,
190 .restart
= davinci_wdt_restart
,
193 static int davinci_wdt_probe(struct platform_device
*pdev
)
196 struct device
*dev
= &pdev
->dev
;
197 struct resource
*wdt_mem
;
198 struct watchdog_device
*wdd
;
199 struct davinci_wdt_device
*davinci_wdt
;
201 davinci_wdt
= devm_kzalloc(dev
, sizeof(*davinci_wdt
), GFP_KERNEL
);
205 davinci_wdt
->clk
= devm_clk_get(dev
, NULL
);
207 if (IS_ERR(davinci_wdt
->clk
)) {
208 if (PTR_ERR(davinci_wdt
->clk
) != -EPROBE_DEFER
)
209 dev_err(&pdev
->dev
, "failed to get clock node\n");
210 return PTR_ERR(davinci_wdt
->clk
);
213 ret
= clk_prepare_enable(davinci_wdt
->clk
);
215 dev_err(&pdev
->dev
, "failed to prepare clock\n");
219 platform_set_drvdata(pdev
, davinci_wdt
);
221 wdd
= &davinci_wdt
->wdd
;
222 wdd
->info
= &davinci_wdt_info
;
223 wdd
->ops
= &davinci_wdt_ops
;
224 wdd
->min_timeout
= 1;
225 wdd
->max_timeout
= MAX_HEARTBEAT
;
226 wdd
->timeout
= DEFAULT_HEARTBEAT
;
227 wdd
->parent
= &pdev
->dev
;
229 watchdog_init_timeout(wdd
, heartbeat
, dev
);
231 dev_info(dev
, "heartbeat %d sec\n", wdd
->timeout
);
233 watchdog_set_drvdata(wdd
, davinci_wdt
);
234 watchdog_set_nowayout(wdd
, 1);
235 watchdog_set_restart_priority(wdd
, 128);
237 wdt_mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
238 davinci_wdt
->base
= devm_ioremap_resource(dev
, wdt_mem
);
239 if (IS_ERR(davinci_wdt
->base
))
240 return PTR_ERR(davinci_wdt
->base
);
242 ret
= watchdog_register_device(wdd
);
244 clk_disable_unprepare(davinci_wdt
->clk
);
245 dev_err(dev
, "cannot register watchdog device\n");
251 static int davinci_wdt_remove(struct platform_device
*pdev
)
253 struct davinci_wdt_device
*davinci_wdt
= platform_get_drvdata(pdev
);
255 watchdog_unregister_device(&davinci_wdt
->wdd
);
256 clk_disable_unprepare(davinci_wdt
->clk
);
261 static const struct of_device_id davinci_wdt_of_match
[] = {
262 { .compatible
= "ti,davinci-wdt", },
265 MODULE_DEVICE_TABLE(of
, davinci_wdt_of_match
);
267 static struct platform_driver platform_wdt_driver
= {
269 .name
= "davinci-wdt",
270 .of_match_table
= davinci_wdt_of_match
,
272 .probe
= davinci_wdt_probe
,
273 .remove
= davinci_wdt_remove
,
276 module_platform_driver(platform_wdt_driver
);
278 MODULE_AUTHOR("Texas Instruments");
279 MODULE_DESCRIPTION("DaVinci Watchdog Driver");
281 module_param(heartbeat
, int, 0);
282 MODULE_PARM_DESC(heartbeat
,
283 "Watchdog heartbeat period in seconds from 1 to "
284 __MODULE_STRING(MAX_HEARTBEAT
) ", default "
285 __MODULE_STRING(DEFAULT_HEARTBEAT
));
287 MODULE_LICENSE("GPL");
288 MODULE_ALIAS("platform:davinci-wdt");