2 * drivers/char/watchdog/pnx4008_wdt.c
4 * Watchdog driver for PNX4008 board
6 * Authors: Dmitry Chigirev <source@mvista.com>,
7 * Vitaly Wool <vitalywool@gmail.com>
8 * Based on sa1100 driver,
9 * Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
11 * 2005-2006 (c) MontaVista Software, Inc. This file is licensed under
12 * the terms of the GNU General Public License version 2. This program
13 * is licensed "as is" without any warranty of any kind, whether express
17 #include <linux/config.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/types.h>
21 #include <linux/kernel.h>
23 #include <linux/miscdevice.h>
24 #include <linux/watchdog.h>
25 #include <linux/init.h>
26 #include <linux/bitops.h>
27 #include <linux/ioport.h>
28 #include <linux/device.h>
29 #include <linux/platform_device.h>
30 #include <linux/clk.h>
31 #include <linux/spinlock.h>
33 #include <asm/hardware.h>
34 #include <asm/uaccess.h>
37 #define MODULE_NAME "PNX4008-WDT: "
39 /* WatchDog Timer - Chapter 23 Page 207 */
41 #define DEFAULT_HEARTBEAT 19
42 #define MAX_HEARTBEAT 60
44 /* Watchdog timer register set definition */
45 #define WDTIM_INT(p) ((p) + 0x0)
46 #define WDTIM_CTRL(p) ((p) + 0x4)
47 #define WDTIM_COUNTER(p) ((p) + 0x8)
48 #define WDTIM_MCTRL(p) ((p) + 0xC)
49 #define WDTIM_MATCH0(p) ((p) + 0x10)
50 #define WDTIM_EMR(p) ((p) + 0x14)
51 #define WDTIM_PULSE(p) ((p) + 0x18)
52 #define WDTIM_RES(p) ((p) + 0x1C)
54 /* WDTIM_INT bit definitions */
57 /* WDTIM_CTRL bit definitions */
59 #define RESET_COUNT (1<<1)
60 #define DEBUG_EN (1<<2)
62 /* WDTIM_MCTRL bit definitions */
65 #define RESET_COUNT0 (1<<2)
66 #define STOP_COUNT0 (1<<2)
69 #define RESFRC1 (1<<5)
70 #define RESFRC2 (1<<6)
72 /* WDTIM_EMR bit definitions */
74 #define MATCH_OUTPUT_HIGH (2<<4) /*a MATCH_CTRL setting */
76 /* WDTIM_RES bit definitions */
77 #define WDOG_RESET 1 /* read only */
79 #define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */
81 static int nowayout = WATCHDOG_NOWAYOUT;
82 static int heartbeat = DEFAULT_HEARTBEAT;
84 static spinlock_t io_lock;
85 static unsigned long wdt_status;
87 #define WDT_OK_TO_CLOSE 1
88 #define WDT_REGION_INITED 2
89 #define WDT_DEVICE_INITED 3
91 static unsigned long boot_status;
93 static struct resource *wdt_mem;
94 static void __iomem *wdt_base;
97 static void wdt_enable(void)
102 clk_set_rate(wdt_clk, 1);
104 /* stop counter, initiate counter reset */
105 __raw_writel(RESET_COUNT, WDTIM_CTRL(wdt_base));
106 /*wait for reset to complete. 100% guarantee event */
107 while (__raw_readl(WDTIM_COUNTER(wdt_base)))
109 /* internal and external reset, stop after that */
110 __raw_writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0,
111 WDTIM_MCTRL(wdt_base));
112 /* configure match output */
113 __raw_writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base));
114 /* clear interrupt, just in case */
115 __raw_writel(MATCH_INT, WDTIM_INT(wdt_base));
116 /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */
117 __raw_writel(0xFFFF, WDTIM_PULSE(wdt_base));
118 __raw_writel(heartbeat * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base));
119 /*enable counter, stop when debugger active */
120 __raw_writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base));
122 spin_unlock(&io_lock);
125 static void wdt_disable(void)
129 __raw_writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */
131 clk_set_rate(wdt_clk, 0);
133 spin_unlock(&io_lock);
136 static int pnx4008_wdt_open(struct inode *inode, struct file *file)
138 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
141 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
145 return nonseekable_open(inode, file);
149 pnx4008_wdt_write(struct file *file, const char *data, size_t len,
152 /* Can't seek (pwrite) on this device */
153 if (ppos != &file->f_pos)
160 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
162 for (i = 0; i != len; i++) {
165 if (get_user(c, data + i))
168 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
177 static struct watchdog_info ident = {
178 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
179 WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
180 .identity = "PNX4008 Watchdog",
184 pnx4008_wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
191 case WDIOC_GETSUPPORT:
192 ret = copy_to_user((struct watchdog_info *)arg, &ident,
193 sizeof(ident)) ? -EFAULT : 0;
196 case WDIOC_GETSTATUS:
197 ret = put_user(0, (int *)arg);
200 case WDIOC_GETBOOTSTATUS:
201 ret = put_user(boot_status, (int *)arg);
204 case WDIOC_SETTIMEOUT:
205 ret = get_user(time, (int *)arg);
209 if (time <= 0 || time > MAX_HEARTBEAT) {
218 case WDIOC_GETTIMEOUT:
219 ret = put_user(heartbeat, (int *)arg);
222 case WDIOC_KEEPALIVE:
230 static int pnx4008_wdt_release(struct inode *inode, struct file *file)
232 if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status))
233 printk(KERN_WARNING "WATCHDOG: Device closed unexpectdly\n");
236 clear_bit(WDT_IN_USE, &wdt_status);
237 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
242 static struct file_operations pnx4008_wdt_fops = {
243 .owner = THIS_MODULE,
245 .write = pnx4008_wdt_write,
246 .ioctl = pnx4008_wdt_ioctl,
247 .open = pnx4008_wdt_open,
248 .release = pnx4008_wdt_release,
251 static struct miscdevice pnx4008_wdt_miscdev = {
252 .minor = WATCHDOG_MINOR,
254 .fops = &pnx4008_wdt_fops,
257 static int pnx4008_wdt_probe(struct platform_device *pdev)
260 struct resource *res;
262 spin_lock_init(&io_lock);
264 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
265 heartbeat = DEFAULT_HEARTBEAT;
267 printk(KERN_INFO MODULE_NAME
268 "PNX4008 Watchdog Timer: heartbeat %d sec\n", heartbeat);
270 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
272 printk(KERN_INFO MODULE_NAME
273 "failed to get memory region resouce\n");
277 size = res->end - res->start + 1;
278 wdt_mem = request_mem_region(res->start, size, pdev->name);
280 if (wdt_mem == NULL) {
281 printk(KERN_INFO MODULE_NAME "failed to get memory region\n");
284 wdt_base = (void __iomem *)IO_ADDRESS(res->start);
286 wdt_clk = clk_get(&pdev->dev, "wdt_ck");
288 release_resource(wdt_mem);
292 clk_set_rate(wdt_clk, 1);
294 ret = misc_register(&pnx4008_wdt_miscdev);
296 printk(KERN_ERR MODULE_NAME "cannot register misc device\n");
297 release_resource(wdt_mem);
299 clk_set_rate(wdt_clk, 0);
301 boot_status = (__raw_readl(WDTIM_RES(wdt_base)) & WDOG_RESET) ?
303 wdt_disable(); /*disable for now */
304 set_bit(WDT_DEVICE_INITED, &wdt_status);
311 static int pnx4008_wdt_remove(struct platform_device *pdev)
313 misc_deregister(&pnx4008_wdt_miscdev);
315 clk_set_rate(wdt_clk, 0);
320 release_resource(wdt_mem);
327 static struct platform_driver platform_wdt_driver = {
331 .probe = pnx4008_wdt_probe,
332 .remove = pnx4008_wdt_remove,
335 static int __init pnx4008_wdt_init(void)
337 return platform_driver_register(&platform_wdt_driver);
340 static void __exit pnx4008_wdt_exit(void)
342 return platform_driver_unregister(&platform_wdt_driver);
345 module_init(pnx4008_wdt_init);
346 module_exit(pnx4008_wdt_exit);
348 MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
349 MODULE_DESCRIPTION("PNX4008 Watchdog Driver");
351 module_param(heartbeat, int, 0);
352 MODULE_PARM_DESC(heartbeat,
353 "Watchdog heartbeat period in seconds from 1 to "
354 __MODULE_STRING(MAX_HEARTBEAT) ", default "
355 __MODULE_STRING(DEFAULT_HEARTBEAT));
357 module_param(nowayout, int, 0);
358 MODULE_PARM_DESC(nowayout,
359 "Set to 1 to keep watchdog running after device release");
361 MODULE_LICENSE("GPL");
362 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);