David S. Miller | 957183f | 2008-08-29 15:40:24 -0700 | [diff] [blame] | 1 | /* riowd.c - driver for hw watchdog inside Super I/O of RIO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 3 | * Copyright (C) 2001, 2008 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 6 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/kernel.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/types.h> |
| 11 | #include <linux/fs.h> |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/miscdevice.h> |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 15 | #include <linux/watchdog.h> |
| 16 | #include <linux/of.h> |
| 17 | #include <linux/of_device.h> |
Wim Van Sebroeck | 278aefc | 2009-03-18 09:09:26 +0000 | [diff] [blame] | 18 | #include <linux/io.h> |
| 19 | #include <linux/uaccess.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 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. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 47 | MODULE_AUTHOR("David S. Miller <davem@davemloft.net>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | MODULE_DESCRIPTION("Hardware watchdog driver for Sun RIO"); |
| 49 | MODULE_SUPPORTED_DEVICE("watchdog"); |
| 50 | MODULE_LICENSE("GPL"); |
| 51 | |
David S. Miller | e25ecd0 | 2008-08-29 15:42:31 -0700 | [diff] [blame] | 52 | #define DRIVER_NAME "riowd" |
| 53 | #define PFX DRIVER_NAME ": " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 55 | struct riowd { |
| 56 | void __iomem *regs; |
| 57 | spinlock_t lock; |
| 58 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 60 | static struct riowd *riowd_device; |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define WDTO_INDEX 0x05 |
| 63 | |
| 64 | static int riowd_timeout = 1; /* in minutes */ |
| 65 | module_param(riowd_timeout, int, 0); |
| 66 | MODULE_PARM_DESC(riowd_timeout, "Watchdog timeout in minutes"); |
| 67 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 68 | static void riowd_writereg(struct riowd *p, u8 val, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { |
| 70 | unsigned long flags; |
| 71 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 72 | spin_lock_irqsave(&p->lock, flags); |
| 73 | writeb(index, p->regs + 0); |
| 74 | writeb(val, p->regs + 1); |
| 75 | spin_unlock_irqrestore(&p->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static int riowd_open(struct inode *inode, struct file *filp) |
| 79 | { |
| 80 | nonseekable_open(inode, filp); |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static int riowd_release(struct inode *inode, struct file *filp) |
| 85 | { |
| 86 | return 0; |
| 87 | } |
| 88 | |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 89 | static long riowd_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 91 | static const struct watchdog_info info = { |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 92 | .options = WDIOF_SETTIMEOUT, |
| 93 | .firmware_version = 1, |
David S. Miller | e25ecd0 | 2008-08-29 15:42:31 -0700 | [diff] [blame] | 94 | .identity = DRIVER_NAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | }; |
| 96 | void __user *argp = (void __user *)arg; |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 97 | struct riowd *p = riowd_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | unsigned int options; |
| 99 | int new_margin; |
| 100 | |
| 101 | switch (cmd) { |
| 102 | case WDIOC_GETSUPPORT: |
| 103 | if (copy_to_user(argp, &info, sizeof(info))) |
| 104 | return -EFAULT; |
| 105 | break; |
| 106 | |
| 107 | case WDIOC_GETSTATUS: |
| 108 | case WDIOC_GETBOOTSTATUS: |
| 109 | if (put_user(0, (int __user *)argp)) |
| 110 | return -EFAULT; |
| 111 | break; |
| 112 | |
| 113 | case WDIOC_KEEPALIVE: |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 114 | riowd_writereg(p, riowd_timeout, WDTO_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | break; |
| 116 | |
| 117 | case WDIOC_SETOPTIONS: |
| 118 | if (copy_from_user(&options, argp, sizeof(options))) |
| 119 | return -EFAULT; |
| 120 | |
| 121 | if (options & WDIOS_DISABLECARD) |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 122 | riowd_writereg(p, 0, WDTO_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | else if (options & WDIOS_ENABLECARD) |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 124 | riowd_writereg(p, riowd_timeout, WDTO_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | else |
| 126 | return -EINVAL; |
| 127 | |
| 128 | break; |
| 129 | |
| 130 | case WDIOC_SETTIMEOUT: |
| 131 | if (get_user(new_margin, (int __user *)argp)) |
| 132 | return -EFAULT; |
| 133 | if ((new_margin < 60) || (new_margin > (255 * 60))) |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 134 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | riowd_timeout = (new_margin + 59) / 60; |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 136 | riowd_writereg(p, riowd_timeout, WDTO_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* Fall */ |
| 138 | |
| 139 | case WDIOC_GETTIMEOUT: |
| 140 | return put_user(riowd_timeout * 60, (int __user *)argp); |
| 141 | |
| 142 | default: |
| 143 | return -EINVAL; |
| 144 | }; |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 149 | static ssize_t riowd_write(struct file *file, const char __user *buf, |
| 150 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 152 | struct riowd *p = riowd_device; |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | if (count) { |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 155 | riowd_writereg(p, riowd_timeout, WDTO_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | return 1; |
| 157 | } |
| 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 162 | static const struct file_operations riowd_fops = { |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 163 | .owner = THIS_MODULE, |
| 164 | .llseek = no_llseek, |
| 165 | .unlocked_ioctl = riowd_ioctl, |
| 166 | .open = riowd_open, |
| 167 | .write = riowd_write, |
| 168 | .release = riowd_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 171 | static struct miscdevice riowd_miscdev = { |
| 172 | .minor = WATCHDOG_MINOR, |
| 173 | .name = "watchdog", |
| 174 | .fops = &riowd_fops |
| 175 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 177 | static int riowd_probe(struct platform_device *op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 179 | struct riowd *p; |
| 180 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 182 | if (riowd_device) |
| 183 | goto out; |
| 184 | |
| 185 | err = -ENOMEM; |
Jingoo Han | a508e2e | 2013-04-30 14:01:59 +0900 | [diff] [blame] | 186 | p = devm_kzalloc(&op->dev, sizeof(*p), GFP_KERNEL); |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 187 | if (!p) |
| 188 | goto out; |
| 189 | |
| 190 | spin_lock_init(&p->lock); |
| 191 | |
David S. Miller | e25ecd0 | 2008-08-29 15:42:31 -0700 | [diff] [blame] | 192 | p->regs = of_ioremap(&op->resource[0], 0, 2, DRIVER_NAME); |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 193 | if (!p->regs) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 194 | pr_err("Cannot map registers\n"); |
Jingoo Han | a508e2e | 2013-04-30 14:01:59 +0900 | [diff] [blame] | 195 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
Thomas Gleixner | 462265b | 2009-11-02 21:16:28 -0800 | [diff] [blame] | 197 | /* Make miscdev useable right away */ |
| 198 | riowd_device = p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 200 | err = misc_register(&riowd_miscdev); |
| 201 | if (err) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 202 | pr_err("Cannot register watchdog misc device\n"); |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 203 | goto out_iounmap; |
| 204 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 206 | pr_info("Hardware watchdog [%i minutes], regs at %p\n", |
| 207 | riowd_timeout, p->regs); |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 208 | |
Jingoo Han | b94828f | 2013-05-23 19:44:38 +0900 | [diff] [blame] | 209 | platform_set_drvdata(op, p); |
Thomas Gleixner | 03717e3 | 2009-10-14 01:18:26 -0700 | [diff] [blame] | 210 | return 0; |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 211 | |
| 212 | out_iounmap: |
Thomas Gleixner | 462265b | 2009-11-02 21:16:28 -0800 | [diff] [blame] | 213 | riowd_device = NULL; |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 214 | of_iounmap(&op->resource[0], p->regs, 2); |
| 215 | |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 216 | out: |
| 217 | return err; |
| 218 | } |
| 219 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 220 | static int riowd_remove(struct platform_device *op) |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 221 | { |
Jingoo Han | b94828f | 2013-05-23 19:44:38 +0900 | [diff] [blame] | 222 | struct riowd *p = platform_get_drvdata(op); |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 223 | |
| 224 | misc_deregister(&riowd_miscdev); |
| 225 | of_iounmap(&op->resource[0], p->regs, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | |
David S. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 230 | static const struct of_device_id riowd_match[] = { |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 231 | { |
| 232 | .name = "pmc", |
| 233 | }, |
| 234 | {}, |
| 235 | }; |
| 236 | MODULE_DEVICE_TABLE(of, riowd_match); |
| 237 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 238 | static struct platform_driver riowd_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 239 | .driver = { |
| 240 | .name = DRIVER_NAME, |
| 241 | .owner = THIS_MODULE, |
| 242 | .of_match_table = riowd_match, |
| 243 | }, |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 244 | .probe = riowd_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 245 | .remove = riowd_remove, |
David S. Miller | e42311d | 2008-08-29 15:35:59 -0700 | [diff] [blame] | 246 | }; |
| 247 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 248 | module_platform_driver(riowd_driver); |