blob: 41ac4660fb891db2fba16b66c73c6293bfe2b3f4 [file] [log] [blame]
Gabor Juhosf8394f612011-01-04 21:28:19 +01001/*
2 * Atheros AR71XX/AR724X/AR913X built-in hardware watchdog timer.
3 *
4 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * This driver was based on: drivers/watchdog/ixp4xx_wdt.c
8 * Author: Deepak Saxena <dsaxena@plexity.net>
9 * Copyright 2004 (c) MontaVista, Software, Inc.
10 *
11 * which again was based on sa1100 driver,
12 * Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License version 2 as published
16 * by the Free Software Foundation.
17 *
18 */
19
Joe Perches27c766a2012-02-15 15:06:19 -080020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Gabor Juhosf8394f612011-01-04 21:28:19 +010022#include <linux/bitops.h>
Gabor Juhos23afeb62014-04-16 11:34:41 +020023#include <linux/delay.h>
Gabor Juhosf8394f612011-01-04 21:28:19 +010024#include <linux/errno.h>
25#include <linux/fs.h>
Gabor Juhos09f51002012-12-27 15:38:26 +010026#include <linux/io.h>
Gabor Juhosf8394f612011-01-04 21:28:19 +010027#include <linux/kernel.h>
28#include <linux/miscdevice.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/platform_device.h>
32#include <linux/types.h>
33#include <linux/watchdog.h>
34#include <linux/clk.h>
35#include <linux/err.h>
Gabor Juhos15920d12013-02-02 10:34:54 +010036#include <linux/of.h>
37#include <linux/of_platform.h>
Gabor Juhosf8394f612011-01-04 21:28:19 +010038
Gabor Juhosf8394f612011-01-04 21:28:19 +010039#define DRIVER_NAME "ath79-wdt"
40
41#define WDT_TIMEOUT 15 /* seconds */
42
Gabor Juhos09f51002012-12-27 15:38:26 +010043#define WDOG_REG_CTRL 0x00
44#define WDOG_REG_TIMER 0x04
45
Gabor Juhosf8394f612011-01-04 21:28:19 +010046#define WDOG_CTRL_LAST_RESET BIT(31)
47#define WDOG_CTRL_ACTION_MASK 3
48#define WDOG_CTRL_ACTION_NONE 0 /* no action */
49#define WDOG_CTRL_ACTION_GPI 1 /* general purpose interrupt */
50#define WDOG_CTRL_ACTION_NMI 2 /* NMI */
51#define WDOG_CTRL_ACTION_FCR 3 /* full chip reset */
52
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010053static bool nowayout = WATCHDOG_NOWAYOUT;
54module_param(nowayout, bool, 0);
Gabor Juhosf8394f612011-01-04 21:28:19 +010055MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
56 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
57
58static int timeout = WDT_TIMEOUT;
59module_param(timeout, int, 0);
60MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds "
61 "(default=" __MODULE_STRING(WDT_TIMEOUT) "s)");
62
63static unsigned long wdt_flags;
64
65#define WDT_FLAGS_BUSY 0
66#define WDT_FLAGS_EXPECT_CLOSE 1
67
68static struct clk *wdt_clk;
69static unsigned long wdt_freq;
70static int boot_status;
71static int max_timeout;
Gabor Juhos09f51002012-12-27 15:38:26 +010072static void __iomem *wdt_base;
73
74static inline void ath79_wdt_wr(unsigned reg, u32 val)
75{
76 iowrite32(val, wdt_base + reg);
77}
78
79static inline u32 ath79_wdt_rr(unsigned reg)
80{
81 return ioread32(wdt_base + reg);
82}
Gabor Juhosf8394f612011-01-04 21:28:19 +010083
84static inline void ath79_wdt_keepalive(void)
85{
Gabor Juhos09f51002012-12-27 15:38:26 +010086 ath79_wdt_wr(WDOG_REG_TIMER, wdt_freq * timeout);
Gabor Juhos86955e22011-12-23 19:25:42 +010087 /* flush write */
Gabor Juhos09f51002012-12-27 15:38:26 +010088 ath79_wdt_rr(WDOG_REG_TIMER);
Gabor Juhosf8394f612011-01-04 21:28:19 +010089}
90
91static inline void ath79_wdt_enable(void)
92{
93 ath79_wdt_keepalive();
Gabor Juhos23afeb62014-04-16 11:34:41 +020094
95 /*
96 * Updating the TIMER register requires a few microseconds
97 * on the AR934x SoCs at least. Use a small delay to ensure
98 * that the TIMER register is updated within the hardware
99 * before enabling the watchdog.
100 */
101 udelay(2);
102
Gabor Juhos09f51002012-12-27 15:38:26 +0100103 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_FCR);
Gabor Juhos86955e22011-12-23 19:25:42 +0100104 /* flush write */
Gabor Juhos09f51002012-12-27 15:38:26 +0100105 ath79_wdt_rr(WDOG_REG_CTRL);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100106}
107
108static inline void ath79_wdt_disable(void)
109{
Gabor Juhos09f51002012-12-27 15:38:26 +0100110 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_NONE);
Gabor Juhos86955e22011-12-23 19:25:42 +0100111 /* flush write */
Gabor Juhos09f51002012-12-27 15:38:26 +0100112 ath79_wdt_rr(WDOG_REG_CTRL);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100113}
114
115static int ath79_wdt_set_timeout(int val)
116{
117 if (val < 1 || val > max_timeout)
118 return -EINVAL;
119
120 timeout = val;
121 ath79_wdt_keepalive();
122
123 return 0;
124}
125
126static int ath79_wdt_open(struct inode *inode, struct file *file)
127{
128 if (test_and_set_bit(WDT_FLAGS_BUSY, &wdt_flags))
129 return -EBUSY;
130
131 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
132 ath79_wdt_enable();
133
134 return nonseekable_open(inode, file);
135}
136
137static int ath79_wdt_release(struct inode *inode, struct file *file)
138{
139 if (test_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags))
140 ath79_wdt_disable();
141 else {
Joe Perches27c766a2012-02-15 15:06:19 -0800142 pr_crit("device closed unexpectedly, watchdog timer will not stop!\n");
Gabor Juhosf8394f612011-01-04 21:28:19 +0100143 ath79_wdt_keepalive();
144 }
145
146 clear_bit(WDT_FLAGS_BUSY, &wdt_flags);
147 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
148
149 return 0;
150}
151
152static ssize_t ath79_wdt_write(struct file *file, const char *data,
153 size_t len, loff_t *ppos)
154{
155 if (len) {
156 if (!nowayout) {
157 size_t i;
158
159 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
160
161 for (i = 0; i != len; i++) {
162 char c;
163
164 if (get_user(c, data + i))
165 return -EFAULT;
166
167 if (c == 'V')
168 set_bit(WDT_FLAGS_EXPECT_CLOSE,
169 &wdt_flags);
170 }
171 }
172
173 ath79_wdt_keepalive();
174 }
175
176 return len;
177}
178
179static const struct watchdog_info ath79_wdt_info = {
180 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
181 WDIOF_MAGICCLOSE | WDIOF_CARDRESET,
182 .firmware_version = 0,
183 .identity = "ATH79 watchdog",
184};
185
186static long ath79_wdt_ioctl(struct file *file, unsigned int cmd,
187 unsigned long arg)
188{
189 void __user *argp = (void __user *)arg;
190 int __user *p = argp;
191 int err;
192 int t;
193
194 switch (cmd) {
195 case WDIOC_GETSUPPORT:
196 err = copy_to_user(argp, &ath79_wdt_info,
197 sizeof(ath79_wdt_info)) ? -EFAULT : 0;
198 break;
199
200 case WDIOC_GETSTATUS:
201 err = put_user(0, p);
202 break;
203
204 case WDIOC_GETBOOTSTATUS:
205 err = put_user(boot_status, p);
206 break;
207
208 case WDIOC_KEEPALIVE:
209 ath79_wdt_keepalive();
210 err = 0;
211 break;
212
213 case WDIOC_SETTIMEOUT:
214 err = get_user(t, p);
215 if (err)
216 break;
217
218 err = ath79_wdt_set_timeout(t);
219 if (err)
220 break;
221
222 /* fallthrough */
223 case WDIOC_GETTIMEOUT:
224 err = put_user(timeout, p);
225 break;
226
227 default:
228 err = -ENOTTY;
229 break;
230 }
231
232 return err;
233}
234
235static const struct file_operations ath79_wdt_fops = {
236 .owner = THIS_MODULE,
237 .llseek = no_llseek,
238 .write = ath79_wdt_write,
239 .unlocked_ioctl = ath79_wdt_ioctl,
240 .open = ath79_wdt_open,
241 .release = ath79_wdt_release,
242};
243
244static struct miscdevice ath79_wdt_miscdev = {
245 .minor = WATCHDOG_MINOR,
246 .name = "watchdog",
247 .fops = &ath79_wdt_fops,
248};
249
Bill Pemberton2d991a12012-11-19 13:21:41 -0500250static int ath79_wdt_probe(struct platform_device *pdev)
Gabor Juhosf8394f612011-01-04 21:28:19 +0100251{
Gabor Juhos09f51002012-12-27 15:38:26 +0100252 struct resource *res;
Gabor Juhosf8394f612011-01-04 21:28:19 +0100253 u32 ctrl;
254 int err;
255
Gabor Juhos09f51002012-12-27 15:38:26 +0100256 if (wdt_base)
257 return -EBUSY;
258
259 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamat6330c702013-03-04 10:36:41 +0530260 wdt_base = devm_ioremap_resource(&pdev->dev, res);
261 if (IS_ERR(wdt_base))
262 return PTR_ERR(wdt_base);
Gabor Juhos09f51002012-12-27 15:38:26 +0100263
Gabor Juhos5071a882012-12-27 15:38:24 +0100264 wdt_clk = devm_clk_get(&pdev->dev, "wdt");
Gabor Juhosf8394f612011-01-04 21:28:19 +0100265 if (IS_ERR(wdt_clk))
266 return PTR_ERR(wdt_clk);
267
Gabor Juhosb4e62d92014-04-16 11:35:50 +0200268 err = clk_prepare_enable(wdt_clk);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100269 if (err)
Gabor Juhos5071a882012-12-27 15:38:24 +0100270 return err;
Gabor Juhosf8394f612011-01-04 21:28:19 +0100271
272 wdt_freq = clk_get_rate(wdt_clk);
273 if (!wdt_freq) {
274 err = -EINVAL;
275 goto err_clk_disable;
276 }
277
278 max_timeout = (0xfffffffful / wdt_freq);
279 if (timeout < 1 || timeout > max_timeout) {
280 timeout = max_timeout;
281 dev_info(&pdev->dev,
282 "timeout value must be 0 < timeout < %d, using %d\n",
283 max_timeout, timeout);
284 }
285
Gabor Juhos09f51002012-12-27 15:38:26 +0100286 ctrl = ath79_wdt_rr(WDOG_REG_CTRL);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100287 boot_status = (ctrl & WDOG_CTRL_LAST_RESET) ? WDIOF_CARDRESET : 0;
288
289 err = misc_register(&ath79_wdt_miscdev);
290 if (err) {
291 dev_err(&pdev->dev,
292 "unable to register misc device, err=%d\n", err);
293 goto err_clk_disable;
294 }
295
296 return 0;
297
298err_clk_disable:
Gabor Juhosb4e62d92014-04-16 11:35:50 +0200299 clk_disable_unprepare(wdt_clk);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100300 return err;
301}
302
Bill Pemberton4b12b892012-11-19 13:26:24 -0500303static int ath79_wdt_remove(struct platform_device *pdev)
Gabor Juhosf8394f612011-01-04 21:28:19 +0100304{
305 misc_deregister(&ath79_wdt_miscdev);
Gabor Juhosb4e62d92014-04-16 11:35:50 +0200306 clk_disable_unprepare(wdt_clk);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100307 return 0;
308}
309
310static void ath97_wdt_shutdown(struct platform_device *pdev)
311{
312 ath79_wdt_disable();
313}
314
Gabor Juhos15920d12013-02-02 10:34:54 +0100315#ifdef CONFIG_OF
316static const struct of_device_id ath79_wdt_match[] = {
317 { .compatible = "qca,ar7130-wdt" },
318 {},
319};
320MODULE_DEVICE_TABLE(of, ath79_wdt_match);
321#endif
322
Gabor Juhosf8394f612011-01-04 21:28:19 +0100323static struct platform_driver ath79_wdt_driver = {
Gabor Juhos8157bec2012-08-14 15:35:19 +0200324 .probe = ath79_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500325 .remove = ath79_wdt_remove,
Gabor Juhosf8394f612011-01-04 21:28:19 +0100326 .shutdown = ath97_wdt_shutdown,
327 .driver = {
328 .name = DRIVER_NAME,
329 .owner = THIS_MODULE,
Gabor Juhos15920d12013-02-02 10:34:54 +0100330 .of_match_table = of_match_ptr(ath79_wdt_match),
Gabor Juhosf8394f612011-01-04 21:28:19 +0100331 },
332};
333
Gabor Juhos8157bec2012-08-14 15:35:19 +0200334module_platform_driver(ath79_wdt_driver);
Gabor Juhosf8394f612011-01-04 21:28:19 +0100335
336MODULE_DESCRIPTION("Atheros AR71XX/AR724X/AR913X hardware watchdog driver");
337MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org");
338MODULE_AUTHOR("Imre Kaloz <kaloz@openwrt.org");
339MODULE_LICENSE("GPL v2");
340MODULE_ALIAS("platform:" DRIVER_NAME);