blob: 7d34bcf1c45b4eb012f3fd1f42d832fac7adc672 [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>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000024
Jerry Hoemannf1bb45b2019-05-17 14:59:43 -060025#define HPWDT_VERSION "2.0.3"
dann fraziere802e322010-06-02 16:23:39 -060026#define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
dann frazier6f681c22010-06-02 16:23:40 -060027#define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060028#define HPWDT_MAX_TICKS 65535
29#define HPWDT_MAX_TIMER TICKS_TO_SECS(HPWDT_MAX_TICKS)
dann frazier923410d2010-07-27 17:50:54 -060030#define DEFAULT_MARGIN 30
Jerry Hoemann0458f402018-02-25 20:22:25 -070031#define PRETIMEOUT_SEC 9
dann frazier923410d2010-07-27 17:50:54 -060032
Jerry Hoemanna6c24732018-02-25 20:22:23 -070033static bool ilo5;
dann frazier923410d2010-07-27 17:50:54 -060034static unsigned int soft_margin = DEFAULT_MARGIN; /* in seconds */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010035static bool nowayout = WATCHDOG_NOWAYOUT;
Jerry Hoemann0458f402018-02-25 20:22:25 -070036static bool pretimeout = IS_ENABLED(CONFIG_HPWDT_NMI_DECODING);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060037static int kdumptimeout = -1;
dann frazier923410d2010-07-27 17:50:54 -060038
39static void __iomem *pci_mem_addr; /* the PCI-memory address */
Jerry Hoemann838534e2017-10-23 16:46:17 -060040static unsigned long __iomem *hpwdt_nmistat;
dann frazier923410d2010-07-27 17:50:54 -060041static unsigned long __iomem *hpwdt_timer_reg;
42static unsigned long __iomem *hpwdt_timer_con;
43
Jingoo Hanbc17f9d2013-12-03 08:30:22 +090044static const struct pci_device_id hpwdt_devices[] = {
dann frazier36e3ff42010-07-27 17:50:57 -060045 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
46 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
dann frazier923410d2010-07-27 17:50:54 -060047 {0}, /* terminate list */
48};
49MODULE_DEVICE_TABLE(pci, hpwdt_devices);
50
Jerry Hoemann94d6b802018-12-05 17:42:21 -070051static const struct pci_device_id hpwdt_blacklist[] = {
52 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP, 0x1979) }, /* auxilary iLO */
Jerry Hoemannde2cb0c2018-12-05 17:42:22 -070053 { PCI_DEVICE_SUB(PCI_VENDOR_ID_HP, 0x3306, PCI_VENDOR_ID_HP_3PAR, 0x0289) }, /* CL */
Jerry Hoemann94d6b802018-12-05 17:42:21 -070054 {0}, /* terminate list */
55};
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000056
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060057static struct watchdog_device hpwdt_dev;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000058/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000059 * Watchdog operations
60 */
Jerry Hoemannbb721d62019-05-17 14:59:40 -060061static int hpwdt_hw_is_running(void)
62{
63 return ioread8(hpwdt_timer_con) & 0x01;
64}
65
Jerry Hoemannd0a40272018-02-25 20:22:22 -070066static int hpwdt_start(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000067{
Jerry Hoemann0458f402018-02-25 20:22:25 -070068 int control = 0x81 | (pretimeout ? 0x4 : 0);
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060069 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemannd0a40272018-02-25 20:22:22 -070070
Jerry Hoemannc22d8e32019-05-17 14:59:39 -060071 dev_dbg(wdd->parent, "start watchdog 0x%08x:0x%08x:0x%02x\n", wdd->timeout, reload, control);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000072 iowrite16(reload, hpwdt_timer_reg);
Jerry Hoemann0458f402018-02-25 20:22:25 -070073 iowrite8(control, hpwdt_timer_con);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070074
75 return 0;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000076}
77
78static void hpwdt_stop(void)
79{
80 unsigned long data;
81
Jerry Hoemannccfd6922018-02-25 20:22:26 -070082 pr_debug("stop watchdog\n");
83
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000084 data = ioread8(hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000085 data &= 0xFE;
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000086 iowrite8(data, hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000087}
88
Jerry Hoemannd0a40272018-02-25 20:22:22 -070089static int hpwdt_stop_core(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000090{
Jerry Hoemannd0a40272018-02-25 20:22:22 -070091 hpwdt_stop();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000092
93 return 0;
94}
95
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -060096static void hpwdt_ping_ticks(int val)
97{
98 val = min(val, HPWDT_MAX_TICKS);
99 iowrite16(val, hpwdt_timer_reg);
100}
101
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700102static int hpwdt_ping(struct watchdog_device *wdd)
103{
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600104 int reload = SECS_TO_TICKS(min(wdd->timeout, wdd->max_hw_heartbeat_ms/1000));
Jerry Hoemann0458f402018-02-25 20:22:25 -0700105
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600106 dev_dbg(wdd->parent, "ping watchdog 0x%08x:0x%08x\n", wdd->timeout, reload);
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600107 hpwdt_ping_ticks(reload);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700108
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700109 return 0;
110}
111
112static unsigned int hpwdt_gettimeleft(struct watchdog_device *wdd)
dann frazieraae67f32010-06-02 16:23:41 -0600113{
114 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg));
115}
116
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700117static int hpwdt_settimeout(struct watchdog_device *wdd, unsigned int val)
118{
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700119 dev_dbg(wdd->parent, "set_timeout = %d\n", val);
120
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700121 wdd->timeout = val;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700122 if (val <= wdd->pretimeout) {
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700123 dev_dbg(wdd->parent, "pretimeout < timeout. Setting to zero\n");
Jerry Hoemann0458f402018-02-25 20:22:25 -0700124 wdd->pretimeout = 0;
125 pretimeout = 0;
126 if (watchdog_active(wdd))
127 hpwdt_start(wdd);
128 }
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700129 hpwdt_ping(wdd);
130
131 return 0;
132}
133
Arnd Bergmannaeebc6b2017-12-06 22:02:37 +0100134#ifdef CONFIG_HPWDT_NMI_DECODING
Jerry Hoemann0458f402018-02-25 20:22:25 -0700135static int hpwdt_set_pretimeout(struct watchdog_device *wdd, unsigned int req)
136{
137 unsigned int val = 0;
138
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700139 dev_dbg(wdd->parent, "set_pretimeout = %d\n", req);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700140 if (req) {
141 val = PRETIMEOUT_SEC;
142 if (val >= wdd->timeout)
143 return -EINVAL;
144 }
145
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700146 if (val != req)
147 dev_dbg(wdd->parent, "Rounding pretimeout to: %d\n", val);
148
Jerry Hoemann0458f402018-02-25 20:22:25 -0700149 wdd->pretimeout = val;
150 pretimeout = !!val;
151
152 if (watchdog_active(wdd))
153 hpwdt_start(wdd);
154
155 return 0;
156}
157
Jerry Hoemann838534e2017-10-23 16:46:17 -0600158static int hpwdt_my_nmi(void)
159{
160 return ioread8(hpwdt_nmistat) & 0x6;
161}
162
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000163/*
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000164 * NMI Handler
165 */
Don Zickus9c48f1c2011-09-30 15:06:21 -0400166static int hpwdt_pretimeout(unsigned int ulReason, struct pt_regs *regs)
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000167{
Jerry Hoemanna0422292018-02-25 20:22:21 -0700168 unsigned int mynmi = hpwdt_my_nmi();
169 static char panic_msg[] =
170 "00: An NMI occurred. Depending on your system the reason "
171 "for the NMI is logged in any one of the following resources:\n"
172 "1. Integrated Management Log (IML)\n"
173 "2. OA Syslog\n"
174 "3. OA Forward Progress Log\n"
175 "4. iLO Event Log";
176
Jerry Hoemann62290a52018-05-03 15:00:55 -0600177 if (ilo5 && ulReason == NMI_UNKNOWN && !mynmi)
Jerry Hoemann838534e2017-10-23 16:46:17 -0600178 return NMI_DONE;
179
Jerry Hoemann093d4382018-08-08 13:13:24 -0600180 if (ilo5 && !pretimeout && !mynmi)
Jerry Hoemann0458f402018-02-25 20:22:25 -0700181 return NMI_DONE;
182
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600183 if (kdumptimeout < 0)
184 hpwdt_stop();
185 else if (kdumptimeout == 0)
186 ;
187 else {
188 unsigned int val = max((unsigned int)kdumptimeout, hpwdt_dev.timeout);
189 hpwdt_ping_ticks(SECS_TO_TICKS(val));
190 }
Naga Chumbalkardbc018e2011-08-09 22:27:26 +0000191
Jerry Hoemanna0422292018-02-25 20:22:21 -0700192 hex_byte_pack(panic_msg, mynmi);
193 nmi_panic(regs, panic_msg);
Thomas Mingarelli5efc7a62011-07-26 14:05:53 +0100194
Hidehiro Kawaiabc514c2016-03-22 14:27:24 -0700195 return NMI_HANDLED;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000196}
dann frazier86ded1f2010-07-27 17:51:02 -0600197#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000198
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000199
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000200static const struct watchdog_info ident = {
Jerry Hoemann0458f402018-02-25 20:22:25 -0700201 .options = WDIOF_PRETIMEOUT |
202 WDIOF_SETTIMEOUT |
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000203 WDIOF_KEEPALIVEPING |
204 WDIOF_MAGICCLOSE,
Mingarelli, Thomasca22e792015-12-14 20:22:09 +0000205 .identity = "HPE iLO2+ HW Watchdog Timer",
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000206};
207
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000208/*
209 * Kernel interfaces
210 */
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700211
212static const struct watchdog_ops hpwdt_ops = {
213 .owner = THIS_MODULE,
214 .start = hpwdt_start,
215 .stop = hpwdt_stop_core,
216 .ping = hpwdt_ping,
217 .set_timeout = hpwdt_settimeout,
218 .get_timeleft = hpwdt_gettimeleft,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700219#ifdef CONFIG_HPWDT_NMI_DECODING
220 .set_pretimeout = hpwdt_set_pretimeout,
221#endif
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000222};
223
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700224static struct watchdog_device hpwdt_dev = {
225 .info = &ident,
226 .ops = &hpwdt_ops,
227 .min_timeout = 1,
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700228 .timeout = DEFAULT_MARGIN,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700229 .pretimeout = PRETIMEOUT_SEC,
Jerry Hoemannc22d8e32019-05-17 14:59:39 -0600230 .max_hw_heartbeat_ms = HPWDT_MAX_TIMER * 1000,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000231};
232
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700233
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000234/*
235 * Init & Exit
236 */
237
Bill Pemberton2d991a12012-11-19 13:21:41 -0500238static int hpwdt_init_nmi_decoding(struct pci_dev *dev)
dann frazier2ec7ed62010-07-28 12:38:43 -0600239{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700240#ifdef CONFIG_HPWDT_NMI_DECODING
dann frazier2ec7ed62010-07-28 12:38:43 -0600241 int retval;
dann frazier2ec7ed62010-07-28 12:38:43 -0600242 /*
Don Zickus09ee1012012-03-29 16:11:15 -0400243 * Only one function can register for NMI_UNKNOWN
dann frazier2ec7ed62010-07-28 12:38:43 -0600244 */
Don Zickus09ee1012012-03-29 16:11:15 -0400245 retval = register_nmi_handler(NMI_UNKNOWN, hpwdt_pretimeout, 0, "hpwdt");
Don Zickus553222f2012-03-29 16:11:16 -0400246 if (retval)
247 goto error;
248 retval = register_nmi_handler(NMI_SERR, hpwdt_pretimeout, 0, "hpwdt");
249 if (retval)
250 goto error1;
251 retval = register_nmi_handler(NMI_IO_CHECK, hpwdt_pretimeout, 0, "hpwdt");
252 if (retval)
253 goto error2;
dann frazier2ec7ed62010-07-28 12:38:43 -0600254
255 dev_info(&dev->dev,
Jerry Hoemann703fc3d2018-02-25 20:22:24 -0700256 "HPE Watchdog Timer Driver: NMI decoding initialized\n");
257
dann frazier2ec7ed62010-07-28 12:38:43 -0600258 return 0;
Don Zickus553222f2012-03-29 16:11:16 -0400259
260error2:
261 unregister_nmi_handler(NMI_SERR, "hpwdt");
262error1:
263 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
264error:
265 dev_warn(&dev->dev,
266 "Unable to register a die notifier (err=%d).\n",
267 retval);
Don Zickus553222f2012-03-29 16:11:16 -0400268 return retval;
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700269#endif /* CONFIG_HPWDT_NMI_DECODING */
dann frazier86ded1f2010-07-27 17:51:02 -0600270 return 0;
271}
272
Axel Linb77b7082011-03-02 11:49:44 +0800273static void hpwdt_exit_nmi_decoding(void)
dann frazier86ded1f2010-07-27 17:51:02 -0600274{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700275#ifdef CONFIG_HPWDT_NMI_DECODING
276 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
277 unregister_nmi_handler(NMI_SERR, "hpwdt");
278 unregister_nmi_handler(NMI_IO_CHECK, "hpwdt");
279#endif
dann frazier86ded1f2010-07-27 17:51:02 -0600280}
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000281
Bill Pemberton2d991a12012-11-19 13:21:41 -0500282static int hpwdt_init_one(struct pci_dev *dev,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000283 const struct pci_device_id *ent)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000284{
285 int retval;
286
287 /*
dann frazier36e3ff42010-07-27 17:50:57 -0600288 * First let's find out if we are on an iLO2+ server. We will
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000289 * not run on a legacy ASM box.
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000290 * So we only support the G5 ProLiant servers and higher.
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000291 */
Brian Boylstonfc113d52016-09-26 13:57:14 -0500292 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP &&
293 dev->subsystem_vendor != PCI_VENDOR_ID_HP_3PAR) {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000294 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600295 "This server does not have an iLO2+ ASIC.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000296 return -ENODEV;
297 }
298
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700299 if (pci_match_id(hpwdt_blacklist, dev)) {
300 dev_dbg(&dev->dev, "Not supported on this device\n");
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000301 return -ENODEV;
Jerry Hoemann94d6b802018-12-05 17:42:21 -0700302 }
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000303
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000304 if (pci_enable_device(dev)) {
305 dev_warn(&dev->dev,
306 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
307 ent->vendor, ent->device);
308 return -ENODEV;
309 }
310
311 pci_mem_addr = pci_iomap(dev, 1, 0x80);
312 if (!pci_mem_addr) {
313 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600314 "Unable to detect the iLO2+ server memory.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000315 retval = -ENOMEM;
316 goto error_pci_iomap;
317 }
Jerry Hoemann838534e2017-10-23 16:46:17 -0600318 hpwdt_nmistat = pci_mem_addr + 0x6e;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000319 hpwdt_timer_reg = pci_mem_addr + 0x70;
320 hpwdt_timer_con = pci_mem_addr + 0x72;
321
Jerry Hoemannbb721d62019-05-17 14:59:40 -0600322 /* Have the core update running timer until user space is ready */
323 if (hpwdt_hw_is_running()) {
324 dev_info(&dev->dev, "timer is running\n");
325 set_bit(WDOG_HW_RUNNING, &hpwdt_dev.status);
326 }
Toshi Kani308b1352012-08-27 12:52:24 -0600327
dann frazier2ec7ed62010-07-28 12:38:43 -0600328 /* Initialize NMI Decoding functionality */
329 retval = hpwdt_init_nmi_decoding(dev);
330 if (retval != 0)
331 goto error_init_nmi_decoding;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000332
Jerry Hoemann48b32192019-05-17 14:59:38 -0600333 watchdog_stop_on_unregister(&hpwdt_dev);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700334 watchdog_set_nowayout(&hpwdt_dev, nowayout);
Wolfram Sang87dfe212019-04-19 20:15:51 +0200335 watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700336
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600337 if (pretimeout && hpwdt_dev.timeout <= PRETIMEOUT_SEC) {
338 dev_warn(&dev->dev, "timeout <= pretimeout. Setting pretimeout to zero\n");
339 pretimeout = 0;
340 }
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600341 hpwdt_dev.pretimeout = pretimeout ? PRETIMEOUT_SEC : 0;
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600342 kdumptimeout = min(kdumptimeout, HPWDT_MAX_TIMER);
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600343
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700344 hpwdt_dev.parent = &dev->dev;
345 retval = watchdog_register_device(&hpwdt_dev);
Wolfram Sangf51540b2019-05-18 23:27:28 +0200346 if (retval < 0)
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700347 goto error_wd_register;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000348
Jerry Hoemann92301462018-08-08 13:13:25 -0600349 dev_info(&dev->dev, "HPE Watchdog Timer Driver: Version: %s\n",
350 HPWDT_VERSION);
351 dev_info(&dev->dev, "timeout: %d seconds (nowayout=%d)\n",
352 hpwdt_dev.timeout, nowayout);
353 dev_info(&dev->dev, "pretimeout: %s.\n",
354 pretimeout ? "on" : "off");
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600355 dev_info(&dev->dev, "kdumptimeout: %d.\n", kdumptimeout);
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700356
Jerry Hoemanna6c24732018-02-25 20:22:23 -0700357 if (dev->subsystem_vendor == PCI_VENDOR_ID_HP_3PAR)
358 ilo5 = true;
359
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000360 return 0;
361
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700362error_wd_register:
dann frazier2ec7ed62010-07-28 12:38:43 -0600363 hpwdt_exit_nmi_decoding();
364error_init_nmi_decoding:
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000365 pci_iounmap(dev, pci_mem_addr);
366error_pci_iomap:
367 pci_disable_device(dev);
368 return retval;
369}
370
Bill Pemberton4b12b892012-11-19 13:26:24 -0500371static void hpwdt_exit(struct pci_dev *dev)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000372{
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700373 watchdog_unregister_device(&hpwdt_dev);
dann frazier2ec7ed62010-07-28 12:38:43 -0600374 hpwdt_exit_nmi_decoding();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000375 pci_iounmap(dev, pci_mem_addr);
376 pci_disable_device(dev);
377}
378
379static struct pci_driver hpwdt_driver = {
380 .name = "hpwdt",
381 .id_table = hpwdt_devices,
382 .probe = hpwdt_init_one,
Bill Pemberton82268712012-11-19 13:21:12 -0500383 .remove = hpwdt_exit,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000384};
385
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000386MODULE_AUTHOR("Tom Mingarelli");
Jerry Hoemann9a46fc42018-02-25 20:22:19 -0700387MODULE_DESCRIPTION("hpe watchdog driver");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000388MODULE_LICENSE("GPL");
Thomas Mingarellid8100c32009-03-03 00:17:16 +0000389MODULE_VERSION(HPWDT_VERSION);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000390
391module_param(soft_margin, int, 0);
392MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
393
Jerry Hoemann397a35d2018-08-08 13:13:26 -0600394module_param_named(timeout, soft_margin, int, 0);
395MODULE_PARM_DESC(timeout, "Alias of soft_margin");
396
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100397module_param(nowayout, bool, 0);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000398MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
399 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
400
Jerry Hoemannbe3d7f72019-05-17 14:59:41 -0600401module_param(kdumptimeout, int, 0444);
402MODULE_PARM_DESC(kdumptimeout, "Timeout applied for crash kernel transition in seconds");
403
Jerry Hoemann0458f402018-02-25 20:22:25 -0700404#ifdef CONFIG_HPWDT_NMI_DECODING
405module_param(pretimeout, bool, 0);
406MODULE_PARM_DESC(pretimeout, "Watchdog pretimeout enabled");
407#endif
408
Wim Van Sebroeck5ce9c372012-05-04 14:43:25 +0200409module_pci_driver(hpwdt_driver);