GNU Linux-libre 4.14.313-gnu1
[releases.git] / drivers / char / ipmi / ipmi_watchdog.c
1 /*
2  * ipmi_watchdog.c
3  *
4  * A watchdog timer based upon the IPMI interface.
5  *
6  * Author: MontaVista Software, Inc.
7  *         Corey Minyard <minyard@mvista.com>
8  *         source@mvista.com
9  *
10  * Copyright 2002 MontaVista Software Inc.
11  *
12  *  This program is free software; you can redistribute it and/or modify it
13  *  under the terms of the GNU General Public License as published by the
14  *  Free Software Foundation; either version 2 of the License, or (at your
15  *  option) any later version.
16  *
17  *
18  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
24  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
27  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  *  You should have received a copy of the GNU General Public License along
30  *  with this program; if not, write to the Free Software Foundation, Inc.,
31  *  675 Mass Ave, Cambridge, MA 02139, USA.
32  */
33
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/ipmi.h>
37 #include <linux/ipmi_smi.h>
38 #include <linux/mutex.h>
39 #include <linux/watchdog.h>
40 #include <linux/miscdevice.h>
41 #include <linux/init.h>
42 #include <linux/completion.h>
43 #include <linux/kdebug.h>
44 #include <linux/rwsem.h>
45 #include <linux/errno.h>
46 #include <linux/uaccess.h>
47 #include <linux/notifier.h>
48 #include <linux/nmi.h>
49 #include <linux/reboot.h>
50 #include <linux/wait.h>
51 #include <linux/poll.h>
52 #include <linux/string.h>
53 #include <linux/ctype.h>
54 #include <linux/delay.h>
55 #include <linux/atomic.h>
56 #include <linux/sched/signal.h>
57
58 #ifdef CONFIG_X86
59 /*
60  * This is ugly, but I've determined that x86 is the only architecture
61  * that can reasonably support the IPMI NMI watchdog timeout at this
62  * time.  If another architecture adds this capability somehow, it
63  * will have to be a somewhat different mechanism and I have no idea
64  * how it will work.  So in the unlikely event that another
65  * architecture supports this, we can figure out a good generic
66  * mechanism for it at that time.
67  */
68 #include <asm/kdebug.h>
69 #include <asm/nmi.h>
70 #define HAVE_DIE_NMI
71 #endif
72
73 #define PFX "IPMI Watchdog: "
74
75 /*
76  * The IPMI command/response information for the watchdog timer.
77  */
78
79 /* values for byte 1 of the set command, byte 2 of the get response. */
80 #define WDOG_DONT_LOG           (1 << 7)
81 #define WDOG_DONT_STOP_ON_SET   (1 << 6)
82 #define WDOG_SET_TIMER_USE(byte, use) \
83         byte = ((byte) & 0xf8) | ((use) & 0x7)
84 #define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7)
85 #define WDOG_TIMER_USE_BIOS_FRB2        1
86 #define WDOG_TIMER_USE_BIOS_POST        2
87 #define WDOG_TIMER_USE_OS_LOAD          3
88 #define WDOG_TIMER_USE_SMS_OS           4
89 #define WDOG_TIMER_USE_OEM              5
90
91 /* values for byte 2 of the set command, byte 3 of the get response. */
92 #define WDOG_SET_PRETIMEOUT_ACT(byte, use) \
93         byte = ((byte) & 0x8f) | (((use) & 0x7) << 4)
94 #define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7)
95 #define WDOG_PRETIMEOUT_NONE            0
96 #define WDOG_PRETIMEOUT_SMI             1
97 #define WDOG_PRETIMEOUT_NMI             2
98 #define WDOG_PRETIMEOUT_MSG_INT         3
99
100 /* Operations that can be performed on a pretimout. */
101 #define WDOG_PREOP_NONE         0
102 #define WDOG_PREOP_PANIC        1
103 /* Cause data to be available to read.  Doesn't work in NMI mode. */
104 #define WDOG_PREOP_GIVE_DATA    2
105
106 /* Actions to perform on a full timeout. */
107 #define WDOG_SET_TIMEOUT_ACT(byte, use) \
108         byte = ((byte) & 0xf8) | ((use) & 0x7)
109 #define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7)
110 #define WDOG_TIMEOUT_NONE               0
111 #define WDOG_TIMEOUT_RESET              1
112 #define WDOG_TIMEOUT_POWER_DOWN         2
113 #define WDOG_TIMEOUT_POWER_CYCLE        3
114
115 /*
116  * Byte 3 of the get command, byte 4 of the get response is the
117  * pre-timeout in seconds.
118  */
119
120 /* Bits for setting byte 4 of the set command, byte 5 of the get response. */
121 #define WDOG_EXPIRE_CLEAR_BIOS_FRB2     (1 << 1)
122 #define WDOG_EXPIRE_CLEAR_BIOS_POST     (1 << 2)
123 #define WDOG_EXPIRE_CLEAR_OS_LOAD       (1 << 3)
124 #define WDOG_EXPIRE_CLEAR_SMS_OS        (1 << 4)
125 #define WDOG_EXPIRE_CLEAR_OEM           (1 << 5)
126
127 /*
128  * Setting/getting the watchdog timer value.  This is for bytes 5 and
129  * 6 (the timeout time) of the set command, and bytes 6 and 7 (the
130  * timeout time) and 8 and 9 (the current countdown value) of the
131  * response.  The timeout value is given in seconds (in the command it
132  * is 100ms intervals).
133  */
134 #define WDOG_SET_TIMEOUT(byte1, byte2, val) \
135         (byte1) = (((val) * 10) & 0xff), (byte2) = (((val) * 10) >> 8)
136 #define WDOG_GET_TIMEOUT(byte1, byte2) \
137         (((byte1) | ((byte2) << 8)) / 10)
138
139 #define IPMI_WDOG_RESET_TIMER           0x22
140 #define IPMI_WDOG_SET_TIMER             0x24
141 #define IPMI_WDOG_GET_TIMER             0x25
142
143 #define IPMI_WDOG_TIMER_NOT_INIT_RESP   0x80
144
145 static DEFINE_MUTEX(ipmi_watchdog_mutex);
146 static bool nowayout = WATCHDOG_NOWAYOUT;
147
148 static ipmi_user_t watchdog_user;
149 static int watchdog_ifnum;
150
151 /* Default the timeout to 10 seconds. */
152 static int timeout = 10;
153
154 /* The pre-timeout is disabled by default. */
155 static int pretimeout;
156
157 /* Default timeout to set on panic */
158 static int panic_wdt_timeout = 255;
159
160 /* Default action is to reset the board on a timeout. */
161 static unsigned char action_val = WDOG_TIMEOUT_RESET;
162
163 static char action[16] = "reset";
164
165 static unsigned char preaction_val = WDOG_PRETIMEOUT_NONE;
166
167 static char preaction[16] = "pre_none";
168
169 static unsigned char preop_val = WDOG_PREOP_NONE;
170
171 static char preop[16] = "preop_none";
172 static DEFINE_SPINLOCK(ipmi_read_lock);
173 static char data_to_read;
174 static DECLARE_WAIT_QUEUE_HEAD(read_q);
175 static struct fasync_struct *fasync_q;
176 static char pretimeout_since_last_heartbeat;
177 static char expect_close;
178
179 static int ifnum_to_use = -1;
180
181 /* Parameters to ipmi_set_timeout */
182 #define IPMI_SET_TIMEOUT_NO_HB                  0
183 #define IPMI_SET_TIMEOUT_HB_IF_NECESSARY        1
184 #define IPMI_SET_TIMEOUT_FORCE_HB               2
185
186 static int ipmi_set_timeout(int do_heartbeat);
187 static void ipmi_register_watchdog(int ipmi_intf);
188 static void ipmi_unregister_watchdog(int ipmi_intf);
189
190 /*
191  * If true, the driver will start running as soon as it is configured
192  * and ready.
193  */
194 static int start_now;
195
196 static int set_param_timeout(const char *val, const struct kernel_param *kp)
197 {
198         char *endp;
199         int  l;
200         int  rv = 0;
201
202         if (!val)
203                 return -EINVAL;
204         l = simple_strtoul(val, &endp, 0);
205         if (endp == val)
206                 return -EINVAL;
207
208         *((int *)kp->arg) = l;
209         if (watchdog_user)
210                 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
211
212         return rv;
213 }
214
215 static const struct kernel_param_ops param_ops_timeout = {
216         .set = set_param_timeout,
217         .get = param_get_int,
218 };
219 #define param_check_timeout param_check_int
220
221 typedef int (*action_fn)(const char *intval, char *outval);
222
223 static int action_op(const char *inval, char *outval);
224 static int preaction_op(const char *inval, char *outval);
225 static int preop_op(const char *inval, char *outval);
226 static void check_parms(void);
227
228 static int set_param_str(const char *val, const struct kernel_param *kp)
229 {
230         action_fn  fn = (action_fn) kp->arg;
231         int        rv = 0;
232         char       valcp[16];
233         char       *s;
234
235         strncpy(valcp, val, 16);
236         valcp[15] = '\0';
237
238         s = strstrip(valcp);
239
240         rv = fn(s, NULL);
241         if (rv)
242                 goto out;
243
244         check_parms();
245         if (watchdog_user)
246                 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
247
248  out:
249         return rv;
250 }
251
252 static int get_param_str(char *buffer, const struct kernel_param *kp)
253 {
254         action_fn fn = (action_fn) kp->arg;
255         int       rv;
256
257         rv = fn(NULL, buffer);
258         if (rv)
259                 return rv;
260         return strlen(buffer);
261 }
262
263
264 static int set_param_wdog_ifnum(const char *val, const struct kernel_param *kp)
265 {
266         int rv = param_set_int(val, kp);
267         if (rv)
268                 return rv;
269         if ((ifnum_to_use < 0) || (ifnum_to_use == watchdog_ifnum))
270                 return 0;
271
272         ipmi_unregister_watchdog(watchdog_ifnum);
273         ipmi_register_watchdog(ifnum_to_use);
274         return 0;
275 }
276
277 static const struct kernel_param_ops param_ops_wdog_ifnum = {
278         .set = set_param_wdog_ifnum,
279         .get = param_get_int,
280 };
281
282 #define param_check_wdog_ifnum param_check_int
283
284 static const struct kernel_param_ops param_ops_str = {
285         .set = set_param_str,
286         .get = get_param_str,
287 };
288
289 module_param(ifnum_to_use, wdog_ifnum, 0644);
290 MODULE_PARM_DESC(ifnum_to_use, "The interface number to use for the watchdog "
291                  "timer.  Setting to -1 defaults to the first registered "
292                  "interface");
293
294 module_param(timeout, timeout, 0644);
295 MODULE_PARM_DESC(timeout, "Timeout value in seconds.");
296
297 module_param(pretimeout, timeout, 0644);
298 MODULE_PARM_DESC(pretimeout, "Pretimeout value in seconds.");
299
300 module_param(panic_wdt_timeout, timeout, 0644);
301 MODULE_PARM_DESC(timeout, "Timeout value on kernel panic in seconds.");
302
303 module_param_cb(action, &param_ops_str, action_op, 0644);
304 MODULE_PARM_DESC(action, "Timeout action. One of: "
305                  "reset, none, power_cycle, power_off.");
306
307 module_param_cb(preaction, &param_ops_str, preaction_op, 0644);
308 MODULE_PARM_DESC(preaction, "Pretimeout action.  One of: "
309                  "pre_none, pre_smi, pre_nmi, pre_int.");
310
311 module_param_cb(preop, &param_ops_str, preop_op, 0644);
312 MODULE_PARM_DESC(preop, "Pretimeout driver operation.  One of: "
313                  "preop_none, preop_panic, preop_give_data.");
314
315 module_param(start_now, int, 0444);
316 MODULE_PARM_DESC(start_now, "Set to 1 to start the watchdog as"
317                  "soon as the driver is loaded.");
318
319 module_param(nowayout, bool, 0644);
320 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
321                  "(default=CONFIG_WATCHDOG_NOWAYOUT)");
322
323 /* Default state of the timer. */
324 static unsigned char ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
325
326 /* If shutting down via IPMI, we ignore the heartbeat. */
327 static int ipmi_ignore_heartbeat;
328
329 /* Is someone using the watchdog?  Only one user is allowed. */
330 static unsigned long ipmi_wdog_open;
331
332 /*
333  * If set to 1, the heartbeat command will set the state to reset and
334  * start the timer.  The timer doesn't normally run when the driver is
335  * first opened until the heartbeat is set the first time, this
336  * variable is used to accomplish this.
337  */
338 static int ipmi_start_timer_on_heartbeat;
339
340 /* IPMI version of the BMC. */
341 static unsigned char ipmi_version_major;
342 static unsigned char ipmi_version_minor;
343
344 /* If a pretimeout occurs, this is used to allow only one panic to happen. */
345 static atomic_t preop_panic_excl = ATOMIC_INIT(-1);
346
347 #ifdef HAVE_DIE_NMI
348 static int testing_nmi;
349 static int nmi_handler_registered;
350 #endif
351
352 static int ipmi_heartbeat(void);
353
354 /*
355  * We use a mutex to make sure that only one thing can send a set
356  * timeout at one time, because we only have one copy of the data.
357  * The mutex is claimed when the set_timeout is sent and freed
358  * when both messages are free.
359  */
360 static atomic_t set_timeout_tofree = ATOMIC_INIT(0);
361 static DEFINE_MUTEX(set_timeout_lock);
362 static DECLARE_COMPLETION(set_timeout_wait);
363 static void set_timeout_free_smi(struct ipmi_smi_msg *msg)
364 {
365     if (atomic_dec_and_test(&set_timeout_tofree))
366             complete(&set_timeout_wait);
367 }
368 static void set_timeout_free_recv(struct ipmi_recv_msg *msg)
369 {
370     if (atomic_dec_and_test(&set_timeout_tofree))
371             complete(&set_timeout_wait);
372 }
373 static struct ipmi_smi_msg set_timeout_smi_msg = {
374         .done = set_timeout_free_smi
375 };
376 static struct ipmi_recv_msg set_timeout_recv_msg = {
377         .done = set_timeout_free_recv
378 };
379
380 static int i_ipmi_set_timeout(struct ipmi_smi_msg  *smi_msg,
381                               struct ipmi_recv_msg *recv_msg,
382                               int                  *send_heartbeat_now)
383 {
384         struct kernel_ipmi_msg            msg;
385         unsigned char                     data[6];
386         int                               rv;
387         struct ipmi_system_interface_addr addr;
388         int                               hbnow = 0;
389
390
391         /* These can be cleared as we are setting the timeout. */
392         pretimeout_since_last_heartbeat = 0;
393
394         data[0] = 0;
395         WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS);
396
397         if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
398                 if ((ipmi_version_major > 1) ||
399                     ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) {
400                         /* This is an IPMI 1.5-only feature. */
401                         data[0] |= WDOG_DONT_STOP_ON_SET;
402                 } else {
403                         /*
404                          * In ipmi 1.0, setting the timer stops the watchdog, we
405                          * need to start it back up again.
406                          */
407                         hbnow = 1;
408                 }
409         }
410
411         data[1] = 0;
412         WDOG_SET_TIMEOUT_ACT(data[1], ipmi_watchdog_state);
413         if ((pretimeout > 0) && (ipmi_watchdog_state != WDOG_TIMEOUT_NONE)) {
414             WDOG_SET_PRETIMEOUT_ACT(data[1], preaction_val);
415             data[2] = pretimeout;
416         } else {
417             WDOG_SET_PRETIMEOUT_ACT(data[1], WDOG_PRETIMEOUT_NONE);
418             data[2] = 0; /* No pretimeout. */
419         }
420         data[3] = 0;
421         WDOG_SET_TIMEOUT(data[4], data[5], timeout);
422
423         addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
424         addr.channel = IPMI_BMC_CHANNEL;
425         addr.lun = 0;
426
427         msg.netfn = 0x06;
428         msg.cmd = IPMI_WDOG_SET_TIMER;
429         msg.data = data;
430         msg.data_len = sizeof(data);
431         rv = ipmi_request_supply_msgs(watchdog_user,
432                                       (struct ipmi_addr *) &addr,
433                                       0,
434                                       &msg,
435                                       NULL,
436                                       smi_msg,
437                                       recv_msg,
438                                       1);
439         if (rv) {
440                 printk(KERN_WARNING PFX "set timeout error: %d\n",
441                        rv);
442         }
443
444         if (send_heartbeat_now)
445             *send_heartbeat_now = hbnow;
446
447         return rv;
448 }
449
450 static int ipmi_set_timeout(int do_heartbeat)
451 {
452         int send_heartbeat_now;
453         int rv;
454
455
456         /* We can only send one of these at a time. */
457         mutex_lock(&set_timeout_lock);
458
459         atomic_set(&set_timeout_tofree, 2);
460
461         rv = i_ipmi_set_timeout(&set_timeout_smi_msg,
462                                 &set_timeout_recv_msg,
463                                 &send_heartbeat_now);
464         if (rv) {
465                 mutex_unlock(&set_timeout_lock);
466                 goto out;
467         }
468
469         wait_for_completion(&set_timeout_wait);
470
471         mutex_unlock(&set_timeout_lock);
472
473         if ((do_heartbeat == IPMI_SET_TIMEOUT_FORCE_HB)
474             || ((send_heartbeat_now)
475                 && (do_heartbeat == IPMI_SET_TIMEOUT_HB_IF_NECESSARY)))
476                 rv = ipmi_heartbeat();
477
478 out:
479         return rv;
480 }
481
482 static atomic_t panic_done_count = ATOMIC_INIT(0);
483
484 static void panic_smi_free(struct ipmi_smi_msg *msg)
485 {
486         atomic_dec(&panic_done_count);
487 }
488 static void panic_recv_free(struct ipmi_recv_msg *msg)
489 {
490         atomic_dec(&panic_done_count);
491 }
492
493 static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = {
494         .done = panic_smi_free
495 };
496 static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = {
497         .done = panic_recv_free
498 };
499
500 static void panic_halt_ipmi_heartbeat(void)
501 {
502         struct kernel_ipmi_msg             msg;
503         struct ipmi_system_interface_addr addr;
504         int rv;
505
506         /*
507          * Don't reset the timer if we have the timer turned off, that
508          * re-enables the watchdog.
509          */
510         if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
511                 return;
512
513         addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
514         addr.channel = IPMI_BMC_CHANNEL;
515         addr.lun = 0;
516
517         msg.netfn = 0x06;
518         msg.cmd = IPMI_WDOG_RESET_TIMER;
519         msg.data = NULL;
520         msg.data_len = 0;
521         atomic_add(1, &panic_done_count);
522         rv = ipmi_request_supply_msgs(watchdog_user,
523                                       (struct ipmi_addr *) &addr,
524                                       0,
525                                       &msg,
526                                       NULL,
527                                       &panic_halt_heartbeat_smi_msg,
528                                       &panic_halt_heartbeat_recv_msg,
529                                       1);
530         if (rv)
531                 atomic_sub(1, &panic_done_count);
532 }
533
534 static struct ipmi_smi_msg panic_halt_smi_msg = {
535         .done = panic_smi_free
536 };
537 static struct ipmi_recv_msg panic_halt_recv_msg = {
538         .done = panic_recv_free
539 };
540
541 /*
542  * Special call, doesn't claim any locks.  This is only to be called
543  * at panic or halt time, in run-to-completion mode, when the caller
544  * is the only CPU and the only thing that will be going is these IPMI
545  * calls.
546  */
547 static void panic_halt_ipmi_set_timeout(void)
548 {
549         int send_heartbeat_now;
550         int rv;
551
552         /* Wait for the messages to be free. */
553         while (atomic_read(&panic_done_count) != 0)
554                 ipmi_poll_interface(watchdog_user);
555         atomic_add(1, &panic_done_count);
556         rv = i_ipmi_set_timeout(&panic_halt_smi_msg,
557                                 &panic_halt_recv_msg,
558                                 &send_heartbeat_now);
559         if (rv) {
560                 atomic_sub(1, &panic_done_count);
561                 printk(KERN_WARNING PFX
562                        "Unable to extend the watchdog timeout.");
563         } else {
564                 if (send_heartbeat_now)
565                         panic_halt_ipmi_heartbeat();
566         }
567         while (atomic_read(&panic_done_count) != 0)
568                 ipmi_poll_interface(watchdog_user);
569 }
570
571 /*
572  * We use a mutex to make sure that only one thing can send a
573  * heartbeat at one time, because we only have one copy of the data.
574  * The semaphore is claimed when the set_timeout is sent and freed
575  * when both messages are free.
576  */
577 static atomic_t heartbeat_tofree = ATOMIC_INIT(0);
578 static DEFINE_MUTEX(heartbeat_lock);
579 static DECLARE_COMPLETION(heartbeat_wait);
580 static void heartbeat_free_smi(struct ipmi_smi_msg *msg)
581 {
582     if (atomic_dec_and_test(&heartbeat_tofree))
583             complete(&heartbeat_wait);
584 }
585 static void heartbeat_free_recv(struct ipmi_recv_msg *msg)
586 {
587     if (atomic_dec_and_test(&heartbeat_tofree))
588             complete(&heartbeat_wait);
589 }
590 static struct ipmi_smi_msg heartbeat_smi_msg = {
591         .done = heartbeat_free_smi
592 };
593 static struct ipmi_recv_msg heartbeat_recv_msg = {
594         .done = heartbeat_free_recv
595 };
596
597 static int ipmi_heartbeat(void)
598 {
599         struct kernel_ipmi_msg            msg;
600         int                               rv;
601         struct ipmi_system_interface_addr addr;
602         int                               timeout_retries = 0;
603
604         if (ipmi_ignore_heartbeat)
605                 return 0;
606
607         if (ipmi_start_timer_on_heartbeat) {
608                 ipmi_start_timer_on_heartbeat = 0;
609                 ipmi_watchdog_state = action_val;
610                 return ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
611         } else if (pretimeout_since_last_heartbeat) {
612                 /*
613                  * A pretimeout occurred, make sure we set the timeout.
614                  * We don't want to set the action, though, we want to
615                  * leave that alone (thus it can't be combined with the
616                  * above operation.
617                  */
618                 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
619         }
620
621         mutex_lock(&heartbeat_lock);
622
623 restart:
624         atomic_set(&heartbeat_tofree, 2);
625
626         /*
627          * Don't reset the timer if we have the timer turned off, that
628          * re-enables the watchdog.
629          */
630         if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) {
631                 mutex_unlock(&heartbeat_lock);
632                 return 0;
633         }
634
635         addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
636         addr.channel = IPMI_BMC_CHANNEL;
637         addr.lun = 0;
638
639         msg.netfn = 0x06;
640         msg.cmd = IPMI_WDOG_RESET_TIMER;
641         msg.data = NULL;
642         msg.data_len = 0;
643         rv = ipmi_request_supply_msgs(watchdog_user,
644                                       (struct ipmi_addr *) &addr,
645                                       0,
646                                       &msg,
647                                       NULL,
648                                       &heartbeat_smi_msg,
649                                       &heartbeat_recv_msg,
650                                       1);
651         if (rv) {
652                 mutex_unlock(&heartbeat_lock);
653                 printk(KERN_WARNING PFX "heartbeat failure: %d\n",
654                        rv);
655                 return rv;
656         }
657
658         /* Wait for the heartbeat to be sent. */
659         wait_for_completion(&heartbeat_wait);
660
661         if (heartbeat_recv_msg.msg.data[0] == IPMI_WDOG_TIMER_NOT_INIT_RESP)  {
662                 timeout_retries++;
663                 if (timeout_retries > 3) {
664                         printk(KERN_ERR PFX ": Unable to restore the IPMI"
665                                " watchdog's settings, giving up.\n");
666                         rv = -EIO;
667                         goto out_unlock;
668                 }
669
670                 /*
671                  * The timer was not initialized, that means the BMC was
672                  * probably reset and lost the watchdog information.  Attempt
673                  * to restore the timer's info.  Note that we still hold
674                  * the heartbeat lock, to keep a heartbeat from happening
675                  * in this process, so must say no heartbeat to avoid a
676                  * deadlock on this mutex.
677                  */
678                 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
679                 if (rv) {
680                         printk(KERN_ERR PFX ": Unable to send the command to"
681                                " set the watchdog's settings, giving up.\n");
682                         goto out_unlock;
683                 }
684
685                 /* We might need a new heartbeat, so do it now */
686                 goto restart;
687         } else if (heartbeat_recv_msg.msg.data[0] != 0) {
688                 /*
689                  * Got an error in the heartbeat response.  It was already
690                  * reported in ipmi_wdog_msg_handler, but we should return
691                  * an error here.
692                  */
693                 rv = -EINVAL;
694         }
695
696 out_unlock:
697         mutex_unlock(&heartbeat_lock);
698
699         return rv;
700 }
701
702 static struct watchdog_info ident = {
703         .options        = 0,    /* WDIOF_SETTIMEOUT, */
704         .firmware_version = 1,
705         .identity       = "IPMI"
706 };
707
708 static int ipmi_ioctl(struct file *file,
709                       unsigned int cmd, unsigned long arg)
710 {
711         void __user *argp = (void __user *)arg;
712         int i;
713         int val;
714
715         switch (cmd) {
716         case WDIOC_GETSUPPORT:
717                 i = copy_to_user(argp, &ident, sizeof(ident));
718                 return i ? -EFAULT : 0;
719
720         case WDIOC_SETTIMEOUT:
721                 i = copy_from_user(&val, argp, sizeof(int));
722                 if (i)
723                         return -EFAULT;
724                 timeout = val;
725                 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
726
727         case WDIOC_GETTIMEOUT:
728                 i = copy_to_user(argp, &timeout, sizeof(timeout));
729                 if (i)
730                         return -EFAULT;
731                 return 0;
732
733         case WDIOC_SETPRETIMEOUT:
734                 i = copy_from_user(&val, argp, sizeof(int));
735                 if (i)
736                         return -EFAULT;
737                 pretimeout = val;
738                 return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY);
739
740         case WDIOC_GETPRETIMEOUT:
741                 i = copy_to_user(argp, &pretimeout, sizeof(pretimeout));
742                 if (i)
743                         return -EFAULT;
744                 return 0;
745
746         case WDIOC_KEEPALIVE:
747                 return ipmi_heartbeat();
748
749         case WDIOC_SETOPTIONS:
750                 i = copy_from_user(&val, argp, sizeof(int));
751                 if (i)
752                         return -EFAULT;
753                 if (val & WDIOS_DISABLECARD) {
754                         ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
755                         ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
756                         ipmi_start_timer_on_heartbeat = 0;
757                 }
758
759                 if (val & WDIOS_ENABLECARD) {
760                         ipmi_watchdog_state = action_val;
761                         ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
762                 }
763                 return 0;
764
765         case WDIOC_GETSTATUS:
766                 val = 0;
767                 i = copy_to_user(argp, &val, sizeof(val));
768                 if (i)
769                         return -EFAULT;
770                 return 0;
771
772         default:
773                 return -ENOIOCTLCMD;
774         }
775 }
776
777 static long ipmi_unlocked_ioctl(struct file *file,
778                                 unsigned int cmd,
779                                 unsigned long arg)
780 {
781         int ret;
782
783         mutex_lock(&ipmi_watchdog_mutex);
784         ret = ipmi_ioctl(file, cmd, arg);
785         mutex_unlock(&ipmi_watchdog_mutex);
786
787         return ret;
788 }
789
790 static ssize_t ipmi_write(struct file *file,
791                           const char  __user *buf,
792                           size_t      len,
793                           loff_t      *ppos)
794 {
795         int rv;
796
797         if (len) {
798                 if (!nowayout) {
799                         size_t i;
800
801                         /* In case it was set long ago */
802                         expect_close = 0;
803
804                         for (i = 0; i != len; i++) {
805                                 char c;
806
807                                 if (get_user(c, buf + i))
808                                         return -EFAULT;
809                                 if (c == 'V')
810                                         expect_close = 42;
811                         }
812                 }
813                 rv = ipmi_heartbeat();
814                 if (rv)
815                         return rv;
816         }
817         return len;
818 }
819
820 static ssize_t ipmi_read(struct file *file,
821                          char        __user *buf,
822                          size_t      count,
823                          loff_t      *ppos)
824 {
825         int          rv = 0;
826         wait_queue_entry_t wait;
827
828         if (count <= 0)
829                 return 0;
830
831         /*
832          * Reading returns if the pretimeout has gone off, and it only does
833          * it once per pretimeout.
834          */
835         spin_lock(&ipmi_read_lock);
836         if (!data_to_read) {
837                 if (file->f_flags & O_NONBLOCK) {
838                         rv = -EAGAIN;
839                         goto out;
840                 }
841
842                 init_waitqueue_entry(&wait, current);
843                 add_wait_queue(&read_q, &wait);
844                 while (!data_to_read) {
845                         set_current_state(TASK_INTERRUPTIBLE);
846                         spin_unlock(&ipmi_read_lock);
847                         schedule();
848                         spin_lock(&ipmi_read_lock);
849                 }
850                 remove_wait_queue(&read_q, &wait);
851
852                 if (signal_pending(current)) {
853                         rv = -ERESTARTSYS;
854                         goto out;
855                 }
856         }
857         data_to_read = 0;
858
859  out:
860         spin_unlock(&ipmi_read_lock);
861
862         if (rv == 0) {
863                 if (copy_to_user(buf, &data_to_read, 1))
864                         rv = -EFAULT;
865                 else
866                         rv = 1;
867         }
868
869         return rv;
870 }
871
872 static int ipmi_open(struct inode *ino, struct file *filep)
873 {
874         switch (iminor(ino)) {
875         case WATCHDOG_MINOR:
876                 if (test_and_set_bit(0, &ipmi_wdog_open))
877                         return -EBUSY;
878
879
880                 /*
881                  * Don't start the timer now, let it start on the
882                  * first heartbeat.
883                  */
884                 ipmi_start_timer_on_heartbeat = 1;
885                 return nonseekable_open(ino, filep);
886
887         default:
888                 return (-ENODEV);
889         }
890 }
891
892 static unsigned int ipmi_poll(struct file *file, poll_table *wait)
893 {
894         unsigned int mask = 0;
895
896         poll_wait(file, &read_q, wait);
897
898         spin_lock(&ipmi_read_lock);
899         if (data_to_read)
900                 mask |= (POLLIN | POLLRDNORM);
901         spin_unlock(&ipmi_read_lock);
902
903         return mask;
904 }
905
906 static int ipmi_fasync(int fd, struct file *file, int on)
907 {
908         int result;
909
910         result = fasync_helper(fd, file, on, &fasync_q);
911
912         return (result);
913 }
914
915 static int ipmi_close(struct inode *ino, struct file *filep)
916 {
917         if (iminor(ino) == WATCHDOG_MINOR) {
918                 if (expect_close == 42) {
919                         ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
920                         ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
921                 } else {
922                         printk(KERN_CRIT PFX
923                                "Unexpected close, not stopping watchdog!\n");
924                         ipmi_heartbeat();
925                 }
926                 clear_bit(0, &ipmi_wdog_open);
927         }
928
929         expect_close = 0;
930
931         return 0;
932 }
933
934 static const struct file_operations ipmi_wdog_fops = {
935         .owner   = THIS_MODULE,
936         .read    = ipmi_read,
937         .poll    = ipmi_poll,
938         .write   = ipmi_write,
939         .unlocked_ioctl = ipmi_unlocked_ioctl,
940         .open    = ipmi_open,
941         .release = ipmi_close,
942         .fasync  = ipmi_fasync,
943         .llseek  = no_llseek,
944 };
945
946 static struct miscdevice ipmi_wdog_miscdev = {
947         .minor          = WATCHDOG_MINOR,
948         .name           = "watchdog",
949         .fops           = &ipmi_wdog_fops
950 };
951
952 static void ipmi_wdog_msg_handler(struct ipmi_recv_msg *msg,
953                                   void                 *handler_data)
954 {
955         if (msg->msg.cmd == IPMI_WDOG_RESET_TIMER &&
956                         msg->msg.data[0] == IPMI_WDOG_TIMER_NOT_INIT_RESP)
957                 printk(KERN_INFO PFX "response: The IPMI controller appears"
958                        " to have been reset, will attempt to reinitialize"
959                        " the watchdog timer\n");
960         else if (msg->msg.data[0] != 0)
961                 printk(KERN_ERR PFX "response: Error %x on cmd %x\n",
962                        msg->msg.data[0],
963                        msg->msg.cmd);
964
965         ipmi_free_recv_msg(msg);
966 }
967
968 static void ipmi_wdog_pretimeout_handler(void *handler_data)
969 {
970         if (preaction_val != WDOG_PRETIMEOUT_NONE) {
971                 if (preop_val == WDOG_PREOP_PANIC) {
972                         if (atomic_inc_and_test(&preop_panic_excl))
973                                 panic("Watchdog pre-timeout");
974                 } else if (preop_val == WDOG_PREOP_GIVE_DATA) {
975                         spin_lock(&ipmi_read_lock);
976                         data_to_read = 1;
977                         wake_up_interruptible(&read_q);
978                         kill_fasync(&fasync_q, SIGIO, POLL_IN);
979
980                         spin_unlock(&ipmi_read_lock);
981                 }
982         }
983
984         /*
985          * On some machines, the heartbeat will give an error and not
986          * work unless we re-enable the timer.  So do so.
987          */
988         pretimeout_since_last_heartbeat = 1;
989 }
990
991 static const struct ipmi_user_hndl ipmi_hndlrs = {
992         .ipmi_recv_hndl           = ipmi_wdog_msg_handler,
993         .ipmi_watchdog_pretimeout = ipmi_wdog_pretimeout_handler
994 };
995
996 static void ipmi_register_watchdog(int ipmi_intf)
997 {
998         int rv = -EBUSY;
999
1000         if (watchdog_user)
1001                 goto out;
1002
1003         if ((ifnum_to_use >= 0) && (ifnum_to_use != ipmi_intf))
1004                 goto out;
1005
1006         watchdog_ifnum = ipmi_intf;
1007
1008         rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user);
1009         if (rv < 0) {
1010                 printk(KERN_CRIT PFX "Unable to register with ipmi\n");
1011                 goto out;
1012         }
1013
1014         ipmi_get_version(watchdog_user,
1015                          &ipmi_version_major,
1016                          &ipmi_version_minor);
1017
1018         rv = misc_register(&ipmi_wdog_miscdev);
1019         if (rv < 0) {
1020                 ipmi_destroy_user(watchdog_user);
1021                 watchdog_user = NULL;
1022                 printk(KERN_CRIT PFX "Unable to register misc device\n");
1023         }
1024
1025 #ifdef HAVE_DIE_NMI
1026         if (nmi_handler_registered) {
1027                 int old_pretimeout = pretimeout;
1028                 int old_timeout = timeout;
1029                 int old_preop_val = preop_val;
1030
1031                 /*
1032                  * Set the pretimeout to go off in a second and give
1033                  * ourselves plenty of time to stop the timer.
1034                  */
1035                 ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
1036                 preop_val = WDOG_PREOP_NONE; /* Make sure nothing happens */
1037                 pretimeout = 99;
1038                 timeout = 100;
1039
1040                 testing_nmi = 1;
1041
1042                 rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
1043                 if (rv) {
1044                         printk(KERN_WARNING PFX "Error starting timer to"
1045                                " test NMI: 0x%x.  The NMI pretimeout will"
1046                                " likely not work\n", rv);
1047                         rv = 0;
1048                         goto out_restore;
1049                 }
1050
1051                 msleep(1500);
1052
1053                 if (testing_nmi != 2) {
1054                         printk(KERN_WARNING PFX "IPMI NMI didn't seem to"
1055                                " occur.  The NMI pretimeout will"
1056                                " likely not work\n");
1057                 }
1058  out_restore:
1059                 testing_nmi = 0;
1060                 preop_val = old_preop_val;
1061                 pretimeout = old_pretimeout;
1062                 timeout = old_timeout;
1063         }
1064 #endif
1065
1066  out:
1067         if ((start_now) && (rv == 0)) {
1068                 /* Run from startup, so start the timer now. */
1069                 start_now = 0; /* Disable this function after first startup. */
1070                 ipmi_watchdog_state = action_val;
1071                 ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB);
1072                 printk(KERN_INFO PFX "Starting now!\n");
1073         } else {
1074                 /* Stop the timer now. */
1075                 ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1076                 ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
1077         }
1078 }
1079
1080 static void ipmi_unregister_watchdog(int ipmi_intf)
1081 {
1082         int rv;
1083
1084         if (!watchdog_user)
1085                 goto out;
1086
1087         if (watchdog_ifnum != ipmi_intf)
1088                 goto out;
1089
1090         /* Make sure no one can call us any more. */
1091         misc_deregister(&ipmi_wdog_miscdev);
1092
1093         /*
1094          * Wait to make sure the message makes it out.  The lower layer has
1095          * pointers to our buffers, we want to make sure they are done before
1096          * we release our memory.
1097          */
1098         while (atomic_read(&set_timeout_tofree))
1099                 schedule_timeout_uninterruptible(1);
1100
1101         /* Disconnect from IPMI. */
1102         rv = ipmi_destroy_user(watchdog_user);
1103         if (rv) {
1104                 printk(KERN_WARNING PFX "error unlinking from IPMI: %d\n",
1105                        rv);
1106         }
1107         watchdog_user = NULL;
1108
1109  out:
1110         return;
1111 }
1112
1113 #ifdef HAVE_DIE_NMI
1114 static int
1115 ipmi_nmi(unsigned int val, struct pt_regs *regs)
1116 {
1117         /*
1118          * If we get here, it's an NMI that's not a memory or I/O
1119          * error.  We can't truly tell if it's from IPMI or not
1120          * without sending a message, and sending a message is almost
1121          * impossible because of locking.
1122          */
1123
1124         if (testing_nmi) {
1125                 testing_nmi = 2;
1126                 return NMI_HANDLED;
1127         }
1128
1129         /* If we are not expecting a timeout, ignore it. */
1130         if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE)
1131                 return NMI_DONE;
1132
1133         if (preaction_val != WDOG_PRETIMEOUT_NMI)
1134                 return NMI_DONE;
1135
1136         /*
1137          * If no one else handled the NMI, we assume it was the IPMI
1138          * watchdog.
1139          */
1140         if (preop_val == WDOG_PREOP_PANIC) {
1141                 /* On some machines, the heartbeat will give
1142                    an error and not work unless we re-enable
1143                    the timer.   So do so. */
1144                 pretimeout_since_last_heartbeat = 1;
1145                 if (atomic_inc_and_test(&preop_panic_excl))
1146                         nmi_panic(regs, PFX "pre-timeout");
1147         }
1148
1149         return NMI_HANDLED;
1150 }
1151 #endif
1152
1153 static int wdog_reboot_handler(struct notifier_block *this,
1154                                unsigned long         code,
1155                                void                  *unused)
1156 {
1157         static int reboot_event_handled;
1158
1159         if ((watchdog_user) && (!reboot_event_handled)) {
1160                 /* Make sure we only do this once. */
1161                 reboot_event_handled = 1;
1162
1163                 if (code == SYS_POWER_OFF || code == SYS_HALT) {
1164                         /* Disable the WDT if we are shutting down. */
1165                         ipmi_watchdog_state = WDOG_TIMEOUT_NONE;
1166                         ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
1167                 } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
1168                         /* Set a long timer to let the reboot happen or
1169                            reset if it hangs, but only if the watchdog
1170                            timer was already running. */
1171                         if (timeout < 120)
1172                                 timeout = 120;
1173                         pretimeout = 0;
1174                         ipmi_watchdog_state = WDOG_TIMEOUT_RESET;
1175                         ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB);
1176                 }
1177         }
1178         return NOTIFY_OK;
1179 }
1180
1181 static struct notifier_block wdog_reboot_notifier = {
1182         .notifier_call  = wdog_reboot_handler,
1183         .next           = NULL,
1184         .priority       = 0
1185 };
1186
1187 static int wdog_panic_handler(struct notifier_block *this,
1188                               unsigned long         event,
1189                               void                  *unused)
1190 {
1191         static int panic_event_handled;
1192
1193         /* On a panic, if we have a panic timeout, make sure to extend
1194            the watchdog timer to a reasonable value to complete the
1195            panic, if the watchdog timer is running.  Plus the
1196            pretimeout is meaningless at panic time. */
1197         if (watchdog_user && !panic_event_handled &&
1198             ipmi_watchdog_state != WDOG_TIMEOUT_NONE) {
1199                 /* Make sure we do this only once. */
1200                 panic_event_handled = 1;
1201
1202                 timeout = panic_wdt_timeout;
1203                 pretimeout = 0;
1204                 panic_halt_ipmi_set_timeout();
1205         }
1206
1207         return NOTIFY_OK;
1208 }
1209
1210 static struct notifier_block wdog_panic_notifier = {
1211         .notifier_call  = wdog_panic_handler,
1212         .next           = NULL,
1213         .priority       = 150   /* priority: INT_MAX >= x >= 0 */
1214 };
1215
1216
1217 static void ipmi_new_smi(int if_num, struct device *device)
1218 {
1219         ipmi_register_watchdog(if_num);
1220 }
1221
1222 static void ipmi_smi_gone(int if_num)
1223 {
1224         ipmi_unregister_watchdog(if_num);
1225 }
1226
1227 static struct ipmi_smi_watcher smi_watcher = {
1228         .owner    = THIS_MODULE,
1229         .new_smi  = ipmi_new_smi,
1230         .smi_gone = ipmi_smi_gone
1231 };
1232
1233 static int action_op(const char *inval, char *outval)
1234 {
1235         if (outval)
1236                 strcpy(outval, action);
1237
1238         if (!inval)
1239                 return 0;
1240
1241         if (strcmp(inval, "reset") == 0)
1242                 action_val = WDOG_TIMEOUT_RESET;
1243         else if (strcmp(inval, "none") == 0)
1244                 action_val = WDOG_TIMEOUT_NONE;
1245         else if (strcmp(inval, "power_cycle") == 0)
1246                 action_val = WDOG_TIMEOUT_POWER_CYCLE;
1247         else if (strcmp(inval, "power_off") == 0)
1248                 action_val = WDOG_TIMEOUT_POWER_DOWN;
1249         else
1250                 return -EINVAL;
1251         strcpy(action, inval);
1252         return 0;
1253 }
1254
1255 static int preaction_op(const char *inval, char *outval)
1256 {
1257         if (outval)
1258                 strcpy(outval, preaction);
1259
1260         if (!inval)
1261                 return 0;
1262
1263         if (strcmp(inval, "pre_none") == 0)
1264                 preaction_val = WDOG_PRETIMEOUT_NONE;
1265         else if (strcmp(inval, "pre_smi") == 0)
1266                 preaction_val = WDOG_PRETIMEOUT_SMI;
1267 #ifdef HAVE_DIE_NMI
1268         else if (strcmp(inval, "pre_nmi") == 0)
1269                 preaction_val = WDOG_PRETIMEOUT_NMI;
1270 #endif
1271         else if (strcmp(inval, "pre_int") == 0)
1272                 preaction_val = WDOG_PRETIMEOUT_MSG_INT;
1273         else
1274                 return -EINVAL;
1275         strcpy(preaction, inval);
1276         return 0;
1277 }
1278
1279 static int preop_op(const char *inval, char *outval)
1280 {
1281         if (outval)
1282                 strcpy(outval, preop);
1283
1284         if (!inval)
1285                 return 0;
1286
1287         if (strcmp(inval, "preop_none") == 0)
1288                 preop_val = WDOG_PREOP_NONE;
1289         else if (strcmp(inval, "preop_panic") == 0)
1290                 preop_val = WDOG_PREOP_PANIC;
1291         else if (strcmp(inval, "preop_give_data") == 0)
1292                 preop_val = WDOG_PREOP_GIVE_DATA;
1293         else
1294                 return -EINVAL;
1295         strcpy(preop, inval);
1296         return 0;
1297 }
1298
1299 static void check_parms(void)
1300 {
1301 #ifdef HAVE_DIE_NMI
1302         int do_nmi = 0;
1303         int rv;
1304
1305         if (preaction_val == WDOG_PRETIMEOUT_NMI) {
1306                 do_nmi = 1;
1307                 if (preop_val == WDOG_PREOP_GIVE_DATA) {
1308                         printk(KERN_WARNING PFX "Pretimeout op is to give data"
1309                                " but NMI pretimeout is enabled, setting"
1310                                " pretimeout op to none\n");
1311                         preop_op("preop_none", NULL);
1312                         do_nmi = 0;
1313                 }
1314         }
1315         if (do_nmi && !nmi_handler_registered) {
1316                 rv = register_nmi_handler(NMI_UNKNOWN, ipmi_nmi, 0,
1317                                                 "ipmi");
1318                 if (rv) {
1319                         printk(KERN_WARNING PFX
1320                                "Can't register nmi handler\n");
1321                         return;
1322                 } else
1323                         nmi_handler_registered = 1;
1324         } else if (!do_nmi && nmi_handler_registered) {
1325                 unregister_nmi_handler(NMI_UNKNOWN, "ipmi");
1326                 nmi_handler_registered = 0;
1327         }
1328 #endif
1329 }
1330
1331 static int __init ipmi_wdog_init(void)
1332 {
1333         int rv;
1334
1335         if (action_op(action, NULL)) {
1336                 action_op("reset", NULL);
1337                 printk(KERN_INFO PFX "Unknown action '%s', defaulting to"
1338                        " reset\n", action);
1339         }
1340
1341         if (preaction_op(preaction, NULL)) {
1342                 preaction_op("pre_none", NULL);
1343                 printk(KERN_INFO PFX "Unknown preaction '%s', defaulting to"
1344                        " none\n", preaction);
1345         }
1346
1347         if (preop_op(preop, NULL)) {
1348                 preop_op("preop_none", NULL);
1349                 printk(KERN_INFO PFX "Unknown preop '%s', defaulting to"
1350                        " none\n", preop);
1351         }
1352
1353         check_parms();
1354
1355         register_reboot_notifier(&wdog_reboot_notifier);
1356         atomic_notifier_chain_register(&panic_notifier_list,
1357                         &wdog_panic_notifier);
1358
1359         rv = ipmi_smi_watcher_register(&smi_watcher);
1360         if (rv) {
1361 #ifdef HAVE_DIE_NMI
1362                 if (nmi_handler_registered)
1363                         unregister_nmi_handler(NMI_UNKNOWN, "ipmi");
1364 #endif
1365                 atomic_notifier_chain_unregister(&panic_notifier_list,
1366                                                  &wdog_panic_notifier);
1367                 unregister_reboot_notifier(&wdog_reboot_notifier);
1368                 printk(KERN_WARNING PFX "can't register smi watcher\n");
1369                 return rv;
1370         }
1371
1372         printk(KERN_INFO PFX "driver initialized\n");
1373
1374         return 0;
1375 }
1376
1377 static void __exit ipmi_wdog_exit(void)
1378 {
1379         ipmi_smi_watcher_unregister(&smi_watcher);
1380         ipmi_unregister_watchdog(watchdog_ifnum);
1381
1382 #ifdef HAVE_DIE_NMI
1383         if (nmi_handler_registered)
1384                 unregister_nmi_handler(NMI_UNKNOWN, "ipmi");
1385 #endif
1386
1387         atomic_notifier_chain_unregister(&panic_notifier_list,
1388                                          &wdog_panic_notifier);
1389         unregister_reboot_notifier(&wdog_reboot_notifier);
1390 }
1391 module_exit(ipmi_wdog_exit);
1392 module_init(ipmi_wdog_init);
1393 MODULE_LICENSE("GPL");
1394 MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
1395 MODULE_DESCRIPTION("watchdog timer based upon the IPMI interface.");