blob: 9cb60dfbb59eb0fc6dbab3386af30698bfd87219 [file] [log] [blame]
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00001/*
2 * HP WatchDog Driver
3 * based on
4 *
5 * SoftDog 0.05: A Software Watchdog Device
6 *
7 * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
8 * Thomas Mingarelli <thomas.mingarelli@hp.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation
13 *
14 */
15
16#include <linux/device.h>
17#include <linux/fs.h>
18#include <linux/init.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000019#include <linux/io.h>
dann fraziera52e6d12010-07-27 17:50:50 -060020#include <linux/bitops.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000021#include <linux/kernel.h>
22#include <linux/miscdevice.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000023#include <linux/module.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000024#include <linux/moduleparam.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000025#include <linux/pci.h>
26#include <linux/pci_ids.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000027#include <linux/types.h>
28#include <linux/uaccess.h>
29#include <linux/watchdog.h>
dann frazier86ded1f2010-07-27 17:51:02 -060030#ifdef CONFIG_HPWDT_NMI_DECODING
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000031#include <linux/dmi.h>
dann fraziera52e6d12010-07-27 17:50:50 -060032#include <linux/spinlock.h>
dann frazier923410d2010-07-27 17:50:54 -060033#include <linux/nmi.h>
34#include <linux/kdebug.h>
35#include <linux/notifier.h>
Bernhard Walle06026412008-11-14 15:47:03 +010036#include <asm/cacheflush.h>
dann frazier86ded1f2010-07-27 17:51:02 -060037#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000038
dann frazier86ded1f2010-07-27 17:51:02 -060039#define HPWDT_VERSION "1.2.0"
dann fraziere802e322010-06-02 16:23:39 -060040#define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
dann frazier6f681c22010-06-02 16:23:40 -060041#define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
42#define HPWDT_MAX_TIMER TICKS_TO_SECS(65535)
dann frazier923410d2010-07-27 17:50:54 -060043#define DEFAULT_MARGIN 30
44
45static unsigned int soft_margin = DEFAULT_MARGIN; /* in seconds */
46static unsigned int reload; /* the computed soft_margin */
47static int nowayout = WATCHDOG_NOWAYOUT;
48static char expect_release;
49static unsigned long hpwdt_is_open;
50
51static void __iomem *pci_mem_addr; /* the PCI-memory address */
52static unsigned long __iomem *hpwdt_timer_reg;
53static unsigned long __iomem *hpwdt_timer_con;
54
Wim Van Sebroeck4562f532011-02-21 12:16:44 +000055static DEFINE_PCI_DEVICE_TABLE(hpwdt_devices) = {
dann frazier36e3ff42010-07-27 17:50:57 -060056 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
57 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
dann frazier923410d2010-07-27 17:50:54 -060058 {0}, /* terminate list */
59};
60MODULE_DEVICE_TABLE(pci, hpwdt_devices);
61
dann frazier86ded1f2010-07-27 17:51:02 -060062#ifdef CONFIG_HPWDT_NMI_DECODING
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000063#define PCI_BIOS32_SD_VALUE 0x5F32335F /* "_32_" */
64#define CRU_BIOS_SIGNATURE_VALUE 0x55524324
65#define PCI_BIOS32_PARAGRAPH_LEN 16
66#define PCI_ROM_BASE1 0x000F0000
67#define ROM_SIZE 0x10000
68
69struct bios32_service_dir {
70 u32 signature;
71 u32 entry_point;
72 u8 revision;
73 u8 length;
74 u8 checksum;
75 u8 reserved[5];
76};
77
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000078/* type 212 */
79struct smbios_cru64_info {
80 u8 type;
81 u8 byte_length;
82 u16 handle;
83 u32 signature;
84 u64 physical_address;
85 u32 double_length;
86 u32 double_offset;
87};
88#define SMBIOS_CRU64_INFORMATION 212
89
90struct cmn_registers {
91 union {
92 struct {
93 u8 ral;
94 u8 rah;
95 u16 rea2;
96 };
97 u32 reax;
98 } u1;
99 union {
100 struct {
101 u8 rbl;
102 u8 rbh;
103 u8 reb2l;
104 u8 reb2h;
105 };
106 u32 rebx;
107 } u2;
108 union {
109 struct {
110 u8 rcl;
111 u8 rch;
112 u16 rec2;
113 };
114 u32 recx;
115 } u3;
116 union {
117 struct {
118 u8 rdl;
119 u8 rdh;
120 u16 red2;
121 };
122 u32 redx;
123 } u4;
124
125 u32 resi;
126 u32 redi;
127 u16 rds;
128 u16 res;
129 u32 reflags;
130} __attribute__((packed));
131
dann frazier34572b22010-07-27 17:51:01 -0600132static unsigned int hpwdt_nmi_decoding;
dann frazier923410d2010-07-27 17:50:54 -0600133static unsigned int allow_kdump;
Tom Mingarelli44df7532009-06-18 23:28:57 +0000134static unsigned int priority; /* hpwdt at end of die_notify list */
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000135static DEFINE_SPINLOCK(rom_lock);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000136static void *cru_rom_addr;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000137static struct cmn_registers cmn_regs;
138
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000139extern asmlinkage void asminline_call(struct cmn_registers *pi86Regs,
140 unsigned long *pRomEntry);
Linus Torvalds1f6ef232008-06-20 12:19:28 -0700141
dann frazier6b7f3d52010-07-27 17:50:59 -0600142#ifdef CONFIG_X86_32
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000143/* --32 Bit Bios------------------------------------------------------------ */
144
145#define HPWDT_ARCH 32
146
Linus Torvalds1f6ef232008-06-20 12:19:28 -0700147asm(".text \n\t"
148 ".align 4 \n"
149 "asminline_call: \n\t"
150 "pushl %ebp \n\t"
151 "movl %esp, %ebp \n\t"
152 "pusha \n\t"
153 "pushf \n\t"
154 "push %es \n\t"
155 "push %ds \n\t"
156 "pop %es \n\t"
157 "movl 8(%ebp),%eax \n\t"
158 "movl 4(%eax),%ebx \n\t"
159 "movl 8(%eax),%ecx \n\t"
160 "movl 12(%eax),%edx \n\t"
161 "movl 16(%eax),%esi \n\t"
162 "movl 20(%eax),%edi \n\t"
163 "movl (%eax),%eax \n\t"
164 "push %cs \n\t"
165 "call *12(%ebp) \n\t"
166 "pushf \n\t"
167 "pushl %eax \n\t"
168 "movl 8(%ebp),%eax \n\t"
169 "movl %ebx,4(%eax) \n\t"
170 "movl %ecx,8(%eax) \n\t"
171 "movl %edx,12(%eax) \n\t"
172 "movl %esi,16(%eax) \n\t"
173 "movl %edi,20(%eax) \n\t"
174 "movw %ds,24(%eax) \n\t"
175 "movw %es,26(%eax) \n\t"
176 "popl %ebx \n\t"
177 "movl %ebx,(%eax) \n\t"
178 "popl %ebx \n\t"
179 "movl %ebx,28(%eax) \n\t"
180 "pop %es \n\t"
181 "popf \n\t"
182 "popa \n\t"
183 "leave \n\t"
184 "ret \n\t"
185 ".previous");
186
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000187
188/*
189 * cru_detect
190 *
191 * Routine Description:
192 * This function uses the 32-bit BIOS Service Directory record to
193 * search for a $CRU record.
194 *
195 * Return Value:
196 * 0 : SUCCESS
197 * <0 : FAILURE
198 */
199static int __devinit cru_detect(unsigned long map_entry,
200 unsigned long map_offset)
201{
202 void *bios32_map;
203 unsigned long *bios32_entrypoint;
204 unsigned long cru_physical_address;
205 unsigned long cru_length;
206 unsigned long physical_bios_base = 0;
207 unsigned long physical_bios_offset = 0;
208 int retval = -ENODEV;
209
210 bios32_map = ioremap(map_entry, (2 * PAGE_SIZE));
211
212 if (bios32_map == NULL)
213 return -ENODEV;
214
215 bios32_entrypoint = bios32_map + map_offset;
216
217 cmn_regs.u1.reax = CRU_BIOS_SIGNATURE_VALUE;
218
Mingarelli, Thomas33c118d2011-11-07 10:59:00 +0100219 set_memory_x((unsigned long)bios32_entrypoint, (2 * PAGE_SIZE));
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000220 asminline_call(&cmn_regs, bios32_entrypoint);
221
222 if (cmn_regs.u1.ral != 0) {
223 printk(KERN_WARNING
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000224 "hpwdt: Call succeeded but with an error: 0x%x\n",
225 cmn_regs.u1.ral);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000226 } else {
227 physical_bios_base = cmn_regs.u2.rebx;
228 physical_bios_offset = cmn_regs.u4.redx;
229 cru_length = cmn_regs.u3.recx;
230 cru_physical_address =
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000231 physical_bios_base + physical_bios_offset;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000232
233 /* If the values look OK, then map it in. */
234 if ((physical_bios_base + physical_bios_offset)) {
235 cru_rom_addr =
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000236 ioremap(cru_physical_address, cru_length);
Mingarelli, Thomas33c118d2011-11-07 10:59:00 +0100237 if (cru_rom_addr) {
238 set_memory_x((unsigned long)cru_rom_addr, cru_length);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000239 retval = 0;
Mingarelli, Thomas33c118d2011-11-07 10:59:00 +0100240 }
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000241 }
242
243 printk(KERN_DEBUG "hpwdt: CRU Base Address: 0x%lx\n",
244 physical_bios_base);
245 printk(KERN_DEBUG "hpwdt: CRU Offset Address: 0x%lx\n",
246 physical_bios_offset);
247 printk(KERN_DEBUG "hpwdt: CRU Length: 0x%lx\n",
248 cru_length);
Kulikov Vasiliyadb23632010-07-14 22:06:30 +0400249 printk(KERN_DEBUG "hpwdt: CRU Mapped Address: %p\n",
250 &cru_rom_addr);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000251 }
252 iounmap(bios32_map);
253 return retval;
254}
255
256/*
Roland Dreier30ec9102008-02-28 12:34:42 -0800257 * bios_checksum
258 */
259static int __devinit bios_checksum(const char __iomem *ptr, int len)
260{
261 char sum = 0;
262 int i;
263
264 /*
265 * calculate checksum of size bytes. This should add up
266 * to zero if we have a valid header.
267 */
268 for (i = 0; i < len; i++)
269 sum += ptr[i];
270
271 return ((sum == 0) && (len > 0));
272}
273
274/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000275 * bios32_present
276 *
277 * Routine Description:
278 * This function finds the 32-bit BIOS Service Directory
279 *
280 * Return Value:
281 * 0 : SUCCESS
282 * <0 : FAILURE
283 */
284static int __devinit bios32_present(const char __iomem *p)
285{
286 struct bios32_service_dir *bios_32_ptr;
287 int length;
288 unsigned long map_entry, map_offset;
289
290 bios_32_ptr = (struct bios32_service_dir *) p;
291
292 /*
293 * Search for signature by checking equal to the swizzled value
294 * instead of calling another routine to perform a strcmp.
295 */
296 if (bios_32_ptr->signature == PCI_BIOS32_SD_VALUE) {
297 length = bios_32_ptr->length * PCI_BIOS32_PARAGRAPH_LEN;
298 if (bios_checksum(p, length)) {
299 /*
300 * According to the spec, we're looking for the
301 * first 4KB-aligned address below the entrypoint
302 * listed in the header. The Service Directory code
303 * is guaranteed to occupy no more than 2 4KB pages.
304 */
305 map_entry = bios_32_ptr->entry_point & ~(PAGE_SIZE - 1);
306 map_offset = bios_32_ptr->entry_point - map_entry;
307
308 return cru_detect(map_entry, map_offset);
309 }
310 }
311 return -ENODEV;
312}
313
314static int __devinit detect_cru_service(void)
315{
316 char __iomem *p, *q;
317 int rc = -1;
318
319 /*
320 * Search from 0x0f0000 through 0x0fffff, inclusive.
321 */
322 p = ioremap(PCI_ROM_BASE1, ROM_SIZE);
323 if (p == NULL)
324 return -ENOMEM;
325
326 for (q = p; q < p + ROM_SIZE; q += 16) {
327 rc = bios32_present(q);
328 if (!rc)
329 break;
330 }
331 iounmap(p);
332 return rc;
333}
dann frazier6b7f3d52010-07-27 17:50:59 -0600334/* ------------------------------------------------------------------------- */
335#endif /* CONFIG_X86_32 */
336#ifdef CONFIG_X86_64
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000337/* --64 Bit Bios------------------------------------------------------------ */
338
339#define HPWDT_ARCH 64
340
Linus Torvalds1f6ef232008-06-20 12:19:28 -0700341asm(".text \n\t"
342 ".align 4 \n"
343 "asminline_call: \n\t"
344 "pushq %rbp \n\t"
345 "movq %rsp, %rbp \n\t"
346 "pushq %rax \n\t"
347 "pushq %rbx \n\t"
348 "pushq %rdx \n\t"
349 "pushq %r12 \n\t"
350 "pushq %r9 \n\t"
351 "movq %rsi, %r12 \n\t"
352 "movq %rdi, %r9 \n\t"
353 "movl 4(%r9),%ebx \n\t"
354 "movl 8(%r9),%ecx \n\t"
355 "movl 12(%r9),%edx \n\t"
356 "movl 16(%r9),%esi \n\t"
357 "movl 20(%r9),%edi \n\t"
358 "movl (%r9),%eax \n\t"
359 "call *%r12 \n\t"
360 "pushfq \n\t"
361 "popq %r12 \n\t"
Linus Torvalds1f6ef232008-06-20 12:19:28 -0700362 "movl %eax, (%r9) \n\t"
363 "movl %ebx, 4(%r9) \n\t"
364 "movl %ecx, 8(%r9) \n\t"
365 "movl %edx, 12(%r9) \n\t"
366 "movl %esi, 16(%r9) \n\t"
367 "movl %edi, 20(%r9) \n\t"
368 "movq %r12, %rax \n\t"
369 "movl %eax, 28(%r9) \n\t"
370 "popq %r9 \n\t"
371 "popq %r12 \n\t"
372 "popq %rdx \n\t"
373 "popq %rbx \n\t"
374 "popq %rax \n\t"
375 "leave \n\t"
376 "ret \n\t"
377 ".previous");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000378
379/*
380 * dmi_find_cru
381 *
382 * Routine Description:
Roland Dreier30ec9102008-02-28 12:34:42 -0800383 * This function checks whether or not a SMBIOS/DMI record is
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000384 * the 64bit CRU info or not
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000385 */
Jean Delvaree7a19c52009-03-30 21:46:44 +0200386static void __devinit dmi_find_cru(const struct dmi_header *dm, void *dummy)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000387{
388 struct smbios_cru64_info *smbios_cru64_ptr;
389 unsigned long cru_physical_address;
390
391 if (dm->type == SMBIOS_CRU64_INFORMATION) {
392 smbios_cru64_ptr = (struct smbios_cru64_info *) dm;
393 if (smbios_cru64_ptr->signature == CRU_BIOS_SIGNATURE_VALUE) {
394 cru_physical_address =
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000395 smbios_cru64_ptr->physical_address +
396 smbios_cru64_ptr->double_offset;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000397 cru_rom_addr = ioremap(cru_physical_address,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000398 smbios_cru64_ptr->double_length);
Bernhard Walle06026412008-11-14 15:47:03 +0100399 set_memory_x((unsigned long)cru_rom_addr & PAGE_MASK,
400 smbios_cru64_ptr->double_length >> PAGE_SHIFT);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000401 }
402 }
403}
404
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000405static int __devinit detect_cru_service(void)
406{
407 cru_rom_addr = NULL;
408
Jean Delvaree7a19c52009-03-30 21:46:44 +0200409 dmi_walk(dmi_find_cru, NULL);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000410
411 /* if cru_rom_addr has been set then we found a CRU service */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000412 return ((cru_rom_addr != NULL) ? 0 : -ENODEV);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000413}
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000414/* ------------------------------------------------------------------------- */
dann frazier6b7f3d52010-07-27 17:50:59 -0600415#endif /* CONFIG_X86_64 */
dann frazier86ded1f2010-07-27 17:51:02 -0600416#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000417
418/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000419 * Watchdog operations
420 */
421static void hpwdt_start(void)
422{
dann fraziere802e322010-06-02 16:23:39 -0600423 reload = SECS_TO_TICKS(soft_margin);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000424 iowrite16(reload, hpwdt_timer_reg);
425 iowrite16(0x85, hpwdt_timer_con);
426}
427
428static void hpwdt_stop(void)
429{
430 unsigned long data;
431
432 data = ioread16(hpwdt_timer_con);
433 data &= 0xFE;
434 iowrite16(data, hpwdt_timer_con);
435}
436
437static void hpwdt_ping(void)
438{
439 iowrite16(reload, hpwdt_timer_reg);
440}
441
442static int hpwdt_change_timer(int new_margin)
443{
dann frazier6f681c22010-06-02 16:23:40 -0600444 if (new_margin < 1 || new_margin > HPWDT_MAX_TIMER) {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000445 printk(KERN_WARNING
446 "hpwdt: New value passed in is invalid: %d seconds.\n",
447 new_margin);
448 return -EINVAL;
449 }
450
451 soft_margin = new_margin;
452 printk(KERN_DEBUG
453 "hpwdt: New timer passed in is %d seconds.\n",
454 new_margin);
dann fraziere802e322010-06-02 16:23:39 -0600455 reload = SECS_TO_TICKS(soft_margin);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000456
457 return 0;
458}
459
dann frazieraae67f32010-06-02 16:23:41 -0600460static int hpwdt_time_left(void)
461{
462 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg));
463}
464
dann frazier86ded1f2010-07-27 17:51:02 -0600465#ifdef CONFIG_HPWDT_NMI_DECODING
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000466/*
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000467 * NMI Handler
468 */
469static int hpwdt_pretimeout(struct notifier_block *nb, unsigned long ulReason,
470 void *data)
471{
472 unsigned long rom_pl;
473 static int die_nmi_called;
474
Don Zickus673a6092011-01-06 16:18:48 -0500475 if (ulReason != DIE_NMIUNKNOWN)
dann frazier243066b2010-07-27 17:50:49 -0600476 goto out;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000477
dann frazier34572b22010-07-27 17:51:01 -0600478 if (!hpwdt_nmi_decoding)
dann frazier243066b2010-07-27 17:50:49 -0600479 goto out;
480
481 spin_lock_irqsave(&rom_lock, rom_pl);
482 if (!die_nmi_called)
483 asminline_call(&cmn_regs, cru_rom_addr);
484 die_nmi_called = 1;
485 spin_unlock_irqrestore(&rom_lock, rom_pl);
486 if (cmn_regs.u1.ral == 0) {
487 printk(KERN_WARNING "hpwdt: An NMI occurred, "
488 "but unable to determine source.\n");
489 } else {
490 if (allow_kdump)
491 hpwdt_stop();
492 panic("An NMI occurred, please see the Integrated "
493 "Management Log for details.\n");
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000494 }
dann frazier243066b2010-07-27 17:50:49 -0600495out:
Bernhard Walle290172e2008-10-26 15:59:37 +0100496 return NOTIFY_OK;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000497}
dann frazier86ded1f2010-07-27 17:51:02 -0600498#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000499
500/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000501 * /dev/watchdog handling
502 */
503static int hpwdt_open(struct inode *inode, struct file *file)
504{
505 /* /dev/watchdog can only be opened once */
506 if (test_and_set_bit(0, &hpwdt_is_open))
507 return -EBUSY;
508
509 /* Start the watchdog */
510 hpwdt_start();
511 hpwdt_ping();
512
513 return nonseekable_open(inode, file);
514}
515
516static int hpwdt_release(struct inode *inode, struct file *file)
517{
518 /* Stop the watchdog */
519 if (expect_release == 42) {
520 hpwdt_stop();
521 } else {
522 printk(KERN_CRIT
523 "hpwdt: Unexpected close, not stopping watchdog!\n");
524 hpwdt_ping();
525 }
526
527 expect_release = 0;
528
529 /* /dev/watchdog is being closed, make sure it can be re-opened */
530 clear_bit(0, &hpwdt_is_open);
531
532 return 0;
533}
534
535static ssize_t hpwdt_write(struct file *file, const char __user *data,
536 size_t len, loff_t *ppos)
537{
538 /* See if we got the magic character 'V' and reload the timer */
539 if (len) {
540 if (!nowayout) {
541 size_t i;
542
543 /* note: just in case someone wrote the magic character
544 * five months ago... */
545 expect_release = 0;
546
547 /* scan to see whether or not we got the magic char. */
548 for (i = 0; i != len; i++) {
549 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000550 if (get_user(c, data + i))
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000551 return -EFAULT;
552 if (c == 'V')
553 expect_release = 42;
554 }
555 }
556
557 /* someone wrote to us, we should reload the timer */
558 hpwdt_ping();
559 }
560
561 return len;
562}
563
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000564static const struct watchdog_info ident = {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000565 .options = WDIOF_SETTIMEOUT |
566 WDIOF_KEEPALIVEPING |
567 WDIOF_MAGICCLOSE,
dann frazier36e3ff42010-07-27 17:50:57 -0600568 .identity = "HP iLO2+ HW Watchdog Timer",
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000569};
570
571static long hpwdt_ioctl(struct file *file, unsigned int cmd,
572 unsigned long arg)
573{
574 void __user *argp = (void __user *)arg;
575 int __user *p = argp;
576 int new_margin;
577 int ret = -ENOTTY;
578
579 switch (cmd) {
580 case WDIOC_GETSUPPORT:
581 ret = 0;
582 if (copy_to_user(argp, &ident, sizeof(ident)))
583 ret = -EFAULT;
584 break;
585
586 case WDIOC_GETSTATUS:
587 case WDIOC_GETBOOTSTATUS:
588 ret = put_user(0, p);
589 break;
590
591 case WDIOC_KEEPALIVE:
592 hpwdt_ping();
593 ret = 0;
594 break;
595
596 case WDIOC_SETTIMEOUT:
597 ret = get_user(new_margin, p);
598 if (ret)
599 break;
600
601 ret = hpwdt_change_timer(new_margin);
602 if (ret)
603 break;
604
605 hpwdt_ping();
606 /* Fall */
607 case WDIOC_GETTIMEOUT:
608 ret = put_user(soft_margin, p);
609 break;
dann frazieraae67f32010-06-02 16:23:41 -0600610
611 case WDIOC_GETTIMELEFT:
612 ret = put_user(hpwdt_time_left(), p);
613 break;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000614 }
615 return ret;
616}
617
618/*
619 * Kernel interfaces
620 */
Wim Van Sebroeckd5c26a52009-03-18 08:18:43 +0000621static const struct file_operations hpwdt_fops = {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000622 .owner = THIS_MODULE,
623 .llseek = no_llseek,
624 .write = hpwdt_write,
625 .unlocked_ioctl = hpwdt_ioctl,
626 .open = hpwdt_open,
627 .release = hpwdt_release,
628};
629
630static struct miscdevice hpwdt_miscdev = {
631 .minor = WATCHDOG_MINOR,
632 .name = "watchdog",
633 .fops = &hpwdt_fops,
634};
635
dann frazier86ded1f2010-07-27 17:51:02 -0600636#ifdef CONFIG_HPWDT_NMI_DECODING
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000637static struct notifier_block die_notifier = {
638 .notifier_call = hpwdt_pretimeout,
Tom Mingarelli44df7532009-06-18 23:28:57 +0000639 .priority = 0,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000640};
dann frazier86ded1f2010-07-27 17:51:02 -0600641#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000642
643/*
644 * Init & Exit
645 */
646
dann frazier86ded1f2010-07-27 17:51:02 -0600647#ifdef CONFIG_HPWDT_NMI_DECODING
Don Zickus4a7863c2010-12-22 14:00:03 -0500648#ifdef CONFIG_X86_LOCAL_APIC
dann frazier34572b22010-07-27 17:51:01 -0600649static void __devinit hpwdt_check_nmi_decoding(struct pci_dev *dev)
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000650{
651 /*
652 * If nmi_watchdog is turned off then we can turn on
dann frazier34572b22010-07-27 17:51:01 -0600653 * our nmi decoding capability.
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000654 */
Don Zickus072b1982010-11-12 11:22:24 -0500655 hpwdt_nmi_decoding = 1;
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000656}
657#else
dann frazier34572b22010-07-27 17:51:01 -0600658static void __devinit hpwdt_check_nmi_decoding(struct pci_dev *dev)
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000659{
dann frazier34572b22010-07-27 17:51:01 -0600660 dev_warn(&dev->dev, "NMI decoding is disabled. "
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000661 "Your kernel does not support a NMI Watchdog.\n");
662}
Don Zickus4a7863c2010-12-22 14:00:03 -0500663#endif /* CONFIG_X86_LOCAL_APIC */
dann frazier2ec7ed62010-07-28 12:38:43 -0600664
665static int __devinit hpwdt_init_nmi_decoding(struct pci_dev *dev)
666{
667 int retval;
668
669 /*
670 * We need to map the ROM to get the CRU service.
671 * For 32 bit Operating Systems we need to go through the 32 Bit
672 * BIOS Service Directory
673 * For 64 bit Operating Systems we get that service through SMBIOS.
674 */
675 retval = detect_cru_service();
676 if (retval < 0) {
677 dev_warn(&dev->dev,
678 "Unable to detect the %d Bit CRU Service.\n",
679 HPWDT_ARCH);
680 return retval;
681 }
682
683 /*
684 * We know this is the only CRU call we need to make so lets keep as
685 * few instructions as possible once the NMI comes in.
686 */
687 cmn_regs.u1.rah = 0x0D;
688 cmn_regs.u1.ral = 0x02;
689
690 /*
691 * If the priority is set to 1, then we will be put first on the
692 * die notify list to handle a critical NMI. The default is to
693 * be last so other users of the NMI signal can function.
694 */
695 if (priority)
696 die_notifier.priority = 0x7FFFFFFF;
697
698 retval = register_die_notifier(&die_notifier);
699 if (retval != 0) {
700 dev_warn(&dev->dev,
701 "Unable to register a die notifier (err=%d).\n",
702 retval);
703 if (cru_rom_addr)
704 iounmap(cru_rom_addr);
705 }
706
707 dev_info(&dev->dev,
708 "HP Watchdog Timer Driver: NMI decoding initialized"
709 ", allow kernel dump: %s (default = 0/OFF)"
710 ", priority: %s (default = 0/LAST).\n",
711 (allow_kdump == 0) ? "OFF" : "ON",
712 (priority == 0) ? "LAST" : "FIRST");
713 return 0;
714}
715
Axel Linb77b7082011-03-02 11:49:44 +0800716static void hpwdt_exit_nmi_decoding(void)
dann frazier2ec7ed62010-07-28 12:38:43 -0600717{
718 unregister_die_notifier(&die_notifier);
719 if (cru_rom_addr)
720 iounmap(cru_rom_addr);
721}
dann frazier86ded1f2010-07-27 17:51:02 -0600722#else /* !CONFIG_HPWDT_NMI_DECODING */
723static void __devinit hpwdt_check_nmi_decoding(struct pci_dev *dev)
724{
725}
726
727static int __devinit hpwdt_init_nmi_decoding(struct pci_dev *dev)
728{
729 return 0;
730}
731
Axel Linb77b7082011-03-02 11:49:44 +0800732static void hpwdt_exit_nmi_decoding(void)
dann frazier86ded1f2010-07-27 17:51:02 -0600733{
734}
735#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000736
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000737static int __devinit hpwdt_init_one(struct pci_dev *dev,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000738 const struct pci_device_id *ent)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000739{
740 int retval;
741
742 /*
dann frazier34572b22010-07-27 17:51:01 -0600743 * Check if we can do NMI decoding or not
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000744 */
dann frazier34572b22010-07-27 17:51:01 -0600745 hpwdt_check_nmi_decoding(dev);
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000746
747 /*
dann frazier36e3ff42010-07-27 17:50:57 -0600748 * First let's find out if we are on an iLO2+ server. We will
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000749 * not run on a legacy ASM box.
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000750 * So we only support the G5 ProLiant servers and higher.
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000751 */
752 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP) {
753 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600754 "This server does not have an iLO2+ ASIC.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000755 return -ENODEV;
756 }
757
758 if (pci_enable_device(dev)) {
759 dev_warn(&dev->dev,
760 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
761 ent->vendor, ent->device);
762 return -ENODEV;
763 }
764
765 pci_mem_addr = pci_iomap(dev, 1, 0x80);
766 if (!pci_mem_addr) {
767 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600768 "Unable to detect the iLO2+ server memory.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000769 retval = -ENOMEM;
770 goto error_pci_iomap;
771 }
772 hpwdt_timer_reg = pci_mem_addr + 0x70;
773 hpwdt_timer_con = pci_mem_addr + 0x72;
774
775 /* Make sure that we have a valid soft_margin */
776 if (hpwdt_change_timer(soft_margin))
777 hpwdt_change_timer(DEFAULT_MARGIN);
778
dann frazier2ec7ed62010-07-28 12:38:43 -0600779 /* Initialize NMI Decoding functionality */
780 retval = hpwdt_init_nmi_decoding(dev);
781 if (retval != 0)
782 goto error_init_nmi_decoding;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000783
784 retval = misc_register(&hpwdt_miscdev);
785 if (retval < 0) {
786 dev_warn(&dev->dev,
787 "Unable to register miscdev on minor=%d (err=%d).\n",
788 WATCHDOG_MINOR, retval);
789 goto error_misc_register;
790 }
791
dann frazier2ec7ed62010-07-28 12:38:43 -0600792 dev_info(&dev->dev, "HP Watchdog Timer Driver: %s"
793 ", timer margin: %d seconds (nowayout=%d).\n",
794 HPWDT_VERSION, soft_margin, nowayout);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000795 return 0;
796
797error_misc_register:
dann frazier2ec7ed62010-07-28 12:38:43 -0600798 hpwdt_exit_nmi_decoding();
799error_init_nmi_decoding:
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000800 pci_iounmap(dev, pci_mem_addr);
801error_pci_iomap:
802 pci_disable_device(dev);
803 return retval;
804}
805
806static void __devexit hpwdt_exit(struct pci_dev *dev)
807{
808 if (!nowayout)
809 hpwdt_stop();
810
811 misc_deregister(&hpwdt_miscdev);
dann frazier2ec7ed62010-07-28 12:38:43 -0600812 hpwdt_exit_nmi_decoding();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000813 pci_iounmap(dev, pci_mem_addr);
814 pci_disable_device(dev);
815}
816
817static struct pci_driver hpwdt_driver = {
818 .name = "hpwdt",
819 .id_table = hpwdt_devices,
820 .probe = hpwdt_init_one,
821 .remove = __devexit_p(hpwdt_exit),
822};
823
824static void __exit hpwdt_cleanup(void)
825{
826 pci_unregister_driver(&hpwdt_driver);
827}
828
829static int __init hpwdt_init(void)
830{
831 return pci_register_driver(&hpwdt_driver);
832}
833
834MODULE_AUTHOR("Tom Mingarelli");
835MODULE_DESCRIPTION("hp watchdog driver");
836MODULE_LICENSE("GPL");
Thomas Mingarellid8100c32009-03-03 00:17:16 +0000837MODULE_VERSION(HPWDT_VERSION);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000838MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
839
840module_param(soft_margin, int, 0);
841MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
842
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000843module_param(nowayout, int, 0);
844MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
845 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
846
dann frazier86ded1f2010-07-27 17:51:02 -0600847#ifdef CONFIG_HPWDT_NMI_DECODING
dann frazier550d2992010-07-27 17:50:54 -0600848module_param(allow_kdump, int, 0);
849MODULE_PARM_DESC(allow_kdump, "Start a kernel dump after NMI occurs");
850
Tom Mingarelli44df7532009-06-18 23:28:57 +0000851module_param(priority, int, 0);
852MODULE_PARM_DESC(priority, "The hpwdt driver handles NMIs first or last"
853 " (default = 0/Last)\n");
dann frazier86ded1f2010-07-27 17:51:02 -0600854#endif /* !CONFIG_HPWDT_NMI_DECODING */
Tom Mingarelli44df7532009-06-18 23:28:57 +0000855
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000856module_init(hpwdt_init);
857module_exit(hpwdt_cleanup);