2 * drivers/char/watchdog/davinci_wdt.c
4 * Watchdog driver for DaVinci DM644x/DM646x processors
6 * Copyright (C) 2006 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>
19 #include <linux/miscdevice.h>
20 #include <linux/watchdog.h>
21 #include <linux/init.h>
22 #include <linux/bitops.h>
23 #include <linux/platform_device.h>
24 #include <linux/spinlock.h>
25 #include <linux/uaccess.h>
27 #include <linux/device.h>
28 #include <linux/clk.h>
30 #define MODULE_NAME "DAVINCI-WDT: "
32 #define DEFAULT_HEARTBEAT 60
33 #define MAX_HEARTBEAT 600 /* really the max margin is 264/27MHz*/
35 /* Timer register set definition */
46 /* TCR bit definitions */
47 #define ENAMODE12_DISABLED (0 << 6)
48 #define ENAMODE12_ONESHOT (1 << 6)
49 #define ENAMODE12_PERIODIC (2 << 6)
51 /* TGCR bit definitions */
52 #define TIM12RS_UNRESET (1 << 0)
53 #define TIM34RS_UNRESET (1 << 1)
54 #define TIMMODE_64BIT_WDOG (2 << 2)
56 /* WDTCR bit definitions */
57 #define WDEN (1 << 14)
58 #define WDFLAG (1 << 15)
59 #define WDKEY_SEQ0 (0xa5c6 << 16)
60 #define WDKEY_SEQ1 (0xda7e << 16)
62 static int heartbeat
= DEFAULT_HEARTBEAT
;
64 static DEFINE_SPINLOCK(io_lock
);
65 static unsigned long wdt_status
;
67 #define WDT_OK_TO_CLOSE 1
68 #define WDT_REGION_INITED 2
69 #define WDT_DEVICE_INITED 3
71 static struct resource
*wdt_mem
;
72 static void __iomem
*wdt_base
;
75 static void wdt_service(void)
79 /* put watchdog in service state */
80 iowrite32(WDKEY_SEQ0
, wdt_base
+ WDTCR
);
81 /* put watchdog in active state */
82 iowrite32(WDKEY_SEQ1
, wdt_base
+ WDTCR
);
84 spin_unlock(&io_lock
);
87 static void wdt_enable(void)
91 unsigned long wdt_freq
;
93 wdt_freq
= clk_get_rate(wdt_clk
);
97 /* disable, internal clock source */
98 iowrite32(0, wdt_base
+ TCR
);
99 /* reset timer, set mode to 64-bit watchdog, and unreset */
100 iowrite32(0, wdt_base
+ TGCR
);
101 tgcr
= TIMMODE_64BIT_WDOG
| TIM12RS_UNRESET
| TIM34RS_UNRESET
;
102 iowrite32(tgcr
, wdt_base
+ TGCR
);
103 /* clear counter regs */
104 iowrite32(0, wdt_base
+ TIM12
);
105 iowrite32(0, wdt_base
+ TIM34
);
106 /* set timeout period */
107 timer_margin
= (((u64
)heartbeat
* wdt_freq
) & 0xffffffff);
108 iowrite32(timer_margin
, wdt_base
+ PRD12
);
109 timer_margin
= (((u64
)heartbeat
* wdt_freq
) >> 32);
110 iowrite32(timer_margin
, wdt_base
+ PRD34
);
111 /* enable run continuously */
112 iowrite32(ENAMODE12_PERIODIC
, wdt_base
+ TCR
);
113 /* Once the WDT is in pre-active state write to
114 * TIM12, TIM34, PRD12, PRD34, TCR, TGCR, WDTCR are
115 * write protected (except for the WDKEY field)
117 /* put watchdog in pre-active state */
118 iowrite32(WDKEY_SEQ0
| WDEN
, wdt_base
+ WDTCR
);
119 /* put watchdog in active state */
120 iowrite32(WDKEY_SEQ1
| WDEN
, wdt_base
+ WDTCR
);
122 spin_unlock(&io_lock
);
125 static int davinci_wdt_open(struct inode
*inode
, struct file
*file
)
127 if (test_and_set_bit(WDT_IN_USE
, &wdt_status
))
132 return nonseekable_open(inode
, file
);
136 davinci_wdt_write(struct file
*file
, const char *data
, size_t len
,
145 static struct watchdog_info ident
= {
146 .options
= WDIOF_KEEPALIVEPING
,
147 .identity
= "DaVinci Watchdog",
150 static long davinci_wdt_ioctl(struct file
*file
,
151 unsigned int cmd
, unsigned long arg
)
156 case WDIOC_GETSUPPORT
:
157 ret
= copy_to_user((struct watchdog_info
*)arg
, &ident
,
158 sizeof(ident
)) ? -EFAULT
: 0;
161 case WDIOC_GETSTATUS
:
162 case WDIOC_GETBOOTSTATUS
:
163 ret
= put_user(0, (int *)arg
);
166 case WDIOC_KEEPALIVE
:
171 case WDIOC_GETTIMEOUT
:
172 ret
= put_user(heartbeat
, (int *)arg
);
178 static int davinci_wdt_release(struct inode
*inode
, struct file
*file
)
181 clear_bit(WDT_IN_USE
, &wdt_status
);
186 static const struct file_operations davinci_wdt_fops
= {
187 .owner
= THIS_MODULE
,
189 .write
= davinci_wdt_write
,
190 .unlocked_ioctl
= davinci_wdt_ioctl
,
191 .open
= davinci_wdt_open
,
192 .release
= davinci_wdt_release
,
195 static struct miscdevice davinci_wdt_miscdev
= {
196 .minor
= WATCHDOG_MINOR
,
198 .fops
= &davinci_wdt_fops
,
201 static int __devinit
davinci_wdt_probe(struct platform_device
*pdev
)
204 struct resource
*res
;
205 struct device
*dev
= &pdev
->dev
;
207 wdt_clk
= clk_get(dev
, NULL
);
208 if (WARN_ON(IS_ERR(wdt_clk
)))
209 return PTR_ERR(wdt_clk
);
213 if (heartbeat
< 1 || heartbeat
> MAX_HEARTBEAT
)
214 heartbeat
= DEFAULT_HEARTBEAT
;
216 dev_info(dev
, "heartbeat %d sec\n", heartbeat
);
218 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
220 dev_err(dev
, "failed to get memory region resource\n");
224 size
= resource_size(res
);
225 wdt_mem
= request_mem_region(res
->start
, size
, pdev
->name
);
227 if (wdt_mem
== NULL
) {
228 dev_err(dev
, "failed to get memory region\n");
232 wdt_base
= ioremap(res
->start
, size
);
234 dev_err(dev
, "failed to map memory region\n");
238 ret
= misc_register(&davinci_wdt_miscdev
);
240 dev_err(dev
, "cannot register misc device\n");
241 release_resource(wdt_mem
);
244 set_bit(WDT_DEVICE_INITED
, &wdt_status
);
251 static int __devexit
davinci_wdt_remove(struct platform_device
*pdev
)
253 misc_deregister(&davinci_wdt_miscdev
);
255 release_resource(wdt_mem
);
260 clk_disable(wdt_clk
);
266 static struct platform_driver platform_wdt_driver
= {
269 .owner
= THIS_MODULE
,
271 .probe
= davinci_wdt_probe
,
272 .remove
= __devexit_p(davinci_wdt_remove
),
275 static int __init
davinci_wdt_init(void)
277 return platform_driver_register(&platform_wdt_driver
);
280 static void __exit
davinci_wdt_exit(void)
282 platform_driver_unregister(&platform_wdt_driver
);
285 module_init(davinci_wdt_init
);
286 module_exit(davinci_wdt_exit
);
288 MODULE_AUTHOR("Texas Instruments");
289 MODULE_DESCRIPTION("DaVinci Watchdog Driver");
291 module_param(heartbeat
, int, 0);
292 MODULE_PARM_DESC(heartbeat
,
293 "Watchdog heartbeat period in seconds from 1 to "
294 __MODULE_STRING(MAX_HEARTBEAT
) ", default "
295 __MODULE_STRING(DEFAULT_HEARTBEAT
));
297 MODULE_LICENSE("GPL");
298 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
299 MODULE_ALIAS("platform:watchdog");