blob: 747e346ed06c5a16a726e68d78d200cd22872b9e [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
David S. Miller957183f2008-08-29 15:40:24 -07002/* riowd.c - driver for hw watchdog inside Super I/O of RIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David S. Millere42311d2008-08-29 15:35:59 -07004 * Copyright (C) 2001, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Joe Perches27c766a2012-02-15 15:06:19 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/types.h>
12#include <linux/fs.h>
13#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/miscdevice.h>
David S. Millere42311d2008-08-29 15:35:59 -070015#include <linux/watchdog.h>
16#include <linux/of.h>
17#include <linux/of_device.h>
Wim Van Sebroeck278aefc2009-03-18 09:09:26 +000018#include <linux/io.h>
19#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/* RIO uses the NatSemi Super I/O power management logical device
24 * as its' watchdog.
25 *
26 * When the watchdog triggers, it asserts a line to the BBC (Boot Bus
27 * Controller) of the machine. The BBC can only be configured to
28 * trigger a power-on reset when the signal is asserted. The BBC
29 * can be configured to ignore the signal entirely as well.
30 *
31 * The only Super I/O device register we care about is at index
32 * 0x05 (WDTO_INDEX) which is the watchdog time-out in minutes (1-255).
33 * If set to zero, this disables the watchdog. When set, the system
34 * must periodically (before watchdog expires) clear (set to zero) and
35 * re-set the watchdog else it will trigger.
36 *
37 * There are two other indexed watchdog registers inside this Super I/O
38 * logical device, but they are unused. The first, at index 0x06 is
39 * the watchdog control and can be used to make the watchdog timer re-set
40 * when the PS/2 mouse or serial lines show activity. The second, at
41 * index 0x07 is merely a sampling of the line from the watchdog to the
42 * BBC.
43 *
44 * The watchdog device generates no interrupts.
45 */
46
David S. Millere42311d2008-08-29 15:35:59 -070047MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_DESCRIPTION("Hardware watchdog driver for Sun RIO");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_LICENSE("GPL");
50
David S. Millere25ecd02008-08-29 15:42:31 -070051#define DRIVER_NAME "riowd"
52#define PFX DRIVER_NAME ": "
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David S. Millere42311d2008-08-29 15:35:59 -070054struct riowd {
55 void __iomem *regs;
56 spinlock_t lock;
57};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David S. Millere42311d2008-08-29 15:35:59 -070059static struct riowd *riowd_device;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define WDTO_INDEX 0x05
62
63static int riowd_timeout = 1; /* in minutes */
64module_param(riowd_timeout, int, 0);
65MODULE_PARM_DESC(riowd_timeout, "Watchdog timeout in minutes");
66
David S. Millere42311d2008-08-29 15:35:59 -070067static void riowd_writereg(struct riowd *p, u8 val, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 unsigned long flags;
70
David S. Millere42311d2008-08-29 15:35:59 -070071 spin_lock_irqsave(&p->lock, flags);
72 writeb(index, p->regs + 0);
73 writeb(val, p->regs + 1);
74 spin_unlock_irqrestore(&p->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static int riowd_open(struct inode *inode, struct file *filp)
78{
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +030079 stream_open(inode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
81}
82
83static int riowd_release(struct inode *inode, struct file *filp)
84{
85 return 0;
86}
87
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +000088static long riowd_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Wim Van Sebroeck42747d72009-12-26 18:55:22 +000090 static const struct watchdog_info info = {
David S. Millere42311d2008-08-29 15:35:59 -070091 .options = WDIOF_SETTIMEOUT,
92 .firmware_version = 1,
David S. Millere25ecd02008-08-29 15:42:31 -070093 .identity = DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 };
95 void __user *argp = (void __user *)arg;
David S. Millere42311d2008-08-29 15:35:59 -070096 struct riowd *p = riowd_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned int options;
98 int new_margin;
99
100 switch (cmd) {
101 case WDIOC_GETSUPPORT:
102 if (copy_to_user(argp, &info, sizeof(info)))
103 return -EFAULT;
104 break;
105
106 case WDIOC_GETSTATUS:
107 case WDIOC_GETBOOTSTATUS:
108 if (put_user(0, (int __user *)argp))
109 return -EFAULT;
110 break;
111
112 case WDIOC_KEEPALIVE:
David S. Millere42311d2008-08-29 15:35:59 -0700113 riowd_writereg(p, riowd_timeout, WDTO_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 break;
115
116 case WDIOC_SETOPTIONS:
117 if (copy_from_user(&options, argp, sizeof(options)))
118 return -EFAULT;
119
120 if (options & WDIOS_DISABLECARD)
David S. Millere42311d2008-08-29 15:35:59 -0700121 riowd_writereg(p, 0, WDTO_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 else if (options & WDIOS_ENABLECARD)
David S. Millere42311d2008-08-29 15:35:59 -0700123 riowd_writereg(p, riowd_timeout, WDTO_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 else
125 return -EINVAL;
126
127 break;
128
129 case WDIOC_SETTIMEOUT:
130 if (get_user(new_margin, (int __user *)argp))
131 return -EFAULT;
132 if ((new_margin < 60) || (new_margin > (255 * 60)))
David S. Millere42311d2008-08-29 15:35:59 -0700133 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 riowd_timeout = (new_margin + 59) / 60;
David S. Millere42311d2008-08-29 15:35:59 -0700135 riowd_writereg(p, riowd_timeout, WDTO_INDEX);
Gustavo A. R. Silvabd490f82020-07-07 12:11:21 -0500136 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 case WDIOC_GETTIMEOUT:
139 return put_user(riowd_timeout * 60, (int __user *)argp);
140
141 default:
142 return -EINVAL;
Jason Yan5e318962020-04-28 14:33:33 +0800143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 return 0;
146}
147
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000148static ssize_t riowd_write(struct file *file, const char __user *buf,
149 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
David S. Millere42311d2008-08-29 15:35:59 -0700151 struct riowd *p = riowd_device;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (count) {
David S. Millere42311d2008-08-29 15:35:59 -0700154 riowd_writereg(p, riowd_timeout, WDTO_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 1;
156 }
157
158 return 0;
159}
160
Arjan van de Ven00977a52007-02-12 00:55:34 -0800161static const struct file_operations riowd_fops = {
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +0000162 .owner = THIS_MODULE,
163 .llseek = no_llseek,
164 .unlocked_ioctl = riowd_ioctl,
Arnd Bergmannb6dfb242019-06-03 14:23:09 +0200165 .compat_ioctl = compat_ptr_ioctl,
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +0000166 .open = riowd_open,
167 .write = riowd_write,
168 .release = riowd_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
David S. Millere42311d2008-08-29 15:35:59 -0700171static struct miscdevice riowd_miscdev = {
172 .minor = WATCHDOG_MINOR,
173 .name = "watchdog",
174 .fops = &riowd_fops
175};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Bill Pemberton2d991a12012-11-19 13:21:41 -0500177static int riowd_probe(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
David S. Millere42311d2008-08-29 15:35:59 -0700179 struct riowd *p;
180 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
David S. Millere42311d2008-08-29 15:35:59 -0700182 if (riowd_device)
183 goto out;
184
185 err = -ENOMEM;
Jingoo Hana508e2e2013-04-30 14:01:59 +0900186 p = devm_kzalloc(&op->dev, sizeof(*p), GFP_KERNEL);
David S. Millere42311d2008-08-29 15:35:59 -0700187 if (!p)
188 goto out;
189
190 spin_lock_init(&p->lock);
191
David S. Millere25ecd02008-08-29 15:42:31 -0700192 p->regs = of_ioremap(&op->resource[0], 0, 2, DRIVER_NAME);
David S. Millere42311d2008-08-29 15:35:59 -0700193 if (!p->regs) {
Joe Perches27c766a2012-02-15 15:06:19 -0800194 pr_err("Cannot map registers\n");
Jingoo Hana508e2e2013-04-30 14:01:59 +0900195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Thomas Gleixner462265b2009-11-02 21:16:28 -0800197 /* Make miscdev useable right away */
198 riowd_device = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
David S. Millere42311d2008-08-29 15:35:59 -0700200 err = misc_register(&riowd_miscdev);
201 if (err) {
Joe Perches27c766a2012-02-15 15:06:19 -0800202 pr_err("Cannot register watchdog misc device\n");
David S. Millere42311d2008-08-29 15:35:59 -0700203 goto out_iounmap;
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Joe Perches27c766a2012-02-15 15:06:19 -0800206 pr_info("Hardware watchdog [%i minutes], regs at %p\n",
207 riowd_timeout, p->regs);
David S. Millere42311d2008-08-29 15:35:59 -0700208
Jingoo Hanb94828f2013-05-23 19:44:38 +0900209 platform_set_drvdata(op, p);
Thomas Gleixner03717e32009-10-14 01:18:26 -0700210 return 0;
David S. Millere42311d2008-08-29 15:35:59 -0700211
212out_iounmap:
Thomas Gleixner462265b2009-11-02 21:16:28 -0800213 riowd_device = NULL;
David S. Millere42311d2008-08-29 15:35:59 -0700214 of_iounmap(&op->resource[0], p->regs, 2);
215
David S. Millere42311d2008-08-29 15:35:59 -0700216out:
217 return err;
218}
219
Bill Pemberton4b12b892012-11-19 13:26:24 -0500220static int riowd_remove(struct platform_device *op)
David S. Millere42311d2008-08-29 15:35:59 -0700221{
Jingoo Hanb94828f2013-05-23 19:44:38 +0900222 struct riowd *p = platform_get_drvdata(op);
David S. Millere42311d2008-08-29 15:35:59 -0700223
224 misc_deregister(&riowd_miscdev);
225 of_iounmap(&op->resource[0], p->regs, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return 0;
228}
229
David S. Millerfd098312008-08-31 01:23:17 -0700230static const struct of_device_id riowd_match[] = {
David S. Millere42311d2008-08-29 15:35:59 -0700231 {
232 .name = "pmc",
233 },
234 {},
235};
236MODULE_DEVICE_TABLE(of, riowd_match);
237
Grant Likely1c48a5c2011-02-17 02:43:24 -0700238static struct platform_driver riowd_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700239 .driver = {
240 .name = DRIVER_NAME,
Grant Likely40182942010-04-13 16:13:02 -0700241 .of_match_table = riowd_match,
242 },
David S. Millere42311d2008-08-29 15:35:59 -0700243 .probe = riowd_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500244 .remove = riowd_remove,
David S. Millere42311d2008-08-29 15:35:59 -0700245};
246
Axel Linb8ec6112011-11-29 13:56:27 +0800247module_platform_driver(riowd_driver);