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