1 /* riowd.c - driver for hw watchdog inside Super I/O of RIO
3 * Copyright (C) 2001, 2008 David S. Miller (davem@davemloft.net)
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/types.h>
12 #include <linux/errno.h>
13 #include <linux/init.h>
14 #include <linux/miscdevice.h>
15 #include <linux/watchdog.h>
17 #include <linux/of_device.h>
19 #include <linux/uaccess.h>
20 #include <linux/slab.h>
23 /* RIO uses the NatSemi Super I/O power management logical device
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.
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.
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
44 * The watchdog device generates no interrupts.
47 MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
48 MODULE_DESCRIPTION("Hardware watchdog driver for Sun RIO");
49 MODULE_SUPPORTED_DEVICE("watchdog");
50 MODULE_LICENSE("GPL");
52 #define DRIVER_NAME "riowd"
53 #define PFX DRIVER_NAME ": "
60 static struct riowd
*riowd_device
;
62 #define WDTO_INDEX 0x05
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");
68 static void riowd_writereg(struct riowd
*p
, u8 val
, int index
)
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
);
78 static int riowd_open(struct inode
*inode
, struct file
*filp
)
80 nonseekable_open(inode
, filp
);
84 static int riowd_release(struct inode
*inode
, struct file
*filp
)
89 static long riowd_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
91 static const struct watchdog_info info
= {
92 .options
= WDIOF_SETTIMEOUT
,
93 .firmware_version
= 1,
94 .identity
= DRIVER_NAME
,
96 void __user
*argp
= (void __user
*)arg
;
97 struct riowd
*p
= riowd_device
;
102 case WDIOC_GETSUPPORT
:
103 if (copy_to_user(argp
, &info
, sizeof(info
)))
107 case WDIOC_GETSTATUS
:
108 case WDIOC_GETBOOTSTATUS
:
109 if (put_user(0, (int __user
*)argp
))
113 case WDIOC_KEEPALIVE
:
114 riowd_writereg(p
, riowd_timeout
, WDTO_INDEX
);
117 case WDIOC_SETOPTIONS
:
118 if (copy_from_user(&options
, argp
, sizeof(options
)))
121 if (options
& WDIOS_DISABLECARD
)
122 riowd_writereg(p
, 0, WDTO_INDEX
);
123 else if (options
& WDIOS_ENABLECARD
)
124 riowd_writereg(p
, riowd_timeout
, WDTO_INDEX
);
130 case WDIOC_SETTIMEOUT
:
131 if (get_user(new_margin
, (int __user
*)argp
))
133 if ((new_margin
< 60) || (new_margin
> (255 * 60)))
135 riowd_timeout
= (new_margin
+ 59) / 60;
136 riowd_writereg(p
, riowd_timeout
, WDTO_INDEX
);
139 case WDIOC_GETTIMEOUT
:
140 return put_user(riowd_timeout
* 60, (int __user
*)argp
);
149 static ssize_t
riowd_write(struct file
*file
, const char __user
*buf
,
150 size_t count
, loff_t
*ppos
)
152 struct riowd
*p
= riowd_device
;
155 riowd_writereg(p
, riowd_timeout
, WDTO_INDEX
);
162 static const struct file_operations riowd_fops
= {
163 .owner
= THIS_MODULE
,
165 .unlocked_ioctl
= riowd_ioctl
,
167 .write
= riowd_write
,
168 .release
= riowd_release
,
171 static struct miscdevice riowd_miscdev
= {
172 .minor
= WATCHDOG_MINOR
,
177 static int __devinit
riowd_probe(struct platform_device
*op
)
186 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
190 spin_lock_init(&p
->lock
);
192 p
->regs
= of_ioremap(&op
->resource
[0], 0, 2, DRIVER_NAME
);
194 pr_err("Cannot map registers\n");
197 /* Make miscdev useable right away */
200 err
= misc_register(&riowd_miscdev
);
202 pr_err("Cannot register watchdog misc device\n");
206 pr_info("Hardware watchdog [%i minutes], regs at %p\n",
207 riowd_timeout
, p
->regs
);
209 dev_set_drvdata(&op
->dev
, p
);
214 of_iounmap(&op
->resource
[0], p
->regs
, 2);
223 static int __devexit
riowd_remove(struct platform_device
*op
)
225 struct riowd
*p
= dev_get_drvdata(&op
->dev
);
227 misc_deregister(&riowd_miscdev
);
228 of_iounmap(&op
->resource
[0], p
->regs
, 2);
234 static const struct of_device_id riowd_match
[] = {
240 MODULE_DEVICE_TABLE(of
, riowd_match
);
242 static struct platform_driver riowd_driver
= {
245 .owner
= THIS_MODULE
,
246 .of_match_table
= riowd_match
,
248 .probe
= riowd_probe
,
249 .remove
= __devexit_p(riowd_remove
),
252 module_platform_driver(riowd_driver
);