2 +++ b/drivers/watchdog/ar2315-wtd.c
5 + * This program is free software; you can redistribute it and/or modify
6 + * it under the terms of the GNU General Public License as published by
7 + * the Free Software Foundation; either version 2 of the License, or
8 + * (at your option) any later version.
10 + * This program is distributed in the hope that it will be useful,
11 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 + * GNU General Public License for more details.
15 + * You should have received a copy of the GNU General Public License
16 + * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 + * Copyright (C) 2008 John Crispin <blogic@openwrt.org>
19 + * Based on EP93xx and ifxmips wdt driver
22 +#include <linux/interrupt.h>
23 +#include <linux/module.h>
24 +#include <linux/moduleparam.h>
25 +#include <linux/types.h>
26 +#include <linux/miscdevice.h>
27 +#include <linux/watchdog.h>
28 +#include <linux/fs.h>
29 +#include <linux/ioport.h>
30 +#include <linux/notifier.h>
31 +#include <linux/reboot.h>
32 +#include <linux/init.h>
33 +#include <linux/platform_device.h>
34 +#include <linux/io.h>
35 +#include <linux/uaccess.h>
37 +#define DRIVER_NAME "ar2315-wdt"
39 +#define CLOCK_RATE 40000000
40 +#define HEARTBEAT(x) (x < 1 || x > 90 ? 20 : x)
42 +#define WDT_REG_TIMER 0x00
43 +#define WDT_REG_CTRL 0x04
45 +#define WDT_CTRL_ACT_NONE 0x00000000 /* No action */
46 +#define WDT_CTRL_ACT_NMI 0x00000001 /* NMI on watchdog */
47 +#define WDT_CTRL_ACT_RESET 0x00000002 /* reset on watchdog */
49 +static int wdt_timeout = 20;
52 +static void __iomem *wdt_base;
54 +static inline void ar2315_wdt_wr(unsigned reg, u32 val)
56 + iowrite32(val, wdt_base + reg);
60 +ar2315_wdt_enable(void)
62 + ar2315_wdt_wr(WDT_REG_TIMER, wdt_timeout * CLOCK_RATE);
66 +ar2315_wdt_write(struct file *file, const char __user *data, size_t len,
70 + ar2315_wdt_enable();
75 +ar2315_wdt_open(struct inode *inode, struct file *file)
79 + ar2315_wdt_enable();
82 + return nonseekable_open(inode, file);
86 +ar2315_wdt_release(struct inode *inode, struct file *file)
93 +ar2315_wdt_interrupt(int irq, void *dev)
95 + struct platform_device *pdev = (struct platform_device *)dev;
98 + dev_crit(&pdev->dev, "watchdog expired, rebooting system\n");
99 + emergency_restart();
101 + ar2315_wdt_wr(WDT_REG_CTRL, 0);
102 + ar2315_wdt_wr(WDT_REG_TIMER, 0);
104 + return IRQ_HANDLED;
107 +static struct watchdog_info ident = {
108 + .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
109 + .identity = "ar2315 Watchdog",
113 +ar2315_wdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
115 + int new_wdt_timeout;
116 + int ret = -ENOIOCTLCMD;
119 + case WDIOC_GETSUPPORT:
120 + ret = copy_to_user((void __user *)arg, &ident, sizeof(ident)) ?
123 + case WDIOC_KEEPALIVE:
124 + ar2315_wdt_enable();
127 + case WDIOC_SETTIMEOUT:
128 + ret = get_user(new_wdt_timeout, (int __user *)arg);
131 + wdt_timeout = HEARTBEAT(new_wdt_timeout);
132 + ar2315_wdt_enable();
134 + case WDIOC_GETTIMEOUT:
135 + ret = put_user(wdt_timeout, (int __user *)arg);
141 +static const struct file_operations ar2315_wdt_fops = {
142 + .owner = THIS_MODULE,
143 + .llseek = no_llseek,
144 + .write = ar2315_wdt_write,
145 + .unlocked_ioctl = ar2315_wdt_ioctl,
146 + .open = ar2315_wdt_open,
147 + .release = ar2315_wdt_release,
150 +static struct miscdevice ar2315_wdt_miscdev = {
151 + .minor = WATCHDOG_MINOR,
152 + .name = "watchdog",
153 + .fops = &ar2315_wdt_fops,
157 +ar2315_wdt_probe(struct platform_device *dev)
159 + struct resource *mem_res, *irq_res;
165 + irq_res = platform_get_resource(dev, IORESOURCE_IRQ, 0);
167 + dev_err(&dev->dev, "no IRQ resource\n");
171 + mem_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
172 + wdt_base = devm_ioremap_resource(&dev->dev, mem_res);
173 + if (IS_ERR(wdt_base))
174 + return PTR_ERR(wdt_base);
176 + ret = devm_request_irq(&dev->dev, irq_res->start, ar2315_wdt_interrupt,
177 + IRQF_DISABLED, DRIVER_NAME, dev);
179 + dev_err(&dev->dev, "failed to register inetrrupt\n");
183 + ret = misc_register(&ar2315_wdt_miscdev);
185 + dev_err(&dev->dev, "failed to register miscdev\n");
192 +ar2315_wdt_remove(struct platform_device *dev)
194 + misc_deregister(&ar2315_wdt_miscdev);
198 +static struct platform_driver ar2315_wdt_driver = {
199 + .probe = ar2315_wdt_probe,
200 + .remove = ar2315_wdt_remove,
202 + .name = DRIVER_NAME,
203 + .owner = THIS_MODULE,
207 +module_platform_driver(ar2315_wdt_driver);
209 +MODULE_DESCRIPTION("Atheros AR2315 hardware watchdog driver");
210 +MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
211 +MODULE_LICENSE("GPL");
212 +MODULE_ALIAS("platform:" DRIVER_NAME);
213 --- a/drivers/watchdog/Kconfig
214 +++ b/drivers/watchdog/Kconfig
215 @@ -1257,6 +1257,13 @@ config RALINK_WDT
217 Hardware driver for the Ralink SoC Watchdog Timer.
220 + tristate "Atheros AR2315+ WiSoCs Watchdog Timer"
223 + Hardware driver for the built-in watchdog timer on the Atheros
224 + AR2315/AR2316 WiSoCs.
226 # PARISC Architecture
228 # POWERPC Architecture
229 --- a/drivers/watchdog/Makefile
230 +++ b/drivers/watchdog/Makefile
231 @@ -138,6 +138,7 @@ obj-$(CONFIG_GPIO_WDT) += old_gpio_wdt.o
232 obj-$(CONFIG_PNX833X_WDT) += pnx833x_wdt.o
233 obj-$(CONFIG_SIBYTE_WDOG) += sb_wdog.o
234 obj-$(CONFIG_AR7_WDT) += ar7_wdt.o
235 +obj-$(CONFIG_AR2315_WDT) += ar2315-wtd.o
236 obj-$(CONFIG_TXX9_WDT) += txx9wdt.o
237 obj-$(CONFIG_OCTEON_WDT) += octeon-wdt.o
238 octeon-wdt-y := octeon-wdt-main.o octeon-wdt-nmi.o