blob: 8a0ef65a0691c21bdda0ef482772755c5c7dc1b4 [file] [log] [blame]
David Hardemancc90ef02005-08-17 09:07:44 +02001/*
David Hardemanabda5c82005-09-01 22:34:53 +02002 * i6300esb: Watchdog timer driver for Intel 6300ESB chipset
David Hardemancc90ef02005-08-17 09:07:44 +02003 *
4 * (c) Copyright 2004 Google Inc.
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * (c) Copyright 2005 David Härdeman <david@2gen.com>
David Hardemancc90ef02005-08-17 09:07:44 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000012 * based on i810-tco.c which is in turn based on softdog.c
David Hardemancc90ef02005-08-17 09:07:44 +020013 *
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000014 * The timer is implemented in the following I/O controller hubs:
15 * (See the intel documentation on http://developer.intel.com.)
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +000016 * 6300ESB chip : document number 300641-004
David Hardemancc90ef02005-08-17 09:07:44 +020017 *
18 * 2004YYZZ Ross Biro
19 * Initial version 0.01
20 * 2004YYZZ Ross Biro
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000021 * Version 0.02
Jan Engelhardt96de0e22007-10-19 23:21:04 +020022 * 20050210 David Härdeman <david@2gen.com>
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000023 * Ported driver to kernel 2.6
David Hardemancc90ef02005-08-17 09:07:44 +020024 */
25
26/*
27 * Includes, defines, variables, module parameters, ...
28 */
29
30#include <linux/module.h>
31#include <linux/types.h>
32#include <linux/kernel.h>
33#include <linux/fs.h>
34#include <linux/mm.h>
35#include <linux/miscdevice.h>
36#include <linux/watchdog.h>
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +000037#include <linux/platform_device.h>
David Hardemancc90ef02005-08-17 09:07:44 +020038#include <linux/init.h>
39#include <linux/pci.h>
40#include <linux/ioport.h>
Alan Cox08292912008-05-19 14:05:57 +010041#include <linux/uaccess.h>
42#include <linux/io.h>
David Hardemancc90ef02005-08-17 09:07:44 +020043
David Hardemancc90ef02005-08-17 09:07:44 +020044/* Module and version information */
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +000045#define ESB_VERSION "0.04"
David Hardemancc90ef02005-08-17 09:07:44 +020046#define ESB_MODULE_NAME "i6300ESB timer"
47#define ESB_DRIVER_NAME ESB_MODULE_NAME ", v" ESB_VERSION
48#define PFX ESB_MODULE_NAME ": "
49
David Hardemanabda5c82005-09-01 22:34:53 +020050/* PCI configuration registers */
51#define ESB_CONFIG_REG 0x60 /* Config register */
52#define ESB_LOCK_REG 0x68 /* WDT lock register */
53
54/* Memory mapped registers */
Wim Van Sebroeckbd4e6c12009-03-25 19:20:10 +000055#define ESB_TIMER1_REG (BASEADDR + 0x00)/* Timer1 value after each reset */
56#define ESB_TIMER2_REG (BASEADDR + 0x04)/* Timer2 value after each reset */
57#define ESB_GINTSR_REG (BASEADDR + 0x08)/* General Interrupt Status Register */
58#define ESB_RELOAD_REG (BASEADDR + 0x0c)/* Reload register */
David Hardemanabda5c82005-09-01 22:34:53 +020059
60/* Lock register bits */
Alan Cox08292912008-05-19 14:05:57 +010061#define ESB_WDT_FUNC (0x01 << 2) /* Watchdog functionality */
62#define ESB_WDT_ENABLE (0x01 << 1) /* Enable WDT */
63#define ESB_WDT_LOCK (0x01 << 0) /* Lock (nowayout) */
David Hardemanabda5c82005-09-01 22:34:53 +020064
65/* Config register bits */
Alan Cox08292912008-05-19 14:05:57 +010066#define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */
67#define ESB_WDT_FREQ (0x01 << 2) /* Decrement frequency */
68#define ESB_WDT_INTTYPE (0x11 << 0) /* Interrupt type on timer1 timeout */
David Hardemanabda5c82005-09-01 22:34:53 +020069
70/* Reload register bits */
Wim Van Sebroeck31838d92009-03-25 19:14:45 +000071#define ESB_WDT_TIMEOUT (0x01 << 9) /* Watchdog timed out */
Alan Cox08292912008-05-19 14:05:57 +010072#define ESB_WDT_RELOAD (0x01 << 8) /* prevent timeout */
David Hardemanabda5c82005-09-01 22:34:53 +020073
74/* Magic constants */
75#define ESB_UNLOCK1 0x80 /* Step 1 to unlock reset registers */
76#define ESB_UNLOCK2 0x86 /* Step 2 to unlock reset registers */
77
David Hardemancc90ef02005-08-17 09:07:44 +020078/* internal variables */
79static void __iomem *BASEADDR;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070080static DEFINE_SPINLOCK(esb_lock); /* Guards the hardware */
David Hardemancc90ef02005-08-17 09:07:44 +020081static unsigned long timer_alive;
82static struct pci_dev *esb_pci;
83static unsigned short triggered; /* The status of the watchdog upon boot */
84static char esb_expect_close;
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +000085static struct platform_device *esb_platform_device;
86
David Hardemancc90ef02005-08-17 09:07:44 +020087/* module parameters */
Alan Cox08292912008-05-19 14:05:57 +010088/* 30 sec default heartbeat (1 < heartbeat < 2*1023) */
89#define WATCHDOG_HEARTBEAT 30
David Hardemancc90ef02005-08-17 09:07:44 +020090static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
91module_param(heartbeat, int, 0);
Alan Cox08292912008-05-19 14:05:57 +010092MODULE_PARM_DESC(heartbeat,
93 "Watchdog heartbeat in seconds. (1<heartbeat<2046, default="
94 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
David Hardemancc90ef02005-08-17 09:07:44 +020095
Naveen Gupta811f9992005-08-21 13:02:41 +020096static int nowayout = WATCHDOG_NOWAYOUT;
David Hardemancc90ef02005-08-17 09:07:44 +020097module_param(nowayout, int, 0);
Alan Cox08292912008-05-19 14:05:57 +010098MODULE_PARM_DESC(nowayout,
99 "Watchdog cannot be stopped once started (default="
100 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
David Hardemancc90ef02005-08-17 09:07:44 +0200101
102/*
103 * Some i6300ESB specific functions
104 */
105
106/*
107 * Prepare for reloading the timer by unlocking the proper registers.
108 * This is performed by first writing 0x80 followed by 0x86 to the
109 * reload register. After this the appropriate registers can be written
110 * to once before they need to be unlocked again.
111 */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000112static inline void esb_unlock_registers(void)
113{
Alan Cox08292912008-05-19 14:05:57 +0100114 writeb(ESB_UNLOCK1, ESB_RELOAD_REG);
115 writeb(ESB_UNLOCK2, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200116}
117
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000118static int esb_timer_start(void)
David Hardemancc90ef02005-08-17 09:07:44 +0200119{
120 u8 val;
121
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000122 spin_lock(&esb_lock);
123 esb_unlock_registers();
124 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200125 /* Enable or Enable + Lock? */
Naveen Gupta28562af2005-08-17 09:10:10 +0200126 val = 0x02 | (nowayout ? 0x01 : 0x00);
Alan Cox08292912008-05-19 14:05:57 +0100127 pci_write_config_byte(esb_pci, ESB_LOCK_REG, val);
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000128 spin_unlock(&esb_lock);
129 return 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200130}
131
132static int esb_timer_stop(void)
133{
134 u8 val;
135
136 spin_lock(&esb_lock);
137 /* First, reset timers as suggested by the docs */
138 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200139 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200140 /* Then disable the WDT */
141 pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x0);
142 pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val);
143 spin_unlock(&esb_lock);
144
145 /* Returns 0 if the timer was disabled, non-zero otherwise */
Wim Van Sebroeckbd4e6c12009-03-25 19:20:10 +0000146 return val & 0x01;
David Hardemancc90ef02005-08-17 09:07:44 +0200147}
148
149static void esb_timer_keepalive(void)
150{
151 spin_lock(&esb_lock);
152 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200153 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
Alan Cox08292912008-05-19 14:05:57 +0100154 /* FIXME: Do we need to flush anything here? */
David Hardemancc90ef02005-08-17 09:07:44 +0200155 spin_unlock(&esb_lock);
156}
157
158static int esb_timer_set_heartbeat(int time)
159{
160 u32 val;
161
162 if (time < 0x1 || time > (2 * 0x03ff))
163 return -EINVAL;
164
165 spin_lock(&esb_lock);
166
167 /* We shift by 9, so if we are passed a value of 1 sec,
168 * val will be 1 << 9 = 512, then write that to two
169 * timers => 2 * 512 = 1024 (which is decremented at 1KHz)
170 */
171 val = time << 9;
172
173 /* Write timer 1 */
174 esb_unlock_registers();
175 writel(val, ESB_TIMER1_REG);
176
177 /* Write timer 2 */
178 esb_unlock_registers();
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000179 writel(val, ESB_TIMER2_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200180
Alan Cox08292912008-05-19 14:05:57 +0100181 /* Reload */
David Hardemancc90ef02005-08-17 09:07:44 +0200182 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200183 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200184
185 /* FIXME: Do we need to flush everything out? */
186
187 /* Done */
188 heartbeat = time;
189 spin_unlock(&esb_lock);
190 return 0;
191}
192
David Hardemancc90ef02005-08-17 09:07:44 +0200193/*
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000194 * /dev/watchdog handling
David Hardemancc90ef02005-08-17 09:07:44 +0200195 */
196
Alan Cox08292912008-05-19 14:05:57 +0100197static int esb_open(struct inode *inode, struct file *file)
David Hardemancc90ef02005-08-17 09:07:44 +0200198{
Alan Cox08292912008-05-19 14:05:57 +0100199 /* /dev/watchdog can only be opened once */
200 if (test_and_set_bit(0, &timer_alive))
201 return -EBUSY;
David Hardemancc90ef02005-08-17 09:07:44 +0200202
Alan Cox08292912008-05-19 14:05:57 +0100203 /* Reload and activate timer */
Alan Cox08292912008-05-19 14:05:57 +0100204 esb_timer_start();
David Hardemancc90ef02005-08-17 09:07:44 +0200205
206 return nonseekable_open(inode, file);
207}
208
Alan Cox08292912008-05-19 14:05:57 +0100209static int esb_release(struct inode *inode, struct file *file)
David Hardemancc90ef02005-08-17 09:07:44 +0200210{
Alan Cox08292912008-05-19 14:05:57 +0100211 /* Shut off the timer. */
212 if (esb_expect_close == 42)
213 esb_timer_stop();
214 else {
215 printk(KERN_CRIT PFX
216 "Unexpected close, not stopping watchdog!\n");
217 esb_timer_keepalive();
218 }
219 clear_bit(0, &timer_alive);
220 esb_expect_close = 0;
221 return 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200222}
223
Alan Cox08292912008-05-19 14:05:57 +0100224static ssize_t esb_write(struct file *file, const char __user *data,
225 size_t len, loff_t *ppos)
David Hardemancc90ef02005-08-17 09:07:44 +0200226{
227 /* See if we got the magic character 'V' and reload the timer */
Alan Cox08292912008-05-19 14:05:57 +0100228 if (len) {
David Hardemancc90ef02005-08-17 09:07:44 +0200229 if (!nowayout) {
230 size_t i;
231
232 /* note: just in case someone wrote the magic character
233 * five months ago... */
234 esb_expect_close = 0;
235
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000236 /* scan to see whether or not we got the
237 * magic character */
David Hardemancc90ef02005-08-17 09:07:44 +0200238 for (i = 0; i != len; i++) {
239 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000240 if (get_user(c, data + i))
David Hardemancc90ef02005-08-17 09:07:44 +0200241 return -EFAULT;
242 if (c == 'V')
243 esb_expect_close = 42;
244 }
245 }
246
247 /* someone wrote to us, we should reload the timer */
Alan Cox08292912008-05-19 14:05:57 +0100248 esb_timer_keepalive();
David Hardemancc90ef02005-08-17 09:07:44 +0200249 }
250 return len;
251}
252
Alan Cox08292912008-05-19 14:05:57 +0100253static long esb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
David Hardemancc90ef02005-08-17 09:07:44 +0200254{
255 int new_options, retval = -EINVAL;
256 int new_heartbeat;
257 void __user *argp = (void __user *)arg;
258 int __user *p = argp;
259 static struct watchdog_info ident = {
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000260 .options = WDIOF_SETTIMEOUT |
David Hardemancc90ef02005-08-17 09:07:44 +0200261 WDIOF_KEEPALIVEPING |
262 WDIOF_MAGICCLOSE,
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000263 .firmware_version = 0,
264 .identity = ESB_MODULE_NAME,
David Hardemancc90ef02005-08-17 09:07:44 +0200265 };
266
267 switch (cmd) {
Alan Cox08292912008-05-19 14:05:57 +0100268 case WDIOC_GETSUPPORT:
269 return copy_to_user(argp, &ident,
270 sizeof(ident)) ? -EFAULT : 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200271
Alan Cox08292912008-05-19 14:05:57 +0100272 case WDIOC_GETSTATUS:
Wim Van Sebroeck31838d92009-03-25 19:14:45 +0000273 return put_user(0, p);
David Hardemancc90ef02005-08-17 09:07:44 +0200274
Alan Cox08292912008-05-19 14:05:57 +0100275 case WDIOC_GETBOOTSTATUS:
276 return put_user(triggered, p);
David Hardemancc90ef02005-08-17 09:07:44 +0200277
Alan Cox08292912008-05-19 14:05:57 +0100278 case WDIOC_SETOPTIONS:
279 {
280 if (get_user(new_options, p))
281 return -EFAULT;
David Hardemancc90ef02005-08-17 09:07:44 +0200282
Alan Cox08292912008-05-19 14:05:57 +0100283 if (new_options & WDIOS_DISABLECARD) {
284 esb_timer_stop();
285 retval = 0;
286 }
David Hardemancc90ef02005-08-17 09:07:44 +0200287
Alan Cox08292912008-05-19 14:05:57 +0100288 if (new_options & WDIOS_ENABLECARD) {
Alan Cox08292912008-05-19 14:05:57 +0100289 esb_timer_start();
290 retval = 0;
291 }
292 return retval;
293 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000294 case WDIOC_KEEPALIVE:
295 esb_timer_keepalive();
296 return 0;
297
Alan Cox08292912008-05-19 14:05:57 +0100298 case WDIOC_SETTIMEOUT:
299 {
300 if (get_user(new_heartbeat, p))
301 return -EFAULT;
302 if (esb_timer_set_heartbeat(new_heartbeat))
303 return -EINVAL;
304 esb_timer_keepalive();
305 /* Fall */
306 }
307 case WDIOC_GETTIMEOUT:
308 return put_user(heartbeat, p);
309 default:
310 return -ENOTTY;
311 }
David Hardemancc90ef02005-08-17 09:07:44 +0200312}
313
314/*
David Hardemancc90ef02005-08-17 09:07:44 +0200315 * Kernel Interfaces
316 */
317
Arjan van de Ven62322d22006-07-03 00:24:21 -0700318static const struct file_operations esb_fops = {
Alan Cox08292912008-05-19 14:05:57 +0100319 .owner = THIS_MODULE,
320 .llseek = no_llseek,
321 .write = esb_write,
322 .unlocked_ioctl = esb_ioctl,
323 .open = esb_open,
324 .release = esb_release,
David Hardemancc90ef02005-08-17 09:07:44 +0200325};
326
327static struct miscdevice esb_miscdev = {
Alan Cox08292912008-05-19 14:05:57 +0100328 .minor = WATCHDOG_MINOR,
329 .name = "watchdog",
330 .fops = &esb_fops,
David Hardemancc90ef02005-08-17 09:07:44 +0200331};
332
David Hardemancc90ef02005-08-17 09:07:44 +0200333/*
334 * Data for PCI driver interface
335 *
336 * This data only exists for exporting the supported
337 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
338 * register a pci_driver, because someone else might one day
339 * want to register another driver on the same PCI id.
340 */
341static struct pci_device_id esb_pci_tbl[] = {
Alan Cox08292912008-05-19 14:05:57 +0100342 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_9), },
343 { 0, }, /* End of list */
David Hardemancc90ef02005-08-17 09:07:44 +0200344};
Alan Cox08292912008-05-19 14:05:57 +0100345MODULE_DEVICE_TABLE(pci, esb_pci_tbl);
David Hardemancc90ef02005-08-17 09:07:44 +0200346
347/*
348 * Init & exit routines
349 */
350
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000351static unsigned char __devinit esb_getdevice(void)
David Hardemancc90ef02005-08-17 09:07:44 +0200352{
353 u8 val1;
354 unsigned short val2;
Alan Cox08292912008-05-19 14:05:57 +0100355 /*
356 * Find the PCI device
357 */
David Hardemancc90ef02005-08-17 09:07:44 +0200358
Alan Cox08292912008-05-19 14:05:57 +0100359 esb_pci = pci_get_device(PCI_VENDOR_ID_INTEL,
360 PCI_DEVICE_ID_INTEL_ESB_9, NULL);
David Hardemancc90ef02005-08-17 09:07:44 +0200361
Alan Cox08292912008-05-19 14:05:57 +0100362 if (esb_pci) {
363 if (pci_enable_device(esb_pci)) {
364 printk(KERN_ERR PFX "failed to enable device\n");
Naveen Gupta811f9992005-08-21 13:02:41 +0200365 goto err_devput;
David Hardemancc90ef02005-08-17 09:07:44 +0200366 }
367
368 if (pci_request_region(esb_pci, 0, ESB_MODULE_NAME)) {
Alan Cox08292912008-05-19 14:05:57 +0100369 printk(KERN_ERR PFX "failed to request region\n");
David Hardemancc90ef02005-08-17 09:07:44 +0200370 goto err_disable;
371 }
372
Arjan van de Venaf4c2932008-09-28 16:21:43 -0700373 BASEADDR = pci_ioremap_bar(esb_pci, 0);
David Hardemancc90ef02005-08-17 09:07:44 +0200374 if (BASEADDR == NULL) {
Alan Cox08292912008-05-19 14:05:57 +0100375 /* Something's wrong here, BASEADDR has to be set */
376 printk(KERN_ERR PFX "failed to get BASEADDR\n");
377 goto err_release;
378 }
David Hardemancc90ef02005-08-17 09:07:44 +0200379
380 /*
381 * The watchdog has two timers, it can be setup so that the
382 * expiry of timer1 results in an interrupt and the expiry of
383 * timer2 results in a reboot. We set it to not generate
384 * any interrupts as there is not much we can do with it
385 * right now.
386 *
387 * We also enable reboots and set the timer frequency to
388 * the PCI clock divided by 2^15 (approx 1KHz).
389 */
390 pci_write_config_word(esb_pci, ESB_CONFIG_REG, 0x0003);
391
392 /* Check that the WDT isn't already locked */
393 pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val1);
394 if (val1 & ESB_WDT_LOCK)
Alan Cox08292912008-05-19 14:05:57 +0100395 printk(KERN_WARNING PFX "nowayout already set\n");
David Hardemancc90ef02005-08-17 09:07:44 +0200396
397 /* Set the timer to watchdog mode and disable it for now */
398 pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x00);
399
400 /* Check if the watchdog was previously triggered */
401 esb_unlock_registers();
402 val2 = readw(ESB_RELOAD_REG);
Wim Van Sebroeck31838d92009-03-25 19:14:45 +0000403 if (val2 & ESB_WDT_TIMEOUT)
404 triggered = WDIOF_CARDRESET;
David Hardemancc90ef02005-08-17 09:07:44 +0200405
406 /* Reset trigger flag and timers */
407 esb_unlock_registers();
Wim Van Sebroeck31838d92009-03-25 19:14:45 +0000408 writew((ESB_WDT_TIMEOUT | ESB_WDT_RELOAD), ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200409
410 /* Done */
411 return 1;
412
413err_release:
414 pci_release_region(esb_pci, 0);
415err_disable:
416 pci_disable_device(esb_pci);
Naveen Gupta811f9992005-08-21 13:02:41 +0200417err_devput:
Jiri Slabyc69af032005-08-17 09:09:13 +0200418 pci_dev_put(esb_pci);
David Hardemancc90ef02005-08-17 09:07:44 +0200419 }
David Hardemancc90ef02005-08-17 09:07:44 +0200420 return 0;
421}
422
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000423static int __devinit esb_probe(struct platform_device *dev)
David Hardemancc90ef02005-08-17 09:07:44 +0200424{
Alan Cox08292912008-05-19 14:05:57 +0100425 int ret;
David Hardemancc90ef02005-08-17 09:07:44 +0200426
Alan Cox08292912008-05-19 14:05:57 +0100427 /* Check whether or not the hardware watchdog is there */
428 if (!esb_getdevice() || esb_pci == NULL)
429 return -ENODEV;
David Hardemancc90ef02005-08-17 09:07:44 +0200430
Alan Cox08292912008-05-19 14:05:57 +0100431 /* Check that the heartbeat value is within it's range;
432 if not reset to the default */
433 if (esb_timer_set_heartbeat(heartbeat)) {
434 esb_timer_set_heartbeat(WATCHDOG_HEARTBEAT);
435 printk(KERN_INFO PFX
436 "heartbeat value must be 1<heartbeat<2046, using %d\n",
437 heartbeat);
438 }
David Hardemancc90ef02005-08-17 09:07:44 +0200439
Alan Cox08292912008-05-19 14:05:57 +0100440 ret = misc_register(&esb_miscdev);
441 if (ret != 0) {
442 printk(KERN_ERR PFX
443 "cannot register miscdev on minor=%d (err=%d)\n",
444 WATCHDOG_MINOR, ret);
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000445 goto err_unmap;
Alan Cox08292912008-05-19 14:05:57 +0100446 }
447 esb_timer_stop();
448 printk(KERN_INFO PFX
449 "initialized (0x%p). heartbeat=%d sec (nowayout=%d)\n",
450 BASEADDR, heartbeat, nowayout);
451 return 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200452
David Hardemancc90ef02005-08-17 09:07:44 +0200453err_unmap:
454 iounmap(BASEADDR);
455/* err_release: */
456 pci_release_region(esb_pci, 0);
457/* err_disable: */
458 pci_disable_device(esb_pci);
Naveen Gupta811f9992005-08-21 13:02:41 +0200459/* err_devput: */
Jiri Slabyc69af032005-08-17 09:09:13 +0200460 pci_dev_put(esb_pci);
Alan Cox08292912008-05-19 14:05:57 +0100461 return ret;
David Hardemancc90ef02005-08-17 09:07:44 +0200462}
463
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000464static int __devexit esb_remove(struct platform_device *dev)
David Hardemancc90ef02005-08-17 09:07:44 +0200465{
466 /* Stop the timer before we leave */
467 if (!nowayout)
Alan Cox08292912008-05-19 14:05:57 +0100468 esb_timer_stop();
David Hardemancc90ef02005-08-17 09:07:44 +0200469
470 /* Deregister */
471 misc_deregister(&esb_miscdev);
David Hardemancc90ef02005-08-17 09:07:44 +0200472 iounmap(BASEADDR);
473 pci_release_region(esb_pci, 0);
474 pci_disable_device(esb_pci);
Jiri Slabyc69af032005-08-17 09:09:13 +0200475 pci_dev_put(esb_pci);
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000476 return 0;
477}
478
479static void esb_shutdown(struct platform_device *dev)
480{
481 esb_timer_stop();
482}
483
484static struct platform_driver esb_platform_driver = {
485 .probe = esb_probe,
486 .remove = __devexit_p(esb_remove),
487 .shutdown = esb_shutdown,
488 .driver = {
489 .owner = THIS_MODULE,
490 .name = ESB_MODULE_NAME,
491 },
492};
493
494static int __init watchdog_init(void)
495{
496 int err;
497
498 printk(KERN_INFO PFX "Intel 6300ESB WatchDog Timer Driver v%s\n",
499 ESB_VERSION);
500
501 err = platform_driver_register(&esb_platform_driver);
502 if (err)
503 return err;
504
505 esb_platform_device = platform_device_register_simple(ESB_MODULE_NAME,
506 -1, NULL, 0);
507 if (IS_ERR(esb_platform_device)) {
508 err = PTR_ERR(esb_platform_device);
509 goto unreg_platform_driver;
510 }
511
512 return 0;
513
514unreg_platform_driver:
515 platform_driver_unregister(&esb_platform_driver);
516 return err;
517}
518
519static void __exit watchdog_cleanup(void)
520{
521 platform_device_unregister(esb_platform_device);
522 platform_driver_unregister(&esb_platform_driver);
523 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
David Hardemancc90ef02005-08-17 09:07:44 +0200524}
525
526module_init(watchdog_init);
527module_exit(watchdog_cleanup);
528
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200529MODULE_AUTHOR("Ross Biro and David Härdeman");
David Hardemancc90ef02005-08-17 09:07:44 +0200530MODULE_DESCRIPTION("Watchdog driver for Intel 6300ESB chipsets");
531MODULE_LICENSE("GPL");
532MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);