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