4 * The interface to the IPMI driver for the system interfaces (KCS, SMIC,
7 * Author: MontaVista Software, Inc.
8 * Corey Minyard <minyard@mvista.com>
11 * Copyright 2002 MontaVista Software Inc.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
27 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
28 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * You should have received a copy of the GNU General Public License along
31 * with this program; if not, write to the Free Software Foundation, Inc.,
32 * 675 Mass Ave, Cambridge, MA 02139, USA.
36 * This file holds the "policy" for the interface to the SMI state
37 * machine. It does the configuration, handles timers and interrupts,
38 * and drives the real SMI state machine.
41 #include <linux/config.h>
42 #include <linux/module.h>
43 #include <linux/moduleparam.h>
44 #include <asm/system.h>
45 #include <linux/sched.h>
46 #include <linux/timer.h>
47 #include <linux/errno.h>
48 #include <linux/spinlock.h>
49 #include <linux/slab.h>
50 #include <linux/delay.h>
51 #include <linux/list.h>
52 #include <linux/pci.h>
53 #include <linux/ioport.h>
55 #ifdef CONFIG_HIGH_RES_TIMERS
56 #include <linux/hrtime.h>
57 # if defined(schedule_next_int)
58 /* Old high-res timer code, do translations. */
59 # define get_arch_cycles(a) quick_update_jiffies_sub(a)
60 # define arch_cycles_per_jiffy cycles_per_jiffies
62 static inline void add_usec_to_timer(struct timer_list *t, long v)
64 t->arch_cycle_expires += nsec_to_arch_cycle(v * 1000);
65 while (t->arch_cycle_expires >= arch_cycles_per_jiffy)
68 t->arch_cycle_expires -= arch_cycles_per_jiffy;
72 #include <linux/interrupt.h>
73 #include <linux/rcupdate.h>
74 #include <linux/ipmi_smi.h>
76 #include "ipmi_si_sm.h"
77 #include <linux/init.h>
78 #include <linux/dmi.h>
80 /* Measure times between events in the driver. */
83 /* Call every 10 ms. */
84 #define SI_TIMEOUT_TIME_USEC 10000
85 #define SI_USEC_PER_JIFFY (1000000/HZ)
86 #define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
87 #define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
95 SI_CLEARING_FLAGS_THEN_SET_IRQ,
97 SI_ENABLE_INTERRUPTS1,
99 /* FIXME - add watchdog stuff. */
102 /* Some BT-specific defines we need here. */
103 #define IPMI_BT_INTMASK_REG 2
104 #define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
105 #define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
108 SI_KCS, SI_SMIC, SI_BT
111 struct ipmi_device_id {
112 unsigned char device_id;
113 unsigned char device_revision;
114 unsigned char firmware_revision_1;
115 unsigned char firmware_revision_2;
116 unsigned char ipmi_version;
117 unsigned char additional_device_support;
118 unsigned char manufacturer_id[3];
119 unsigned char product_id[2];
120 unsigned char aux_firmware_revision[4];
121 } __attribute__((packed));
123 #define ipmi_version_major(v) ((v)->ipmi_version & 0xf)
124 #define ipmi_version_minor(v) ((v)->ipmi_version >> 4)
129 struct si_sm_data *si_sm;
130 struct si_sm_handlers *handlers;
131 enum si_type si_type;
134 struct list_head xmit_msgs;
135 struct list_head hp_xmit_msgs;
136 struct ipmi_smi_msg *curr_msg;
137 enum si_intf_state si_state;
139 /* Used to handle the various types of I/O that can occur with
142 int (*io_setup)(struct smi_info *info);
143 void (*io_cleanup)(struct smi_info *info);
144 int (*irq_setup)(struct smi_info *info);
145 void (*irq_cleanup)(struct smi_info *info);
146 unsigned int io_size;
148 /* Per-OEM handler, called from handle_flags().
149 Returns 1 when handle_flags() needs to be re-run
150 or 0 indicating it set si_state itself.
152 int (*oem_data_avail_handler)(struct smi_info *smi_info);
154 /* Flags from the last GET_MSG_FLAGS command, used when an ATTN
155 is set to hold the flags until we are done handling everything
157 #define RECEIVE_MSG_AVAIL 0x01
158 #define EVENT_MSG_BUFFER_FULL 0x02
159 #define WDT_PRE_TIMEOUT_INT 0x08
160 #define OEM0_DATA_AVAIL 0x20
161 #define OEM1_DATA_AVAIL 0x40
162 #define OEM2_DATA_AVAIL 0x80
163 #define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
166 unsigned char msg_flags;
168 /* If set to true, this will request events the next time the
169 state machine is idle. */
172 /* If true, run the state machine to completion on every send
173 call. Generally used after a panic to make sure stuff goes
175 int run_to_completion;
177 /* The I/O port of an SI interface. */
180 /* The space between start addresses of the two ports. For
181 instance, if the first port is 0xca2 and the spacing is 4, then
182 the second port is 0xca6. */
183 unsigned int spacing;
185 /* zero if no irq; */
188 /* The timer for this si. */
189 struct timer_list si_timer;
191 /* The time (in jiffies) the last timeout occurred at. */
192 unsigned long last_timeout_jiffies;
194 /* Used to gracefully stop the timer without race conditions. */
195 volatile int stop_operation;
196 volatile int timer_stopped;
198 /* The driver will disable interrupts when it gets into a
199 situation where it cannot handle messages due to lack of
200 memory. Once that situation clears up, it will re-enable
202 int interrupt_disabled;
204 struct ipmi_device_id device_id;
206 /* Slave address, could be reported from DMI. */
207 unsigned char slave_addr;
209 /* Counters and things for the proc filesystem. */
210 spinlock_t count_lock;
211 unsigned long short_timeouts;
212 unsigned long long_timeouts;
213 unsigned long timeout_restarts;
215 unsigned long interrupts;
216 unsigned long attentions;
217 unsigned long flag_fetches;
218 unsigned long hosed_count;
219 unsigned long complete_transactions;
220 unsigned long events;
221 unsigned long watchdog_pretimeouts;
222 unsigned long incoming_messages;
225 static void si_restart_short_timer(struct smi_info *smi_info);
227 static void deliver_recv_msg(struct smi_info *smi_info,
228 struct ipmi_smi_msg *msg)
230 /* Deliver the message to the upper layer with the lock
232 spin_unlock(&(smi_info->si_lock));
233 ipmi_smi_msg_received(smi_info->intf, msg);
234 spin_lock(&(smi_info->si_lock));
237 static void return_hosed_msg(struct smi_info *smi_info)
239 struct ipmi_smi_msg *msg = smi_info->curr_msg;
241 /* Make it a reponse */
242 msg->rsp[0] = msg->data[0] | 4;
243 msg->rsp[1] = msg->data[1];
244 msg->rsp[2] = 0xFF; /* Unknown error. */
247 smi_info->curr_msg = NULL;
248 deliver_recv_msg(smi_info, msg);
251 static enum si_sm_result start_next_msg(struct smi_info *smi_info)
254 struct list_head *entry = NULL;
259 /* No need to save flags, we aleady have interrupts off and we
260 already hold the SMI lock. */
261 spin_lock(&(smi_info->msg_lock));
263 /* Pick the high priority queue first. */
264 if (! list_empty(&(smi_info->hp_xmit_msgs))) {
265 entry = smi_info->hp_xmit_msgs.next;
266 } else if (! list_empty(&(smi_info->xmit_msgs))) {
267 entry = smi_info->xmit_msgs.next;
271 smi_info->curr_msg = NULL;
277 smi_info->curr_msg = list_entry(entry,
282 printk("**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
284 err = smi_info->handlers->start_transaction(
286 smi_info->curr_msg->data,
287 smi_info->curr_msg->data_size);
289 return_hosed_msg(smi_info);
292 rv = SI_SM_CALL_WITHOUT_DELAY;
294 spin_unlock(&(smi_info->msg_lock));
299 static void start_enable_irq(struct smi_info *smi_info)
301 unsigned char msg[2];
303 /* If we are enabling interrupts, we have to tell the
305 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
306 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
308 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
309 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
312 static void start_clear_flags(struct smi_info *smi_info)
314 unsigned char msg[3];
316 /* Make sure the watchdog pre-timeout flag is not set at startup. */
317 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
318 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
319 msg[2] = WDT_PRE_TIMEOUT_INT;
321 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
322 smi_info->si_state = SI_CLEARING_FLAGS;
325 /* When we have a situtaion where we run out of memory and cannot
326 allocate messages, we just leave them in the BMC and run the system
327 polled until we can allocate some memory. Once we have some
328 memory, we will re-enable the interrupt. */
329 static inline void disable_si_irq(struct smi_info *smi_info)
331 if ((smi_info->irq) && (! smi_info->interrupt_disabled)) {
332 disable_irq_nosync(smi_info->irq);
333 smi_info->interrupt_disabled = 1;
337 static inline void enable_si_irq(struct smi_info *smi_info)
339 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
340 enable_irq(smi_info->irq);
341 smi_info->interrupt_disabled = 0;
345 static void handle_flags(struct smi_info *smi_info)
348 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
349 /* Watchdog pre-timeout */
350 spin_lock(&smi_info->count_lock);
351 smi_info->watchdog_pretimeouts++;
352 spin_unlock(&smi_info->count_lock);
354 start_clear_flags(smi_info);
355 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
356 spin_unlock(&(smi_info->si_lock));
357 ipmi_smi_watchdog_pretimeout(smi_info->intf);
358 spin_lock(&(smi_info->si_lock));
359 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
360 /* Messages available. */
361 smi_info->curr_msg = ipmi_alloc_smi_msg();
362 if (! smi_info->curr_msg) {
363 disable_si_irq(smi_info);
364 smi_info->si_state = SI_NORMAL;
367 enable_si_irq(smi_info);
369 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
370 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
371 smi_info->curr_msg->data_size = 2;
373 smi_info->handlers->start_transaction(
375 smi_info->curr_msg->data,
376 smi_info->curr_msg->data_size);
377 smi_info->si_state = SI_GETTING_MESSAGES;
378 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
379 /* Events available. */
380 smi_info->curr_msg = ipmi_alloc_smi_msg();
381 if (! smi_info->curr_msg) {
382 disable_si_irq(smi_info);
383 smi_info->si_state = SI_NORMAL;
386 enable_si_irq(smi_info);
388 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
389 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
390 smi_info->curr_msg->data_size = 2;
392 smi_info->handlers->start_transaction(
394 smi_info->curr_msg->data,
395 smi_info->curr_msg->data_size);
396 smi_info->si_state = SI_GETTING_EVENTS;
397 } else if (smi_info->msg_flags & OEM_DATA_AVAIL) {
398 if (smi_info->oem_data_avail_handler)
399 if (smi_info->oem_data_avail_handler(smi_info))
402 smi_info->si_state = SI_NORMAL;
406 static void handle_transaction_done(struct smi_info *smi_info)
408 struct ipmi_smi_msg *msg;
413 printk("**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
415 switch (smi_info->si_state) {
417 if (! smi_info->curr_msg)
420 smi_info->curr_msg->rsp_size
421 = smi_info->handlers->get_result(
423 smi_info->curr_msg->rsp,
424 IPMI_MAX_MSG_LENGTH);
426 /* Do this here becase deliver_recv_msg() releases the
427 lock, and a new message can be put in during the
428 time the lock is released. */
429 msg = smi_info->curr_msg;
430 smi_info->curr_msg = NULL;
431 deliver_recv_msg(smi_info, msg);
434 case SI_GETTING_FLAGS:
436 unsigned char msg[4];
439 /* We got the flags from the SMI, now handle them. */
440 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
442 /* Error fetching flags, just give up for
444 smi_info->si_state = SI_NORMAL;
445 } else if (len < 4) {
446 /* Hmm, no flags. That's technically illegal, but
447 don't use uninitialized data. */
448 smi_info->si_state = SI_NORMAL;
450 smi_info->msg_flags = msg[3];
451 handle_flags(smi_info);
456 case SI_CLEARING_FLAGS:
457 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
459 unsigned char msg[3];
461 /* We cleared the flags. */
462 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
464 /* Error clearing flags */
466 "ipmi_si: Error clearing flags: %2.2x\n",
469 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
470 start_enable_irq(smi_info);
472 smi_info->si_state = SI_NORMAL;
476 case SI_GETTING_EVENTS:
478 smi_info->curr_msg->rsp_size
479 = smi_info->handlers->get_result(
481 smi_info->curr_msg->rsp,
482 IPMI_MAX_MSG_LENGTH);
484 /* Do this here becase deliver_recv_msg() releases the
485 lock, and a new message can be put in during the
486 time the lock is released. */
487 msg = smi_info->curr_msg;
488 smi_info->curr_msg = NULL;
489 if (msg->rsp[2] != 0) {
490 /* Error getting event, probably done. */
493 /* Take off the event flag. */
494 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
495 handle_flags(smi_info);
497 spin_lock(&smi_info->count_lock);
499 spin_unlock(&smi_info->count_lock);
501 /* Do this before we deliver the message
502 because delivering the message releases the
503 lock and something else can mess with the
505 handle_flags(smi_info);
507 deliver_recv_msg(smi_info, msg);
512 case SI_GETTING_MESSAGES:
514 smi_info->curr_msg->rsp_size
515 = smi_info->handlers->get_result(
517 smi_info->curr_msg->rsp,
518 IPMI_MAX_MSG_LENGTH);
520 /* Do this here becase deliver_recv_msg() releases the
521 lock, and a new message can be put in during the
522 time the lock is released. */
523 msg = smi_info->curr_msg;
524 smi_info->curr_msg = NULL;
525 if (msg->rsp[2] != 0) {
526 /* Error getting event, probably done. */
529 /* Take off the msg flag. */
530 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
531 handle_flags(smi_info);
533 spin_lock(&smi_info->count_lock);
534 smi_info->incoming_messages++;
535 spin_unlock(&smi_info->count_lock);
537 /* Do this before we deliver the message
538 because delivering the message releases the
539 lock and something else can mess with the
541 handle_flags(smi_info);
543 deliver_recv_msg(smi_info, msg);
548 case SI_ENABLE_INTERRUPTS1:
550 unsigned char msg[4];
552 /* We got the flags from the SMI, now handle them. */
553 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
556 "ipmi_si: Could not enable interrupts"
557 ", failed get, using polled mode.\n");
558 smi_info->si_state = SI_NORMAL;
560 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
561 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
562 msg[2] = msg[3] | 1; /* enable msg queue int */
563 smi_info->handlers->start_transaction(
564 smi_info->si_sm, msg, 3);
565 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
570 case SI_ENABLE_INTERRUPTS2:
572 unsigned char msg[4];
574 /* We got the flags from the SMI, now handle them. */
575 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
578 "ipmi_si: Could not enable interrupts"
579 ", failed set, using polled mode.\n");
581 smi_info->si_state = SI_NORMAL;
587 /* Called on timeouts and events. Timeouts should pass the elapsed
588 time, interrupts should pass in zero. */
589 static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
592 enum si_sm_result si_sm_result;
595 /* There used to be a loop here that waited a little while
596 (around 25us) before giving up. That turned out to be
597 pointless, the minimum delays I was seeing were in the 300us
598 range, which is far too long to wait in an interrupt. So
599 we just run until the state machine tells us something
600 happened or it needs a delay. */
601 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
603 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
605 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
608 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE)
610 spin_lock(&smi_info->count_lock);
611 smi_info->complete_transactions++;
612 spin_unlock(&smi_info->count_lock);
614 handle_transaction_done(smi_info);
615 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
617 else if (si_sm_result == SI_SM_HOSED)
619 spin_lock(&smi_info->count_lock);
620 smi_info->hosed_count++;
621 spin_unlock(&smi_info->count_lock);
623 /* Do the before return_hosed_msg, because that
624 releases the lock. */
625 smi_info->si_state = SI_NORMAL;
626 if (smi_info->curr_msg != NULL) {
627 /* If we were handling a user message, format
628 a response to send to the upper layer to
629 tell it about the error. */
630 return_hosed_msg(smi_info);
632 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
635 /* We prefer handling attn over new messages. */
636 if (si_sm_result == SI_SM_ATTN)
638 unsigned char msg[2];
640 spin_lock(&smi_info->count_lock);
641 smi_info->attentions++;
642 spin_unlock(&smi_info->count_lock);
644 /* Got a attn, send down a get message flags to see
645 what's causing it. It would be better to handle
646 this in the upper layer, but due to the way
647 interrupts work with the SMI, that's not really
649 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
650 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
652 smi_info->handlers->start_transaction(
653 smi_info->si_sm, msg, 2);
654 smi_info->si_state = SI_GETTING_FLAGS;
658 /* If we are currently idle, try to start the next message. */
659 if (si_sm_result == SI_SM_IDLE) {
660 spin_lock(&smi_info->count_lock);
662 spin_unlock(&smi_info->count_lock);
664 si_sm_result = start_next_msg(smi_info);
665 if (si_sm_result != SI_SM_IDLE)
669 if ((si_sm_result == SI_SM_IDLE)
670 && (atomic_read(&smi_info->req_events)))
672 /* We are idle and the upper layer requested that I fetch
674 unsigned char msg[2];
676 spin_lock(&smi_info->count_lock);
677 smi_info->flag_fetches++;
678 spin_unlock(&smi_info->count_lock);
680 atomic_set(&smi_info->req_events, 0);
681 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
682 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
684 smi_info->handlers->start_transaction(
685 smi_info->si_sm, msg, 2);
686 smi_info->si_state = SI_GETTING_FLAGS;
693 static void sender(void *send_info,
694 struct ipmi_smi_msg *msg,
697 struct smi_info *smi_info = send_info;
698 enum si_sm_result result;
704 spin_lock_irqsave(&(smi_info->msg_lock), flags);
707 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
710 if (smi_info->run_to_completion) {
711 /* If we are running to completion, then throw it in
712 the list and run transactions until everything is
713 clear. Priority doesn't matter here. */
714 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
716 /* We have to release the msg lock and claim the smi
717 lock in this case, because of race conditions. */
718 spin_unlock_irqrestore(&(smi_info->msg_lock), flags);
720 spin_lock_irqsave(&(smi_info->si_lock), flags);
721 result = smi_event_handler(smi_info, 0);
722 while (result != SI_SM_IDLE) {
723 udelay(SI_SHORT_TIMEOUT_USEC);
724 result = smi_event_handler(smi_info,
725 SI_SHORT_TIMEOUT_USEC);
727 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
731 list_add_tail(&(msg->link), &(smi_info->hp_xmit_msgs));
733 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
736 spin_unlock_irqrestore(&(smi_info->msg_lock), flags);
738 spin_lock_irqsave(&(smi_info->si_lock), flags);
739 if ((smi_info->si_state == SI_NORMAL)
740 && (smi_info->curr_msg == NULL))
742 start_next_msg(smi_info);
743 si_restart_short_timer(smi_info);
745 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
748 static void set_run_to_completion(void *send_info, int i_run_to_completion)
750 struct smi_info *smi_info = send_info;
751 enum si_sm_result result;
754 spin_lock_irqsave(&(smi_info->si_lock), flags);
756 smi_info->run_to_completion = i_run_to_completion;
757 if (i_run_to_completion) {
758 result = smi_event_handler(smi_info, 0);
759 while (result != SI_SM_IDLE) {
760 udelay(SI_SHORT_TIMEOUT_USEC);
761 result = smi_event_handler(smi_info,
762 SI_SHORT_TIMEOUT_USEC);
766 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
769 static void poll(void *send_info)
771 struct smi_info *smi_info = send_info;
773 smi_event_handler(smi_info, 0);
776 static void request_events(void *send_info)
778 struct smi_info *smi_info = send_info;
780 atomic_set(&smi_info->req_events, 1);
783 static int initialized = 0;
785 /* Must be called with interrupts off and with the si_lock held. */
786 static void si_restart_short_timer(struct smi_info *smi_info)
788 #if defined(CONFIG_HIGH_RES_TIMERS)
790 unsigned long jiffies_now;
793 if (del_timer(&(smi_info->si_timer))) {
794 /* If we don't delete the timer, then it will go off
795 immediately, anyway. So we only process if we
796 actually delete the timer. */
799 seq = read_seqbegin_irqsave(&xtime_lock, flags);
800 jiffies_now = jiffies;
801 smi_info->si_timer.expires = jiffies_now;
802 smi_info->si_timer.arch_cycle_expires
803 = get_arch_cycles(jiffies_now);
804 } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
806 add_usec_to_timer(&smi_info->si_timer, SI_SHORT_TIMEOUT_USEC);
808 add_timer(&(smi_info->si_timer));
809 spin_lock_irqsave(&smi_info->count_lock, flags);
810 smi_info->timeout_restarts++;
811 spin_unlock_irqrestore(&smi_info->count_lock, flags);
816 static void smi_timeout(unsigned long data)
818 struct smi_info *smi_info = (struct smi_info *) data;
819 enum si_sm_result smi_result;
821 unsigned long jiffies_now;
822 unsigned long time_diff;
827 if (smi_info->stop_operation) {
828 smi_info->timer_stopped = 1;
832 spin_lock_irqsave(&(smi_info->si_lock), flags);
835 printk("**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
837 jiffies_now = jiffies;
838 time_diff = ((jiffies_now - smi_info->last_timeout_jiffies)
839 * SI_USEC_PER_JIFFY);
840 smi_result = smi_event_handler(smi_info, time_diff);
842 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
844 smi_info->last_timeout_jiffies = jiffies_now;
846 if ((smi_info->irq) && (! smi_info->interrupt_disabled)) {
847 /* Running with interrupts, only do long timeouts. */
848 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
849 spin_lock_irqsave(&smi_info->count_lock, flags);
850 smi_info->long_timeouts++;
851 spin_unlock_irqrestore(&smi_info->count_lock, flags);
855 /* If the state machine asks for a short delay, then shorten
856 the timer timeout. */
857 if (smi_result == SI_SM_CALL_WITH_DELAY) {
858 #if defined(CONFIG_HIGH_RES_TIMERS)
861 spin_lock_irqsave(&smi_info->count_lock, flags);
862 smi_info->short_timeouts++;
863 spin_unlock_irqrestore(&smi_info->count_lock, flags);
864 #if defined(CONFIG_HIGH_RES_TIMERS)
866 seq = read_seqbegin_irqsave(&xtime_lock, flags);
867 smi_info->si_timer.expires = jiffies;
868 smi_info->si_timer.arch_cycle_expires
869 = get_arch_cycles(smi_info->si_timer.expires);
870 } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
871 add_usec_to_timer(&smi_info->si_timer, SI_SHORT_TIMEOUT_USEC);
873 smi_info->si_timer.expires = jiffies + 1;
876 spin_lock_irqsave(&smi_info->count_lock, flags);
877 smi_info->long_timeouts++;
878 spin_unlock_irqrestore(&smi_info->count_lock, flags);
879 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
880 #if defined(CONFIG_HIGH_RES_TIMERS)
881 smi_info->si_timer.arch_cycle_expires = 0;
886 add_timer(&(smi_info->si_timer));
889 static irqreturn_t si_irq_handler(int irq, void *data, struct pt_regs *regs)
891 struct smi_info *smi_info = data;
897 spin_lock_irqsave(&(smi_info->si_lock), flags);
899 spin_lock(&smi_info->count_lock);
900 smi_info->interrupts++;
901 spin_unlock(&smi_info->count_lock);
903 if (smi_info->stop_operation)
908 printk("**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
910 smi_event_handler(smi_info, 0);
912 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
916 static irqreturn_t si_bt_irq_handler(int irq, void *data, struct pt_regs *regs)
918 struct smi_info *smi_info = data;
919 /* We need to clear the IRQ flag for the BT interface. */
920 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
921 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
922 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
923 return si_irq_handler(irq, data, regs);
927 static struct ipmi_smi_handlers handlers =
929 .owner = THIS_MODULE,
931 .request_events = request_events,
932 .set_run_to_completion = set_run_to_completion,
936 /* There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
937 a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS */
939 #define SI_MAX_PARMS 4
940 #define SI_MAX_DRIVERS ((SI_MAX_PARMS * 2) + 2)
941 static struct smi_info *smi_infos[SI_MAX_DRIVERS] =
942 { NULL, NULL, NULL, NULL };
944 #define DEVICE_NAME "ipmi_si"
946 #define DEFAULT_KCS_IO_PORT 0xca2
947 #define DEFAULT_SMIC_IO_PORT 0xca9
948 #define DEFAULT_BT_IO_PORT 0xe4
949 #define DEFAULT_REGSPACING 1
951 static int si_trydefaults = 1;
952 static char *si_type[SI_MAX_PARMS];
953 #define MAX_SI_TYPE_STR 30
954 static char si_type_str[MAX_SI_TYPE_STR];
955 static unsigned long addrs[SI_MAX_PARMS];
956 static int num_addrs;
957 static unsigned int ports[SI_MAX_PARMS];
958 static int num_ports;
959 static int irqs[SI_MAX_PARMS];
961 static int regspacings[SI_MAX_PARMS];
962 static int num_regspacings = 0;
963 static int regsizes[SI_MAX_PARMS];
964 static int num_regsizes = 0;
965 static int regshifts[SI_MAX_PARMS];
966 static int num_regshifts = 0;
967 static int slave_addrs[SI_MAX_PARMS];
968 static int num_slave_addrs = 0;
971 module_param_named(trydefaults, si_trydefaults, bool, 0);
972 MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
973 " default scan of the KCS and SMIC interface at the standard"
975 module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
976 MODULE_PARM_DESC(type, "Defines the type of each interface, each"
977 " interface separated by commas. The types are 'kcs',"
978 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
979 " the first interface to kcs and the second to bt");
980 module_param_array(addrs, long, &num_addrs, 0);
981 MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
982 " addresses separated by commas. Only use if an interface"
983 " is in memory. Otherwise, set it to zero or leave"
985 module_param_array(ports, int, &num_ports, 0);
986 MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
987 " addresses separated by commas. Only use if an interface"
988 " is a port. Otherwise, set it to zero or leave"
990 module_param_array(irqs, int, &num_irqs, 0);
991 MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
992 " addresses separated by commas. Only use if an interface"
993 " has an interrupt. Otherwise, set it to zero or leave"
995 module_param_array(regspacings, int, &num_regspacings, 0);
996 MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
997 " and each successive register used by the interface. For"
998 " instance, if the start address is 0xca2 and the spacing"
999 " is 2, then the second address is at 0xca4. Defaults"
1001 module_param_array(regsizes, int, &num_regsizes, 0);
1002 MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1003 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1004 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1005 " the 8-bit IPMI register has to be read from a larger"
1007 module_param_array(regshifts, int, &num_regshifts, 0);
1008 MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1009 " IPMI register, in bits. For instance, if the data"
1010 " is read from a 32-bit word and the IPMI data is in"
1011 " bit 8-15, then the shift would be 8");
1012 module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1013 MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1014 " the controller. Normally this is 0x20, but can be"
1015 " overridden by this parm. This is an array indexed"
1016 " by interface number.");
1019 #define IPMI_MEM_ADDR_SPACE 1
1020 #define IPMI_IO_ADDR_SPACE 2
1022 #if defined(CONFIG_ACPI_INTERPRETER) || defined(CONFIG_X86) || defined(CONFIG_PCI)
1023 static int is_new_interface(int intf, u8 addr_space, unsigned long base_addr)
1027 for (i = 0; i < SI_MAX_PARMS; ++i) {
1028 /* Don't check our address. */
1031 if (si_type[i] != NULL) {
1032 if ((addr_space == IPMI_MEM_ADDR_SPACE &&
1033 base_addr == addrs[i]) ||
1034 (addr_space == IPMI_IO_ADDR_SPACE &&
1035 base_addr == ports[i]))
1046 static int std_irq_setup(struct smi_info *info)
1053 if (info->si_type == SI_BT) {
1054 rv = request_irq(info->irq,
1060 /* Enable the interrupt in the BT interface. */
1061 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1062 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1064 rv = request_irq(info->irq,
1071 "ipmi_si: %s unable to claim interrupt %d,"
1072 " running polled\n",
1073 DEVICE_NAME, info->irq);
1076 printk(" Using irq %d\n", info->irq);
1082 static void std_irq_cleanup(struct smi_info *info)
1087 if (info->si_type == SI_BT)
1088 /* Disable the interrupt in the BT interface. */
1089 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1090 free_irq(info->irq, info);
1093 static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1095 unsigned int *addr = io->info;
1097 return inb((*addr)+(offset*io->regspacing));
1100 static void port_outb(struct si_sm_io *io, unsigned int offset,
1103 unsigned int *addr = io->info;
1105 outb(b, (*addr)+(offset * io->regspacing));
1108 static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1110 unsigned int *addr = io->info;
1112 return (inw((*addr)+(offset * io->regspacing)) >> io->regshift) & 0xff;
1115 static void port_outw(struct si_sm_io *io, unsigned int offset,
1118 unsigned int *addr = io->info;
1120 outw(b << io->regshift, (*addr)+(offset * io->regspacing));
1123 static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1125 unsigned int *addr = io->info;
1127 return (inl((*addr)+(offset * io->regspacing)) >> io->regshift) & 0xff;
1130 static void port_outl(struct si_sm_io *io, unsigned int offset,
1133 unsigned int *addr = io->info;
1135 outl(b << io->regshift, (*addr)+(offset * io->regspacing));
1138 static void port_cleanup(struct smi_info *info)
1140 unsigned int *addr = info->io.info;
1143 if (addr && (*addr)) {
1144 mapsize = ((info->io_size * info->io.regspacing)
1145 - (info->io.regspacing - info->io.regsize));
1147 release_region (*addr, mapsize);
1152 static int port_setup(struct smi_info *info)
1154 unsigned int *addr = info->io.info;
1157 if (! addr || (! *addr))
1160 info->io_cleanup = port_cleanup;
1162 /* Figure out the actual inb/inw/inl/etc routine to use based
1163 upon the register size. */
1164 switch (info->io.regsize) {
1166 info->io.inputb = port_inb;
1167 info->io.outputb = port_outb;
1170 info->io.inputb = port_inw;
1171 info->io.outputb = port_outw;
1174 info->io.inputb = port_inl;
1175 info->io.outputb = port_outl;
1178 printk("ipmi_si: Invalid register size: %d\n",
1183 /* Calculate the total amount of memory to claim. This is an
1184 * unusual looking calculation, but it avoids claiming any
1185 * more memory than it has to. It will claim everything
1186 * between the first address to the end of the last full
1188 mapsize = ((info->io_size * info->io.regspacing)
1189 - (info->io.regspacing - info->io.regsize));
1191 if (request_region(*addr, mapsize, DEVICE_NAME) == NULL)
1196 static int try_init_port(int intf_num, struct smi_info **new_info)
1198 struct smi_info *info;
1200 if (! ports[intf_num])
1203 if (! is_new_interface(intf_num, IPMI_IO_ADDR_SPACE,
1207 info = kmalloc(sizeof(*info), GFP_KERNEL);
1209 printk(KERN_ERR "ipmi_si: Could not allocate SI data (1)\n");
1212 memset(info, 0, sizeof(*info));
1214 info->io_setup = port_setup;
1215 info->io.info = &(ports[intf_num]);
1216 info->io.addr = NULL;
1217 info->io.regspacing = regspacings[intf_num];
1218 if (! info->io.regspacing)
1219 info->io.regspacing = DEFAULT_REGSPACING;
1220 info->io.regsize = regsizes[intf_num];
1221 if (! info->io.regsize)
1222 info->io.regsize = DEFAULT_REGSPACING;
1223 info->io.regshift = regshifts[intf_num];
1225 info->irq_setup = NULL;
1228 if (si_type[intf_num] == NULL)
1229 si_type[intf_num] = "kcs";
1231 printk("ipmi_si: Trying \"%s\" at I/O port 0x%x\n",
1232 si_type[intf_num], ports[intf_num]);
1236 static unsigned char mem_inb(struct si_sm_io *io, unsigned int offset)
1238 return readb((io->addr)+(offset * io->regspacing));
1241 static void mem_outb(struct si_sm_io *io, unsigned int offset,
1244 writeb(b, (io->addr)+(offset * io->regspacing));
1247 static unsigned char mem_inw(struct si_sm_io *io, unsigned int offset)
1249 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
1253 static void mem_outw(struct si_sm_io *io, unsigned int offset,
1256 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1259 static unsigned char mem_inl(struct si_sm_io *io, unsigned int offset)
1261 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
1265 static void mem_outl(struct si_sm_io *io, unsigned int offset,
1268 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1272 static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1274 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
1278 static void mem_outq(struct si_sm_io *io, unsigned int offset,
1281 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1285 static void mem_cleanup(struct smi_info *info)
1287 unsigned long *addr = info->io.info;
1290 if (info->io.addr) {
1291 iounmap(info->io.addr);
1293 mapsize = ((info->io_size * info->io.regspacing)
1294 - (info->io.regspacing - info->io.regsize));
1296 release_mem_region(*addr, mapsize);
1301 static int mem_setup(struct smi_info *info)
1303 unsigned long *addr = info->io.info;
1306 if (! addr || (! *addr))
1309 info->io_cleanup = mem_cleanup;
1311 /* Figure out the actual readb/readw/readl/etc routine to use based
1312 upon the register size. */
1313 switch (info->io.regsize) {
1315 info->io.inputb = mem_inb;
1316 info->io.outputb = mem_outb;
1319 info->io.inputb = mem_inw;
1320 info->io.outputb = mem_outw;
1323 info->io.inputb = mem_inl;
1324 info->io.outputb = mem_outl;
1328 info->io.inputb = mem_inq;
1329 info->io.outputb = mem_outq;
1333 printk("ipmi_si: Invalid register size: %d\n",
1338 /* Calculate the total amount of memory to claim. This is an
1339 * unusual looking calculation, but it avoids claiming any
1340 * more memory than it has to. It will claim everything
1341 * between the first address to the end of the last full
1343 mapsize = ((info->io_size * info->io.regspacing)
1344 - (info->io.regspacing - info->io.regsize));
1346 if (request_mem_region(*addr, mapsize, DEVICE_NAME) == NULL)
1349 info->io.addr = ioremap(*addr, mapsize);
1350 if (info->io.addr == NULL) {
1351 release_mem_region(*addr, mapsize);
1357 static int try_init_mem(int intf_num, struct smi_info **new_info)
1359 struct smi_info *info;
1361 if (! addrs[intf_num])
1364 if (! is_new_interface(intf_num, IPMI_MEM_ADDR_SPACE,
1368 info = kmalloc(sizeof(*info), GFP_KERNEL);
1370 printk(KERN_ERR "ipmi_si: Could not allocate SI data (2)\n");
1373 memset(info, 0, sizeof(*info));
1375 info->io_setup = mem_setup;
1376 info->io.info = &addrs[intf_num];
1377 info->io.addr = NULL;
1378 info->io.regspacing = regspacings[intf_num];
1379 if (! info->io.regspacing)
1380 info->io.regspacing = DEFAULT_REGSPACING;
1381 info->io.regsize = regsizes[intf_num];
1382 if (! info->io.regsize)
1383 info->io.regsize = DEFAULT_REGSPACING;
1384 info->io.regshift = regshifts[intf_num];
1386 info->irq_setup = NULL;
1389 if (si_type[intf_num] == NULL)
1390 si_type[intf_num] = "kcs";
1392 printk("ipmi_si: Trying \"%s\" at memory address 0x%lx\n",
1393 si_type[intf_num], addrs[intf_num]);
1398 #ifdef CONFIG_ACPI_INTERPRETER
1400 #include <linux/acpi.h>
1402 /* Once we get an ACPI failure, we don't try any more, because we go
1403 through the tables sequentially. Once we don't find a table, there
1405 static int acpi_failure = 0;
1407 /* For GPE-type interrupts. */
1408 static u32 ipmi_acpi_gpe(void *context)
1410 struct smi_info *smi_info = context;
1411 unsigned long flags;
1416 spin_lock_irqsave(&(smi_info->si_lock), flags);
1418 spin_lock(&smi_info->count_lock);
1419 smi_info->interrupts++;
1420 spin_unlock(&smi_info->count_lock);
1422 if (smi_info->stop_operation)
1426 do_gettimeofday(&t);
1427 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1429 smi_event_handler(smi_info, 0);
1431 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1433 return ACPI_INTERRUPT_HANDLED;
1436 static int acpi_gpe_irq_setup(struct smi_info *info)
1443 /* FIXME - is level triggered right? */
1444 status = acpi_install_gpe_handler(NULL,
1446 ACPI_GPE_LEVEL_TRIGGERED,
1449 if (status != AE_OK) {
1451 "ipmi_si: %s unable to claim ACPI GPE %d,"
1452 " running polled\n",
1453 DEVICE_NAME, info->irq);
1457 printk(" Using ACPI GPE %d\n", info->irq);
1462 static void acpi_gpe_irq_cleanup(struct smi_info *info)
1467 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1472 * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/Docs/TechPapers/IA64/hpspmi.pdf
1483 s8 CreatorRevision[4];
1486 s16 SpecificationRevision;
1489 * Bit 0 - SCI interrupt supported
1490 * Bit 1 - I/O APIC/SAPIC
1494 /* If bit 0 of InterruptType is set, then this is the SCI
1495 interrupt in the GPEx_STS register. */
1500 /* If bit 1 of InterruptType is set, then this is the I/O
1501 APIC/SAPIC interrupt. */
1502 u32 GlobalSystemInterrupt;
1504 /* The actual register address. */
1505 struct acpi_generic_address addr;
1509 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
1512 static int try_init_acpi(int intf_num, struct smi_info **new_info)
1514 struct smi_info *info;
1516 struct SPMITable *spmi;
1523 status = acpi_get_firmware_table("SPMI", intf_num+1,
1524 ACPI_LOGICAL_ADDRESSING,
1525 (struct acpi_table_header **) &spmi);
1526 if (status != AE_OK) {
1531 if (spmi->IPMIlegacy != 1) {
1532 printk(KERN_INFO "IPMI: Bad SPMI legacy %d\n", spmi->IPMIlegacy);
1536 if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
1537 addr_space = IPMI_MEM_ADDR_SPACE;
1539 addr_space = IPMI_IO_ADDR_SPACE;
1540 if (! is_new_interface(-1, addr_space, spmi->addr.address))
1543 if (! spmi->addr.register_bit_width) {
1548 /* Figure out the interface type. */
1549 switch (spmi->InterfaceType)
1552 si_type[intf_num] = "kcs";
1556 si_type[intf_num] = "smic";
1560 si_type[intf_num] = "bt";
1564 printk(KERN_INFO "ipmi_si: Unknown ACPI/SPMI SI type %d\n",
1565 spmi->InterfaceType);
1569 info = kmalloc(sizeof(*info), GFP_KERNEL);
1571 printk(KERN_ERR "ipmi_si: Could not allocate SI data (3)\n");
1574 memset(info, 0, sizeof(*info));
1576 if (spmi->InterruptType & 1) {
1577 /* We've got a GPE interrupt. */
1578 info->irq = spmi->GPE;
1579 info->irq_setup = acpi_gpe_irq_setup;
1580 info->irq_cleanup = acpi_gpe_irq_cleanup;
1581 } else if (spmi->InterruptType & 2) {
1582 /* We've got an APIC/SAPIC interrupt. */
1583 info->irq = spmi->GlobalSystemInterrupt;
1584 info->irq_setup = std_irq_setup;
1585 info->irq_cleanup = std_irq_cleanup;
1587 /* Use the default interrupt setting. */
1589 info->irq_setup = NULL;
1592 if (spmi->addr.register_bit_width) {
1593 /* A (hopefully) properly formed register bit width. */
1594 regspacings[intf_num] = spmi->addr.register_bit_width / 8;
1595 info->io.regspacing = spmi->addr.register_bit_width / 8;
1597 /* Some broken systems get this wrong and set the value
1598 * to zero. Assume it is the default spacing. If that
1599 * is wrong, too bad, the vendor should fix the tables. */
1600 regspacings[intf_num] = DEFAULT_REGSPACING;
1601 info->io.regspacing = DEFAULT_REGSPACING;
1603 regsizes[intf_num] = regspacings[intf_num];
1604 info->io.regsize = regsizes[intf_num];
1605 regshifts[intf_num] = spmi->addr.register_bit_offset;
1606 info->io.regshift = regshifts[intf_num];
1608 if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
1610 info->io_setup = mem_setup;
1611 addrs[intf_num] = spmi->addr.address;
1612 info->io.info = &(addrs[intf_num]);
1613 } else if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
1615 info->io_setup = port_setup;
1616 ports[intf_num] = spmi->addr.address;
1617 info->io.info = &(ports[intf_num]);
1620 printk("ipmi_si: Unknown ACPI I/O Address type\n");
1626 printk("ipmi_si: ACPI/SPMI specifies \"%s\" %s SI @ 0x%lx\n",
1627 si_type[intf_num], io_type, (unsigned long) spmi->addr.address);
1633 typedef struct dmi_ipmi_data
1637 unsigned long base_addr;
1643 static dmi_ipmi_data_t dmi_data[SI_MAX_DRIVERS];
1644 static int dmi_data_entries;
1646 static int __init decode_dmi(struct dmi_header *dm, int intf_num)
1648 u8 *data = (u8 *)dm;
1649 unsigned long base_addr;
1651 u8 len = dm->length;
1652 dmi_ipmi_data_t *ipmi_data = dmi_data+intf_num;
1654 ipmi_data->type = data[4];
1656 memcpy(&base_addr, data+8, sizeof(unsigned long));
1658 if (base_addr & 1) {
1660 base_addr &= 0xFFFE;
1661 ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
1665 ipmi_data->addr_space = IPMI_MEM_ADDR_SPACE;
1667 /* If bit 4 of byte 0x10 is set, then the lsb for the address
1669 ipmi_data->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
1671 ipmi_data->irq = data[0x11];
1673 /* The top two bits of byte 0x10 hold the register spacing. */
1674 reg_spacing = (data[0x10] & 0xC0) >> 6;
1675 switch(reg_spacing){
1676 case 0x00: /* Byte boundaries */
1677 ipmi_data->offset = 1;
1679 case 0x01: /* 32-bit boundaries */
1680 ipmi_data->offset = 4;
1682 case 0x02: /* 16-byte boundaries */
1683 ipmi_data->offset = 16;
1686 /* Some other interface, just ignore it. */
1691 /* Note that technically, the lower bit of the base
1692 * address should be 1 if the address is I/O and 0 if
1693 * the address is in memory. So many systems get that
1694 * wrong (and all that I have seen are I/O) so we just
1695 * ignore that bit and assume I/O. Systems that use
1696 * memory should use the newer spec, anyway. */
1697 ipmi_data->base_addr = base_addr & 0xfffe;
1698 ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
1699 ipmi_data->offset = 1;
1702 ipmi_data->slave_addr = data[6];
1704 if (is_new_interface(-1, ipmi_data->addr_space,ipmi_data->base_addr)) {
1709 memset(ipmi_data, 0, sizeof(dmi_ipmi_data_t));
1714 static void __init dmi_find_bmc(void)
1716 struct dmi_device *dev = NULL;
1719 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
1720 if (intf_num >= SI_MAX_DRIVERS)
1723 decode_dmi((struct dmi_header *) dev->device_data, intf_num++);
1727 static int try_init_smbios(int intf_num, struct smi_info **new_info)
1729 struct smi_info *info;
1730 dmi_ipmi_data_t *ipmi_data = dmi_data+intf_num;
1733 if (intf_num >= dmi_data_entries)
1736 switch (ipmi_data->type) {
1737 case 0x01: /* KCS */
1738 si_type[intf_num] = "kcs";
1740 case 0x02: /* SMIC */
1741 si_type[intf_num] = "smic";
1744 si_type[intf_num] = "bt";
1750 info = kmalloc(sizeof(*info), GFP_KERNEL);
1752 printk(KERN_ERR "ipmi_si: Could not allocate SI data (4)\n");
1755 memset(info, 0, sizeof(*info));
1757 if (ipmi_data->addr_space == 1) {
1759 info->io_setup = mem_setup;
1760 addrs[intf_num] = ipmi_data->base_addr;
1761 info->io.info = &(addrs[intf_num]);
1762 } else if (ipmi_data->addr_space == 2) {
1764 info->io_setup = port_setup;
1765 ports[intf_num] = ipmi_data->base_addr;
1766 info->io.info = &(ports[intf_num]);
1769 printk("ipmi_si: Unknown SMBIOS I/O Address type.\n");
1773 regspacings[intf_num] = ipmi_data->offset;
1774 info->io.regspacing = regspacings[intf_num];
1775 if (! info->io.regspacing)
1776 info->io.regspacing = DEFAULT_REGSPACING;
1777 info->io.regsize = DEFAULT_REGSPACING;
1778 info->io.regshift = regshifts[intf_num];
1780 info->slave_addr = ipmi_data->slave_addr;
1782 irqs[intf_num] = ipmi_data->irq;
1786 printk("ipmi_si: Found SMBIOS-specified state machine at %s"
1787 " address 0x%lx, slave address 0x%x\n",
1788 io_type, (unsigned long)ipmi_data->base_addr,
1789 ipmi_data->slave_addr);
1792 #endif /* CONFIG_X86 */
1796 #define PCI_ERMC_CLASSCODE 0x0C0700
1797 #define PCI_HP_VENDOR_ID 0x103C
1798 #define PCI_MMC_DEVICE_ID 0x121A
1799 #define PCI_MMC_ADDR_CW 0x10
1801 /* Avoid more than one attempt to probe pci smic. */
1802 static int pci_smic_checked = 0;
1804 static int find_pci_smic(int intf_num, struct smi_info **new_info)
1806 struct smi_info *info;
1808 struct pci_dev *pci_dev = NULL;
1812 if (pci_smic_checked)
1815 pci_smic_checked = 1;
1817 pci_dev = pci_get_device(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID, NULL);
1819 pci_dev = pci_get_class(PCI_ERMC_CLASSCODE, NULL);
1820 if (pci_dev && (pci_dev->subsystem_vendor == PCI_HP_VENDOR_ID))
1826 error = pci_read_config_word(pci_dev, PCI_MMC_ADDR_CW, &base_addr);
1829 pci_dev_put(pci_dev);
1831 "ipmi_si: pci_read_config_word() failed (%d).\n",
1836 /* Bit 0: 1 specifies programmed I/O, 0 specifies memory mapped I/O */
1837 if (! (base_addr & 0x0001))
1839 pci_dev_put(pci_dev);
1841 "ipmi_si: memory mapped I/O not supported for PCI"
1846 base_addr &= 0xFFFE;
1848 /* Data register starts at base address + 1 in eRMC */
1851 if (! is_new_interface(-1, IPMI_IO_ADDR_SPACE, base_addr)) {
1852 pci_dev_put(pci_dev);
1856 info = kmalloc(sizeof(*info), GFP_KERNEL);
1858 pci_dev_put(pci_dev);
1859 printk(KERN_ERR "ipmi_si: Could not allocate SI data (5)\n");
1862 memset(info, 0, sizeof(*info));
1864 info->io_setup = port_setup;
1865 ports[intf_num] = base_addr;
1866 info->io.info = &(ports[intf_num]);
1867 info->io.regspacing = regspacings[intf_num];
1868 if (! info->io.regspacing)
1869 info->io.regspacing = DEFAULT_REGSPACING;
1870 info->io.regsize = DEFAULT_REGSPACING;
1871 info->io.regshift = regshifts[intf_num];
1875 irqs[intf_num] = pci_dev->irq;
1876 si_type[intf_num] = "smic";
1878 printk("ipmi_si: Found PCI SMIC at I/O address 0x%lx\n",
1879 (long unsigned int) base_addr);
1881 pci_dev_put(pci_dev);
1884 #endif /* CONFIG_PCI */
1886 static int try_init_plug_and_play(int intf_num, struct smi_info **new_info)
1889 if (find_pci_smic(intf_num, new_info) == 0)
1892 /* Include other methods here. */
1898 static int try_get_dev_id(struct smi_info *smi_info)
1900 unsigned char msg[2];
1901 unsigned char *resp;
1902 unsigned long resp_len;
1903 enum si_sm_result smi_result;
1906 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
1910 /* Do a Get Device ID command, since it comes back with some
1912 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1913 msg[1] = IPMI_GET_DEVICE_ID_CMD;
1914 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
1916 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
1919 if (smi_result == SI_SM_CALL_WITH_DELAY) {
1920 set_current_state(TASK_UNINTERRUPTIBLE);
1921 schedule_timeout(1);
1922 smi_result = smi_info->handlers->event(
1923 smi_info->si_sm, 100);
1925 else if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1927 smi_result = smi_info->handlers->event(
1928 smi_info->si_sm, 0);
1933 if (smi_result == SI_SM_HOSED) {
1934 /* We couldn't get the state machine to run, so whatever's at
1935 the port is probably not an IPMI SMI interface. */
1940 /* Otherwise, we got some data. */
1941 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1942 resp, IPMI_MAX_MSG_LENGTH);
1944 /* That's odd, it should be longer. */
1949 if ((resp[1] != IPMI_GET_DEVICE_ID_CMD) || (resp[2] != 0)) {
1950 /* That's odd, it shouldn't be able to fail. */
1955 /* Record info from the get device id, in case we need it. */
1956 memcpy(&smi_info->device_id, &resp[3],
1957 min_t(unsigned long, resp_len-3, sizeof(smi_info->device_id)));
1964 static int type_file_read_proc(char *page, char **start, off_t off,
1965 int count, int *eof, void *data)
1967 char *out = (char *) page;
1968 struct smi_info *smi = data;
1970 switch (smi->si_type) {
1972 return sprintf(out, "kcs\n");
1974 return sprintf(out, "smic\n");
1976 return sprintf(out, "bt\n");
1982 static int stat_file_read_proc(char *page, char **start, off_t off,
1983 int count, int *eof, void *data)
1985 char *out = (char *) page;
1986 struct smi_info *smi = data;
1988 out += sprintf(out, "interrupts_enabled: %d\n",
1989 smi->irq && ! smi->interrupt_disabled);
1990 out += sprintf(out, "short_timeouts: %ld\n",
1991 smi->short_timeouts);
1992 out += sprintf(out, "long_timeouts: %ld\n",
1993 smi->long_timeouts);
1994 out += sprintf(out, "timeout_restarts: %ld\n",
1995 smi->timeout_restarts);
1996 out += sprintf(out, "idles: %ld\n",
1998 out += sprintf(out, "interrupts: %ld\n",
2000 out += sprintf(out, "attentions: %ld\n",
2002 out += sprintf(out, "flag_fetches: %ld\n",
2004 out += sprintf(out, "hosed_count: %ld\n",
2006 out += sprintf(out, "complete_transactions: %ld\n",
2007 smi->complete_transactions);
2008 out += sprintf(out, "events: %ld\n",
2010 out += sprintf(out, "watchdog_pretimeouts: %ld\n",
2011 smi->watchdog_pretimeouts);
2012 out += sprintf(out, "incoming_messages: %ld\n",
2013 smi->incoming_messages);
2015 return (out - ((char *) page));
2019 * oem_data_avail_to_receive_msg_avail
2020 * @info - smi_info structure with msg_flags set
2022 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2023 * Returns 1 indicating need to re-run handle_flags().
2025 static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2027 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
2033 * setup_dell_poweredge_oem_data_handler
2034 * @info - smi_info.device_id must be populated
2036 * Systems that match, but have firmware version < 1.40 may assert
2037 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2038 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2039 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2040 * as RECEIVE_MSG_AVAIL instead.
2042 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2043 * assert the OEM[012] bits, and if it did, the driver would have to
2044 * change to handle that properly, we don't actually check for the
2046 * Device ID = 0x20 BMC on PowerEdge 8G servers
2047 * Device Revision = 0x80
2048 * Firmware Revision1 = 0x01 BMC version 1.40
2049 * Firmware Revision2 = 0x40 BCD encoded
2050 * IPMI Version = 0x51 IPMI 1.5
2051 * Manufacturer ID = A2 02 00 Dell IANA
2054 #define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2055 #define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2056 #define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
2057 #define DELL_IANA_MFR_ID {0xA2, 0x02, 0x00}
2058 static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2060 struct ipmi_device_id *id = &smi_info->device_id;
2061 const char mfr[3]=DELL_IANA_MFR_ID;
2062 if (! memcmp(mfr, id->manufacturer_id, sizeof(mfr))
2063 && (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID)
2064 && (id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV)
2065 && (id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION))
2067 smi_info->oem_data_avail_handler =
2068 oem_data_avail_to_receive_msg_avail;
2073 * setup_oem_data_handler
2074 * @info - smi_info.device_id must be filled in already
2076 * Fills in smi_info.device_id.oem_data_available_handler
2077 * when we know what function to use there.
2080 static void setup_oem_data_handler(struct smi_info *smi_info)
2082 setup_dell_poweredge_oem_data_handler(smi_info);
2085 /* Returns 0 if initialized, or negative on an error. */
2086 static int init_one_smi(int intf_num, struct smi_info **smi)
2089 struct smi_info *new_smi;
2092 rv = try_init_mem(intf_num, &new_smi);
2094 rv = try_init_port(intf_num, &new_smi);
2095 #ifdef CONFIG_ACPI_INTERPRETER
2096 if (rv && si_trydefaults)
2097 rv = try_init_acpi(intf_num, &new_smi);
2100 if (rv && si_trydefaults)
2101 rv = try_init_smbios(intf_num, &new_smi);
2103 if (rv && si_trydefaults)
2104 rv = try_init_plug_and_play(intf_num, &new_smi);
2109 /* So we know not to free it unless we have allocated one. */
2110 new_smi->intf = NULL;
2111 new_smi->si_sm = NULL;
2112 new_smi->handlers = NULL;
2114 if (! new_smi->irq_setup) {
2115 new_smi->irq = irqs[intf_num];
2116 new_smi->irq_setup = std_irq_setup;
2117 new_smi->irq_cleanup = std_irq_cleanup;
2120 /* Default to KCS if no type is specified. */
2121 if (si_type[intf_num] == NULL) {
2123 si_type[intf_num] = "kcs";
2130 /* Set up the state machine to use. */
2131 if (strcmp(si_type[intf_num], "kcs") == 0) {
2132 new_smi->handlers = &kcs_smi_handlers;
2133 new_smi->si_type = SI_KCS;
2134 } else if (strcmp(si_type[intf_num], "smic") == 0) {
2135 new_smi->handlers = &smic_smi_handlers;
2136 new_smi->si_type = SI_SMIC;
2137 } else if (strcmp(si_type[intf_num], "bt") == 0) {
2138 new_smi->handlers = &bt_smi_handlers;
2139 new_smi->si_type = SI_BT;
2141 /* No support for anything else yet. */
2146 /* Allocate the state machine's data and initialize it. */
2147 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
2148 if (! new_smi->si_sm) {
2149 printk(" Could not allocate state machine memory\n");
2153 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
2156 /* Now that we know the I/O size, we can set up the I/O. */
2157 rv = new_smi->io_setup(new_smi);
2159 printk(" Could not set up I/O space\n");
2163 spin_lock_init(&(new_smi->si_lock));
2164 spin_lock_init(&(new_smi->msg_lock));
2165 spin_lock_init(&(new_smi->count_lock));
2167 /* Do low-level detection first. */
2168 if (new_smi->handlers->detect(new_smi->si_sm)) {
2173 /* Attempt a get device id command. If it fails, we probably
2174 don't have a SMI here. */
2175 rv = try_get_dev_id(new_smi);
2179 setup_oem_data_handler(new_smi);
2181 /* Try to claim any interrupts. */
2182 new_smi->irq_setup(new_smi);
2184 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
2185 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
2186 new_smi->curr_msg = NULL;
2187 atomic_set(&new_smi->req_events, 0);
2188 new_smi->run_to_completion = 0;
2190 new_smi->interrupt_disabled = 0;
2191 new_smi->timer_stopped = 0;
2192 new_smi->stop_operation = 0;
2194 /* Start clearing the flags before we enable interrupts or the
2195 timer to avoid racing with the timer. */
2196 start_clear_flags(new_smi);
2197 /* IRQ is defined to be set when non-zero. */
2199 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
2201 /* The ipmi_register_smi() code does some operations to
2202 determine the channel information, so we must be ready to
2203 handle operations before it is called. This means we have
2204 to stop the timer if we get an error after this point. */
2205 init_timer(&(new_smi->si_timer));
2206 new_smi->si_timer.data = (long) new_smi;
2207 new_smi->si_timer.function = smi_timeout;
2208 new_smi->last_timeout_jiffies = jiffies;
2209 new_smi->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
2210 add_timer(&(new_smi->si_timer));
2212 rv = ipmi_register_smi(&handlers,
2214 ipmi_version_major(&new_smi->device_id),
2215 ipmi_version_minor(&new_smi->device_id),
2216 new_smi->slave_addr,
2220 "ipmi_si: Unable to register device: error %d\n",
2222 goto out_err_stop_timer;
2225 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
2226 type_file_read_proc, NULL,
2227 new_smi, THIS_MODULE);
2230 "ipmi_si: Unable to create proc entry: %d\n",
2232 goto out_err_stop_timer;
2235 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
2236 stat_file_read_proc, NULL,
2237 new_smi, THIS_MODULE);
2240 "ipmi_si: Unable to create proc entry: %d\n",
2242 goto out_err_stop_timer;
2247 printk(" IPMI %s interface initialized\n", si_type[intf_num]);
2252 new_smi->stop_operation = 1;
2254 /* Wait for the timer to stop. This avoids problems with race
2255 conditions removing the timer here. */
2256 while (! new_smi->timer_stopped) {
2257 set_current_state(TASK_UNINTERRUPTIBLE);
2258 schedule_timeout(1);
2263 ipmi_unregister_smi(new_smi->intf);
2265 new_smi->irq_cleanup(new_smi);
2267 /* Wait until we know that we are out of any interrupt
2268 handlers might have been running before we freed the
2270 synchronize_sched();
2272 if (new_smi->si_sm) {
2273 if (new_smi->handlers)
2274 new_smi->handlers->cleanup(new_smi->si_sm);
2275 kfree(new_smi->si_sm);
2277 new_smi->io_cleanup(new_smi);
2282 static __init int init_ipmi_si(void)
2293 /* Parse out the si_type string into its components. */
2296 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
2298 str = strchr(str, ',');
2308 printk(KERN_INFO "IPMI System Interface driver.\n");
2314 rv = init_one_smi(0, &(smi_infos[pos]));
2315 if (rv && ! ports[0] && si_trydefaults) {
2316 /* If we are trying defaults and the initial port is
2317 not set, then set it. */
2319 ports[0] = DEFAULT_KCS_IO_PORT;
2320 rv = init_one_smi(0, &(smi_infos[pos]));
2322 /* No KCS - try SMIC */
2323 si_type[0] = "smic";
2324 ports[0] = DEFAULT_SMIC_IO_PORT;
2325 rv = init_one_smi(0, &(smi_infos[pos]));
2328 /* No SMIC - try BT */
2330 ports[0] = DEFAULT_BT_IO_PORT;
2331 rv = init_one_smi(0, &(smi_infos[pos]));
2337 for (i = 1; i < SI_MAX_PARMS; i++) {
2338 rv = init_one_smi(i, &(smi_infos[pos]));
2343 if (smi_infos[0] == NULL) {
2344 printk("ipmi_si: Unable to find any System Interface(s)\n");
2350 module_init(init_ipmi_si);
2352 static void __exit cleanup_one_si(struct smi_info *to_clean)
2355 unsigned long flags;
2360 /* Tell the timer and interrupt handlers that we are shutting
2362 spin_lock_irqsave(&(to_clean->si_lock), flags);
2363 spin_lock(&(to_clean->msg_lock));
2365 to_clean->stop_operation = 1;
2367 to_clean->irq_cleanup(to_clean);
2369 spin_unlock(&(to_clean->msg_lock));
2370 spin_unlock_irqrestore(&(to_clean->si_lock), flags);
2372 /* Wait until we know that we are out of any interrupt
2373 handlers might have been running before we freed the
2375 synchronize_sched();
2377 /* Wait for the timer to stop. This avoids problems with race
2378 conditions removing the timer here. */
2379 while (! to_clean->timer_stopped) {
2380 set_current_state(TASK_UNINTERRUPTIBLE);
2381 schedule_timeout(1);
2384 /* Interrupts and timeouts are stopped, now make sure the
2385 interface is in a clean state. */
2386 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
2388 set_current_state(TASK_UNINTERRUPTIBLE);
2389 schedule_timeout(1);
2392 rv = ipmi_unregister_smi(to_clean->intf);
2395 "ipmi_si: Unable to unregister device: errno=%d\n",
2399 to_clean->handlers->cleanup(to_clean->si_sm);
2401 kfree(to_clean->si_sm);
2403 to_clean->io_cleanup(to_clean);
2406 static __exit void cleanup_ipmi_si(void)
2413 for (i = 0; i < SI_MAX_DRIVERS; i++) {
2414 cleanup_one_si(smi_infos[i]);
2417 module_exit(cleanup_ipmi_si);
2419 MODULE_LICENSE("GPL");
2420 MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
2421 MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT system interfaces.");