5 * SoftDog 0.05: A Software Watchdog Device
7 * (c) Copyright 2007 Hewlett-Packard Development Company, L.P.
8 * Thomas Mingarelli <thomas.mingarelli@hp.com>
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
16 #include <linux/device.h>
18 #include <linux/init.h>
20 #include <linux/bitops.h>
21 #include <linux/kernel.h>
22 #include <linux/miscdevice.h>
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/pci.h>
26 #include <linux/pci_ids.h>
27 #include <linux/types.h>
28 #include <linux/uaccess.h>
29 #include <linux/watchdog.h>
30 #ifdef CONFIG_HPWDT_NMI_DECODING
31 #include <linux/dmi.h>
32 #include <linux/spinlock.h>
33 #include <linux/nmi.h>
34 #include <linux/kdebug.h>
35 #include <linux/notifier.h>
36 #include <asm/cacheflush.h>
37 #endif /* CONFIG_HPWDT_NMI_DECODING */
39 #define HPWDT_VERSION "1.2.0"
40 #define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
41 #define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
42 #define HPWDT_MAX_TIMER TICKS_TO_SECS(65535)
43 #define DEFAULT_MARGIN 30
45 static unsigned int soft_margin
= DEFAULT_MARGIN
; /* in seconds */
46 static unsigned int reload
; /* the computed soft_margin */
47 static int nowayout
= WATCHDOG_NOWAYOUT
;
48 static char expect_release
;
49 static unsigned long hpwdt_is_open
;
51 static void __iomem
*pci_mem_addr
; /* the PCI-memory address */
52 static unsigned long __iomem
*hpwdt_timer_reg
;
53 static unsigned long __iomem
*hpwdt_timer_con
;
55 static struct pci_device_id hpwdt_devices
[] = {
56 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ
, 0xB203) }, /* iLO2 */
57 { PCI_DEVICE(PCI_VENDOR_ID_HP
, 0x3306) }, /* iLO3 */
58 {0}, /* terminate list */
60 MODULE_DEVICE_TABLE(pci
, hpwdt_devices
);
62 #ifdef CONFIG_HPWDT_NMI_DECODING
63 #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
69 struct bios32_service_dir
{
79 struct smbios_cru64_info
{
88 #define SMBIOS_CRU64_INFORMATION 212
90 struct cmn_registers
{
130 } __attribute__((packed
));
132 static unsigned int hpwdt_nmi_decoding
;
133 static unsigned int allow_kdump
;
134 static unsigned int priority
; /* hpwdt at end of die_notify list */
135 static DEFINE_SPINLOCK(rom_lock
);
136 static void *cru_rom_addr
;
137 static struct cmn_registers cmn_regs
;
139 extern asmlinkage
void asminline_call(struct cmn_registers
*pi86Regs
,
140 unsigned long *pRomEntry
);
143 /* --32 Bit Bios------------------------------------------------------------ */
145 #define HPWDT_ARCH 32
149 "asminline_call: \n\t"
151 "movl %esp, %ebp \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"
165 "call *12(%ebp) \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"
177 "movl %ebx,(%eax) \n\t"
179 "movl %ebx,28(%eax) \n\t"
191 * Routine Description:
192 * This function uses the 32-bit BIOS Service Directory record to
193 * search for a $CRU record.
199 static int __devinit
cru_detect(unsigned long map_entry
,
200 unsigned long map_offset
)
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
;
210 bios32_map
= ioremap(map_entry
, (2 * PAGE_SIZE
));
212 if (bios32_map
== NULL
)
215 bios32_entrypoint
= bios32_map
+ map_offset
;
217 cmn_regs
.u1
.reax
= CRU_BIOS_SIGNATURE_VALUE
;
219 asminline_call(&cmn_regs
, bios32_entrypoint
);
221 if (cmn_regs
.u1
.ral
!= 0) {
223 "hpwdt: Call succeeded but with an error: 0x%x\n",
226 physical_bios_base
= cmn_regs
.u2
.rebx
;
227 physical_bios_offset
= cmn_regs
.u4
.redx
;
228 cru_length
= cmn_regs
.u3
.recx
;
229 cru_physical_address
=
230 physical_bios_base
+ physical_bios_offset
;
232 /* If the values look OK, then map it in. */
233 if ((physical_bios_base
+ physical_bios_offset
)) {
235 ioremap(cru_physical_address
, cru_length
);
240 printk(KERN_DEBUG
"hpwdt: CRU Base Address: 0x%lx\n",
242 printk(KERN_DEBUG
"hpwdt: CRU Offset Address: 0x%lx\n",
243 physical_bios_offset
);
244 printk(KERN_DEBUG
"hpwdt: CRU Length: 0x%lx\n",
246 printk(KERN_DEBUG
"hpwdt: CRU Mapped Address: %p\n",
256 static int __devinit
bios_checksum(const char __iomem
*ptr
, int len
)
262 * calculate checksum of size bytes. This should add up
263 * to zero if we have a valid header.
265 for (i
= 0; i
< len
; i
++)
268 return ((sum
== 0) && (len
> 0));
274 * Routine Description:
275 * This function finds the 32-bit BIOS Service Directory
281 static int __devinit
bios32_present(const char __iomem
*p
)
283 struct bios32_service_dir
*bios_32_ptr
;
285 unsigned long map_entry
, map_offset
;
287 bios_32_ptr
= (struct bios32_service_dir
*) p
;
290 * Search for signature by checking equal to the swizzled value
291 * instead of calling another routine to perform a strcmp.
293 if (bios_32_ptr
->signature
== PCI_BIOS32_SD_VALUE
) {
294 length
= bios_32_ptr
->length
* PCI_BIOS32_PARAGRAPH_LEN
;
295 if (bios_checksum(p
, length
)) {
297 * According to the spec, we're looking for the
298 * first 4KB-aligned address below the entrypoint
299 * listed in the header. The Service Directory code
300 * is guaranteed to occupy no more than 2 4KB pages.
302 map_entry
= bios_32_ptr
->entry_point
& ~(PAGE_SIZE
- 1);
303 map_offset
= bios_32_ptr
->entry_point
- map_entry
;
305 return cru_detect(map_entry
, map_offset
);
311 static int __devinit
detect_cru_service(void)
317 * Search from 0x0f0000 through 0x0fffff, inclusive.
319 p
= ioremap(PCI_ROM_BASE1
, ROM_SIZE
);
323 for (q
= p
; q
< p
+ ROM_SIZE
; q
+= 16) {
324 rc
= bios32_present(q
);
331 /* ------------------------------------------------------------------------- */
332 #endif /* CONFIG_X86_32 */
334 /* --64 Bit Bios------------------------------------------------------------ */
336 #define HPWDT_ARCH 64
340 "asminline_call: \n\t"
342 "movq %rsp, %rbp \n\t"
348 "movq %rsi, %r12 \n\t"
349 "movq %rdi, %r9 \n\t"
350 "movl 4(%r9),%ebx \n\t"
351 "movl 8(%r9),%ecx \n\t"
352 "movl 12(%r9),%edx \n\t"
353 "movl 16(%r9),%esi \n\t"
354 "movl 20(%r9),%edi \n\t"
355 "movl (%r9),%eax \n\t"
359 "movl %eax, (%r9) \n\t"
360 "movl %ebx, 4(%r9) \n\t"
361 "movl %ecx, 8(%r9) \n\t"
362 "movl %edx, 12(%r9) \n\t"
363 "movl %esi, 16(%r9) \n\t"
364 "movl %edi, 20(%r9) \n\t"
365 "movq %r12, %rax \n\t"
366 "movl %eax, 28(%r9) \n\t"
379 * Routine Description:
380 * This function checks whether or not a SMBIOS/DMI record is
381 * the 64bit CRU info or not
383 static void __devinit
dmi_find_cru(const struct dmi_header
*dm
, void *dummy
)
385 struct smbios_cru64_info
*smbios_cru64_ptr
;
386 unsigned long cru_physical_address
;
388 if (dm
->type
== SMBIOS_CRU64_INFORMATION
) {
389 smbios_cru64_ptr
= (struct smbios_cru64_info
*) dm
;
390 if (smbios_cru64_ptr
->signature
== CRU_BIOS_SIGNATURE_VALUE
) {
391 cru_physical_address
=
392 smbios_cru64_ptr
->physical_address
+
393 smbios_cru64_ptr
->double_offset
;
394 cru_rom_addr
= ioremap(cru_physical_address
,
395 smbios_cru64_ptr
->double_length
);
396 set_memory_x((unsigned long)cru_rom_addr
& PAGE_MASK
,
397 smbios_cru64_ptr
->double_length
>> PAGE_SHIFT
);
402 static int __devinit
detect_cru_service(void)
406 dmi_walk(dmi_find_cru
, NULL
);
408 /* if cru_rom_addr has been set then we found a CRU service */
409 return ((cru_rom_addr
!= NULL
) ? 0 : -ENODEV
);
411 /* ------------------------------------------------------------------------- */
412 #endif /* CONFIG_X86_64 */
413 #endif /* CONFIG_HPWDT_NMI_DECODING */
416 * Watchdog operations
418 static void hpwdt_start(void)
420 reload
= SECS_TO_TICKS(soft_margin
);
421 iowrite16(reload
, hpwdt_timer_reg
);
422 iowrite16(0x85, hpwdt_timer_con
);
425 static void hpwdt_stop(void)
429 data
= ioread16(hpwdt_timer_con
);
431 iowrite16(data
, hpwdt_timer_con
);
434 static void hpwdt_ping(void)
436 iowrite16(reload
, hpwdt_timer_reg
);
439 static int hpwdt_change_timer(int new_margin
)
441 if (new_margin
< 1 || new_margin
> HPWDT_MAX_TIMER
) {
443 "hpwdt: New value passed in is invalid: %d seconds.\n",
448 soft_margin
= new_margin
;
450 "hpwdt: New timer passed in is %d seconds.\n",
452 reload
= SECS_TO_TICKS(soft_margin
);
457 static int hpwdt_time_left(void)
459 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg
));
462 #ifdef CONFIG_HPWDT_NMI_DECODING
466 static int hpwdt_pretimeout(struct notifier_block
*nb
, unsigned long ulReason
,
469 unsigned long rom_pl
;
470 static int die_nmi_called
;
472 if (ulReason
!= DIE_NMI
&& ulReason
!= DIE_NMI_IPI
)
475 if (!hpwdt_nmi_decoding
)
478 spin_lock_irqsave(&rom_lock
, rom_pl
);
480 asminline_call(&cmn_regs
, cru_rom_addr
);
482 spin_unlock_irqrestore(&rom_lock
, rom_pl
);
483 if (cmn_regs
.u1
.ral
== 0) {
484 printk(KERN_WARNING
"hpwdt: An NMI occurred, "
485 "but unable to determine source.\n");
489 panic("An NMI occurred, please see the Integrated "
490 "Management Log for details.\n");
495 #endif /* CONFIG_HPWDT_NMI_DECODING */
498 * /dev/watchdog handling
500 static int hpwdt_open(struct inode
*inode
, struct file
*file
)
502 /* /dev/watchdog can only be opened once */
503 if (test_and_set_bit(0, &hpwdt_is_open
))
506 /* Start the watchdog */
510 return nonseekable_open(inode
, file
);
513 static int hpwdt_release(struct inode
*inode
, struct file
*file
)
515 /* Stop the watchdog */
516 if (expect_release
== 42) {
520 "hpwdt: Unexpected close, not stopping watchdog!\n");
526 /* /dev/watchdog is being closed, make sure it can be re-opened */
527 clear_bit(0, &hpwdt_is_open
);
532 static ssize_t
hpwdt_write(struct file
*file
, const char __user
*data
,
533 size_t len
, loff_t
*ppos
)
535 /* See if we got the magic character 'V' and reload the timer */
540 /* note: just in case someone wrote the magic character
541 * five months ago... */
544 /* scan to see whether or not we got the magic char. */
545 for (i
= 0; i
!= len
; i
++) {
547 if (get_user(c
, data
+ i
))
554 /* someone wrote to us, we should reload the timer */
561 static const struct watchdog_info ident
= {
562 .options
= WDIOF_SETTIMEOUT
|
563 WDIOF_KEEPALIVEPING
|
565 .identity
= "HP iLO2+ HW Watchdog Timer",
568 static long hpwdt_ioctl(struct file
*file
, unsigned int cmd
,
571 void __user
*argp
= (void __user
*)arg
;
572 int __user
*p
= argp
;
577 case WDIOC_GETSUPPORT
:
579 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
583 case WDIOC_GETSTATUS
:
584 case WDIOC_GETBOOTSTATUS
:
585 ret
= put_user(0, p
);
588 case WDIOC_KEEPALIVE
:
593 case WDIOC_SETTIMEOUT
:
594 ret
= get_user(new_margin
, p
);
598 ret
= hpwdt_change_timer(new_margin
);
604 case WDIOC_GETTIMEOUT
:
605 ret
= put_user(soft_margin
, p
);
608 case WDIOC_GETTIMELEFT
:
609 ret
= put_user(hpwdt_time_left(), p
);
618 static const struct file_operations hpwdt_fops
= {
619 .owner
= THIS_MODULE
,
621 .write
= hpwdt_write
,
622 .unlocked_ioctl
= hpwdt_ioctl
,
624 .release
= hpwdt_release
,
627 static struct miscdevice hpwdt_miscdev
= {
628 .minor
= WATCHDOG_MINOR
,
633 #ifdef CONFIG_HPWDT_NMI_DECODING
634 static struct notifier_block die_notifier
= {
635 .notifier_call
= hpwdt_pretimeout
,
638 #endif /* CONFIG_HPWDT_NMI_DECODING */
644 #ifdef CONFIG_HPWDT_NMI_DECODING
645 #ifdef ARCH_HAS_NMI_WATCHDOG
646 static void __devinit
hpwdt_check_nmi_decoding(struct pci_dev
*dev
)
649 * If nmi_watchdog is turned off then we can turn on
650 * our nmi decoding capability.
652 if (!nmi_watchdog_active())
653 hpwdt_nmi_decoding
= 1;
655 dev_warn(&dev
->dev
, "NMI decoding is disabled. To enable this "
656 "functionality you must reboot with nmi_watchdog=0 "
657 "and load the hpwdt driver with priority=1.\n");
660 static void __devinit
hpwdt_check_nmi_decoding(struct pci_dev
*dev
)
662 dev_warn(&dev
->dev
, "NMI decoding is disabled. "
663 "Your kernel does not support a NMI Watchdog.\n");
665 #endif /* ARCH_HAS_NMI_WATCHDOG */
667 static int __devinit
hpwdt_init_nmi_decoding(struct pci_dev
*dev
)
672 * We need to map the ROM to get the CRU service.
673 * For 32 bit Operating Systems we need to go through the 32 Bit
674 * BIOS Service Directory
675 * For 64 bit Operating Systems we get that service through SMBIOS.
677 retval
= detect_cru_service();
680 "Unable to detect the %d Bit CRU Service.\n",
686 * We know this is the only CRU call we need to make so lets keep as
687 * few instructions as possible once the NMI comes in.
689 cmn_regs
.u1
.rah
= 0x0D;
690 cmn_regs
.u1
.ral
= 0x02;
693 * If the priority is set to 1, then we will be put first on the
694 * die notify list to handle a critical NMI. The default is to
695 * be last so other users of the NMI signal can function.
698 die_notifier
.priority
= 0x7FFFFFFF;
700 retval
= register_die_notifier(&die_notifier
);
703 "Unable to register a die notifier (err=%d).\n",
706 iounmap(cru_rom_addr
);
710 "HP Watchdog Timer Driver: NMI decoding initialized"
711 ", allow kernel dump: %s (default = 0/OFF)"
712 ", priority: %s (default = 0/LAST).\n",
713 (allow_kdump
== 0) ? "OFF" : "ON",
714 (priority
== 0) ? "LAST" : "FIRST");
718 static void __devexit
hpwdt_exit_nmi_decoding(void)
720 unregister_die_notifier(&die_notifier
);
722 iounmap(cru_rom_addr
);
724 #else /* !CONFIG_HPWDT_NMI_DECODING */
725 static void __devinit
hpwdt_check_nmi_decoding(struct pci_dev
*dev
)
729 static int __devinit
hpwdt_init_nmi_decoding(struct pci_dev
*dev
)
734 static void __devexit
hpwdt_exit_nmi_decoding(void)
737 #endif /* CONFIG_HPWDT_NMI_DECODING */
739 static int __devinit
hpwdt_init_one(struct pci_dev
*dev
,
740 const struct pci_device_id
*ent
)
745 * Check if we can do NMI decoding or not
747 hpwdt_check_nmi_decoding(dev
);
750 * First let's find out if we are on an iLO2+ server. We will
751 * not run on a legacy ASM box.
752 * So we only support the G5 ProLiant servers and higher.
754 if (dev
->subsystem_vendor
!= PCI_VENDOR_ID_HP
) {
756 "This server does not have an iLO2+ ASIC.\n");
760 if (pci_enable_device(dev
)) {
762 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
763 ent
->vendor
, ent
->device
);
767 pci_mem_addr
= pci_iomap(dev
, 1, 0x80);
770 "Unable to detect the iLO2+ server memory.\n");
772 goto error_pci_iomap
;
774 hpwdt_timer_reg
= pci_mem_addr
+ 0x70;
775 hpwdt_timer_con
= pci_mem_addr
+ 0x72;
777 /* Make sure that we have a valid soft_margin */
778 if (hpwdt_change_timer(soft_margin
))
779 hpwdt_change_timer(DEFAULT_MARGIN
);
781 /* Initialize NMI Decoding functionality */
782 retval
= hpwdt_init_nmi_decoding(dev
);
784 goto error_init_nmi_decoding
;
786 retval
= misc_register(&hpwdt_miscdev
);
789 "Unable to register miscdev on minor=%d (err=%d).\n",
790 WATCHDOG_MINOR
, retval
);
791 goto error_misc_register
;
794 dev_info(&dev
->dev
, "HP Watchdog Timer Driver: %s"
795 ", timer margin: %d seconds (nowayout=%d).\n",
796 HPWDT_VERSION
, soft_margin
, nowayout
);
800 hpwdt_exit_nmi_decoding();
801 error_init_nmi_decoding
:
802 pci_iounmap(dev
, pci_mem_addr
);
804 pci_disable_device(dev
);
808 static void __devexit
hpwdt_exit(struct pci_dev
*dev
)
813 misc_deregister(&hpwdt_miscdev
);
814 hpwdt_exit_nmi_decoding();
815 pci_iounmap(dev
, pci_mem_addr
);
816 pci_disable_device(dev
);
819 static struct pci_driver hpwdt_driver
= {
821 .id_table
= hpwdt_devices
,
822 .probe
= hpwdt_init_one
,
823 .remove
= __devexit_p(hpwdt_exit
),
826 static void __exit
hpwdt_cleanup(void)
828 pci_unregister_driver(&hpwdt_driver
);
831 static int __init
hpwdt_init(void)
833 return pci_register_driver(&hpwdt_driver
);
836 MODULE_AUTHOR("Tom Mingarelli");
837 MODULE_DESCRIPTION("hp watchdog driver");
838 MODULE_LICENSE("GPL");
839 MODULE_VERSION(HPWDT_VERSION
);
840 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
842 module_param(soft_margin
, int, 0);
843 MODULE_PARM_DESC(soft_margin
, "Watchdog timeout in seconds");
845 module_param(nowayout
, int, 0);
846 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
847 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
849 #ifdef CONFIG_HPWDT_NMI_DECODING
850 module_param(allow_kdump
, int, 0);
851 MODULE_PARM_DESC(allow_kdump
, "Start a kernel dump after NMI occurs");
853 module_param(priority
, int, 0);
854 MODULE_PARM_DESC(priority
, "The hpwdt driver handles NMIs first or last"
855 " (default = 0/Last)\n");
856 #endif /* !CONFIG_HPWDT_NMI_DECODING */
858 module_init(hpwdt_init
);
859 module_exit(hpwdt_cleanup
);