blob: d7befd58b391a98cf074be706f3230b9e7c26d01 [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
Joe Perches27c766a2012-02-15 15:06:19 -080030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
David Hardemancc90ef02005-08-17 09:07:44 +020032#include <linux/module.h>
33#include <linux/types.h>
34#include <linux/kernel.h>
35#include <linux/fs.h>
36#include <linux/mm.h>
37#include <linux/miscdevice.h>
38#include <linux/watchdog.h>
David Hardemancc90ef02005-08-17 09:07:44 +020039#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 Sebroeck27860952010-03-08 13:48:01 +000045#define ESB_VERSION "0.05"
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
David Hardemancc90ef02005-08-17 09:07:44 +020048
David Hardemanabda5c82005-09-01 22:34:53 +020049/* PCI configuration registers */
50#define ESB_CONFIG_REG 0x60 /* Config register */
51#define ESB_LOCK_REG 0x68 /* WDT lock register */
52
53/* Memory mapped registers */
Wim Van Sebroeckbd4e6c12009-03-25 19:20:10 +000054#define ESB_TIMER1_REG (BASEADDR + 0x00)/* Timer1 value after each reset */
55#define ESB_TIMER2_REG (BASEADDR + 0x04)/* Timer2 value after each reset */
56#define ESB_GINTSR_REG (BASEADDR + 0x08)/* General Interrupt Status Register */
57#define ESB_RELOAD_REG (BASEADDR + 0x0c)/* Reload register */
David Hardemanabda5c82005-09-01 22:34:53 +020058
59/* Lock register bits */
Alan Cox08292912008-05-19 14:05:57 +010060#define ESB_WDT_FUNC (0x01 << 2) /* Watchdog functionality */
61#define ESB_WDT_ENABLE (0x01 << 1) /* Enable WDT */
62#define ESB_WDT_LOCK (0x01 << 0) /* Lock (nowayout) */
David Hardemanabda5c82005-09-01 22:34:53 +020063
64/* Config register bits */
Alan Cox08292912008-05-19 14:05:57 +010065#define ESB_WDT_REBOOT (0x01 << 5) /* Enable reboot on timeout */
66#define ESB_WDT_FREQ (0x01 << 2) /* Decrement frequency */
Wim Van Sebroeck39f3be72010-03-08 11:02:38 +000067#define ESB_WDT_INTTYPE (0x03 << 0) /* Interrupt type on timer1 timeout */
David Hardemanabda5c82005-09-01 22:34:53 +020068
69/* Reload register bits */
Wim Van Sebroeck31838d9d2009-03-25 19:14:45 +000070#define ESB_WDT_TIMEOUT (0x01 << 9) /* Watchdog timed out */
Alan Cox08292912008-05-19 14:05:57 +010071#define ESB_WDT_RELOAD (0x01 << 8) /* prevent timeout */
David Hardemanabda5c82005-09-01 22:34:53 +020072
73/* Magic constants */
74#define ESB_UNLOCK1 0x80 /* Step 1 to unlock reset registers */
75#define ESB_UNLOCK2 0x86 /* Step 2 to unlock reset registers */
76
David Hardemancc90ef02005-08-17 09:07:44 +020077/* internal variables */
78static void __iomem *BASEADDR;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070079static DEFINE_SPINLOCK(esb_lock); /* Guards the hardware */
David Hardemancc90ef02005-08-17 09:07:44 +020080static unsigned long timer_alive;
81static struct pci_dev *esb_pci;
82static unsigned short triggered; /* The status of the watchdog upon boot */
83static char esb_expect_close;
Wim Van Sebroeck27860952010-03-08 13:48:01 +000084
85/* We can only use 1 card due to the /dev/watchdog restriction */
86static int cards_found;
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +000087
David Hardemancc90ef02005-08-17 09:07:44 +020088/* module parameters */
Alan Cox08292912008-05-19 14:05:57 +010089/* 30 sec default heartbeat (1 < heartbeat < 2*1023) */
90#define WATCHDOG_HEARTBEAT 30
David Hardemancc90ef02005-08-17 09:07:44 +020091static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
92module_param(heartbeat, int, 0);
Alan Cox08292912008-05-19 14:05:57 +010093MODULE_PARM_DESC(heartbeat,
94 "Watchdog heartbeat in seconds. (1<heartbeat<2046, default="
95 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
David Hardemancc90ef02005-08-17 09:07:44 +020096
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010097static bool nowayout = WATCHDOG_NOWAYOUT;
98module_param(nowayout, bool, 0);
Alan Cox08292912008-05-19 14:05:57 +010099MODULE_PARM_DESC(nowayout,
100 "Watchdog cannot be stopped once started (default="
101 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
David Hardemancc90ef02005-08-17 09:07:44 +0200102
103/*
104 * Some i6300ESB specific functions
105 */
106
107/*
108 * Prepare for reloading the timer by unlocking the proper registers.
109 * This is performed by first writing 0x80 followed by 0x86 to the
110 * reload register. After this the appropriate registers can be written
111 * to once before they need to be unlocked again.
112 */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000113static inline void esb_unlock_registers(void)
114{
Wim Van Sebroeck39f3be72010-03-08 11:02:38 +0000115 writew(ESB_UNLOCK1, ESB_RELOAD_REG);
116 writew(ESB_UNLOCK2, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200117}
118
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000119static int esb_timer_start(void)
David Hardemancc90ef02005-08-17 09:07:44 +0200120{
121 u8 val;
122
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000123 spin_lock(&esb_lock);
124 esb_unlock_registers();
125 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200126 /* Enable or Enable + Lock? */
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000127 val = ESB_WDT_ENABLE | (nowayout ? ESB_WDT_LOCK : 0x00);
Alan Cox08292912008-05-19 14:05:57 +0100128 pci_write_config_byte(esb_pci, ESB_LOCK_REG, val);
Wim Van Sebroeck3b9d49e2009-03-23 13:50:38 +0000129 spin_unlock(&esb_lock);
130 return 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200131}
132
133static int esb_timer_stop(void)
134{
135 u8 val;
136
137 spin_lock(&esb_lock);
138 /* First, reset timers as suggested by the docs */
139 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200140 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200141 /* Then disable the WDT */
142 pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x0);
143 pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val);
144 spin_unlock(&esb_lock);
145
146 /* Returns 0 if the timer was disabled, non-zero otherwise */
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000147 return val & ESB_WDT_ENABLE;
David Hardemancc90ef02005-08-17 09:07:44 +0200148}
149
150static void esb_timer_keepalive(void)
151{
152 spin_lock(&esb_lock);
153 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200154 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
Alan Cox08292912008-05-19 14:05:57 +0100155 /* FIXME: Do we need to flush anything here? */
David Hardemancc90ef02005-08-17 09:07:44 +0200156 spin_unlock(&esb_lock);
157}
158
159static int esb_timer_set_heartbeat(int time)
160{
161 u32 val;
162
163 if (time < 0x1 || time > (2 * 0x03ff))
164 return -EINVAL;
165
166 spin_lock(&esb_lock);
167
168 /* We shift by 9, so if we are passed a value of 1 sec,
169 * val will be 1 << 9 = 512, then write that to two
170 * timers => 2 * 512 = 1024 (which is decremented at 1KHz)
171 */
172 val = time << 9;
173
174 /* Write timer 1 */
175 esb_unlock_registers();
176 writel(val, ESB_TIMER1_REG);
177
178 /* Write timer 2 */
179 esb_unlock_registers();
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000180 writel(val, ESB_TIMER2_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200181
Alan Cox08292912008-05-19 14:05:57 +0100182 /* Reload */
David Hardemancc90ef02005-08-17 09:07:44 +0200183 esb_unlock_registers();
Naveen Guptace2f50b2005-08-17 09:11:46 +0200184 writew(ESB_WDT_RELOAD, ESB_RELOAD_REG);
David Hardemancc90ef02005-08-17 09:07:44 +0200185
186 /* FIXME: Do we need to flush everything out? */
187
188 /* Done */
189 heartbeat = time;
190 spin_unlock(&esb_lock);
191 return 0;
192}
193
David Hardemancc90ef02005-08-17 09:07:44 +0200194/*
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000195 * /dev/watchdog handling
David Hardemancc90ef02005-08-17 09:07:44 +0200196 */
197
Alan Cox08292912008-05-19 14:05:57 +0100198static int esb_open(struct inode *inode, struct file *file)
David Hardemancc90ef02005-08-17 09:07:44 +0200199{
Alan Cox08292912008-05-19 14:05:57 +0100200 /* /dev/watchdog can only be opened once */
201 if (test_and_set_bit(0, &timer_alive))
202 return -EBUSY;
David Hardemancc90ef02005-08-17 09:07:44 +0200203
Alan Cox08292912008-05-19 14:05:57 +0100204 /* Reload and activate timer */
Alan Cox08292912008-05-19 14:05:57 +0100205 esb_timer_start();
David Hardemancc90ef02005-08-17 09:07:44 +0200206
207 return nonseekable_open(inode, file);
208}
209
Alan Cox08292912008-05-19 14:05:57 +0100210static int esb_release(struct inode *inode, struct file *file)
David Hardemancc90ef02005-08-17 09:07:44 +0200211{
Alan Cox08292912008-05-19 14:05:57 +0100212 /* Shut off the timer. */
213 if (esb_expect_close == 42)
214 esb_timer_stop();
215 else {
Joe Perches27c766a2012-02-15 15:06:19 -0800216 pr_crit("Unexpected close, not stopping watchdog!\n");
Alan Cox08292912008-05-19 14:05:57 +0100217 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;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000259 static const 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 Sebroeck31838d9d2009-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
David Hardemancc90ef02005-08-17 09:07:44 +0200335 */
Jingoo Hanbc17f9d2013-12-03 08:30:22 +0900336static const struct pci_device_id esb_pci_tbl[] = {
Alan Cox08292912008-05-19 14:05:57 +0100337 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_9), },
338 { 0, }, /* End of list */
David Hardemancc90ef02005-08-17 09:07:44 +0200339};
Alan Cox08292912008-05-19 14:05:57 +0100340MODULE_DEVICE_TABLE(pci, esb_pci_tbl);
David Hardemancc90ef02005-08-17 09:07:44 +0200341
342/*
343 * Init & exit routines
344 */
345
Bill Pemberton2d991a12012-11-19 13:21:41 -0500346static unsigned char esb_getdevice(struct pci_dev *pdev)
David Hardemancc90ef02005-08-17 09:07:44 +0200347{
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000348 if (pci_enable_device(pdev)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800349 pr_err("failed to enable device\n");
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000350 goto err_devput;
351 }
David Hardemancc90ef02005-08-17 09:07:44 +0200352
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000353 if (pci_request_region(pdev, 0, ESB_MODULE_NAME)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800354 pr_err("failed to request region\n");
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000355 goto err_disable;
356 }
David Hardemancc90ef02005-08-17 09:07:44 +0200357
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000358 BASEADDR = pci_ioremap_bar(pdev, 0);
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000359 if (BASEADDR == NULL) {
360 /* Something's wrong here, BASEADDR has to be set */
Joe Perches27c766a2012-02-15 15:06:19 -0800361 pr_err("failed to get BASEADDR\n");
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000362 goto err_release;
363 }
David Hardemancc90ef02005-08-17 09:07:44 +0200364
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000365 /* Done */
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000366 esb_pci = pdev;
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000367 return 1;
David Hardemancc90ef02005-08-17 09:07:44 +0200368
369err_release:
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000370 pci_release_region(pdev, 0);
David Hardemancc90ef02005-08-17 09:07:44 +0200371err_disable:
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000372 pci_disable_device(pdev);
Naveen Gupta811f9992005-08-21 13:02:41 +0200373err_devput:
David Hardemancc90ef02005-08-17 09:07:44 +0200374 return 0;
375}
376
Bill Pemberton2d991a12012-11-19 13:21:41 -0500377static void esb_initdevice(void)
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000378{
379 u8 val1;
380 u16 val2;
381
382 /*
383 * Config register:
384 * Bit 5 : 0 = Enable WDT_OUTPUT
385 * Bit 2 : 0 = set the timer frequency to the PCI clock
386 * divided by 2^15 (approx 1KHz).
387 * Bits 1:0 : 11 = WDT_INT_TYPE Disabled.
388 * The watchdog has two timers, it can be setup so that the
389 * expiry of timer1 results in an interrupt and the expiry of
390 * timer2 results in a reboot. We set it to not generate
391 * any interrupts as there is not much we can do with it
392 * right now.
393 */
394 pci_write_config_word(esb_pci, ESB_CONFIG_REG, 0x0003);
395
396 /* Check that the WDT isn't already locked */
397 pci_read_config_byte(esb_pci, ESB_LOCK_REG, &val1);
398 if (val1 & ESB_WDT_LOCK)
Joe Perches27c766a2012-02-15 15:06:19 -0800399 pr_warn("nowayout already set\n");
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000400
401 /* Set the timer to watchdog mode and disable it for now */
402 pci_write_config_byte(esb_pci, ESB_LOCK_REG, 0x00);
403
404 /* Check if the watchdog was previously triggered */
405 esb_unlock_registers();
406 val2 = readw(ESB_RELOAD_REG);
407 if (val2 & ESB_WDT_TIMEOUT)
408 triggered = WDIOF_CARDRESET;
409
410 /* Reset WDT_TIMEOUT flag and timers */
411 esb_unlock_registers();
412 writew((ESB_WDT_TIMEOUT | ESB_WDT_RELOAD), ESB_RELOAD_REG);
413
414 /* And set the correct timeout value */
415 esb_timer_set_heartbeat(heartbeat);
416}
417
Bill Pemberton2d991a12012-11-19 13:21:41 -0500418static int esb_probe(struct pci_dev *pdev,
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000419 const struct pci_device_id *ent)
David Hardemancc90ef02005-08-17 09:07:44 +0200420{
Alan Cox08292912008-05-19 14:05:57 +0100421 int ret;
David Hardemancc90ef02005-08-17 09:07:44 +0200422
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000423 cards_found++;
424 if (cards_found == 1)
Joe Perches27c766a2012-02-15 15:06:19 -0800425 pr_info("Intel 6300ESB WatchDog Timer Driver v%s\n",
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000426 ESB_VERSION);
427
428 if (cards_found > 1) {
Joe Perches27c766a2012-02-15 15:06:19 -0800429 pr_err("This driver only supports 1 device\n");
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000430 return -ENODEV;
431 }
432
Alan Cox08292912008-05-19 14:05:57 +0100433 /* Check whether or not the hardware watchdog is there */
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000434 if (!esb_getdevice(pdev) || esb_pci == NULL)
Alan Cox08292912008-05-19 14:05:57 +0100435 return -ENODEV;
David Hardemancc90ef02005-08-17 09:07:44 +0200436
Alan Cox08292912008-05-19 14:05:57 +0100437 /* Check that the heartbeat value is within it's range;
438 if not reset to the default */
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000439 if (heartbeat < 0x1 || heartbeat > 2 * 0x03ff) {
440 heartbeat = WATCHDOG_HEARTBEAT;
Joe Perches27c766a2012-02-15 15:06:19 -0800441 pr_info("heartbeat value must be 1<heartbeat<2046, using %d\n",
442 heartbeat);
Alan Cox08292912008-05-19 14:05:57 +0100443 }
David Hardemancc90ef02005-08-17 09:07:44 +0200444
Wim Van Sebroeckfc8a9d82009-03-25 19:16:28 +0000445 /* Initialize the watchdog and make sure it does not run */
446 esb_initdevice();
447
448 /* Register the watchdog so that userspace has access to it */
Alan Cox08292912008-05-19 14:05:57 +0100449 ret = misc_register(&esb_miscdev);
450 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800451 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
452 WATCHDOG_MINOR, ret);
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000453 goto err_unmap;
Alan Cox08292912008-05-19 14:05:57 +0100454 }
Joe Perches27c766a2012-02-15 15:06:19 -0800455 pr_info("initialized (0x%p). heartbeat=%d sec (nowayout=%d)\n",
456 BASEADDR, heartbeat, nowayout);
Alan Cox08292912008-05-19 14:05:57 +0100457 return 0;
David Hardemancc90ef02005-08-17 09:07:44 +0200458
David Hardemancc90ef02005-08-17 09:07:44 +0200459err_unmap:
460 iounmap(BASEADDR);
David Hardemancc90ef02005-08-17 09:07:44 +0200461 pci_release_region(esb_pci, 0);
David Hardemancc90ef02005-08-17 09:07:44 +0200462 pci_disable_device(esb_pci);
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000463 esb_pci = NULL;
Alan Cox08292912008-05-19 14:05:57 +0100464 return ret;
David Hardemancc90ef02005-08-17 09:07:44 +0200465}
466
Bill Pemberton4b12b892012-11-19 13:26:24 -0500467static void esb_remove(struct pci_dev *pdev)
David Hardemancc90ef02005-08-17 09:07:44 +0200468{
469 /* Stop the timer before we leave */
470 if (!nowayout)
Alan Cox08292912008-05-19 14:05:57 +0100471 esb_timer_stop();
David Hardemancc90ef02005-08-17 09:07:44 +0200472
473 /* Deregister */
474 misc_deregister(&esb_miscdev);
David Hardemancc90ef02005-08-17 09:07:44 +0200475 iounmap(BASEADDR);
476 pci_release_region(esb_pci, 0);
477 pci_disable_device(esb_pci);
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000478 esb_pci = NULL;
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000479}
480
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000481static void esb_shutdown(struct pci_dev *pdev)
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000482{
483 esb_timer_stop();
484}
485
Wim Van Sebroeck27860952010-03-08 13:48:01 +0000486static struct pci_driver esb_driver = {
487 .name = ESB_MODULE_NAME,
488 .id_table = esb_pci_tbl,
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000489 .probe = esb_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500490 .remove = esb_remove,
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000491 .shutdown = esb_shutdown,
Wim Van Sebroeck0426fd02009-03-19 19:02:44 +0000492};
493
Wim Van Sebroeck5ce9c372012-05-04 14:43:25 +0200494module_pci_driver(esb_driver);
David Hardemancc90ef02005-08-17 09:07:44 +0200495
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200496MODULE_AUTHOR("Ross Biro and David Härdeman");
David Hardemancc90ef02005-08-17 09:07:44 +0200497MODULE_DESCRIPTION("Watchdog driver for Intel 6300ESB chipsets");
498MODULE_LICENSE("GPL");