blob: 75483000a87d7eabd5b7b0f5ffeaa44550bc582f [file] [log] [blame]
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02001/*
2 * intel TCO Watchdog Driver (Used in i82801 and i6300ESB chipsets)
3 *
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +00004 * (c) Copyright 2006-2008 Wim Van Sebroeck <wim@iguana.be>.
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Neither Wim Van Sebroeck nor Iguana vzw. admit liability nor
12 * provide warranty for any of this software. This material is
13 * provided "AS-IS" and at no charge.
14 *
15 * The TCO watchdog is implemented in the following I/O controller hubs:
16 * (See the intel documentation on http://developer.intel.com.)
17 * 82801AA (ICH) : document number 290655-003, 290677-014,
18 * 82801AB (ICHO) : document number 290655-003, 290677-014,
19 * 82801BA (ICH2) : document number 290687-002, 298242-027,
20 * 82801BAM (ICH2-M) : document number 290687-002, 298242-027,
21 * 82801CA (ICH3-S) : document number 290733-003, 290739-013,
22 * 82801CAM (ICH3-M) : document number 290716-001, 290718-007,
23 * 82801DB (ICH4) : document number 290744-001, 290745-020,
24 * 82801DBM (ICH4-M) : document number 252337-001, 252663-005,
25 * 82801E (C-ICH) : document number 273599-001, 273645-002,
26 * 82801EB (ICH5) : document number 252516-001, 252517-003,
27 * 82801ER (ICH5R) : document number 252516-001, 252517-003,
28 * 82801FB (ICH6) : document number 301473-002, 301474-007,
29 * 82801FR (ICH6R) : document number 301473-002, 301474-007,
30 * 82801FBM (ICH6-M) : document number 301473-002, 301474-007,
31 * 82801FW (ICH6W) : document number 301473-001, 301474-007,
32 * 82801FRW (ICH6RW) : document number 301473-001, 301474-007,
33 * 82801GB (ICH7) : document number 307013-002, 307014-009,
34 * 82801GR (ICH7R) : document number 307013-002, 307014-009,
35 * 82801GDH (ICH7DH) : document number 307013-002, 307014-009,
36 * 82801GBM (ICH7-M) : document number 307013-002, 307014-009,
37 * 82801GHM (ICH7-M DH) : document number 307013-002, 307014-009,
Wim Van Sebroeckacf60352007-08-31 08:23:10 +000038 * 82801HB (ICH8) : document number 313056-003, 313057-009,
39 * 82801HR (ICH8R) : document number 313056-003, 313057-009,
40 * 82801HBM (ICH8M) : document number 313056-003, 313057-009,
41 * 82801HH (ICH8DH) : document number 313056-003, 313057-009,
42 * 82801HO (ICH8DO) : document number 313056-003, 313057-009,
43 * 82801HEM (ICH8M-E) : document number 313056-003, 313057-009,
Gabriel Ca49056d2008-04-30 16:51:10 +020044 * 82801IB (ICH9) : document number 316972-001, 316973-006,
45 * 82801IR (ICH9R) : document number 316972-001, 316973-006,
46 * 82801IH (ICH9DH) : document number 316972-001, 316973-006,
47 * 82801IO (ICH9DO) : document number 316972-001, 316973-006,
Wim Van Sebroeck286201d2007-07-26 21:11:28 +000048 * 6300ESB (6300ESB) : document number 300641-003, 300884-010,
Sergey Kononenko998e6782007-07-26 17:28:35 +030049 * 631xESB (631xESB) : document number 313082-001, 313075-005,
50 * 632xESB (632xESB) : document number 313082-001, 313075-005
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020051 */
52
53/*
54 * Includes, defines, variables, module parameters, ...
55 */
56
57/* Module and version information */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000058#define DRV_NAME "iTCO_wdt"
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +000059#define DRV_VERSION "1.04"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020060#define PFX DRV_NAME ": "
61
62/* Includes */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020063#include <linux/module.h> /* For module specific items */
64#include <linux/moduleparam.h> /* For new moduleparam's */
65#include <linux/types.h> /* For standard types (like size_t) */
66#include <linux/errno.h> /* For the -ENODEV/... values */
67#include <linux/kernel.h> /* For printk/panic/... */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010068#include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV
69 (WATCHDOG_MINOR) */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020070#include <linux/watchdog.h> /* For the watchdog specific items */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020071#include <linux/init.h> /* For __init/__exit/... */
72#include <linux/fs.h> /* For file operations */
73#include <linux/platform_device.h> /* For platform_driver framework */
74#include <linux/pci.h> /* For pci functions */
75#include <linux/ioport.h> /* For io-port access */
76#include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010077#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
78#include <linux/io.h> /* For inb/outb/... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020079
Alan Cox0e6fa3f2008-05-19 14:06:25 +010080#include "iTCO_vendor.h"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020081
82/* TCO related info */
83enum iTCO_chipsets {
84 TCO_ICH = 0, /* ICH */
85 TCO_ICH0, /* ICH0 */
86 TCO_ICH2, /* ICH2 */
87 TCO_ICH2M, /* ICH2-M */
88 TCO_ICH3, /* ICH3-S */
89 TCO_ICH3M, /* ICH3-M */
90 TCO_ICH4, /* ICH4 */
91 TCO_ICH4M, /* ICH4-M */
92 TCO_CICH, /* C-ICH */
93 TCO_ICH5, /* ICH5 & ICH5R */
94 TCO_6300ESB, /* 6300ESB */
95 TCO_ICH6, /* ICH6 & ICH6R */
96 TCO_ICH6M, /* ICH6-M */
97 TCO_ICH6W, /* ICH6W & ICH6RW */
98 TCO_ICH7, /* ICH7 & ICH7R */
99 TCO_ICH7M, /* ICH7-M */
100 TCO_ICH7MDH, /* ICH7-M DH */
Wim Van Sebroecka8edd742006-10-08 21:05:21 +0200101 TCO_ICH8, /* ICH8 & ICH8R */
Wim Van Sebroeckacf60352007-08-31 08:23:10 +0000102 TCO_ICH8ME, /* ICH8M-E */
Wim Van Sebroecka8edd742006-10-08 21:05:21 +0200103 TCO_ICH8DH, /* ICH8DH */
104 TCO_ICH8DO, /* ICH8DO */
Wim Van Sebroeckacf60352007-08-31 08:23:10 +0000105 TCO_ICH8M, /* ICH8M */
Wim Van Sebroeck286201d2007-07-26 21:11:28 +0000106 TCO_ICH9, /* ICH9 */
107 TCO_ICH9R, /* ICH9R */
108 TCO_ICH9DH, /* ICH9DH */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000109 TCO_ICH9DO, /* ICH9DO */
Sergey Kononenko998e6782007-07-26 17:28:35 +0300110 TCO_631XESB, /* 631xESB/632xESB */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200111};
112
113static struct {
114 char *name;
115 unsigned int iTCO_version;
116} iTCO_chipset_info[] __devinitdata = {
117 {"ICH", 1},
118 {"ICH0", 1},
119 {"ICH2", 1},
120 {"ICH2-M", 1},
121 {"ICH3-S", 1},
122 {"ICH3-M", 1},
123 {"ICH4", 1},
124 {"ICH4-M", 1},
125 {"C-ICH", 1},
126 {"ICH5 or ICH5R", 1},
127 {"6300ESB", 1},
128 {"ICH6 or ICH6R", 2},
129 {"ICH6-M", 2},
130 {"ICH6W or ICH6RW", 2},
131 {"ICH7 or ICH7R", 2},
132 {"ICH7-M", 2},
133 {"ICH7-M DH", 2},
Arnaud Patard (Rtp)bcbf25b2006-10-04 14:18:29 +0200134 {"ICH8 or ICH8R", 2},
Wim Van Sebroeckacf60352007-08-31 08:23:10 +0000135 {"ICH8M-E", 2},
Wim Van Sebroecka8edd742006-10-08 21:05:21 +0200136 {"ICH8DH", 2},
137 {"ICH8DO", 2},
Wim Van Sebroeckacf60352007-08-31 08:23:10 +0000138 {"ICH8M", 2},
Wim Van Sebroeck286201d2007-07-26 21:11:28 +0000139 {"ICH9", 2},
140 {"ICH9R", 2},
141 {"ICH9DH", 2},
Gabriel Ca49056d2008-04-30 16:51:10 +0200142 {"ICH9DO", 2},
Sergey Kononenko998e6782007-07-26 17:28:35 +0300143 {"631xESB/632xESB", 2},
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100144 {NULL, 0}
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200145};
146
Wim Van Sebroeckc87b6392007-08-19 20:17:58 +0000147#define ITCO_PCI_DEVICE(dev, data) \
148 .vendor = PCI_VENDOR_ID_INTEL, \
149 .device = dev, \
150 .subvendor = PCI_ANY_ID, \
151 .subdevice = PCI_ANY_ID, \
152 .class = 0, \
153 .class_mask = 0, \
154 .driver_data = data
155
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200156/*
157 * This data only exists for exporting the supported PCI ids
158 * via MODULE_DEVICE_TABLE. We do not actually register a
159 * pci_driver, because the I/O Controller Hub has also other
160 * functions that probably will be registered by other drivers.
161 */
162static struct pci_device_id iTCO_wdt_pci_tbl[] = {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100163 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801AA_0, TCO_ICH)},
164 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801AB_0, TCO_ICH0)},
165 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801BA_0, TCO_ICH2)},
166 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801BA_10, TCO_ICH2M)},
167 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801CA_0, TCO_ICH3)},
168 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801CA_12, TCO_ICH3M)},
169 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801DB_0, TCO_ICH4)},
170 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801DB_12, TCO_ICH4M)},
171 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801E_0, TCO_CICH)},
172 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801EB_0, TCO_ICH5)},
Wim Van Sebroeckc87b6392007-08-19 20:17:58 +0000173 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ESB_1, TCO_6300ESB)},
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100174 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_0, TCO_ICH6)},
175 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_1, TCO_ICH6M)},
176 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_2, TCO_ICH6W)},
177 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_0, TCO_ICH7)},
178 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_1, TCO_ICH7M)},
Wim Van Sebroeckc87b6392007-08-19 20:17:58 +0000179 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_31, TCO_ICH7MDH)},
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100180 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_0, TCO_ICH8)},
181 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_1, TCO_ICH8ME)},
182 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_2, TCO_ICH8DH)},
183 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_3, TCO_ICH8DO)},
184 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_4, TCO_ICH8M)},
185 { ITCO_PCI_DEVICE(0x2918, TCO_ICH9)},
186 { ITCO_PCI_DEVICE(0x2916, TCO_ICH9R)},
187 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH9_2, TCO_ICH9DH)},
188 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH9_4, TCO_ICH9DO)},
Wim Van Sebroeckc87b6392007-08-19 20:17:58 +0000189 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ESB2_0, TCO_631XESB)},
190 { ITCO_PCI_DEVICE(0x2671, TCO_631XESB)},
191 { ITCO_PCI_DEVICE(0x2672, TCO_631XESB)},
192 { ITCO_PCI_DEVICE(0x2673, TCO_631XESB)},
193 { ITCO_PCI_DEVICE(0x2674, TCO_631XESB)},
194 { ITCO_PCI_DEVICE(0x2675, TCO_631XESB)},
195 { ITCO_PCI_DEVICE(0x2676, TCO_631XESB)},
196 { ITCO_PCI_DEVICE(0x2677, TCO_631XESB)},
197 { ITCO_PCI_DEVICE(0x2678, TCO_631XESB)},
198 { ITCO_PCI_DEVICE(0x2679, TCO_631XESB)},
199 { ITCO_PCI_DEVICE(0x267a, TCO_631XESB)},
200 { ITCO_PCI_DEVICE(0x267b, TCO_631XESB)},
201 { ITCO_PCI_DEVICE(0x267c, TCO_631XESB)},
202 { ITCO_PCI_DEVICE(0x267d, TCO_631XESB)},
203 { ITCO_PCI_DEVICE(0x267e, TCO_631XESB)},
204 { ITCO_PCI_DEVICE(0x267f, TCO_631XESB)},
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200205 { 0, }, /* End of list */
206};
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100207MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200208
209/* Address definitions for the TCO */
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100210/* TCO base address */
211#define TCOBASE iTCO_wdt_private.ACPIBASE + 0x60
212/* SMI Control and Enable Register */
213#define SMI_EN iTCO_wdt_private.ACPIBASE + 0x30
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200214
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100215#define TCO_RLD TCOBASE + 0x00 /* TCO Timer Reload and Curr. Value */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200216#define TCOv1_TMR TCOBASE + 0x01 /* TCOv1 Timer Initial Value */
217#define TCO_DAT_IN TCOBASE + 0x02 /* TCO Data In Register */
218#define TCO_DAT_OUT TCOBASE + 0x03 /* TCO Data Out Register */
219#define TCO1_STS TCOBASE + 0x04 /* TCO1 Status Register */
220#define TCO2_STS TCOBASE + 0x06 /* TCO2 Status Register */
221#define TCO1_CNT TCOBASE + 0x08 /* TCO1 Control Register */
222#define TCO2_CNT TCOBASE + 0x0a /* TCO2 Control Register */
223#define TCOv2_TMR TCOBASE + 0x12 /* TCOv2 Timer Initial Value */
224
225/* internal variables */
226static unsigned long is_active;
227static char expect_release;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100228static struct { /* this is private data for the iTCO_wdt device */
229 /* TCO version/generation */
230 unsigned int iTCO_version;
231 /* The cards ACPIBASE address (TCOBASE = ACPIBASE+0x60) */
232 unsigned long ACPIBASE;
233 /* NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2)*/
234 unsigned long __iomem *gcs;
235 /* the lock for io operations */
236 spinlock_t io_lock;
237 /* the PCI-device */
238 struct pci_dev *pdev;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200239} iTCO_wdt_private;
240
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100241/* the watchdog platform device */
242static struct platform_device *iTCO_wdt_platform_device;
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200243
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200244/* module parameters */
245#define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat */
246static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
247module_param(heartbeat, int, 0);
248MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<heartbeat<39 (TCO v1) or 613 (TCO v2), default=" __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
249
250static int nowayout = WATCHDOG_NOWAYOUT;
251module_param(nowayout, int, 0);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100252MODULE_PARM_DESC(nowayout,
253 "Watchdog cannot be stopped once started (default="
254 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100255
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200256/*
257 * Some TCO specific functions
258 */
259
260static inline unsigned int seconds_to_ticks(int seconds)
261{
262 /* the internal timer is stored as ticks which decrement
263 * every 0.6 seconds */
264 return (seconds * 10) / 6;
265}
266
267static void iTCO_wdt_set_NO_REBOOT_bit(void)
268{
269 u32 val32;
270
271 /* Set the NO_REBOOT bit: this disables reboots */
272 if (iTCO_wdt_private.iTCO_version == 2) {
273 val32 = readl(iTCO_wdt_private.gcs);
274 val32 |= 0x00000020;
275 writel(val32, iTCO_wdt_private.gcs);
276 } else if (iTCO_wdt_private.iTCO_version == 1) {
277 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
278 val32 |= 0x00000002;
279 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
280 }
281}
282
283static int iTCO_wdt_unset_NO_REBOOT_bit(void)
284{
285 int ret = 0;
286 u32 val32;
287
288 /* Unset the NO_REBOOT bit: this enables reboots */
289 if (iTCO_wdt_private.iTCO_version == 2) {
290 val32 = readl(iTCO_wdt_private.gcs);
291 val32 &= 0xffffffdf;
292 writel(val32, iTCO_wdt_private.gcs);
293
294 val32 = readl(iTCO_wdt_private.gcs);
295 if (val32 & 0x00000020)
296 ret = -EIO;
297 } else if (iTCO_wdt_private.iTCO_version == 1) {
298 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
299 val32 &= 0xfffffffd;
300 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
301
302 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
303 if (val32 & 0x00000002)
304 ret = -EIO;
305 }
306
307 return ret; /* returns: 0 = OK, -EIO = Error */
308}
309
310static int iTCO_wdt_start(void)
311{
312 unsigned int val;
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000313 unsigned long val32;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200314
315 spin_lock(&iTCO_wdt_private.io_lock);
316
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100317 iTCO_vendor_pre_start(iTCO_wdt_private.ACPIBASE, heartbeat);
318
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200319 /* disable chipset's NO_REBOOT bit */
320 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
Roel Kluin2ba7d7b2007-10-23 03:08:27 +0200321 spin_unlock(&iTCO_wdt_private.io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200322 printk(KERN_ERR PFX "failed to reset NO_REBOOT flag, reboot disabled by hardware\n");
323 return -EIO;
324 }
325
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000326 /* Bit 13: TCO_EN -> 0 = Disables TCO logic generating an SMI# */
327 val32 = inl(SMI_EN);
328 val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */
329 outl(val32, SMI_EN);
330
331 /* Force the timer to its reload value by writing to the TCO_RLD
332 register */
333 if (iTCO_wdt_private.iTCO_version == 2)
334 outw(0x01, TCO_RLD);
335 else if (iTCO_wdt_private.iTCO_version == 1)
336 outb(0x01, TCO_RLD);
337
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200338 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
339 val = inw(TCO1_CNT);
340 val &= 0xf7ff;
341 outw(val, TCO1_CNT);
342 val = inw(TCO1_CNT);
343 spin_unlock(&iTCO_wdt_private.io_lock);
344
345 if (val & 0x0800)
346 return -1;
347 return 0;
348}
349
350static int iTCO_wdt_stop(void)
351{
352 unsigned int val;
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000353 unsigned long val32;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200354
355 spin_lock(&iTCO_wdt_private.io_lock);
356
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100357 iTCO_vendor_pre_stop(iTCO_wdt_private.ACPIBASE);
358
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200359 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
360 val = inw(TCO1_CNT);
361 val |= 0x0800;
362 outw(val, TCO1_CNT);
363 val = inw(TCO1_CNT);
364
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000365 /* Bit 13: TCO_EN -> 1 = Enables the TCO logic to generate SMI# */
366 val32 = inl(SMI_EN);
367 val32 &= 0x00002000;
368 outl(val32, SMI_EN);
369
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200370 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
371 iTCO_wdt_set_NO_REBOOT_bit();
372
373 spin_unlock(&iTCO_wdt_private.io_lock);
374
375 if ((val & 0x0800) == 0)
376 return -1;
377 return 0;
378}
379
380static int iTCO_wdt_keepalive(void)
381{
382 spin_lock(&iTCO_wdt_private.io_lock);
383
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100384 iTCO_vendor_pre_keepalive(iTCO_wdt_private.ACPIBASE, heartbeat);
385
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200386 /* Reload the timer by writing to the TCO Timer Counter register */
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100387 if (iTCO_wdt_private.iTCO_version == 2)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200388 outw(0x01, TCO_RLD);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100389 else if (iTCO_wdt_private.iTCO_version == 1)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200390 outb(0x01, TCO_RLD);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200391
392 spin_unlock(&iTCO_wdt_private.io_lock);
393 return 0;
394}
395
396static int iTCO_wdt_set_heartbeat(int t)
397{
398 unsigned int val16;
399 unsigned char val8;
400 unsigned int tmrval;
401
402 tmrval = seconds_to_ticks(t);
403 /* from the specs: */
404 /* "Values of 0h-3h are ignored and should not be attempted" */
405 if (tmrval < 0x04)
406 return -EINVAL;
407 if (((iTCO_wdt_private.iTCO_version == 2) && (tmrval > 0x3ff)) ||
408 ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f)))
409 return -EINVAL;
410
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100411 iTCO_vendor_pre_set_heartbeat(tmrval);
412
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200413 /* Write new heartbeat to watchdog */
414 if (iTCO_wdt_private.iTCO_version == 2) {
415 spin_lock(&iTCO_wdt_private.io_lock);
416 val16 = inw(TCOv2_TMR);
417 val16 &= 0xfc00;
418 val16 |= tmrval;
419 outw(val16, TCOv2_TMR);
420 val16 = inw(TCOv2_TMR);
421 spin_unlock(&iTCO_wdt_private.io_lock);
422
423 if ((val16 & 0x3ff) != tmrval)
424 return -EINVAL;
425 } else if (iTCO_wdt_private.iTCO_version == 1) {
426 spin_lock(&iTCO_wdt_private.io_lock);
427 val8 = inb(TCOv1_TMR);
428 val8 &= 0xc0;
429 val8 |= (tmrval & 0xff);
430 outb(val8, TCOv1_TMR);
431 val8 = inb(TCOv1_TMR);
432 spin_unlock(&iTCO_wdt_private.io_lock);
433
434 if ((val8 & 0x3f) != tmrval)
435 return -EINVAL;
436 }
437
438 heartbeat = t;
439 return 0;
440}
441
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100442static int iTCO_wdt_get_timeleft(int *time_left)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200443{
444 unsigned int val16;
445 unsigned char val8;
446
447 /* read the TCO Timer */
448 if (iTCO_wdt_private.iTCO_version == 2) {
449 spin_lock(&iTCO_wdt_private.io_lock);
450 val16 = inw(TCO_RLD);
451 val16 &= 0x3ff;
452 spin_unlock(&iTCO_wdt_private.io_lock);
453
454 *time_left = (val16 * 6) / 10;
455 } else if (iTCO_wdt_private.iTCO_version == 1) {
456 spin_lock(&iTCO_wdt_private.io_lock);
457 val8 = inb(TCO_RLD);
458 val8 &= 0x3f;
459 spin_unlock(&iTCO_wdt_private.io_lock);
460
461 *time_left = (val8 * 6) / 10;
Jeff Garzik80060362006-10-10 03:40:44 -0400462 } else
463 return -EINVAL;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200464 return 0;
465}
466
467/*
468 * /dev/watchdog handling
469 */
470
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100471static int iTCO_wdt_open(struct inode *inode, struct file *file)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200472{
473 /* /dev/watchdog can only be opened once */
474 if (test_and_set_bit(0, &is_active))
475 return -EBUSY;
476
477 /*
478 * Reload and activate timer
479 */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200480 iTCO_wdt_start();
481 return nonseekable_open(inode, file);
482}
483
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100484static int iTCO_wdt_release(struct inode *inode, struct file *file)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200485{
486 /*
487 * Shut off the timer.
488 */
489 if (expect_release == 42) {
490 iTCO_wdt_stop();
491 } else {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100492 printk(KERN_CRIT PFX
493 "Unexpected close, not stopping watchdog!\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200494 iTCO_wdt_keepalive();
495 }
496 clear_bit(0, &is_active);
497 expect_release = 0;
498 return 0;
499}
500
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100501static ssize_t iTCO_wdt_write(struct file *file, const char __user *data,
502 size_t len, loff_t *ppos)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200503{
504 /* See if we got the magic character 'V' and reload the timer */
505 if (len) {
506 if (!nowayout) {
507 size_t i;
508
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100509 /* note: just in case someone wrote the magic
510 character five months ago... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200511 expect_release = 0;
512
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100513 /* scan to see whether or not we got the
514 magic character */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200515 for (i = 0; i != len; i++) {
516 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000517 if (get_user(c, data + i))
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200518 return -EFAULT;
519 if (c == 'V')
520 expect_release = 42;
521 }
522 }
523
524 /* someone wrote to us, we should reload the timer */
525 iTCO_wdt_keepalive();
526 }
527 return len;
528}
529
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100530static long iTCO_wdt_ioctl(struct file *file, unsigned int cmd,
531 unsigned long arg)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200532{
533 int new_options, retval = -EINVAL;
534 int new_heartbeat;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200535 void __user *argp = (void __user *)arg;
536 int __user *p = argp;
537 static struct watchdog_info ident = {
538 .options = WDIOF_SETTIMEOUT |
539 WDIOF_KEEPALIVEPING |
540 WDIOF_MAGICCLOSE,
541 .firmware_version = 0,
542 .identity = DRV_NAME,
543 };
544
545 switch (cmd) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100546 case WDIOC_GETSUPPORT:
547 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
548 case WDIOC_GETSTATUS:
549 case WDIOC_GETBOOTSTATUS:
550 return put_user(0, p);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200551
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100552 case WDIOC_SETOPTIONS:
553 {
554 if (get_user(new_options, p))
555 return -EFAULT;
556
557 if (new_options & WDIOS_DISABLECARD) {
558 iTCO_wdt_stop();
559 retval = 0;
560 }
561 if (new_options & WDIOS_ENABLECARD) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200562 iTCO_wdt_keepalive();
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100563 iTCO_wdt_start();
564 retval = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200565 }
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100566 return retval;
567 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000568 case WDIOC_KEEPALIVE:
569 iTCO_wdt_keepalive();
570 return 0;
571
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100572 case WDIOC_SETTIMEOUT:
573 {
574 if (get_user(new_heartbeat, p))
575 return -EFAULT;
576 if (iTCO_wdt_set_heartbeat(new_heartbeat))
577 return -EINVAL;
578 iTCO_wdt_keepalive();
579 /* Fall */
580 }
581 case WDIOC_GETTIMEOUT:
582 return put_user(heartbeat, p);
583 case WDIOC_GETTIMELEFT:
584 {
585 int time_left;
586 if (iTCO_wdt_get_timeleft(&time_left))
587 return -EINVAL;
588 return put_user(time_left, p);
589 }
590 default:
591 return -ENOTTY;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200592 }
593}
594
595/*
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200596 * Kernel Interfaces
597 */
598
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800599static const struct file_operations iTCO_wdt_fops = {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100600 .owner = THIS_MODULE,
601 .llseek = no_llseek,
602 .write = iTCO_wdt_write,
603 .unlocked_ioctl = iTCO_wdt_ioctl,
604 .open = iTCO_wdt_open,
605 .release = iTCO_wdt_release,
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200606};
607
608static struct miscdevice iTCO_wdt_miscdev = {
609 .minor = WATCHDOG_MINOR,
610 .name = "watchdog",
611 .fops = &iTCO_wdt_fops,
612};
613
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200614/*
615 * Init & exit routines
616 */
617
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100618static int __devinit iTCO_wdt_init(struct pci_dev *pdev,
619 const struct pci_device_id *ent, struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200620{
621 int ret;
622 u32 base_address;
623 unsigned long RCBA;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200624
625 /*
626 * Find the ACPI/PM base I/O address which is the base
627 * for the TCO registers (TCOBASE=ACPIBASE + 0x60)
628 * ACPIBASE is bits [15:7] from 0x40-0x43
629 */
630 pci_read_config_dword(pdev, 0x40, &base_address);
Wim Van Sebroeck0d4804b2007-05-11 18:59:24 +0000631 base_address &= 0x0000ff80;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200632 if (base_address == 0x00000000) {
633 /* Something's wrong here, ACPIBASE has to be set */
634 printk(KERN_ERR PFX "failed to get TCOBASE address\n");
Wim Van Sebroeck4802c652006-07-19 22:39:13 +0200635 pci_dev_put(pdev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200636 return -ENODEV;
637 }
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100638 iTCO_wdt_private.iTCO_version =
639 iTCO_chipset_info[ent->driver_data].iTCO_version;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200640 iTCO_wdt_private.ACPIBASE = base_address;
641 iTCO_wdt_private.pdev = pdev;
642
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100643 /* Get the Memory-Mapped GCS register, we need it for the
644 NO_REBOOT flag (TCO v2). To get access to it you have to
645 read RCBA from PCI Config space 0xf0 and use it as base.
646 GCS = RCBA + ICH6_GCS(0x3410). */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200647 if (iTCO_wdt_private.iTCO_version == 2) {
648 pci_read_config_dword(pdev, 0xf0, &base_address);
649 RCBA = base_address & 0xffffc000;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100650 iTCO_wdt_private.gcs = ioremap((RCBA + 0x3410), 4);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200651 }
652
653 /* Check chipset's NO_REBOOT bit */
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100654 if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200655 printk(KERN_ERR PFX "failed to reset NO_REBOOT flag, reboot disabled by hardware\n");
656 ret = -ENODEV; /* Cannot reset NO_REBOOT bit */
657 goto out;
658 }
659
660 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
661 iTCO_wdt_set_NO_REBOOT_bit();
662
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000663 /* The TCO logic uses the TCO_EN bit in the SMI_EN register */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200664 if (!request_region(SMI_EN, 4, "iTCO_wdt")) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100665 printk(KERN_ERR PFX
666 "I/O address 0x%04lx already in use\n", SMI_EN);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200667 ret = -EIO;
668 goto out;
669 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200670
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100671 /* The TCO I/O registers reside in a 32-byte range pointed to
672 by the TCOBASE value */
673 if (!request_region(TCOBASE, 0x20, "iTCO_wdt")) {
674 printk(KERN_ERR PFX "I/O address 0x%04lx already in use\n",
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200675 TCOBASE);
676 ret = -EIO;
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000677 goto unreg_smi_en;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200678 }
679
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100680 printk(KERN_INFO PFX
681 "Found a %s TCO device (Version=%d, TCOBASE=0x%04lx)\n",
682 iTCO_chipset_info[ent->driver_data].name,
683 iTCO_chipset_info[ent->driver_data].iTCO_version,
684 TCOBASE);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200685
686 /* Clear out the (probably old) status */
687 outb(0, TCO1_STS);
688 outb(3, TCO2_STS);
689
690 /* Make sure the watchdog is not running */
691 iTCO_wdt_stop();
692
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100693 /* Check that the heartbeat value is within it's range;
694 if not reset to the default */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200695 if (iTCO_wdt_set_heartbeat(heartbeat)) {
696 iTCO_wdt_set_heartbeat(WATCHDOG_HEARTBEAT);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100697 printk(KERN_INFO PFX "heartbeat value must be 2 < heartbeat < 39 (TCO v1) or 613 (TCO v2), using %d\n",
698 heartbeat);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200699 }
700
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200701 ret = misc_register(&iTCO_wdt_miscdev);
702 if (ret != 0) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100703 printk(KERN_ERR PFX
704 "cannot register miscdev on minor=%d (err=%d)\n",
705 WATCHDOG_MINOR, ret);
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200706 goto unreg_region;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200707 }
708
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100709 printk(KERN_INFO PFX "initialized. heartbeat=%d sec (nowayout=%d)\n",
710 heartbeat, nowayout);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200711
712 return 0;
713
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200714unreg_region:
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100715 release_region(TCOBASE, 0x20);
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000716unreg_smi_en:
717 release_region(SMI_EN, 4);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200718out:
719 if (iTCO_wdt_private.iTCO_version == 2)
720 iounmap(iTCO_wdt_private.gcs);
Wim Van Sebroeck4802c652006-07-19 22:39:13 +0200721 pci_dev_put(iTCO_wdt_private.pdev);
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200722 iTCO_wdt_private.ACPIBASE = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200723 return ret;
724}
725
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000726static void __devexit iTCO_wdt_cleanup(void)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200727{
728 /* Stop the timer before we leave */
729 if (!nowayout)
730 iTCO_wdt_stop();
731
732 /* Deregister */
733 misc_deregister(&iTCO_wdt_miscdev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200734 release_region(TCOBASE, 0x20);
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000735 release_region(SMI_EN, 4);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200736 if (iTCO_wdt_private.iTCO_version == 2)
737 iounmap(iTCO_wdt_private.gcs);
Wim Van Sebroeck4802c652006-07-19 22:39:13 +0200738 pci_dev_put(iTCO_wdt_private.pdev);
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200739 iTCO_wdt_private.ACPIBASE = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200740}
741
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000742static int __devinit iTCO_wdt_probe(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200743{
744 int found = 0;
745 struct pci_dev *pdev = NULL;
746 const struct pci_device_id *ent;
747
748 spin_lock_init(&iTCO_wdt_private.io_lock);
749
750 for_each_pci_dev(pdev) {
751 ent = pci_match_id(iTCO_wdt_pci_tbl, pdev);
752 if (ent) {
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200753 if (!(iTCO_wdt_init(pdev, ent, dev))) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200754 found++;
755 break;
756 }
757 }
758 }
759
760 if (!found) {
761 printk(KERN_INFO PFX "No card detected\n");
762 return -ENODEV;
763 }
764
765 return 0;
766}
767
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000768static int __devexit iTCO_wdt_remove(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200769{
770 if (iTCO_wdt_private.ACPIBASE)
771 iTCO_wdt_cleanup();
772
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200773 return 0;
774}
775
776static void iTCO_wdt_shutdown(struct platform_device *dev)
777{
778 iTCO_wdt_stop();
779}
780
781#define iTCO_wdt_suspend NULL
782#define iTCO_wdt_resume NULL
783
784static struct platform_driver iTCO_wdt_driver = {
785 .probe = iTCO_wdt_probe,
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000786 .remove = __devexit_p(iTCO_wdt_remove),
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200787 .shutdown = iTCO_wdt_shutdown,
788 .suspend = iTCO_wdt_suspend,
789 .resume = iTCO_wdt_resume,
790 .driver = {
791 .owner = THIS_MODULE,
792 .name = DRV_NAME,
793 },
794};
795
796static int __init iTCO_wdt_init_module(void)
797{
798 int err;
799
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000800 printk(KERN_INFO PFX "Intel TCO WatchDog Timer Driver v%s\n",
801 DRV_VERSION);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200802
803 err = platform_driver_register(&iTCO_wdt_driver);
804 if (err)
805 return err;
806
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100807 iTCO_wdt_platform_device = platform_device_register_simple(DRV_NAME,
808 -1, NULL, 0);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200809 if (IS_ERR(iTCO_wdt_platform_device)) {
810 err = PTR_ERR(iTCO_wdt_platform_device);
811 goto unreg_platform_driver;
812 }
813
814 return 0;
815
816unreg_platform_driver:
817 platform_driver_unregister(&iTCO_wdt_driver);
818 return err;
819}
820
821static void __exit iTCO_wdt_cleanup_module(void)
822{
823 platform_device_unregister(iTCO_wdt_platform_device);
824 platform_driver_unregister(&iTCO_wdt_driver);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200825 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
826}
827
828module_init(iTCO_wdt_init_module);
829module_exit(iTCO_wdt_cleanup_module);
830
831MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
832MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200833MODULE_VERSION(DRV_VERSION);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200834MODULE_LICENSE("GPL");
835MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);