blob: 93562304f7aa4f51441154640fa3031d89234fa2 [file] [log] [blame]
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00001/*
Mingarelli, Thomasca22e792015-12-14 20:22:09 +00002 * HPE WatchDog Driver
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00003 * based on
4 *
5 * SoftDog 0.05: A Software Watchdog Device
6 *
Jerry Hoemann9a46fc42018-02-25 20:22:19 -07007 * (c) Copyright 2018 Hewlett Packard Enterprise Development LP
Mingarelli, Thomasca22e792015-12-14 20:22:09 +00008 * Thomas Mingarelli <thomas.mingarelli@hpe.com>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +00009 *
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
13 *
14 */
15
Joe Perches27c766a2012-02-15 15:06:19 -080016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000018#include <linux/device.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000019#include <linux/io.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000020#include <linux/kernel.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000021#include <linux/module.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000022#include <linux/moduleparam.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000023#include <linux/pci.h>
24#include <linux/pci_ids.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000025#include <linux/types.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000026#include <linux/watchdog.h>
Ingo Molnard48b0e12011-10-06 14:20:27 +020027#include <asm/nmi.h>
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000028
Jerry Hoemanne1c7f792018-08-08 13:13:27 -060029#define HPWDT_VERSION "2.0.1"
dann fraziere802e322010-06-02 16:23:39 -060030#define SECS_TO_TICKS(secs) ((secs) * 1000 / 128)
dann frazier6f681c22010-06-02 16:23:40 -060031#define TICKS_TO_SECS(ticks) ((ticks) * 128 / 1000)
32#define HPWDT_MAX_TIMER TICKS_TO_SECS(65535)
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);
dann frazier923410d2010-07-27 17:50:54 -060040
41static void __iomem *pci_mem_addr; /* the PCI-memory address */
Jerry Hoemann838534e2017-10-23 16:46:17 -060042static unsigned long __iomem *hpwdt_nmistat;
dann frazier923410d2010-07-27 17:50:54 -060043static unsigned long __iomem *hpwdt_timer_reg;
44static unsigned long __iomem *hpwdt_timer_con;
45
Jingoo Hanbc17f9d2013-12-03 08:30:22 +090046static const struct pci_device_id hpwdt_devices[] = {
dann frazier36e3ff42010-07-27 17:50:57 -060047 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
48 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
dann frazier923410d2010-07-27 17:50:54 -060049 {0}, /* terminate list */
50};
51MODULE_DEVICE_TABLE(pci, hpwdt_devices);
52
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000053
54/*
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000055 * Watchdog operations
56 */
Jerry Hoemannd0a40272018-02-25 20:22:22 -070057static int hpwdt_start(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000058{
Jerry Hoemann0458f402018-02-25 20:22:25 -070059 int control = 0x81 | (pretimeout ? 0x4 : 0);
60 int reload = SECS_TO_TICKS(wdd->timeout);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070061
Jerry Hoemannccfd6922018-02-25 20:22:26 -070062 dev_dbg(wdd->parent, "start watchdog 0x%08x:0x%02x\n", reload, control);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000063 iowrite16(reload, hpwdt_timer_reg);
Jerry Hoemann0458f402018-02-25 20:22:25 -070064 iowrite8(control, hpwdt_timer_con);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070065
66 return 0;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000067}
68
69static void hpwdt_stop(void)
70{
71 unsigned long data;
72
Jerry Hoemannccfd6922018-02-25 20:22:26 -070073 pr_debug("stop watchdog\n");
74
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000075 data = ioread8(hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000076 data &= 0xFE;
Mingarelli, Thomasd08c9a32012-04-03 05:37:01 +000077 iowrite8(data, hpwdt_timer_con);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000078}
79
Jerry Hoemannd0a40272018-02-25 20:22:22 -070080static int hpwdt_stop_core(struct watchdog_device *wdd)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000081{
Jerry Hoemannd0a40272018-02-25 20:22:22 -070082 hpwdt_stop();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +000083
84 return 0;
85}
86
Jerry Hoemannd0a40272018-02-25 20:22:22 -070087static int hpwdt_ping(struct watchdog_device *wdd)
88{
Jerry Hoemann0458f402018-02-25 20:22:25 -070089 int reload = SECS_TO_TICKS(wdd->timeout);
90
Jerry Hoemannccfd6922018-02-25 20:22:26 -070091 dev_dbg(wdd->parent, "ping watchdog 0x%08x\n", reload);
Jerry Hoemannd0a40272018-02-25 20:22:22 -070092 iowrite16(reload, hpwdt_timer_reg);
Jerry Hoemann0458f402018-02-25 20:22:25 -070093
Jerry Hoemannd0a40272018-02-25 20:22:22 -070094 return 0;
95}
96
97static unsigned int hpwdt_gettimeleft(struct watchdog_device *wdd)
dann frazieraae67f32010-06-02 16:23:41 -060098{
99 return TICKS_TO_SECS(ioread16(hpwdt_timer_reg));
100}
101
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700102static int hpwdt_settimeout(struct watchdog_device *wdd, unsigned int val)
103{
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700104 dev_dbg(wdd->parent, "set_timeout = %d\n", val);
105
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700106 wdd->timeout = val;
Jerry Hoemann0458f402018-02-25 20:22:25 -0700107 if (val <= wdd->pretimeout) {
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700108 dev_dbg(wdd->parent, "pretimeout < timeout. Setting to zero\n");
Jerry Hoemann0458f402018-02-25 20:22:25 -0700109 wdd->pretimeout = 0;
110 pretimeout = 0;
111 if (watchdog_active(wdd))
112 hpwdt_start(wdd);
113 }
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700114 hpwdt_ping(wdd);
115
116 return 0;
117}
118
Arnd Bergmannaeebc6b2017-12-06 22:02:37 +0100119#ifdef CONFIG_HPWDT_NMI_DECODING
Jerry Hoemann0458f402018-02-25 20:22:25 -0700120static int hpwdt_set_pretimeout(struct watchdog_device *wdd, unsigned int req)
121{
122 unsigned int val = 0;
123
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700124 dev_dbg(wdd->parent, "set_pretimeout = %d\n", req);
Jerry Hoemann0458f402018-02-25 20:22:25 -0700125 if (req) {
126 val = PRETIMEOUT_SEC;
127 if (val >= wdd->timeout)
128 return -EINVAL;
129 }
130
Jerry Hoemannccfd6922018-02-25 20:22:26 -0700131 if (val != req)
132 dev_dbg(wdd->parent, "Rounding pretimeout to: %d\n", val);
133
Jerry Hoemann0458f402018-02-25 20:22:25 -0700134 wdd->pretimeout = val;
135 pretimeout = !!val;
136
137 if (watchdog_active(wdd))
138 hpwdt_start(wdd);
139
140 return 0;
141}
142
Jerry Hoemann838534e2017-10-23 16:46:17 -0600143static int hpwdt_my_nmi(void)
144{
145 return ioread8(hpwdt_nmistat) & 0x6;
146}
147
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000148/*
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000149 * NMI Handler
150 */
Don Zickus9c48f1c2011-09-30 15:06:21 -0400151static int hpwdt_pretimeout(unsigned int ulReason, struct pt_regs *regs)
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000152{
Jerry Hoemanna0422292018-02-25 20:22:21 -0700153 unsigned int mynmi = hpwdt_my_nmi();
154 static char panic_msg[] =
155 "00: An NMI occurred. Depending on your system the reason "
156 "for the NMI is logged in any one of the following resources:\n"
157 "1. Integrated Management Log (IML)\n"
158 "2. OA Syslog\n"
159 "3. OA Forward Progress Log\n"
160 "4. iLO Event Log";
161
Jerry Hoemann62290a52018-05-03 15:00:55 -0600162 if (ilo5 && ulReason == NMI_UNKNOWN && !mynmi)
Jerry Hoemann838534e2017-10-23 16:46:17 -0600163 return NMI_DONE;
164
Jerry Hoemann093d4382018-08-08 13:13:24 -0600165 if (ilo5 && !pretimeout && !mynmi)
Jerry Hoemann0458f402018-02-25 20:22:25 -0700166 return NMI_DONE;
167
Jerry Hoemann703fc3d2018-02-25 20:22:24 -0700168 hpwdt_stop();
Naga Chumbalkardbc018e2011-08-09 22:27:26 +0000169
Jerry Hoemanna0422292018-02-25 20:22:21 -0700170 hex_byte_pack(panic_msg, mynmi);
171 nmi_panic(regs, panic_msg);
Thomas Mingarelli5efc7a62011-07-26 14:05:53 +0100172
Hidehiro Kawaiabc514c2016-03-22 14:27:24 -0700173 return NMI_HANDLED;
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000174}
dann frazier86ded1f2010-07-27 17:51:02 -0600175#endif /* CONFIG_HPWDT_NMI_DECODING */
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000176
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000177
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000178static const struct watchdog_info ident = {
Jerry Hoemann0458f402018-02-25 20:22:25 -0700179 .options = WDIOF_PRETIMEOUT |
180 WDIOF_SETTIMEOUT |
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000181 WDIOF_KEEPALIVEPING |
182 WDIOF_MAGICCLOSE,
Mingarelli, Thomasca22e792015-12-14 20:22:09 +0000183 .identity = "HPE iLO2+ HW Watchdog Timer",
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000184};
185
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000186/*
187 * Kernel interfaces
188 */
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700189
190static const struct watchdog_ops hpwdt_ops = {
191 .owner = THIS_MODULE,
192 .start = hpwdt_start,
193 .stop = hpwdt_stop_core,
194 .ping = hpwdt_ping,
195 .set_timeout = hpwdt_settimeout,
196 .get_timeleft = hpwdt_gettimeleft,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700197#ifdef CONFIG_HPWDT_NMI_DECODING
198 .set_pretimeout = hpwdt_set_pretimeout,
199#endif
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000200};
201
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700202static struct watchdog_device hpwdt_dev = {
203 .info = &ident,
204 .ops = &hpwdt_ops,
205 .min_timeout = 1,
206 .max_timeout = HPWDT_MAX_TIMER,
207 .timeout = DEFAULT_MARGIN,
Jerry Hoemann0458f402018-02-25 20:22:25 -0700208 .pretimeout = PRETIMEOUT_SEC,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000209};
210
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700211
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000212/*
213 * Init & Exit
214 */
215
Bill Pemberton2d991a12012-11-19 13:21:41 -0500216static int hpwdt_init_nmi_decoding(struct pci_dev *dev)
dann frazier2ec7ed62010-07-28 12:38:43 -0600217{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700218#ifdef CONFIG_HPWDT_NMI_DECODING
dann frazier2ec7ed62010-07-28 12:38:43 -0600219 int retval;
dann frazier2ec7ed62010-07-28 12:38:43 -0600220 /*
Don Zickus09ee1012012-03-29 16:11:15 -0400221 * Only one function can register for NMI_UNKNOWN
dann frazier2ec7ed62010-07-28 12:38:43 -0600222 */
Don Zickus09ee1012012-03-29 16:11:15 -0400223 retval = register_nmi_handler(NMI_UNKNOWN, hpwdt_pretimeout, 0, "hpwdt");
Don Zickus553222f2012-03-29 16:11:16 -0400224 if (retval)
225 goto error;
226 retval = register_nmi_handler(NMI_SERR, hpwdt_pretimeout, 0, "hpwdt");
227 if (retval)
228 goto error1;
229 retval = register_nmi_handler(NMI_IO_CHECK, hpwdt_pretimeout, 0, "hpwdt");
230 if (retval)
231 goto error2;
dann frazier2ec7ed62010-07-28 12:38:43 -0600232
233 dev_info(&dev->dev,
Jerry Hoemann703fc3d2018-02-25 20:22:24 -0700234 "HPE Watchdog Timer Driver: NMI decoding initialized\n");
235
dann frazier2ec7ed62010-07-28 12:38:43 -0600236 return 0;
Don Zickus553222f2012-03-29 16:11:16 -0400237
238error2:
239 unregister_nmi_handler(NMI_SERR, "hpwdt");
240error1:
241 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
242error:
243 dev_warn(&dev->dev,
244 "Unable to register a die notifier (err=%d).\n",
245 retval);
Don Zickus553222f2012-03-29 16:11:16 -0400246 return retval;
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700247#endif /* CONFIG_HPWDT_NMI_DECODING */
dann frazier86ded1f2010-07-27 17:51:02 -0600248 return 0;
249}
250
Axel Linb77b7082011-03-02 11:49:44 +0800251static void hpwdt_exit_nmi_decoding(void)
dann frazier86ded1f2010-07-27 17:51:02 -0600252{
Jerry Hoemann2b3d89b2018-02-25 20:22:20 -0700253#ifdef CONFIG_HPWDT_NMI_DECODING
254 unregister_nmi_handler(NMI_UNKNOWN, "hpwdt");
255 unregister_nmi_handler(NMI_SERR, "hpwdt");
256 unregister_nmi_handler(NMI_IO_CHECK, "hpwdt");
257#endif
dann frazier86ded1f2010-07-27 17:51:02 -0600258}
Thomas Mingarelli47bece82009-06-04 19:50:45 +0000259
Bill Pemberton2d991a12012-11-19 13:21:41 -0500260static int hpwdt_init_one(struct pci_dev *dev,
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000261 const struct pci_device_id *ent)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000262{
263 int retval;
264
265 /*
dann frazier36e3ff42010-07-27 17:50:57 -0600266 * First let's find out if we are on an iLO2+ server. We will
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000267 * not run on a legacy ASM box.
Thomas Mingarelliab4ba3c2008-07-15 19:40:41 +0000268 * So we only support the G5 ProLiant servers and higher.
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000269 */
Brian Boylstonfc113d52016-09-26 13:57:14 -0500270 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP &&
271 dev->subsystem_vendor != PCI_VENDOR_ID_HP_3PAR) {
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000272 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600273 "This server does not have an iLO2+ ASIC.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000274 return -ENODEV;
275 }
276
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000277 /*
278 * Ignore all auxilary iLO devices with the following PCI ID
279 */
Brian Boylstonfc113d52016-09-26 13:57:14 -0500280 if (dev->subsystem_vendor == PCI_VENDOR_ID_HP &&
281 dev->subsystem_device == 0x1979)
Mingarelli, Thomas0821f202013-08-09 16:31:09 +0000282 return -ENODEV;
283
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000284 if (pci_enable_device(dev)) {
285 dev_warn(&dev->dev,
286 "Not possible to enable PCI Device: 0x%x:0x%x.\n",
287 ent->vendor, ent->device);
288 return -ENODEV;
289 }
290
291 pci_mem_addr = pci_iomap(dev, 1, 0x80);
292 if (!pci_mem_addr) {
293 dev_warn(&dev->dev,
dann frazier36e3ff42010-07-27 17:50:57 -0600294 "Unable to detect the iLO2+ server memory.\n");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000295 retval = -ENOMEM;
296 goto error_pci_iomap;
297 }
Jerry Hoemann838534e2017-10-23 16:46:17 -0600298 hpwdt_nmistat = pci_mem_addr + 0x6e;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000299 hpwdt_timer_reg = pci_mem_addr + 0x70;
300 hpwdt_timer_con = pci_mem_addr + 0x72;
301
Toshi Kani308b1352012-08-27 12:52:24 -0600302 /* Make sure that timer is disabled until /dev/watchdog is opened */
303 hpwdt_stop();
304
dann frazier2ec7ed62010-07-28 12:38:43 -0600305 /* Initialize NMI Decoding functionality */
306 retval = hpwdt_init_nmi_decoding(dev);
307 if (retval != 0)
308 goto error_init_nmi_decoding;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000309
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700310 watchdog_set_nowayout(&hpwdt_dev, nowayout);
311 if (watchdog_init_timeout(&hpwdt_dev, soft_margin, NULL))
312 dev_warn(&dev->dev, "Invalid soft_margin: %d.\n", soft_margin);
313
Jerry Hoemann10d790d12018-09-21 14:50:39 -0600314 if (pretimeout && hpwdt_dev.timeout <= PRETIMEOUT_SEC) {
315 dev_warn(&dev->dev, "timeout <= pretimeout. Setting pretimeout to zero\n");
316 pretimeout = 0;
317 }
Jerry Hoemann4d9186d2018-08-08 13:13:23 -0600318 hpwdt_dev.pretimeout = pretimeout ? PRETIMEOUT_SEC : 0;
319
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700320 hpwdt_dev.parent = &dev->dev;
321 retval = watchdog_register_device(&hpwdt_dev);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000322 if (retval < 0) {
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700323 dev_err(&dev->dev, "watchdog register failed: %d.\n", retval);
324 goto error_wd_register;
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000325 }
326
Jerry Hoemann92301462018-08-08 13:13:25 -0600327 dev_info(&dev->dev, "HPE Watchdog Timer Driver: Version: %s\n",
328 HPWDT_VERSION);
329 dev_info(&dev->dev, "timeout: %d seconds (nowayout=%d)\n",
330 hpwdt_dev.timeout, nowayout);
331 dev_info(&dev->dev, "pretimeout: %s.\n",
332 pretimeout ? "on" : "off");
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700333
Jerry Hoemanna6c24732018-02-25 20:22:23 -0700334 if (dev->subsystem_vendor == PCI_VENDOR_ID_HP_3PAR)
335 ilo5 = true;
336
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000337 return 0;
338
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700339error_wd_register:
dann frazier2ec7ed62010-07-28 12:38:43 -0600340 hpwdt_exit_nmi_decoding();
341error_init_nmi_decoding:
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000342 pci_iounmap(dev, pci_mem_addr);
343error_pci_iomap:
344 pci_disable_device(dev);
345 return retval;
346}
347
Bill Pemberton4b12b892012-11-19 13:26:24 -0500348static void hpwdt_exit(struct pci_dev *dev)
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000349{
350 if (!nowayout)
351 hpwdt_stop();
352
Jerry Hoemannd0a40272018-02-25 20:22:22 -0700353 watchdog_unregister_device(&hpwdt_dev);
dann frazier2ec7ed62010-07-28 12:38:43 -0600354 hpwdt_exit_nmi_decoding();
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000355 pci_iounmap(dev, pci_mem_addr);
356 pci_disable_device(dev);
357}
358
359static struct pci_driver hpwdt_driver = {
360 .name = "hpwdt",
361 .id_table = hpwdt_devices,
362 .probe = hpwdt_init_one,
Bill Pemberton82268712012-11-19 13:21:12 -0500363 .remove = hpwdt_exit,
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000364};
365
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000366MODULE_AUTHOR("Tom Mingarelli");
Jerry Hoemann9a46fc42018-02-25 20:22:19 -0700367MODULE_DESCRIPTION("hpe watchdog driver");
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000368MODULE_LICENSE("GPL");
Thomas Mingarellid8100c32009-03-03 00:17:16 +0000369MODULE_VERSION(HPWDT_VERSION);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000370
371module_param(soft_margin, int, 0);
372MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
373
Jerry Hoemann397a35d2018-08-08 13:13:26 -0600374module_param_named(timeout, soft_margin, int, 0);
375MODULE_PARM_DESC(timeout, "Alias of soft_margin");
376
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100377module_param(nowayout, bool, 0);
Thomas Mingarelli7f4da472007-12-04 17:41:54 +0000378MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
379 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
380
Jerry Hoemann0458f402018-02-25 20:22:25 -0700381#ifdef CONFIG_HPWDT_NMI_DECODING
382module_param(pretimeout, bool, 0);
383MODULE_PARM_DESC(pretimeout, "Watchdog pretimeout enabled");
384#endif
385
Wim Van Sebroeck5ce9c372012-05-04 14:43:25 +0200386module_pci_driver(hpwdt_driver);