2 * Watchdog for the 7101 PMU version found in the ALi M1535 chipsets
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/types.h>
13 #include <linux/miscdevice.h>
14 #include <linux/watchdog.h>
15 #include <linux/ioport.h>
16 #include <linux/notifier.h>
17 #include <linux/reboot.h>
18 #include <linux/init.h>
20 #include <linux/pci.h>
22 #include <asm/uaccess.h>
25 #define WATCHDOG_NAME "ALi_M1535"
26 #define PFX WATCHDOG_NAME ": "
27 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
29 /* internal variables */
30 static unsigned long ali_is_open;
31 static char ali_expect_release;
32 static struct pci_dev *ali_pci;
33 static u32 ali_timeout_bits; /* stores the computed timeout */
34 static DEFINE_SPINLOCK(ali_lock); /* Guards the hardware */
36 /* module parameters */
37 static int timeout = WATCHDOG_TIMEOUT;
38 module_param(timeout, int, 0);
39 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. (0<timeout<18000, default=" __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
41 static int nowayout = WATCHDOG_NOWAYOUT;
42 module_param(nowayout, int, 0);
43 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
46 * ali_start - start watchdog countdown
48 * Starts the timer running providing the timer has a counter
52 static void ali_start(void)
58 pci_read_config_dword(ali_pci, 0xCC, &val);
59 val &= ~0x3F; /* Mask count */
60 val |= (1<<25) | ali_timeout_bits;
61 pci_write_config_dword(ali_pci, 0xCC, val);
63 spin_unlock(&ali_lock);
67 * ali_stop - stop the timer countdown
69 * Stop the ALi watchdog countdown
72 static void ali_stop(void)
78 pci_read_config_dword(ali_pci, 0xCC, &val);
79 val &= ~0x3F; /* Mask count to zero (disabled) */
80 val &= ~(1<<25);/* and for safety mask the reset enable */
81 pci_write_config_dword(ali_pci, 0xCC, val);
83 spin_unlock(&ali_lock);
87 * ali_keepalive - send a keepalive to the watchdog
89 * Send a keepalive to the timer (actually we restart the timer).
92 static void ali_keepalive(void)
98 * ali_settimer - compute the timer reload value
101 * Computes the timeout values needed
104 static int ali_settimer(int t)
109 ali_timeout_bits = t|(1<<6);
111 ali_timeout_bits = (t/60)|(1<<7);
113 ali_timeout_bits = (t/300)|(1<<6)|(1<<7);
121 * /dev/watchdog handling
125 * ali_write - writes to ALi watchdog
126 * @file: file from VFS
127 * @data: user address of data
128 * @len: length of data
129 * @ppos: pointer to the file offset
131 * Handle a write to the ALi watchdog. Writing to the file pings
132 * the watchdog and resets it. Writing the magic 'V' sequence allows
133 * the next close to turn off the watchdog.
136 static ssize_t ali_write(struct file *file, const char __user *data,
137 size_t len, loff_t * ppos)
139 /* See if we got the magic character 'V' and reload the timer */
144 /* note: just in case someone wrote the magic character
145 * five months ago... */
146 ali_expect_release = 0;
148 /* scan to see whether or not we got the magic character */
149 for (i = 0; i != len; i++) {
151 if(get_user(c, data+i))
154 ali_expect_release = 42;
158 /* someone wrote to us, we should reload the timer */
165 * ali_ioctl - handle watchdog ioctls
167 * @file: VFS file pointer
169 * @arg: arguments to the ioctl
171 * Handle the watchdog ioctls supported by the ALi driver. Really
172 * we want an extension to enable irq ack monitoring and the like
175 static int ali_ioctl(struct inode *inode, struct file *file,
176 unsigned int cmd, unsigned long arg)
178 void __user *argp = (void __user *)arg;
179 int __user *p = argp;
180 static struct watchdog_info ident = {
181 .options = WDIOF_KEEPALIVEPING |
184 .firmware_version = 0,
185 .identity = "ALi M1535 WatchDog Timer",
189 case WDIOC_GETSUPPORT:
190 return copy_to_user(argp, &ident,
191 sizeof (ident)) ? -EFAULT : 0;
193 case WDIOC_GETSTATUS:
194 case WDIOC_GETBOOTSTATUS:
195 return put_user(0, p);
197 case WDIOC_KEEPALIVE:
201 case WDIOC_SETOPTIONS:
203 int new_options, retval = -EINVAL;
205 if (get_user (new_options, p))
208 if (new_options & WDIOS_DISABLECARD) {
213 if (new_options & WDIOS_ENABLECARD) {
221 case WDIOC_SETTIMEOUT:
225 if (get_user(new_timeout, p))
228 if (ali_settimer(new_timeout))
235 case WDIOC_GETTIMEOUT:
236 return put_user(timeout, p);
244 * ali_open - handle open of ali watchdog
245 * @inode: inode from VFS
246 * @file: file from VFS
248 * Open the ALi watchdog device. Ensure only one person opens it
249 * at a time. Also start the watchdog running.
252 static int ali_open(struct inode *inode, struct file *file)
254 /* /dev/watchdog can only be opened once */
255 if (test_and_set_bit(0, &ali_is_open))
260 return nonseekable_open(inode, file);
264 * ali_release - close an ALi watchdog
265 * @inode: inode from VFS
266 * @file: file from VFS
268 * Close the ALi watchdog device. Actual shutdown of the timer
269 * only occurs if the magic sequence has been set.
272 static int ali_release(struct inode *inode, struct file *file)
275 * Shut off the timer.
277 if (ali_expect_release == 42) {
280 printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
283 clear_bit(0, &ali_is_open);
284 ali_expect_release = 0;
289 * ali_notify_sys - System down notifier
291 * Notifier for system down
295 static int ali_notify_sys(struct notifier_block *this, unsigned long code, void *unused)
297 if (code==SYS_DOWN || code==SYS_HALT) {
298 /* Turn the WDT off */
306 * Data for PCI driver interface
308 * This data only exists for exporting the supported
309 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
310 * register a pci_driver, because someone else might one day
311 * want to register another driver on the same PCI id.
314 static struct pci_device_id ali_pci_tbl[] = {
315 { PCI_VENDOR_ID_AL, 0x1533, PCI_ANY_ID, PCI_ANY_ID,},
316 { PCI_VENDOR_ID_AL, 0x1535, PCI_ANY_ID, PCI_ANY_ID,},
319 MODULE_DEVICE_TABLE(pci, ali_pci_tbl);
322 * ali_find_watchdog - find a 1535 and 7101
324 * Scans the PCI hardware for a 1535 series bridge and matching 7101
325 * watchdog device. This may be overtight but it is better to be safe
328 static int __init ali_find_watchdog(void)
330 struct pci_dev *pdev;
333 /* Check for a 1533/1535 series bridge */
334 pdev = pci_get_device(PCI_VENDOR_ID_AL, 0x1535, NULL);
336 pdev = pci_get_device(PCI_VENDOR_ID_AL, 0x1533, NULL);
341 /* Check for the a 7101 PMU */
342 pdev = pci_get_device(PCI_VENDOR_ID_AL, 0x7101, NULL);
346 if(pci_enable_device(pdev)) {
354 * Initialize the timer bits
356 pci_read_config_dword(pdev, 0xCC, &wdog);
358 wdog &= ~0x3F; /* Timer bits */
359 wdog &= ~((1<<27)|(1<<26)|(1<<25)|(1<<24)); /* Issued events */
360 wdog &= ~((1<<16)|(1<<13)|(1<<12)|(1<<11)|(1<<10)|(1<<9)); /* No monitor bits */
362 pci_write_config_dword(pdev, 0xCC, wdog);
371 static const struct file_operations ali_fops = {
372 .owner = THIS_MODULE,
377 .release = ali_release,
380 static struct miscdevice ali_miscdev = {
381 .minor = WATCHDOG_MINOR,
386 static struct notifier_block ali_notifier = {
387 .notifier_call = ali_notify_sys,
391 * watchdog_init - module initialiser
393 * Scan for a suitable watchdog and if so initialize it. Return an error
394 * if we cannot, the error causes the module to unload
397 static int __init watchdog_init(void)
401 /* Check whether or not the hardware watchdog is there */
402 if (ali_find_watchdog() != 0) {
406 /* Check that the timeout value is within it's range ; if not reset to the default */
407 if (timeout < 1 || timeout >= 18000) {
408 timeout = WATCHDOG_TIMEOUT;
409 printk(KERN_INFO PFX "timeout value must be 0<timeout<18000, using %d\n",
413 /* Calculate the watchdog's timeout */
414 ali_settimer(timeout);
416 ret = register_reboot_notifier(&ali_notifier);
418 printk(KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
423 ret = misc_register(&ali_miscdev);
425 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
426 WATCHDOG_MINOR, ret);
430 printk(KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
436 unregister_reboot_notifier(&ali_notifier);
441 * watchdog_exit - module de-initialiser
443 * Called while unloading a successfully installed watchdog module.
446 static void __exit watchdog_exit(void)
448 /* Stop the timer before we leave */
452 misc_deregister(&ali_miscdev);
453 unregister_reboot_notifier(&ali_notifier);
454 pci_dev_put(ali_pci);
457 module_init(watchdog_init);
458 module_exit(watchdog_exit);
460 MODULE_AUTHOR("Alan Cox");
461 MODULE_DESCRIPTION("ALi M1535 PMU Watchdog Timer driver");
462 MODULE_LICENSE("GPL");
463 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);