blob: 22ddba3802ef6c9251f46f7d27936cd8db91c7fb [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00002/*
Mingarelli, Thomasca22e792015-12-14 20:22:09 +00003 * HPE WatchDog Driver
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00004 * based on
5 *
6 * SoftDog 0.05: A Software Watchdog Device
7 *
Jerry Hoemann9a46fc42018-02-25 20:22:19 -07008 * (c) Copyright 2018 Hewlett Packard Enterprise Development LP
Mingarelli, Thomasca22e792015-12-14 20:22:09 +00009 * Thomas Mingarelli <thomas.mingarelli@hpe.com>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000010 */
11
Joe Perches27c766a2012-02-15 15:06:19 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000014#include <linux/device.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000015#include <linux/io.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000016#include <linux/kernel.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000017#include <linux/module.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000018#include <linux/moduleparam.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000019#include <linux/pci.h>
20#include <linux/pci_ids.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000021#include <linux/types.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000022#include <linux/watchdog.h>
Ingo Molnard48b0e12011-10-06 14:20:27 +020023#include <asm/nmi.h>
Jerry Hoemannacc195b2020-11-22 19:08:39 -070024#include <linux/crash_dump.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000025
Jerry Hoemann5674b742020-11-22 19:08:40 -070026#define HPWDT_VERSION "2.0.4"
dann fraziere802e322010-06-02 16:23:39 -060027#define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
dann frazier6f681c22010-06-02 16:23:40 -060028#define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060029#define HPWDT_MAX_TICKS 65535
30#define HPWDT_MAX_TIMER TICKS_TO_SECS(HPWDT_MAX_TICKS)
dann frazier923410d2010-07-27 17:50:54 -060031#define DEFAULT_MARGIN 30
Jerry Hoemann0458f402018-02-25 20:22:25 -070032#define PRETIMEOUT_SEC 9
dann frazier923410d2010-07-27 17:50:54 -060033
Jerry Hoemanna6c24732018-02-25 20:22:23 -070034static bool ilo5;
dann frazier923410d2010-07-27 17:50:54 -060035static unsigned int soft_margin = DEFAULT_MARGIN; /* in seconds */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010036static bool nowayout = WATCHDOG_NOWAYOUT;
Jerry Hoemann0458f402018-02-25 20:22:25 -070037static bool pretimeout = IS_ENABLED(CONFIG_HPWDT_NMI_DECODING);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060038static int kdumptimeout = -1;
dann frazier923410d2010-07-27 17:50:54 -060039
40static void __iomem *pci_mem_addr; /* the PCI-memory address */
Jerry Hoemann838534e2017-10-23 16:46:17 -060041static unsigned long __iomem *hpwdt_nmistat;
dann frazier923410d2010-07-27 17:50:54 -060042static unsigned long __iomem *hpwdt_timer_reg;
43static unsigned long __iomem *hpwdt_timer_con;
44
Jingoo Hanbc17f9d2013-12-03 08:30:22 +090045static const struct pci_device_id hpwdt_devices[] = {
dann frazier36e3ff42010-07-27 17:50:57 -060046 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
47 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
dann frazier923410d2010-07-27 17:50:54 -060048 {0}, /* terminate list */
49};
50MODULE_DEVICE_TABLE(pci, hpwdt_devices);
51
Jerry Hoemann94d6b802018-12-05 17:42:21 -070052static const struct pci_device_id hpwdt_blacklist[] = {
53 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP, 0x1979) }, /* auxilary iLO */
Jerry Hoemannde2cb0c2018-12-05 17:42:22 -070054 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP_3PAR, 0x0289) }, /* CL */
Jerry Hoemann94d6b802018-12-05 17:42:21 -070055 {0}, /* terminate list */
56};
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000057
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060058static struct watchdog_device hpwdt_dev;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000059/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000060 * Watchdog operations
61 */
Jerry Hoemannbb721d62019-05-17 14:59:40 -060062static int hpwdt_hw_is_running(void)
63{
64 return ioread8(hpwdt_timer_con) & 0x01;
65}
66
Jerry Hoemannd0a40272018-02-25 20:22:22 -070067static int hpwdt_start(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000068{
Jerry Hoemann0458f402018-02-25 20:22:25 -070069 int control = 0x81 | (pretimeout ? 0x4 : 0);
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060070 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemannd0a40272018-02-25 20:22:22 -070071
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060072 dev_dbg(wdd->parent, "start watchdog 0x%08x:0x%08x:0x%02x\n", wdd->timeout, reload, control);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000073 iowrite16(reload, hpwdt_timer_reg);
Jerry Hoemann0458f402018-02-25 20:22:25 -070074 iowrite8(control, hpwdt_timer_con);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070075
76 return 0;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000077}
78
79static void hpwdt_stop(void)
80{
81 unsigned long data;
82
Jerry Hoemannccfd6922018-02-25 20:22:26 -070083 pr_debug("stop watchdog\n");
84
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000085 data = ioread8(hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000086 data &= 0xFE;
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000087 iowrite8(data, hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000088}
89
Jerry Hoemannd0a40272018-02-25 20:22:22 -070090static int hpwdt_stop_core(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000091{
Jerry Hoemannd0a40272018-02-25 20:22:22 -070092 hpwdt_stop();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000093
94 return 0;
95}
96
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060097static void hpwdt_ping_ticks(int val)
98{
99 val = min(val, HPWDT_MAX_TICKS);
100 iowrite16(val, hpwdt_timer_reg);
101}
102
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700103static int hpwdt_ping(struct watchdog_device *wdd)
104{
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600105 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemann0458f402018-02-25 20:22:25 -0700106
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600107 dev_dbg(wdd->parent, "ping watchdog 0x%08x:0x%08x\n", wdd->timeout, reload);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600108 hpwdt_ping_ticks(reload);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700109
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700110 return 0;
111}
112
113static unsigned int hpwdt_gettimeleft(struct watchdog_device *wdd)
dann frazieraae67f32010-06-02 16:23:41 -0600114{
115 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg));
116}
117
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700118static int hpwdt_settimeout(struct watchdog_device *wdd, unsigned int val)
119{
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700120 dev_dbg(wdd->parent, "set_timeout = %d\n", val);
121
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700122 wdd->timeout = val;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700123 if (val <= wdd->pretimeout) {
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700124 dev_dbg(wdd->parent, "pretimeout < timeout. Setting to zero\n");
Jerry Hoemann0458f402018-02-25 20:22:25 -0700125 wdd->pretimeout = 0;
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800126 pretimeout = false;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700127 if (watchdog_active(wdd))
128 hpwdt_start(wdd);
129 }
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700130 hpwdt_ping(wdd);
131
132 return 0;
133}
134
Arnd Bergmannaeebc6b2017-12-06 22:02:37 +0100135#ifdef CONFIG_HPWDT_NMI_DECODING
Jerry Hoemann0458f402018-02-25 20:22:25 -0700136static int hpwdt_set_pretimeout(struct watchdog_device *wdd, unsigned int req)
137{
138 unsigned int val = 0;
139
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700140 dev_dbg(wdd->parent, "set_pretimeout = %d\n", req);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700141 if (req) {
142 val = PRETIMEOUT_SEC;
143 if (val >= wdd->timeout)
144 return -EINVAL;
145 }
146
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700147 if (val != req)
148 dev_dbg(wdd->parent, "Rounding pretimeout to: %d\n", val);
149
Jerry Hoemann0458f402018-02-25 20:22:25 -0700150 wdd->pretimeout = val;
151 pretimeout = !!val;
152
153 if (watchdog_active(wdd))
154 hpwdt_start(wdd);
155
156 return 0;
157}
158
Jerry Hoemann838534e2017-10-23 16:46:17 -0600159static int hpwdt_my_nmi(void)
160{
161 return ioread8(hpwdt_nmistat) & 0x6;
162}
163
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000164/*
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000165 * NMI Handler
166 */
Don Zickus9c48f1c2011-09-30 15:06:21 -0400167static int hpwdt_pretimeout(unsigned int ulReason, struct pt_regs *regs)
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000168{
Jerry Hoemanna0422292018-02-25 20:22:21 -0700169 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"
174 "2. OA Syslog\n"
175 "3. OA Forward Progress Log\n"
176 "4. iLO Event Log";
177
Jerry Hoemann62290a52018-05-03 15:00:55 -0600178 if (ilo5 && ulReason == NMI_UNKNOWN && !mynmi)
Jerry Hoemann838534e2017-10-23 16:46:17 -0600179 return NMI_DONE;
180
Jerry Hoemann093d4382018-08-08 13:13:24 -0600181 if (ilo5 && !pretimeout && !mynmi)
Jerry Hoemann0458f402018-02-25 20:22:25 -0700182 return NMI_DONE;
183
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600184 if (kdumptimeout < 0)
185 hpwdt_stop();
186 else if (kdumptimeout == 0)
187 ;
188 else {
189 unsigned int val = max((unsigned int)kdumptimeout, hpwdt_dev.timeout);
190 hpwdt_ping_ticks(SECS_TO_TICKS(val));
191 }
Naga Chumbalkardbc018e2011-08-09 22:27:26 +0000192
Jerry Hoemanna0422292018-02-25 20:22:21 -0700193 hex_byte_pack(panic_msg, mynmi);
194 nmi_panic(regs, panic_msg);
Thomas Mingarelli5efc7a62011-07-26 14:05:53 +0100195
Hidehiro Kawaiabc514c2016-03-22 14:27:24 -0700196 return NMI_HANDLED;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000197}
dann frazier86ded1f2010-07-27 17:51:02 -0600198#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000199
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000200
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000201static const struct watchdog_info ident = {
Jerry Hoemann0458f402018-02-25 20:22:25 -0700202 .options = WDIOF_PRETIMEOUT |
203 WDIOF_SETTIMEOUT |
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000204 WDIOF_KEEPALIVEPING |
205 WDIOF_MAGICCLOSE,
Mingarelli, Thomasca22e792015-12-14 20:22:09 +0000206 .identity = "HPE iLO2+ HW Watchdog Timer",
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000207};
208
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000209/*
210 * Kernel interfaces
211 */
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700212
213static const struct watchdog_ops hpwdt_ops = {
214 .owner = THIS_MODULE,
215 .start = hpwdt_start,
216 .stop = hpwdt_stop_core,
217 .ping = hpwdt_ping,
218 .set_timeout = hpwdt_settimeout,
219 .get_timeleft = hpwdt_gettimeleft,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700220#ifdef CONFIG_HPWDT_NMI_DECODING
221 .set_pretimeout = hpwdt_set_pretimeout,
222#endif
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000223};
224
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700225static struct watchdog_device hpwdt_dev = {
226 .info = &ident,
227 .ops = &hpwdt_ops,
228 .min_timeout = 1,
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700229 .timeout = DEFAULT_MARGIN,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700230 .pretimeout = PRETIMEOUT_SEC,
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600231 .max_hw_heartbeat_ms = HPWDT_MAX_TIMER * 1000,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000232};
233
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700234
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000235/*
236 * Init & Exit
237 */
238
Bill Pemberton2d991a12012-11-19 13:21:41 -0500239static int hpwdt_init_nmi_decoding(struct pci_dev *dev)
dann frazier2ec7ed62010-07-28 12:38:43 -0600240{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700241#ifdef CONFIG_HPWDT_NMI_DECODING
dann frazier2ec7ed62010-07-28 12:38:43 -0600242 int retval;
dann frazier2ec7ed62010-07-28 12:38:43 -0600243 /*
Don Zickus09ee1012012-03-29 16:11:15 -0400244 * Only one function can register for NMI_UNKNOWN
dann frazier2ec7ed62010-07-28 12:38:43 -0600245 */
Don Zickus09ee1012012-03-29 16:11:15 -0400246 retval = register_nmi_handler(NMI_UNKNOWN, hpwdt_pretimeout, 0, "hpwdt");
Don Zickus553222f2012-03-29 16:11:16 -0400247 if (retval)
248 goto error;
249 retval = register_nmi_handler(NMI_SERR, hpwdt_pretimeout, 0, "hpwdt");
250 if (retval)
251 goto error1;
252 retval = register_nmi_handler(NMI_IO_CHECK, hpwdt_pretimeout, 0, "hpwdt");
253 if (retval)
254 goto error2;
dann frazier2ec7ed62010-07-28 12:38:43 -0600255
256 dev_info(&dev->dev,
Jerry Hoemann703fc3d2018-02-25 20:22:24 -0700257 "HPE Watchdog Timer Driver: NMI decoding initialized\n");
258
dann frazier2ec7ed62010-07-28 12:38:43 -0600259 return 0;
Don Zickus553222f2012-03-29 16:11:16 -0400260
261error2:
262 unregister_nmi_handler(NMI_SERR, "hpwdt");
263error1:
264 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
265error:
266 dev_warn(&dev->dev,
267 "Unable to register a die notifier (err=%d).\n",
268 retval);
Don Zickus553222f2012-03-29 16:11:16 -0400269 return retval;
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700270#endif /* CONFIG_HPWDT_NMI_DECODING */
dann frazier86ded1f2010-07-27 17:51:02 -0600271 return 0;
272}
273
Axel Linb77b7082011-03-02 11:49:44 +0800274static void hpwdt_exit_nmi_decoding(void)
dann frazier86ded1f2010-07-27 17:51:02 -0600275{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700276#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");
280#endif
dann frazier86ded1f2010-07-27 17:51:02 -0600281}
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000282
Bill Pemberton2d991a12012-11-19 13:21:41 -0500283static int hpwdt_init_one(struct pci_dev *dev,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000284 const struct pci_device_id *ent)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000285{
286 int retval;
287
288 /*
dann frazier36e3ff42010-07-27 17:50:57 -0600289 * First let's find out if we are on an iLO2+ server. We will
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000290 * not run on a legacy ASM box.
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000291 * So we only support the G5 ProLiant servers and higher.
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000292 */
Brian Boylstonfc113d52016-09-26 13:57:14 -0500293 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP &&
294 dev->subsystem_vendor != PCI_VENDOR_ID_HP_3PAR) {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000295 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600296 "This server does not have an iLO2+ ASIC.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000297 return -ENODEV;
298 }
299
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700300 if (pci_match_id(hpwdt_blacklist, dev)) {
301 dev_dbg(&dev->dev, "Not supported on this device\n");
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000302 return -ENODEV;
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700303 }
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000304
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000305 if (pci_enable_device(dev)) {
306 dev_warn(&dev->dev,
307 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
308 ent->vendor, ent->device);
309 return -ENODEV;
310 }
311
312 pci_mem_addr = pci_iomap(dev, 1, 0x80);
313 if (!pci_mem_addr) {
314 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600315 "Unable to detect the iLO2+ server memory.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000316 retval = -ENOMEM;
317 goto error_pci_iomap;
318 }
Jerry Hoemann838534e2017-10-23 16:46:17 -0600319 hpwdt_nmistat = pci_mem_addr + 0x6e;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000320 hpwdt_timer_reg = pci_mem_addr + 0x70;
321 hpwdt_timer_con = pci_mem_addr + 0x72;
322
Jerry Hoemannbb721d62019-05-17 14:59:40 -0600323 /* 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);
327 }
Toshi Kani308b1352012-08-27 12:52:24 -0600328
dann frazier2ec7ed62010-07-28 12:38:43 -0600329 /* Initialize NMI Decoding functionality */
330 retval = hpwdt_init_nmi_decoding(dev);
331 if (retval != 0)
332 goto error_init_nmi_decoding;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000333
Jerry Hoemann48b32192019-05-17 14:59:38 -0600334 watchdog_stop_on_unregister(&hpwdt_dev);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700335 watchdog_set_nowayout(&hpwdt_dev, nowayout);
Wolfram Sang87dfe212019-04-19 20:15:51 +0200336 watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700337
Jerry Hoemannacc195b2020-11-22 19:08:39 -0700338 if (is_kdump_kernel()) {
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800339 pretimeout = false;
Jerry Hoemannacc195b2020-11-22 19:08:39 -0700340 kdumptimeout = 0;
341 }
342
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600343 if (pretimeout && hpwdt_dev.timeout <= PRETIMEOUT_SEC) {
344 dev_warn(&dev->dev, "timeout <= pretimeout. Setting pretimeout to zero\n");
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800345 pretimeout = false;
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600346 }
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600347 hpwdt_dev.pretimeout = pretimeout ? PRETIMEOUT_SEC : 0;
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600348 kdumptimeout = min(kdumptimeout, HPWDT_MAX_TIMER);
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600349
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700350 hpwdt_dev.parent = &dev->dev;
351 retval = watchdog_register_device(&hpwdt_dev);
Wolfram Sangf51540b2019-05-18 23:27:28 +0200352 if (retval < 0)
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700353 goto error_wd_register;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000354
Jerry Hoemann92301462018-08-08 13:13:25 -0600355 dev_info(&dev->dev, "HPE Watchdog Timer Driver: Version: %s\n",
356 HPWDT_VERSION);
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");
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600361 dev_info(&dev->dev, "kdumptimeout: %d.\n", kdumptimeout);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700362
Jerry Hoemanna6c24732018-02-25 20:22:23 -0700363 if (dev->subsystem_vendor == PCI_VENDOR_ID_HP_3PAR)
364 ilo5 = true;
365
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000366 return 0;
367
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700368error_wd_register:
dann frazier2ec7ed62010-07-28 12:38:43 -0600369 hpwdt_exit_nmi_decoding();
370error_init_nmi_decoding:
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000371 pci_iounmap(dev, pci_mem_addr);
372error_pci_iomap:
373 pci_disable_device(dev);
374 return retval;
375}
376
Bill Pemberton4b12b892012-11-19 13:26:24 -0500377static void hpwdt_exit(struct pci_dev *dev)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000378{
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700379 watchdog_unregister_device(&hpwdt_dev);
dann frazier2ec7ed62010-07-28 12:38:43 -0600380 hpwdt_exit_nmi_decoding();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000381 pci_iounmap(dev, pci_mem_addr);
382 pci_disable_device(dev);
383}
384
385static struct pci_driver hpwdt_driver = {
386 .name = "hpwdt",
387 .id_table = hpwdt_devices,
388 .probe = hpwdt_init_one,
Bill Pemberton82268712012-11-19 13:21:12 -0500389 .remove = hpwdt_exit,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000390};
391
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000392MODULE_AUTHOR("Tom Mingarelli");
Jerry Hoemann9a46fc42018-02-25 20:22:19 -0700393MODULE_DESCRIPTION("hpe watchdog driver");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000394MODULE_LICENSE("GPL");
Thomas Mingarellid8100c32009-03-03 00:17:16 +0000395MODULE_VERSION(HPWDT_VERSION);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000396
397module_param(soft_margin, int, 0);
398MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
399
Jerry Hoemann397a35d2018-08-08 13:13:26 -0600400module_param_named(timeout, soft_margin, int, 0);
401MODULE_PARM_DESC(timeout, "Alias of soft_margin");
402
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100403module_param(nowayout, bool, 0);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000404MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
405 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
406
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600407module_param(kdumptimeout, int, 0444);
408MODULE_PARM_DESC(kdumptimeout, "Timeout applied for crash kernel transition in seconds");
409
Jerry Hoemann0458f402018-02-25 20:22:25 -0700410#ifdef CONFIG_HPWDT_NMI_DECODING
411module_param(pretimeout, bool, 0);
412MODULE_PARM_DESC(pretimeout, "Watchdog pretimeout enabled");
413#endif
414
Wim Van Sebroeck5ce9c372012-05-04 14:43:25 +0200415module_pci_driver(hpwdt_driver);