atheros: copy 3.10 patches to 3.14 and refresh them
[openwrt/svn-archive/archive.git] / target / linux / atheros / patches-3.14 / 130-watchdog.patch
1 --- /dev/null
2 +++ b/drivers/watchdog/ar2315-wtd.c
3 @@ -0,0 +1,209 @@
4 +/*
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.
9 + *
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.
14 + *
15 + * You should have received a copy of the GNU General Public License
16 + * along with this program; if not, write to the Free Software
17 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 + *
19 + * Copyright (C) 2008 John Crispin <blogic@openwrt.org>
20 + * Based on EP93xx and ifxmips wdt driver
21 + */
22 +
23 +#include <linux/interrupt.h>
24 +#include <linux/module.h>
25 +#include <linux/moduleparam.h>
26 +#include <linux/types.h>
27 +#include <linux/miscdevice.h>
28 +#include <linux/watchdog.h>
29 +#include <linux/fs.h>
30 +#include <linux/ioport.h>
31 +#include <linux/notifier.h>
32 +#include <linux/reboot.h>
33 +#include <linux/init.h>
34 +#include <linux/platform_device.h>
35 +#include <linux/io.h>
36 +#include <linux/uaccess.h>
37 +
38 +#define DRIVER_NAME "ar2315-wdt"
39 +
40 +#define CLOCK_RATE 40000000
41 +#define HEARTBEAT(x) (x < 1 || x > 90 ? 20 : x)
42 +
43 +#define WDT_REG_TIMER 0x00
44 +#define WDT_REG_CTRL 0x04
45 +
46 +#define WDT_CTRL_ACT_NONE 0x00000000 /* No action */
47 +#define WDT_CTRL_ACT_NMI 0x00000001 /* NMI on watchdog */
48 +#define WDT_CTRL_ACT_RESET 0x00000002 /* reset on watchdog */
49 +
50 +static int wdt_timeout = 20;
51 +static int started;
52 +static int in_use;
53 +static void __iomem *wdt_base;
54 +
55 +static inline void ar2315_wdt_wr(unsigned reg, u32 val)
56 +{
57 + iowrite32(val, wdt_base + reg);
58 +}
59 +
60 +static void
61 +ar2315_wdt_enable(void)
62 +{
63 + ar2315_wdt_wr(WDT_REG_TIMER, wdt_timeout * CLOCK_RATE);
64 +}
65 +
66 +static ssize_t
67 +ar2315_wdt_write(struct file *file, const char __user *data, size_t len,
68 + loff_t *ppos)
69 +{
70 + if (len)
71 + ar2315_wdt_enable();
72 + return len;
73 +}
74 +
75 +static int
76 +ar2315_wdt_open(struct inode *inode, struct file *file)
77 +{
78 + if (in_use)
79 + return -EBUSY;
80 + ar2315_wdt_enable();
81 + in_use = started = 1;
82 + return nonseekable_open(inode, file);
83 +}
84 +
85 +static int
86 +ar2315_wdt_release(struct inode *inode, struct file *file)
87 +{
88 + in_use = 0;
89 + return 0;
90 +}
91 +
92 +static irqreturn_t
93 +ar2315_wdt_interrupt(int irq, void *dev)
94 +{
95 + struct platform_device *pdev = (struct platform_device *)dev;
96 +
97 + if (started) {
98 + dev_crit(&pdev->dev, "watchdog expired, rebooting system\n");
99 + emergency_restart();
100 + } else {
101 + ar2315_wdt_wr(WDT_REG_CTRL, 0);
102 + ar2315_wdt_wr(WDT_REG_TIMER, 0);
103 + }
104 + return IRQ_HANDLED;
105 +}
106 +
107 +static struct watchdog_info ident = {
108 + .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
109 + .identity = "ar2315 Watchdog",
110 +};
111 +
112 +static long
113 +ar2315_wdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
114 +{
115 + int new_wdt_timeout;
116 + int ret = -ENOIOCTLCMD;
117 +
118 + switch (cmd) {
119 + case WDIOC_GETSUPPORT:
120 + ret = copy_to_user((void __user *)arg, &ident, sizeof(ident)) ?
121 + -EFAULT : 0;
122 + break;
123 + case WDIOC_KEEPALIVE:
124 + ar2315_wdt_enable();
125 + ret = 0;
126 + break;
127 + case WDIOC_SETTIMEOUT:
128 + ret = get_user(new_wdt_timeout, (int __user *)arg);
129 + if (ret)
130 + break;
131 + wdt_timeout = HEARTBEAT(new_wdt_timeout);
132 + ar2315_wdt_enable();
133 + break;
134 + case WDIOC_GETTIMEOUT:
135 + ret = put_user(wdt_timeout, (int __user *)arg);
136 + break;
137 + }
138 + return ret;
139 +}
140 +
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,
148 +};
149 +
150 +static struct miscdevice ar2315_wdt_miscdev = {
151 + .minor = WATCHDOG_MINOR,
152 + .name = "watchdog",
153 + .fops = &ar2315_wdt_fops,
154 +};
155 +
156 +static int
157 +ar2315_wdt_probe(struct platform_device *dev)
158 +{
159 + struct resource *mem_res, *irq_res;
160 + int ret = 0;
161 +
162 + if (wdt_base)
163 + return -EBUSY;
164 +
165 + irq_res = platform_get_resource(dev, IORESOURCE_IRQ, 0);
166 + if (!irq_res) {
167 + dev_err(&dev->dev, "no IRQ resource\n");
168 + return -ENOENT;
169 + }
170 +
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);
175 +
176 + ret = devm_request_irq(&dev->dev, irq_res->start, ar2315_wdt_interrupt,
177 + IRQF_DISABLED, DRIVER_NAME, dev);
178 + if (ret) {
179 + dev_err(&dev->dev, "failed to register inetrrupt\n");
180 + goto out;
181 + }
182 +
183 + ret = misc_register(&ar2315_wdt_miscdev);
184 + if (ret)
185 + dev_err(&dev->dev, "failed to register miscdev\n");
186 +
187 +out:
188 + return ret;
189 +}
190 +
191 +static int
192 +ar2315_wdt_remove(struct platform_device *dev)
193 +{
194 + misc_deregister(&ar2315_wdt_miscdev);
195 + return 0;
196 +}
197 +
198 +static struct platform_driver ar2315_wdt_driver = {
199 + .probe = ar2315_wdt_probe,
200 + .remove = ar2315_wdt_remove,
201 + .driver = {
202 + .name = DRIVER_NAME,
203 + .owner = THIS_MODULE,
204 + },
205 +};
206 +
207 +module_platform_driver(ar2315_wdt_driver);
208 +
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 @@ -1202,6 +1202,13 @@ config RALINK_WDT
216 help
217 Hardware driver for the Ralink SoC Watchdog Timer.
218
219 +config AR2315_WDT
220 + tristate "Atheros AR2315+ WiSoCs Watchdog Timer"
221 + depends on ATHEROS_AR231X
222 + help
223 + Hardware driver for the built-in watchdog timer on the Atheros
224 + AR2315/AR2316 WiSoCs.
225 +
226 # PARISC Architecture
227
228 # POWERPC Architecture
229 --- a/drivers/watchdog/Makefile
230 +++ b/drivers/watchdog/Makefile
231 @@ -134,6 +134,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