blob: 3a996576343a3b8abb20b8cab7bf65c7b503a803 [file] [log] [blame]
Matteo Crocec283cf22007-09-20 18:06:41 +02001/*
2 * drivers/watchdog/ar7_wdt.c
3 *
4 * Copyright (C) 2007 Nicolas Thill <nico@openwrt.org>
5 * Copyright (c) 2005 Enrik Berkhan <Enrik.Berkhan@akk.org>
6 *
7 * Some code taken from:
8 * National Semiconductor SCx200 Watchdog support
9 * Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
Joe Perches27c766a2012-02-15 15:06:19 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Matteo Crocec283cf22007-09-20 18:06:41 +020028#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/errno.h>
31#include <linux/init.h>
32#include <linux/miscdevice.h>
Florian Fainelli64d40622009-07-21 12:11:32 +020033#include <linux/platform_device.h>
Matteo Crocec283cf22007-09-20 18:06:41 +020034#include <linux/watchdog.h>
Matteo Crocec283cf22007-09-20 18:06:41 +020035#include <linux/fs.h>
36#include <linux/ioport.h>
37#include <linux/io.h>
38#include <linux/uaccess.h>
Florian Fainelli780019d2010-01-27 09:10:06 +010039#include <linux/clk.h>
Matteo Crocec283cf22007-09-20 18:06:41 +020040
41#include <asm/addrspace.h>
Florian Fainellic5e7f5a2009-06-03 13:05:48 +020042#include <asm/mach-ar7/ar7.h>
Matteo Crocec283cf22007-09-20 18:06:41 +020043
Matteo Crocec283cf22007-09-20 18:06:41 +020044#define LONGNAME "TI AR7 Watchdog Timer"
45
46MODULE_AUTHOR("Nicolas Thill <nico@openwrt.org>");
47MODULE_DESCRIPTION(LONGNAME);
48MODULE_LICENSE("GPL");
Matteo Crocec283cf22007-09-20 18:06:41 +020049
50static int margin = 60;
51module_param(margin, int, 0);
52MODULE_PARM_DESC(margin, "Watchdog margin in seconds");
53
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010054static bool nowayout = WATCHDOG_NOWAYOUT;
55module_param(nowayout, bool, 0);
Matteo Crocec283cf22007-09-20 18:06:41 +020056MODULE_PARM_DESC(nowayout, "Disable watchdog shutdown on close");
57
58#define READ_REG(x) readl((void __iomem *)&(x))
59#define WRITE_REG(x, v) writel((v), (void __iomem *)&(x))
60
61struct ar7_wdt {
62 u32 kick_lock;
63 u32 kick;
64 u32 change_lock;
65 u32 change;
66 u32 disable_lock;
67 u32 disable;
68 u32 prescale_lock;
69 u32 prescale;
70};
71
Alan Cox670d59c2008-08-04 17:53:22 +010072static unsigned long wdt_is_open;
Matteo Crocec283cf22007-09-20 18:06:41 +020073static unsigned expect_close;
Axel Lin1334f322011-11-29 13:54:01 +080074static DEFINE_SPINLOCK(wdt_lock);
Matteo Crocec283cf22007-09-20 18:06:41 +020075
76/* XXX currently fixed, allows max margin ~68.72 secs */
77#define prescale_value 0xffff
78
Florian Fainelli64d40622009-07-21 12:11:32 +020079/* Resource of the WDT registers */
80static struct resource *ar7_regs_wdt;
Matteo Crocec283cf22007-09-20 18:06:41 +020081/* Pointer to the remapped WDT IO space */
82static struct ar7_wdt *ar7_wdt;
Matteo Crocec283cf22007-09-20 18:06:41 +020083
Florian Fainelli780019d2010-01-27 09:10:06 +010084static struct clk *vbus_clk;
85
Matteo Crocec283cf22007-09-20 18:06:41 +020086static void ar7_wdt_kick(u32 value)
87{
88 WRITE_REG(ar7_wdt->kick_lock, 0x5555);
89 if ((READ_REG(ar7_wdt->kick_lock) & 3) == 1) {
90 WRITE_REG(ar7_wdt->kick_lock, 0xaaaa);
91 if ((READ_REG(ar7_wdt->kick_lock) & 3) == 3) {
92 WRITE_REG(ar7_wdt->kick, value);
93 return;
94 }
95 }
Joe Perches27c766a2012-02-15 15:06:19 -080096 pr_err("failed to unlock WDT kick reg\n");
Matteo Crocec283cf22007-09-20 18:06:41 +020097}
98
99static void ar7_wdt_prescale(u32 value)
100{
101 WRITE_REG(ar7_wdt->prescale_lock, 0x5a5a);
102 if ((READ_REG(ar7_wdt->prescale_lock) & 3) == 1) {
103 WRITE_REG(ar7_wdt->prescale_lock, 0xa5a5);
104 if ((READ_REG(ar7_wdt->prescale_lock) & 3) == 3) {
105 WRITE_REG(ar7_wdt->prescale, value);
106 return;
107 }
108 }
Joe Perches27c766a2012-02-15 15:06:19 -0800109 pr_err("failed to unlock WDT prescale reg\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200110}
111
112static void ar7_wdt_change(u32 value)
113{
114 WRITE_REG(ar7_wdt->change_lock, 0x6666);
115 if ((READ_REG(ar7_wdt->change_lock) & 3) == 1) {
116 WRITE_REG(ar7_wdt->change_lock, 0xbbbb);
117 if ((READ_REG(ar7_wdt->change_lock) & 3) == 3) {
118 WRITE_REG(ar7_wdt->change, value);
119 return;
120 }
121 }
Joe Perches27c766a2012-02-15 15:06:19 -0800122 pr_err("failed to unlock WDT change reg\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200123}
124
125static void ar7_wdt_disable(u32 value)
126{
127 WRITE_REG(ar7_wdt->disable_lock, 0x7777);
128 if ((READ_REG(ar7_wdt->disable_lock) & 3) == 1) {
129 WRITE_REG(ar7_wdt->disable_lock, 0xcccc);
130 if ((READ_REG(ar7_wdt->disable_lock) & 3) == 2) {
131 WRITE_REG(ar7_wdt->disable_lock, 0xdddd);
132 if ((READ_REG(ar7_wdt->disable_lock) & 3) == 3) {
133 WRITE_REG(ar7_wdt->disable, value);
134 return;
135 }
136 }
137 }
Joe Perches27c766a2012-02-15 15:06:19 -0800138 pr_err("failed to unlock WDT disable reg\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200139}
140
141static void ar7_wdt_update_margin(int new_margin)
142{
143 u32 change;
Florian Fainelli780019d2010-01-27 09:10:06 +0100144 u32 vbus_rate;
Matteo Crocec283cf22007-09-20 18:06:41 +0200145
Florian Fainelli780019d2010-01-27 09:10:06 +0100146 vbus_rate = clk_get_rate(vbus_clk);
147 change = new_margin * (vbus_rate / prescale_value);
Alan Cox670d59c2008-08-04 17:53:22 +0100148 if (change < 1)
149 change = 1;
150 if (change > 0xffff)
151 change = 0xffff;
Matteo Crocec283cf22007-09-20 18:06:41 +0200152 ar7_wdt_change(change);
Florian Fainelli780019d2010-01-27 09:10:06 +0100153 margin = change * prescale_value / vbus_rate;
Joe Perches27c766a2012-02-15 15:06:19 -0800154 pr_info("timer margin %d seconds (prescale %d, change %d, freq %d)\n",
155 margin, prescale_value, change, vbus_rate);
Matteo Crocec283cf22007-09-20 18:06:41 +0200156}
157
158static void ar7_wdt_enable_wdt(void)
159{
Joe Perches27c766a2012-02-15 15:06:19 -0800160 pr_debug("enabling watchdog timer\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200161 ar7_wdt_disable(1);
162 ar7_wdt_kick(1);
163}
164
165static void ar7_wdt_disable_wdt(void)
166{
Joe Perches27c766a2012-02-15 15:06:19 -0800167 pr_debug("disabling watchdog timer\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200168 ar7_wdt_disable(0);
169}
170
171static int ar7_wdt_open(struct inode *inode, struct file *file)
172{
173 /* only allow one at a time */
Alan Cox670d59c2008-08-04 17:53:22 +0100174 if (test_and_set_bit(0, &wdt_is_open))
Matteo Crocec283cf22007-09-20 18:06:41 +0200175 return -EBUSY;
176 ar7_wdt_enable_wdt();
177 expect_close = 0;
178
179 return nonseekable_open(inode, file);
180}
181
182static int ar7_wdt_release(struct inode *inode, struct file *file)
183{
184 if (!expect_close)
Joe Perches27c766a2012-02-15 15:06:19 -0800185 pr_warn("watchdog device closed unexpectedly, will not disable the watchdog timer\n");
Matteo Crocec283cf22007-09-20 18:06:41 +0200186 else if (!nowayout)
187 ar7_wdt_disable_wdt();
Alan Cox670d59c2008-08-04 17:53:22 +0100188 clear_bit(0, &wdt_is_open);
Matteo Crocec283cf22007-09-20 18:06:41 +0200189 return 0;
190}
191
Matteo Crocec283cf22007-09-20 18:06:41 +0200192static ssize_t ar7_wdt_write(struct file *file, const char *data,
193 size_t len, loff_t *ppos)
194{
195 /* check for a magic close character */
196 if (len) {
197 size_t i;
198
Alan Cox670d59c2008-08-04 17:53:22 +0100199 spin_lock(&wdt_lock);
Matteo Crocec283cf22007-09-20 18:06:41 +0200200 ar7_wdt_kick(1);
Alan Cox670d59c2008-08-04 17:53:22 +0100201 spin_unlock(&wdt_lock);
Matteo Crocec283cf22007-09-20 18:06:41 +0200202
203 expect_close = 0;
204 for (i = 0; i < len; ++i) {
205 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000206 if (get_user(c, data + i))
Matteo Crocec283cf22007-09-20 18:06:41 +0200207 return -EFAULT;
208 if (c == 'V')
209 expect_close = 1;
210 }
211
212 }
213 return len;
214}
215
Alan Cox670d59c2008-08-04 17:53:22 +0100216static long ar7_wdt_ioctl(struct file *file,
217 unsigned int cmd, unsigned long arg)
Matteo Crocec283cf22007-09-20 18:06:41 +0200218{
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000219 static const struct watchdog_info ident = {
Matteo Crocec283cf22007-09-20 18:06:41 +0200220 .identity = LONGNAME,
221 .firmware_version = 1,
Wim Van Sebroecke73a7802009-05-11 18:33:00 +0000222 .options = (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
223 WDIOF_MAGICCLOSE),
Matteo Crocec283cf22007-09-20 18:06:41 +0200224 };
225 int new_margin;
226
227 switch (cmd) {
Matteo Crocec283cf22007-09-20 18:06:41 +0200228 case WDIOC_GETSUPPORT:
229 if (copy_to_user((struct watchdog_info *)arg, &ident,
230 sizeof(ident)))
231 return -EFAULT;
232 return 0;
233 case WDIOC_GETSTATUS:
234 case WDIOC_GETBOOTSTATUS:
235 if (put_user(0, (int *)arg))
236 return -EFAULT;
237 return 0;
238 case WDIOC_KEEPALIVE:
239 ar7_wdt_kick(1);
240 return 0;
241 case WDIOC_SETTIMEOUT:
242 if (get_user(new_margin, (int *)arg))
243 return -EFAULT;
244 if (new_margin < 1)
245 return -EINVAL;
246
Alan Cox670d59c2008-08-04 17:53:22 +0100247 spin_lock(&wdt_lock);
Matteo Crocec283cf22007-09-20 18:06:41 +0200248 ar7_wdt_update_margin(new_margin);
249 ar7_wdt_kick(1);
Alan Cox670d59c2008-08-04 17:53:22 +0100250 spin_unlock(&wdt_lock);
Matteo Crocec283cf22007-09-20 18:06:41 +0200251
252 case WDIOC_GETTIMEOUT:
253 if (put_user(margin, (int *)arg))
254 return -EFAULT;
255 return 0;
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000256 default:
257 return -ENOTTY;
Matteo Crocec283cf22007-09-20 18:06:41 +0200258 }
259}
260
Jan Engelhardtb47a1662008-01-22 20:48:10 +0100261static const struct file_operations ar7_wdt_fops = {
Matteo Crocec283cf22007-09-20 18:06:41 +0200262 .owner = THIS_MODULE,
263 .write = ar7_wdt_write,
Alan Cox670d59c2008-08-04 17:53:22 +0100264 .unlocked_ioctl = ar7_wdt_ioctl,
Matteo Crocec283cf22007-09-20 18:06:41 +0200265 .open = ar7_wdt_open,
266 .release = ar7_wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200267 .llseek = no_llseek,
Matteo Crocec283cf22007-09-20 18:06:41 +0200268};
269
270static struct miscdevice ar7_wdt_miscdev = {
271 .minor = WATCHDOG_MINOR,
272 .name = "watchdog",
273 .fops = &ar7_wdt_fops,
274};
275
Bill Pemberton2d991a12012-11-19 13:21:41 -0500276static int ar7_wdt_probe(struct platform_device *pdev)
Matteo Crocec283cf22007-09-20 18:06:41 +0200277{
278 int rc;
279
Florian Fainelli64d40622009-07-21 12:11:32 +0200280 ar7_regs_wdt =
281 platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
Thierry Reding4c271bb2013-01-21 11:09:25 +0100282 ar7_wdt = devm_ioremap_resource(&pdev->dev, ar7_regs_wdt);
283 if (IS_ERR(ar7_wdt))
284 return PTR_ERR(ar7_wdt);
Matteo Crocec283cf22007-09-20 18:06:41 +0200285
Florian Fainelli780019d2010-01-27 09:10:06 +0100286 vbus_clk = clk_get(NULL, "vbus");
287 if (IS_ERR(vbus_clk)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800288 pr_err("could not get vbus clock\n");
Julia Lawallae21cc22012-04-15 12:27:33 +0200289 return PTR_ERR(vbus_clk);
Florian Fainelli780019d2010-01-27 09:10:06 +0100290 }
291
Matteo Crocec283cf22007-09-20 18:06:41 +0200292 ar7_wdt_disable_wdt();
293 ar7_wdt_prescale(prescale_value);
294 ar7_wdt_update_margin(margin);
295
Matteo Crocec283cf22007-09-20 18:06:41 +0200296 rc = misc_register(&ar7_wdt_miscdev);
297 if (rc) {
Joe Perches27c766a2012-02-15 15:06:19 -0800298 pr_err("unable to register misc device\n");
Julia Lawallae21cc22012-04-15 12:27:33 +0200299 goto out;
Matteo Crocec283cf22007-09-20 18:06:41 +0200300 }
Julia Lawallae21cc22012-04-15 12:27:33 +0200301 return 0;
Matteo Crocec283cf22007-09-20 18:06:41 +0200302
Matteo Crocec283cf22007-09-20 18:06:41 +0200303out:
Julia Lawallae21cc22012-04-15 12:27:33 +0200304 clk_put(vbus_clk);
305 vbus_clk = NULL;
Matteo Crocec283cf22007-09-20 18:06:41 +0200306 return rc;
307}
308
Bill Pemberton4b12b892012-11-19 13:26:24 -0500309static int ar7_wdt_remove(struct platform_device *pdev)
Matteo Crocec283cf22007-09-20 18:06:41 +0200310{
311 misc_deregister(&ar7_wdt_miscdev);
Julia Lawallae21cc22012-04-15 12:27:33 +0200312 clk_put(vbus_clk);
313 vbus_clk = NULL;
Florian Fainelli64d40622009-07-21 12:11:32 +0200314 return 0;
315}
316
317static void ar7_wdt_shutdown(struct platform_device *pdev)
318{
319 if (!nowayout)
320 ar7_wdt_disable_wdt();
321}
322
323static struct platform_driver ar7_wdt_driver = {
324 .probe = ar7_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500325 .remove = ar7_wdt_remove,
Florian Fainelli64d40622009-07-21 12:11:32 +0200326 .shutdown = ar7_wdt_shutdown,
327 .driver = {
328 .owner = THIS_MODULE,
329 .name = "ar7_wdt",
330 },
331};
332
Axel Linb8ec6112011-11-29 13:56:27 +0800333module_platform_driver(ar7_wdt_driver);