3 * Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
6 * drivers/char/watchdog/ixp4xx_wdt.c
8 * Watchdog driver for Intel IXP4xx network processors
10 * Author: Deepak Saxena <dsaxena@plexity.net>
12 * Copyright 2004 (c) MontaVista, Software, Inc.
13 * Based on sa1100 driver, Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
15 * This file is licensed under the terms of the GNU General Public
16 * License version 2. This program is licensed "as is" without any
17 * warranty of any kind, whether express or implied.
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/types.h>
23 #include <linux/kernel.h>
24 #include <linux/jiffies.h>
25 #include <linux/timer.h>
27 #include <linux/miscdevice.h>
28 #include <linux/watchdog.h>
29 #include <linux/init.h>
30 #include <linux/bitops.h>
31 #include <linux/uaccess.h>
32 #include <mach/hardware.h>
34 static int nowayout = WATCHDOG_NOWAYOUT;
35 static int heartbeat = 20; /* (secs) Default is 20 seconds */
36 static unsigned long wdt_status;
37 static atomic_t wdt_counter;
38 struct timer_list wdt_timer;
41 #define WDT_OK_TO_CLOSE 1
44 static void wdt_refresh(unsigned long data)
46 if (test_bit(WDT_RUNNING, &wdt_status)) {
47 if (atomic_dec_and_test(&wdt_counter)) {
48 printk(KERN_WARNING "Avila watchdog expired, expect a reboot soon!\n");
49 clear_bit(WDT_RUNNING, &wdt_status);
54 /* strobe to the watchdog */
55 gpio_line_set(14, IXP4XX_GPIO_HIGH);
56 gpio_line_set(14, IXP4XX_GPIO_LOW);
58 mod_timer(&wdt_timer, jiffies + msecs_to_jiffies(500));
61 static void wdt_enable(void)
63 atomic_set(&wdt_counter, heartbeat * 2);
65 /* Disable clock generator output on GPIO 14/15 */
66 *IXP4XX_GPIO_GPCLKR &= ~(1 << 8);
68 /* activate GPIO 14 out */
69 gpio_line_config(14, IXP4XX_GPIO_OUT);
70 gpio_line_set(14, IXP4XX_GPIO_LOW);
72 if (!test_bit(WDT_RUNNING, &wdt_status))
74 set_bit(WDT_RUNNING, &wdt_status);
77 static void wdt_disable(void)
79 /* Re-enable clock generator output on GPIO 14/15 */
80 *IXP4XX_GPIO_GPCLKR |= (1 << 8);
83 static int avila_wdt_open(struct inode *inode, struct file *file)
85 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
88 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
90 return nonseekable_open(inode, file);
94 avila_wdt_write(struct file *file, const char *data, size_t len, loff_t *ppos)
100 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
102 for (i = 0; i != len; i++) {
105 if (get_user(c, data + i))
108 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
116 static struct watchdog_info ident = {
117 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
118 WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
119 .identity = "Avila Watchdog",
123 static long avila_wdt_ioctl(struct file *file, unsigned int cmd,
130 case WDIOC_GETSUPPORT:
131 ret = copy_to_user((struct watchdog_info *)arg, &ident,
132 sizeof(ident)) ? -EFAULT : 0;
135 case WDIOC_GETSTATUS:
136 ret = put_user(0, (int *)arg);
139 case WDIOC_KEEPALIVE:
144 case WDIOC_SETTIMEOUT:
145 ret = get_user(time, (int *)arg);
149 if (time <= 0 || time > 60) {
158 case WDIOC_GETTIMEOUT:
159 ret = put_user(heartbeat, (int *)arg);
165 static int avila_wdt_release(struct inode *inode, struct file *file)
167 if (test_bit(WDT_OK_TO_CLOSE, &wdt_status))
170 printk(KERN_CRIT "WATCHDOG: Device closed unexpectedly - "
171 "timer will not stop\n");
172 clear_bit(WDT_IN_USE, &wdt_status);
173 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
179 static const struct file_operations avila_wdt_fops = {
180 .owner = THIS_MODULE,
182 .write = avila_wdt_write,
183 .unlocked_ioctl = avila_wdt_ioctl,
184 .open = avila_wdt_open,
185 .release = avila_wdt_release,
188 static struct miscdevice avila_wdt_miscdev = {
189 .minor = WATCHDOG_MINOR + 1,
190 .name = "avila_watchdog",
191 .fops = &avila_wdt_fops,
194 static int __init avila_wdt_init(void)
198 init_timer(&wdt_timer);
199 wdt_timer.expires = 0;
201 wdt_timer.function = wdt_refresh;
202 ret = misc_register(&avila_wdt_miscdev);
204 printk(KERN_INFO "Avila Watchdog Timer: heartbeat %d sec\n",
209 static void __exit avila_wdt_exit(void)
211 misc_deregister(&avila_wdt_miscdev);
212 del_timer(&wdt_timer);
217 module_init(avila_wdt_init);
218 module_exit(avila_wdt_exit);
220 MODULE_AUTHOR("Felix Fietkau <nbd@openwrt.org>");
221 MODULE_DESCRIPTION("Gateworks Avila Hardware Watchdog");
223 module_param(heartbeat, int, 0);
224 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds (default 20s)");
226 module_param(nowayout, int, 0);
227 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
229 MODULE_LICENSE("GPL");
230 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);