1 // SPDX-License-Identifier: GPL-2.0-only
6 * SoftDog 0.05: A Software Watchdog Device
8 * (c) Copyright 2018 Hewlett Packard Enterprise Development LP
9 * Thomas Mingarelli <thomas.mingarelli@hpe.com>
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/device.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/pci.h>
20 #include <linux/pci_ids.h>
21 #include <linux/types.h>
22 #include <linux/watchdog.h>
24 #include <linux/crash_dump.h>
26 #define HPWDT_VERSION "2.0.4"
27 #define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
28 #define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
29 #define HPWDT_MAX_TICKS 65535
30 #define HPWDT_MAX_TIMER TICKS_TO_SECS(HPWDT_MAX_TICKS)
31 #define DEFAULT_MARGIN 30
32 #define PRETIMEOUT_SEC 9
35 static unsigned int soft_margin
= DEFAULT_MARGIN
; /* in seconds */
36 static bool nowayout
= WATCHDOG_NOWAYOUT
;
37 static bool pretimeout
= IS_ENABLED(CONFIG_HPWDT_NMI_DECODING
);
38 static int kdumptimeout
= -1;
40 static void __iomem
*pci_mem_addr
; /* the PCI-memory address */
41 static unsigned long __iomem
*hpwdt_nmistat
;
42 static unsigned long __iomem
*hpwdt_timer_reg
;
43 static unsigned long __iomem
*hpwdt_timer_con
;
45 static const struct pci_device_id hpwdt_devices
[] = {
46 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ
, 0xB203) }, /* iLO2 */
47 { PCI_DEVICE(PCI_VENDOR_ID_HP
, 0x3306) }, /* iLO3 */
48 {0}, /* terminate list */
50 MODULE_DEVICE_TABLE(pci
, hpwdt_devices
);
52 static const struct pci_device_id hpwdt_blacklist
[] = {
53 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP
, 0x3306, PCI_VENDOR_ID_HP
, 0x1979) }, /* auxilary iLO */
54 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP
, 0x3306, PCI_VENDOR_ID_HP_3PAR
, 0x0289) }, /* CL */
55 {0}, /* terminate list */
58 static struct watchdog_device hpwdt_dev
;
62 static int hpwdt_hw_is_running(void)
64 return ioread8(hpwdt_timer_con
) & 0x01;
67 static int hpwdt_start(struct watchdog_device
*wdd
)
69 int control
= 0x81 | (pretimeout
? 0x4 : 0);
70 int reload
= SECS_TO_TICKS(min(wdd
->timeout
, wdd
->max_hw_heartbeat_ms
/1000));
72 dev_dbg(wdd
->parent
, "start watchdog 0x%08x:0x%08x:0x%02x\n", wdd
->timeout
, reload
, control
);
73 iowrite16(reload
, hpwdt_timer_reg
);
74 iowrite8(control
, hpwdt_timer_con
);
79 static void hpwdt_stop(void)
83 pr_debug("stop watchdog\n");
85 data
= ioread8(hpwdt_timer_con
);
87 iowrite8(data
, hpwdt_timer_con
);
90 static int hpwdt_stop_core(struct watchdog_device
*wdd
)
97 static void hpwdt_ping_ticks(int val
)
99 val
= min(val
, HPWDT_MAX_TICKS
);
100 iowrite16(val
, hpwdt_timer_reg
);
103 static int hpwdt_ping(struct watchdog_device
*wdd
)
105 int reload
= SECS_TO_TICKS(min(wdd
->timeout
, wdd
->max_hw_heartbeat_ms
/1000));
107 dev_dbg(wdd
->parent
, "ping watchdog 0x%08x:0x%08x\n", wdd
->timeout
, reload
);
108 hpwdt_ping_ticks(reload
);
113 static unsigned int hpwdt_gettimeleft(struct watchdog_device
*wdd
)
115 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg
));
118 static int hpwdt_settimeout(struct watchdog_device
*wdd
, unsigned int val
)
120 dev_dbg(wdd
->parent
, "set_timeout = %d\n", val
);
123 if (val
<= wdd
->pretimeout
) {
124 dev_dbg(wdd
->parent
, "pretimeout < timeout. Setting to zero\n");
127 if (watchdog_active(wdd
))
135 #ifdef CONFIG_HPWDT_NMI_DECODING
136 static int hpwdt_set_pretimeout(struct watchdog_device
*wdd
, unsigned int req
)
138 unsigned int val
= 0;
140 dev_dbg(wdd
->parent
, "set_pretimeout = %d\n", req
);
142 val
= PRETIMEOUT_SEC
;
143 if (val
>= wdd
->timeout
)
148 dev_dbg(wdd
->parent
, "Rounding pretimeout to: %d\n", val
);
150 wdd
->pretimeout
= val
;
153 if (watchdog_active(wdd
))
159 static int hpwdt_my_nmi(void)
161 return ioread8(hpwdt_nmistat
) & 0x6;
167 static int hpwdt_pretimeout(unsigned int ulReason
, struct pt_regs
*regs
)
169 unsigned int mynmi
= hpwdt_my_nmi();
170 static char panic_msg
[] =
171 "00: An NMI occurred. Depending on your system the reason "
172 "for the NMI is logged in any one of the following resources:\n"
173 "1. Integrated Management Log (IML)\n"
175 "3. OA Forward Progress Log\n"
178 if (ilo5
&& ulReason
== NMI_UNKNOWN
&& !mynmi
)
181 if (ilo5
&& !pretimeout
&& !mynmi
)
184 if (kdumptimeout
< 0)
186 else if (kdumptimeout
== 0)
189 unsigned int val
= max((unsigned int)kdumptimeout
, hpwdt_dev
.timeout
);
190 hpwdt_ping_ticks(SECS_TO_TICKS(val
));
193 hex_byte_pack(panic_msg
, mynmi
);
194 nmi_panic(regs
, panic_msg
);
198 #endif /* CONFIG_HPWDT_NMI_DECODING */
201 static const struct watchdog_info ident
= {
202 .options
= WDIOF_PRETIMEOUT
|
204 WDIOF_KEEPALIVEPING
|
206 .identity
= "HPE iLO2+ HW Watchdog Timer",
213 static const struct watchdog_ops hpwdt_ops
= {
214 .owner
= THIS_MODULE
,
215 .start
= hpwdt_start
,
216 .stop
= hpwdt_stop_core
,
218 .set_timeout
= hpwdt_settimeout
,
219 .get_timeleft
= hpwdt_gettimeleft
,
220 #ifdef CONFIG_HPWDT_NMI_DECODING
221 .set_pretimeout
= hpwdt_set_pretimeout
,
225 static struct watchdog_device hpwdt_dev
= {
229 .timeout
= DEFAULT_MARGIN
,
230 .pretimeout
= PRETIMEOUT_SEC
,
231 .max_hw_heartbeat_ms
= HPWDT_MAX_TIMER
* 1000,
239 static int hpwdt_init_nmi_decoding(struct pci_dev
*dev
)
241 #ifdef CONFIG_HPWDT_NMI_DECODING
244 * Only one function can register for NMI_UNKNOWN
246 retval
= register_nmi_handler(NMI_UNKNOWN
, hpwdt_pretimeout
, 0, "hpwdt");
249 retval
= register_nmi_handler(NMI_SERR
, hpwdt_pretimeout
, 0, "hpwdt");
252 retval
= register_nmi_handler(NMI_IO_CHECK
, hpwdt_pretimeout
, 0, "hpwdt");
257 "HPE Watchdog Timer Driver: NMI decoding initialized\n");
262 unregister_nmi_handler(NMI_SERR
, "hpwdt");
264 unregister_nmi_handler(NMI_UNKNOWN
, "hpwdt");
267 "Unable to register a die notifier (err=%d).\n",
270 #endif /* CONFIG_HPWDT_NMI_DECODING */
274 static void hpwdt_exit_nmi_decoding(void)
276 #ifdef CONFIG_HPWDT_NMI_DECODING
277 unregister_nmi_handler(NMI_UNKNOWN
, "hpwdt");
278 unregister_nmi_handler(NMI_SERR
, "hpwdt");
279 unregister_nmi_handler(NMI_IO_CHECK
, "hpwdt");
283 static int hpwdt_init_one(struct pci_dev
*dev
,
284 const struct pci_device_id
*ent
)
289 * First let's find out if we are on an iLO2+ server. We will
290 * not run on a legacy ASM box.
291 * So we only support the G5 ProLiant servers and higher.
293 if (dev
->subsystem_vendor
!= PCI_VENDOR_ID_HP
&&
294 dev
->subsystem_vendor
!= PCI_VENDOR_ID_HP_3PAR
) {
296 "This server does not have an iLO2+ ASIC.\n");
300 if (pci_match_id(hpwdt_blacklist
, dev
)) {
301 dev_dbg(&dev
->dev
, "Not supported on this device\n");
305 if (pci_enable_device(dev
)) {
307 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
308 ent
->vendor
, ent
->device
);
312 pci_mem_addr
= pci_iomap(dev
, 1, 0x80);
315 "Unable to detect the iLO2+ server memory.\n");
317 goto error_pci_iomap
;
319 hpwdt_nmistat
= pci_mem_addr
+ 0x6e;
320 hpwdt_timer_reg
= pci_mem_addr
+ 0x70;
321 hpwdt_timer_con
= pci_mem_addr
+ 0x72;
323 /* Have the core update running timer until user space is ready */
324 if (hpwdt_hw_is_running()) {
325 dev_info(&dev
->dev
, "timer is running\n");
326 set_bit(WDOG_HW_RUNNING
, &hpwdt_dev
.status
);
329 /* Initialize NMI Decoding functionality */
330 retval
= hpwdt_init_nmi_decoding(dev
);
332 goto error_init_nmi_decoding
;
334 watchdog_stop_on_unregister(&hpwdt_dev
);
335 watchdog_set_nowayout(&hpwdt_dev
, nowayout
);
336 watchdog_init_timeout(&hpwdt_dev
, soft_margin
, NULL
);
338 if (is_kdump_kernel()) {
343 if (pretimeout
&& hpwdt_dev
.timeout
<= PRETIMEOUT_SEC
) {
344 dev_warn(&dev
->dev
, "timeout <= pretimeout. Setting pretimeout to zero\n");
347 hpwdt_dev
.pretimeout
= pretimeout
? PRETIMEOUT_SEC
: 0;
348 kdumptimeout
= min(kdumptimeout
, HPWDT_MAX_TIMER
);
350 hpwdt_dev
.parent
= &dev
->dev
;
351 retval
= watchdog_register_device(&hpwdt_dev
);
353 goto error_wd_register
;
355 dev_info(&dev
->dev
, "HPE Watchdog Timer Driver: Version: %s\n",
357 dev_info(&dev
->dev
, "timeout: %d seconds (nowayout=%d)\n",
358 hpwdt_dev
.timeout
, nowayout
);
359 dev_info(&dev
->dev
, "pretimeout: %s.\n",
360 pretimeout
? "on" : "off");
361 dev_info(&dev
->dev
, "kdumptimeout: %d.\n", kdumptimeout
);
363 if (dev
->subsystem_vendor
== PCI_VENDOR_ID_HP_3PAR
)
369 hpwdt_exit_nmi_decoding();
370 error_init_nmi_decoding
:
371 pci_iounmap(dev
, pci_mem_addr
);
373 pci_disable_device(dev
);
377 static void hpwdt_exit(struct pci_dev
*dev
)
379 watchdog_unregister_device(&hpwdt_dev
);
380 hpwdt_exit_nmi_decoding();
381 pci_iounmap(dev
, pci_mem_addr
);
382 pci_disable_device(dev
);
385 static struct pci_driver hpwdt_driver
= {
387 .id_table
= hpwdt_devices
,
388 .probe
= hpwdt_init_one
,
389 .remove
= hpwdt_exit
,
392 MODULE_AUTHOR("Tom Mingarelli");
393 MODULE_DESCRIPTION("hpe watchdog driver");
394 MODULE_LICENSE("GPL");
395 MODULE_VERSION(HPWDT_VERSION
);
397 module_param(soft_margin
, int, 0);
398 MODULE_PARM_DESC(soft_margin
, "Watchdog timeout in seconds");
400 module_param_named(timeout
, soft_margin
, int, 0);
401 MODULE_PARM_DESC(timeout
, "Alias of soft_margin");
403 module_param(nowayout
, bool, 0);
404 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
405 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
407 module_param(kdumptimeout
, int, 0444);
408 MODULE_PARM_DESC(kdumptimeout
, "Timeout applied for crash kernel transition in seconds");
410 #ifdef CONFIG_HPWDT_NMI_DECODING
411 module_param(pretimeout
, bool, 0);
412 MODULE_PARM_DESC(pretimeout
, "Watchdog pretimeout enabled");
415 module_pci_driver(hpwdt_driver
);