blob: f79f932bca14898fc70ca2dd58fc3f5b4320ec78 [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>
Jerry Hoemanned835d82022-08-20 14:28:20 -060023#ifdef CONFIG_HPWDT_NMI_DECODING
Ingo Molnard48b0e12011-10-06 14:20:27 +020024#include <asm/nmi.h>
Jerry Hoemanned835d82022-08-20 14:28:20 -060025#endif
Jerry Hoemannacc195b2020-11-22 19:08:39 -070026#include <linux/crash_dump.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000027
Jerry Hoemann5674b742020-11-22 19:08:40 -070028#define HPWDT_VERSION "2.0.4"
dann fraziere802e322010-06-02 16:23:39 -060029#define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
dann frazier6f681c22010-06-02 16:23:40 -060030#define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060031#define HPWDT_MAX_TICKS 65535
32#define HPWDT_MAX_TIMER TICKS_TO_SECS(HPWDT_MAX_TICKS)
dann frazier923410d2010-07-27 17:50:54 -060033#define DEFAULT_MARGIN 30
Jerry Hoemann0458f402018-02-25 20:22:25 -070034#define PRETIMEOUT_SEC 9
dann frazier923410d2010-07-27 17:50:54 -060035
Jerry Hoemanna6c24732018-02-25 20:22:23 -070036static bool ilo5;
dann frazier923410d2010-07-27 17:50:54 -060037static unsigned int soft_margin = DEFAULT_MARGIN; /* in seconds */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010038static bool nowayout = WATCHDOG_NOWAYOUT;
Jerry Hoemann0458f402018-02-25 20:22:25 -070039static bool pretimeout = IS_ENABLED(CONFIG_HPWDT_NMI_DECODING);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060040static int kdumptimeout = -1;
dann frazier923410d2010-07-27 17:50:54 -060041
42static void __iomem *pci_mem_addr; /* the PCI-memory address */
Jerry Hoemann838534e52017-10-23 16:46:17 -060043static unsigned long __iomem *hpwdt_nmistat;
dann frazier923410d2010-07-27 17:50:54 -060044static unsigned long __iomem *hpwdt_timer_reg;
45static unsigned long __iomem *hpwdt_timer_con;
46
Jingoo Hanbc17f9d2013-12-03 08:30:22 +090047static const struct pci_device_id hpwdt_devices[] = {
dann frazier36e3ff442010-07-27 17:50:57 -060048 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
49 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
Jerry Hoemann742b80c2021-05-12 22:03:32 -060050 { PCI_DEVICE(PCI_VENDOR_ID_HP_3PAR, 0x0389) }, /* PCtrl */
dann frazier923410d2010-07-27 17:50:54 -060051 {0}, /* terminate list */
52};
53MODULE_DEVICE_TABLE(pci, hpwdt_devices);
54
Jerry Hoemann94d6b802018-12-05 17:42:21 -070055static const struct pci_device_id hpwdt_blacklist[] = {
56 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP, 0x1979) }, /* auxilary iLO */
Jerry Hoemannde2cb0c2018-12-05 17:42:22 -070057 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP_3PAR, 0x0289) }, /* CL */
Jerry Hoemann94d6b802018-12-05 17:42:21 -070058 {0}, /* terminate list */
59};
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000060
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060061static struct watchdog_device hpwdt_dev;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000062/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000063 * Watchdog operations
64 */
Jerry Hoemannbb721d62019-05-17 14:59:40 -060065static int hpwdt_hw_is_running(void)
66{
67 return ioread8(hpwdt_timer_con) & 0x01;
68}
69
Jerry Hoemannd0a40272018-02-25 20:22:22 -070070static int hpwdt_start(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000071{
Jerry Hoemann0458f402018-02-25 20:22:25 -070072 int control = 0x81 | (pretimeout ? 0x4 : 0);
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060073 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemannd0a40272018-02-25 20:22:22 -070074
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060075 dev_dbg(wdd->parent, "start watchdog 0x%08x:0x%08x:0x%02x\n", wdd->timeout, reload, control);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000076 iowrite16(reload, hpwdt_timer_reg);
Jerry Hoemann0458f402018-02-25 20:22:25 -070077 iowrite8(control, hpwdt_timer_con);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070078
79 return 0;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000080}
81
82static void hpwdt_stop(void)
83{
84 unsigned long data;
85
Jerry Hoemannccfd6922018-02-25 20:22:26 -070086 pr_debug("stop watchdog\n");
87
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000088 data = ioread8(hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000089 data &= 0xFE;
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000090 iowrite8(data, hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000091}
92
Jerry Hoemannd0a40272018-02-25 20:22:22 -070093static int hpwdt_stop_core(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000094{
Jerry Hoemannd0a40272018-02-25 20:22:22 -070095 hpwdt_stop();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000096
97 return 0;
98}
99
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600100static void hpwdt_ping_ticks(int val)
101{
102 val = min(val, HPWDT_MAX_TICKS);
103 iowrite16(val, hpwdt_timer_reg);
104}
105
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700106static int hpwdt_ping(struct watchdog_device *wdd)
107{
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600108 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemann0458f402018-02-25 20:22:25 -0700109
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600110 dev_dbg(wdd->parent, "ping watchdog 0x%08x:0x%08x\n", wdd->timeout, reload);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600111 hpwdt_ping_ticks(reload);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700112
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700113 return 0;
114}
115
116static unsigned int hpwdt_gettimeleft(struct watchdog_device *wdd)
dann frazieraae67f32010-06-02 16:23:41 -0600117{
118 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg));
119}
120
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700121static int hpwdt_settimeout(struct watchdog_device *wdd, unsigned int val)
122{
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700123 dev_dbg(wdd->parent, "set_timeout = %d\n", val);
124
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700125 wdd->timeout = val;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700126 if (val <= wdd->pretimeout) {
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700127 dev_dbg(wdd->parent, "pretimeout < timeout. Setting to zero\n");
Jerry Hoemann0458f402018-02-25 20:22:25 -0700128 wdd->pretimeout = 0;
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800129 pretimeout = false;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700130 if (watchdog_active(wdd))
131 hpwdt_start(wdd);
132 }
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700133 hpwdt_ping(wdd);
134
135 return 0;
136}
137
Arnd Bergmannaeebc6b2017-12-06 22:02:37 +0100138#ifdef CONFIG_HPWDT_NMI_DECODING
Jerry Hoemann0458f402018-02-25 20:22:25 -0700139static int hpwdt_set_pretimeout(struct watchdog_device *wdd, unsigned int req)
140{
141 unsigned int val = 0;
142
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700143 dev_dbg(wdd->parent, "set_pretimeout = %d\n", req);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700144 if (req) {
145 val = PRETIMEOUT_SEC;
146 if (val >= wdd->timeout)
147 return -EINVAL;
148 }
149
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700150 if (val != req)
151 dev_dbg(wdd->parent, "Rounding pretimeout to: %d\n", val);
152
Jerry Hoemann0458f402018-02-25 20:22:25 -0700153 wdd->pretimeout = val;
154 pretimeout = !!val;
155
156 if (watchdog_active(wdd))
157 hpwdt_start(wdd);
158
159 return 0;
160}
161
Jerry Hoemann838534e52017-10-23 16:46:17 -0600162static int hpwdt_my_nmi(void)
163{
164 return ioread8(hpwdt_nmistat) & 0x6;
165}
166
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000167/*
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000168 * NMI Handler
169 */
Don Zickus9c48f1c2011-09-30 15:06:21 -0400170static int hpwdt_pretimeout(unsigned int ulReason, struct pt_regs *regs)
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000171{
Jerry Hoemanna0422292018-02-25 20:22:21 -0700172 unsigned int mynmi = hpwdt_my_nmi();
173 static char panic_msg[] =
174 "00: An NMI occurred. Depending on your system the reason "
175 "for the NMI is logged in any one of the following resources:\n"
176 "1. Integrated Management Log (IML)\n"
177 "2. OA Syslog\n"
178 "3. OA Forward Progress Log\n"
179 "4. iLO Event Log";
180
Jerry Hoemann62290a52018-05-03 15:00:55 -0600181 if (ilo5 && ulReason == NMI_UNKNOWN && !mynmi)
Jerry Hoemann838534e52017-10-23 16:46:17 -0600182 return NMI_DONE;
183
Jerry Hoemann093d4382018-08-08 13:13:24 -0600184 if (ilo5 && !pretimeout && !mynmi)
Jerry Hoemann0458f402018-02-25 20:22:25 -0700185 return NMI_DONE;
186
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600187 if (kdumptimeout < 0)
188 hpwdt_stop();
189 else if (kdumptimeout == 0)
190 ;
191 else {
192 unsigned int val = max((unsigned int)kdumptimeout, hpwdt_dev.timeout);
193 hpwdt_ping_ticks(SECS_TO_TICKS(val));
194 }
Naga Chumbalkardbc018e2011-08-09 22:27:26 +0000195
Jerry Hoemanna0422292018-02-25 20:22:21 -0700196 hex_byte_pack(panic_msg, mynmi);
197 nmi_panic(regs, panic_msg);
Thomas Mingarelli5efc7a62011-07-26 14:05:53 +0100198
Hidehiro Kawaiabc514c2016-03-22 14:27:24 -0700199 return NMI_HANDLED;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000200}
dann frazier86ded1f2010-07-27 17:51:02 -0600201#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000202
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000203
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000204static const struct watchdog_info ident = {
Jerry Hoemann0458f402018-02-25 20:22:25 -0700205 .options = WDIOF_PRETIMEOUT |
206 WDIOF_SETTIMEOUT |
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000207 WDIOF_KEEPALIVEPING |
208 WDIOF_MAGICCLOSE,
Mingarelli, Thomasca22e792015-12-14 20:22:09 +0000209 .identity = "HPE iLO2+ HW Watchdog Timer",
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000210};
211
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000212/*
213 * Kernel interfaces
214 */
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700215
216static const struct watchdog_ops hpwdt_ops = {
217 .owner = THIS_MODULE,
218 .start = hpwdt_start,
219 .stop = hpwdt_stop_core,
220 .ping = hpwdt_ping,
221 .set_timeout = hpwdt_settimeout,
222 .get_timeleft = hpwdt_gettimeleft,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700223#ifdef CONFIG_HPWDT_NMI_DECODING
224 .set_pretimeout = hpwdt_set_pretimeout,
225#endif
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000226};
227
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700228static struct watchdog_device hpwdt_dev = {
229 .info = &ident,
230 .ops = &hpwdt_ops,
231 .min_timeout = 1,
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700232 .timeout = DEFAULT_MARGIN,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700233 .pretimeout = PRETIMEOUT_SEC,
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600234 .max_hw_heartbeat_ms = HPWDT_MAX_TIMER * 1000,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000235};
236
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700237
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000238/*
239 * Init & Exit
240 */
241
Bill Pemberton2d991a12012-11-19 13:21:41 -0500242static int hpwdt_init_nmi_decoding(struct pci_dev *dev)
dann frazier2ec7ed62010-07-28 12:38:43 -0600243{
Jerry Hoemann2b3d89b42018-02-25 20:22:20 -0700244#ifdef CONFIG_HPWDT_NMI_DECODING
dann frazier2ec7ed62010-07-28 12:38:43 -0600245 int retval;
dann frazier2ec7ed62010-07-28 12:38:43 -0600246 /*
Don Zickus09ee1012012-03-29 16:11:15 -0400247 * Only one function can register for NMI_UNKNOWN
dann frazier2ec7ed62010-07-28 12:38:43 -0600248 */
Don Zickus09ee1012012-03-29 16:11:15 -0400249 retval = register_nmi_handler(NMI_UNKNOWN, hpwdt_pretimeout, 0, "hpwdt");
Don Zickus553222f2012-03-29 16:11:16 -0400250 if (retval)
251 goto error;
252 retval = register_nmi_handler(NMI_SERR, hpwdt_pretimeout, 0, "hpwdt");
253 if (retval)
254 goto error1;
255 retval = register_nmi_handler(NMI_IO_CHECK, hpwdt_pretimeout, 0, "hpwdt");
256 if (retval)
257 goto error2;
dann frazier2ec7ed62010-07-28 12:38:43 -0600258
259 dev_info(&dev->dev,
Jerry Hoemann703fc3d2018-02-25 20:22:24 -0700260 "HPE Watchdog Timer Driver: NMI decoding initialized\n");
261
dann frazier2ec7ed62010-07-28 12:38:43 -0600262 return 0;
Don Zickus553222f2012-03-29 16:11:16 -0400263
264error2:
265 unregister_nmi_handler(NMI_SERR, "hpwdt");
266error1:
267 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
268error:
269 dev_warn(&dev->dev,
270 "Unable to register a die notifier (err=%d).\n",
271 retval);
Don Zickus553222f2012-03-29 16:11:16 -0400272 return retval;
Jerry Hoemann2b3d89b42018-02-25 20:22:20 -0700273#endif /* CONFIG_HPWDT_NMI_DECODING */
dann frazier86ded1f2010-07-27 17:51:02 -0600274 return 0;
275}
276
Axel Linb77b7082011-03-02 11:49:44 +0800277static void hpwdt_exit_nmi_decoding(void)
dann frazier86ded1f2010-07-27 17:51:02 -0600278{
Jerry Hoemann2b3d89b42018-02-25 20:22:20 -0700279#ifdef CONFIG_HPWDT_NMI_DECODING
280 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
281 unregister_nmi_handler(NMI_SERR, "hpwdt");
282 unregister_nmi_handler(NMI_IO_CHECK, "hpwdt");
283#endif
dann frazier86ded1f2010-07-27 17:51:02 -0600284}
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000285
Bill Pemberton2d991a12012-11-19 13:21:41 -0500286static int hpwdt_init_one(struct pci_dev *dev,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000287 const struct pci_device_id *ent)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000288{
289 int retval;
290
291 /*
dann frazier36e3ff442010-07-27 17:50:57 -0600292 * First let's find out if we are on an iLO2+ server. We will
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000293 * not run on a legacy ASM box.
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000294 * So we only support the G5 ProLiant servers and higher.
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000295 */
Brian Boylstonfc113d52016-09-26 13:57:14 -0500296 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP &&
297 dev->subsystem_vendor != PCI_VENDOR_ID_HP_3PAR) {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000298 dev_warn(&dev->dev,
dann frazier36e3ff442010-07-27 17:50:57 -0600299 "This server does not have an iLO2+ ASIC.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000300 return -ENODEV;
301 }
302
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700303 if (pci_match_id(hpwdt_blacklist, dev)) {
304 dev_dbg(&dev->dev, "Not supported on this device\n");
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000305 return -ENODEV;
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700306 }
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000307
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000308 if (pci_enable_device(dev)) {
309 dev_warn(&dev->dev,
310 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
311 ent->vendor, ent->device);
312 return -ENODEV;
313 }
314
315 pci_mem_addr = pci_iomap(dev, 1, 0x80);
316 if (!pci_mem_addr) {
317 dev_warn(&dev->dev,
dann frazier36e3ff442010-07-27 17:50:57 -0600318 "Unable to detect the iLO2+ server memory.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000319 retval = -ENOMEM;
320 goto error_pci_iomap;
321 }
Jerry Hoemann838534e52017-10-23 16:46:17 -0600322 hpwdt_nmistat = pci_mem_addr + 0x6e;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000323 hpwdt_timer_reg = pci_mem_addr + 0x70;
324 hpwdt_timer_con = pci_mem_addr + 0x72;
325
Jerry Hoemannbb721d62019-05-17 14:59:40 -0600326 /* Have the core update running timer until user space is ready */
327 if (hpwdt_hw_is_running()) {
328 dev_info(&dev->dev, "timer is running\n");
329 set_bit(WDOG_HW_RUNNING, &hpwdt_dev.status);
330 }
Toshi Kani308b1352012-08-27 12:52:24 -0600331
dann frazier2ec7ed62010-07-28 12:38:43 -0600332 /* Initialize NMI Decoding functionality */
333 retval = hpwdt_init_nmi_decoding(dev);
334 if (retval != 0)
335 goto error_init_nmi_decoding;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000336
Jerry Hoemann48b32192019-05-17 14:59:38 -0600337 watchdog_stop_on_unregister(&hpwdt_dev);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700338 watchdog_set_nowayout(&hpwdt_dev, nowayout);
Wolfram Sang87dfe212019-04-19 20:15:51 +0200339 watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700340
Jerry Hoemannacc195b2020-11-22 19:08:39 -0700341 if (is_kdump_kernel()) {
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800342 pretimeout = false;
Jerry Hoemannacc195b2020-11-22 19:08:39 -0700343 kdumptimeout = 0;
344 }
345
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600346 if (pretimeout && hpwdt_dev.timeout <= PRETIMEOUT_SEC) {
347 dev_warn(&dev->dev, "timeout <= pretimeout. Setting pretimeout to zero\n");
Jiapeng Zhong17f0d1b2021-01-20 15:48:10 +0800348 pretimeout = false;
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600349 }
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600350 hpwdt_dev.pretimeout = pretimeout ? PRETIMEOUT_SEC : 0;
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600351 kdumptimeout = min(kdumptimeout, HPWDT_MAX_TIMER);
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600352
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700353 hpwdt_dev.parent = &dev->dev;
354 retval = watchdog_register_device(&hpwdt_dev);
Wolfram Sangf51540b2019-05-18 23:27:28 +0200355 if (retval < 0)
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700356 goto error_wd_register;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000357
Jerry Hoemann92301462018-08-08 13:13:25 -0600358 dev_info(&dev->dev, "HPE Watchdog Timer Driver: Version: %s\n",
359 HPWDT_VERSION);
360 dev_info(&dev->dev, "timeout: %d seconds (nowayout=%d)\n",
361 hpwdt_dev.timeout, nowayout);
362 dev_info(&dev->dev, "pretimeout: %s.\n",
363 pretimeout ? "on" : "off");
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600364 dev_info(&dev->dev, "kdumptimeout: %d.\n", kdumptimeout);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700365
Jerry Hoemanna6c24732018-02-25 20:22:23 -0700366 if (dev->subsystem_vendor == PCI_VENDOR_ID_HP_3PAR)
367 ilo5 = true;
368
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000369 return 0;
370
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700371error_wd_register:
dann frazier2ec7ed62010-07-28 12:38:43 -0600372 hpwdt_exit_nmi_decoding();
373error_init_nmi_decoding:
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000374 pci_iounmap(dev, pci_mem_addr);
375error_pci_iomap:
376 pci_disable_device(dev);
377 return retval;
378}
379
Bill Pemberton4b12b892012-11-19 13:26:24 -0500380static void hpwdt_exit(struct pci_dev *dev)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000381{
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700382 watchdog_unregister_device(&hpwdt_dev);
dann frazier2ec7ed62010-07-28 12:38:43 -0600383 hpwdt_exit_nmi_decoding();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000384 pci_iounmap(dev, pci_mem_addr);
385 pci_disable_device(dev);
386}
387
388static struct pci_driver hpwdt_driver = {
389 .name = "hpwdt",
390 .id_table = hpwdt_devices,
391 .probe = hpwdt_init_one,
Bill Pemberton82268712012-11-19 13:21:12 -0500392 .remove = hpwdt_exit,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000393};
394
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000395MODULE_AUTHOR("Tom Mingarelli");
Jerry Hoemann9a46fc42018-02-25 20:22:19 -0700396MODULE_DESCRIPTION("hpe watchdog driver");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000397MODULE_LICENSE("GPL");
Thomas Mingarellid8100c32009-03-03 00:17:16 +0000398MODULE_VERSION(HPWDT_VERSION);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000399
400module_param(soft_margin, int, 0);
401MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
402
Jerry Hoemann397a35d2018-08-08 13:13:26 -0600403module_param_named(timeout, soft_margin, int, 0);
404MODULE_PARM_DESC(timeout, "Alias of soft_margin");
405
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100406module_param(nowayout, bool, 0);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000407MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
408 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
409
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600410module_param(kdumptimeout, int, 0444);
411MODULE_PARM_DESC(kdumptimeout, "Timeout applied for crash kernel transition in seconds");
412
Jerry Hoemann0458f402018-02-25 20:22:25 -0700413#ifdef CONFIG_HPWDT_NMI_DECODING
414module_param(pretimeout, bool, 0);
415MODULE_PARM_DESC(pretimeout, "Watchdog pretimeout enabled");
416#endif
417
Wim Van Sebroeck5ce9c372012-05-04 14:43:25 +0200418module_pci_driver(hpwdt_driver);