blob: bedd76310045aadafbdcdbdb6fed848834a684e5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipmi_si.c
3 *
4 * The interface to the IPMI driver for the system interfaces (KCS, SMIC,
5 * BT).
6 *
7 * Author: MontaVista Software, Inc.
8 * Corey Minyard <minyard@mvista.com>
9 * source@mvista.com
10 *
11 * Copyright 2002 MontaVista Software Inc.
12 *
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.
17 *
18 *
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.
29 *
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.
33 */
34
35/*
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.
39 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/moduleparam.h>
43#include <asm/system.h>
44#include <linux/sched.h>
45#include <linux/timer.h>
46#include <linux/errno.h>
47#include <linux/spinlock.h>
48#include <linux/slab.h>
49#include <linux/delay.h>
50#include <linux/list.h>
51#include <linux/pci.h>
52#include <linux/ioport.h>
Corey Minyardea940272005-11-07 00:59:59 -080053#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080054#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080055#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/interrupt.h>
58#include <linux/rcupdate.h>
59#include <linux/ipmi_smi.h>
60#include <asm/io.h>
61#include "ipmi_si_sm.h"
62#include <linux/init.h>
Andrey Paninb224cd32005-09-06 15:18:37 -070063#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* Measure times between events in the driver. */
66#undef DEBUG_TIMING
67
68/* Call every 10 ms. */
69#define SI_TIMEOUT_TIME_USEC 10000
70#define SI_USEC_PER_JIFFY (1000000/HZ)
71#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
72#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
73 short timeout */
74
75enum si_intf_state {
76 SI_NORMAL,
77 SI_GETTING_FLAGS,
78 SI_GETTING_EVENTS,
79 SI_CLEARING_FLAGS,
80 SI_CLEARING_FLAGS_THEN_SET_IRQ,
81 SI_GETTING_MESSAGES,
82 SI_ENABLE_INTERRUPTS1,
83 SI_ENABLE_INTERRUPTS2
84 /* FIXME - add watchdog stuff. */
85};
86
Corey Minyard9dbf68f2005-05-01 08:59:11 -070087/* Some BT-specific defines we need here. */
88#define IPMI_BT_INTMASK_REG 2
89#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
90#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092enum si_type {
93 SI_KCS, SI_SMIC, SI_BT
94};
Corey Minyardb0defcd2006-03-26 01:37:20 -080095static char *si_to_str[] = { "KCS", "SMIC", "BT" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Corey Minyard50c812b2006-03-26 01:37:21 -080097#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -070098
Corey Minyard50c812b2006-03-26 01:37:21 -080099static struct device_driver ipmi_driver =
100{
101 .name = DEVICE_NAME,
102 .bus = &platform_bus_type
103};
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105struct smi_info
106{
Corey Minyarda9a2c442005-11-07 01:00:03 -0800107 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 ipmi_smi_t intf;
109 struct si_sm_data *si_sm;
110 struct si_sm_handlers *handlers;
111 enum si_type si_type;
112 spinlock_t si_lock;
113 spinlock_t msg_lock;
114 struct list_head xmit_msgs;
115 struct list_head hp_xmit_msgs;
116 struct ipmi_smi_msg *curr_msg;
117 enum si_intf_state si_state;
118
119 /* Used to handle the various types of I/O that can occur with
120 IPMI */
121 struct si_sm_io io;
122 int (*io_setup)(struct smi_info *info);
123 void (*io_cleanup)(struct smi_info *info);
124 int (*irq_setup)(struct smi_info *info);
125 void (*irq_cleanup)(struct smi_info *info);
126 unsigned int io_size;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800127 char *addr_source; /* ACPI, PCI, SMBIOS, hardcode, default. */
128 void (*addr_source_cleanup)(struct smi_info *info);
129 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700131 /* Per-OEM handler, called from handle_flags().
132 Returns 1 when handle_flags() needs to be re-run
133 or 0 indicating it set si_state itself.
134 */
135 int (*oem_data_avail_handler)(struct smi_info *smi_info);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* Flags from the last GET_MSG_FLAGS command, used when an ATTN
138 is set to hold the flags until we are done handling everything
139 from the flags. */
140#define RECEIVE_MSG_AVAIL 0x01
141#define EVENT_MSG_BUFFER_FULL 0x02
142#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700143#define OEM0_DATA_AVAIL 0x20
144#define OEM1_DATA_AVAIL 0x40
145#define OEM2_DATA_AVAIL 0x80
146#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
147 OEM1_DATA_AVAIL | \
148 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned char msg_flags;
150
151 /* If set to true, this will request events the next time the
152 state machine is idle. */
153 atomic_t req_events;
154
155 /* If true, run the state machine to completion on every send
156 call. Generally used after a panic to make sure stuff goes
157 out. */
158 int run_to_completion;
159
160 /* The I/O port of an SI interface. */
161 int port;
162
163 /* The space between start addresses of the two ports. For
164 instance, if the first port is 0xca2 and the spacing is 4, then
165 the second port is 0xca6. */
166 unsigned int spacing;
167
168 /* zero if no irq; */
169 int irq;
170
171 /* The timer for this si. */
172 struct timer_list si_timer;
173
174 /* The time (in jiffies) the last timeout occurred at. */
175 unsigned long last_timeout_jiffies;
176
177 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800178 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* The driver will disable interrupts when it gets into a
181 situation where it cannot handle messages due to lack of
182 memory. Once that situation clears up, it will re-enable
183 interrupts. */
184 int interrupt_disabled;
185
Corey Minyard50c812b2006-03-26 01:37:21 -0800186 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700187 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Corey Minyard50c812b2006-03-26 01:37:21 -0800189 /* Driver model stuff. */
190 struct device *dev;
191 struct platform_device *pdev;
192
193 /* True if we allocated the device, false if it came from
194 * someplace else (like PCI). */
195 int dev_registered;
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Slave address, could be reported from DMI. */
198 unsigned char slave_addr;
199
200 /* Counters and things for the proc filesystem. */
201 spinlock_t count_lock;
202 unsigned long short_timeouts;
203 unsigned long long_timeouts;
204 unsigned long timeout_restarts;
205 unsigned long idles;
206 unsigned long interrupts;
207 unsigned long attentions;
208 unsigned long flag_fetches;
209 unsigned long hosed_count;
210 unsigned long complete_transactions;
211 unsigned long events;
212 unsigned long watchdog_pretimeouts;
213 unsigned long incoming_messages;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800214
Matt Domsche9a705a2005-11-07 01:00:04 -0800215 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800216
217 struct list_head link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Corey Minyarda51f4a82006-10-03 01:13:59 -0700220#define SI_MAX_PARMS 4
221
222static int force_kipmid[SI_MAX_PARMS];
223static int num_force_kipmid;
224
Corey Minyardb0defcd2006-03-26 01:37:20 -0800225static int try_smi_init(struct smi_info *smi);
226
Alan Sterne041c682006-03-27 01:16:30 -0800227static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardea940272005-11-07 00:59:59 -0800228static int register_xaction_notifier(struct notifier_block * nb)
229{
Alan Sterne041c682006-03-27 01:16:30 -0800230 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static void deliver_recv_msg(struct smi_info *smi_info,
234 struct ipmi_smi_msg *msg)
235{
236 /* Deliver the message to the upper layer with the lock
237 released. */
238 spin_unlock(&(smi_info->si_lock));
239 ipmi_smi_msg_received(smi_info->intf, msg);
240 spin_lock(&(smi_info->si_lock));
241}
242
243static void return_hosed_msg(struct smi_info *smi_info)
244{
245 struct ipmi_smi_msg *msg = smi_info->curr_msg;
246
247 /* Make it a reponse */
248 msg->rsp[0] = msg->data[0] | 4;
249 msg->rsp[1] = msg->data[1];
250 msg->rsp[2] = 0xFF; /* Unknown error. */
251 msg->rsp_size = 3;
252
253 smi_info->curr_msg = NULL;
254 deliver_recv_msg(smi_info, msg);
255}
256
257static enum si_sm_result start_next_msg(struct smi_info *smi_info)
258{
259 int rv;
260 struct list_head *entry = NULL;
261#ifdef DEBUG_TIMING
262 struct timeval t;
263#endif
264
265 /* No need to save flags, we aleady have interrupts off and we
266 already hold the SMI lock. */
267 spin_lock(&(smi_info->msg_lock));
268
269 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800270 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800272 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 entry = smi_info->xmit_msgs.next;
274 }
275
Corey Minyardb0defcd2006-03-26 01:37:20 -0800276 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 smi_info->curr_msg = NULL;
278 rv = SI_SM_IDLE;
279 } else {
280 int err;
281
282 list_del(entry);
283 smi_info->curr_msg = list_entry(entry,
284 struct ipmi_smi_msg,
285 link);
286#ifdef DEBUG_TIMING
287 do_gettimeofday(&t);
288 printk("**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
289#endif
Alan Sterne041c682006-03-27 01:16:30 -0800290 err = atomic_notifier_call_chain(&xaction_notifier_list,
291 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800292 if (err & NOTIFY_STOP_MASK) {
293 rv = SI_SM_CALL_WITHOUT_DELAY;
294 goto out;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 err = smi_info->handlers->start_transaction(
297 smi_info->si_sm,
298 smi_info->curr_msg->data,
299 smi_info->curr_msg->data_size);
300 if (err) {
301 return_hosed_msg(smi_info);
302 }
303
304 rv = SI_SM_CALL_WITHOUT_DELAY;
305 }
Corey Minyardea940272005-11-07 00:59:59 -0800306 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_unlock(&(smi_info->msg_lock));
308
309 return rv;
310}
311
312static void start_enable_irq(struct smi_info *smi_info)
313{
314 unsigned char msg[2];
315
316 /* If we are enabling interrupts, we have to tell the
317 BMC to use them. */
318 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
319 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
320
321 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
322 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
323}
324
325static void start_clear_flags(struct smi_info *smi_info)
326{
327 unsigned char msg[3];
328
329 /* Make sure the watchdog pre-timeout flag is not set at startup. */
330 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
331 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
332 msg[2] = WDT_PRE_TIMEOUT_INT;
333
334 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
335 smi_info->si_state = SI_CLEARING_FLAGS;
336}
337
338/* When we have a situtaion where we run out of memory and cannot
339 allocate messages, we just leave them in the BMC and run the system
340 polled until we can allocate some memory. Once we have some
341 memory, we will re-enable the interrupt. */
342static inline void disable_si_irq(struct smi_info *smi_info)
343{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800344 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 disable_irq_nosync(smi_info->irq);
346 smi_info->interrupt_disabled = 1;
347 }
348}
349
350static inline void enable_si_irq(struct smi_info *smi_info)
351{
352 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
353 enable_irq(smi_info->irq);
354 smi_info->interrupt_disabled = 0;
355 }
356}
357
358static void handle_flags(struct smi_info *smi_info)
359{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700360 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
362 /* Watchdog pre-timeout */
363 spin_lock(&smi_info->count_lock);
364 smi_info->watchdog_pretimeouts++;
365 spin_unlock(&smi_info->count_lock);
366
367 start_clear_flags(smi_info);
368 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
369 spin_unlock(&(smi_info->si_lock));
370 ipmi_smi_watchdog_pretimeout(smi_info->intf);
371 spin_lock(&(smi_info->si_lock));
372 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
373 /* Messages available. */
374 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800375 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 disable_si_irq(smi_info);
377 smi_info->si_state = SI_NORMAL;
378 return;
379 }
380 enable_si_irq(smi_info);
381
382 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
383 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
384 smi_info->curr_msg->data_size = 2;
385
386 smi_info->handlers->start_transaction(
387 smi_info->si_sm,
388 smi_info->curr_msg->data,
389 smi_info->curr_msg->data_size);
390 smi_info->si_state = SI_GETTING_MESSAGES;
391 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
392 /* Events available. */
393 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800394 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 disable_si_irq(smi_info);
396 smi_info->si_state = SI_NORMAL;
397 return;
398 }
399 enable_si_irq(smi_info);
400
401 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
402 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
403 smi_info->curr_msg->data_size = 2;
404
405 smi_info->handlers->start_transaction(
406 smi_info->si_sm,
407 smi_info->curr_msg->data,
408 smi_info->curr_msg->data_size);
409 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700410 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
411 smi_info->oem_data_avail_handler) {
412 if (smi_info->oem_data_avail_handler(smi_info))
413 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else {
415 smi_info->si_state = SI_NORMAL;
416 }
417}
418
419static void handle_transaction_done(struct smi_info *smi_info)
420{
421 struct ipmi_smi_msg *msg;
422#ifdef DEBUG_TIMING
423 struct timeval t;
424
425 do_gettimeofday(&t);
426 printk("**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
427#endif
428 switch (smi_info->si_state) {
429 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800430 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 break;
432
433 smi_info->curr_msg->rsp_size
434 = smi_info->handlers->get_result(
435 smi_info->si_sm,
436 smi_info->curr_msg->rsp,
437 IPMI_MAX_MSG_LENGTH);
438
439 /* Do this here becase deliver_recv_msg() releases the
440 lock, and a new message can be put in during the
441 time the lock is released. */
442 msg = smi_info->curr_msg;
443 smi_info->curr_msg = NULL;
444 deliver_recv_msg(smi_info, msg);
445 break;
446
447 case SI_GETTING_FLAGS:
448 {
449 unsigned char msg[4];
450 unsigned int len;
451
452 /* We got the flags from the SMI, now handle them. */
453 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
454 if (msg[2] != 0) {
455 /* Error fetching flags, just give up for
456 now. */
457 smi_info->si_state = SI_NORMAL;
458 } else if (len < 4) {
459 /* Hmm, no flags. That's technically illegal, but
460 don't use uninitialized data. */
461 smi_info->si_state = SI_NORMAL;
462 } else {
463 smi_info->msg_flags = msg[3];
464 handle_flags(smi_info);
465 }
466 break;
467 }
468
469 case SI_CLEARING_FLAGS:
470 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
471 {
472 unsigned char msg[3];
473
474 /* We cleared the flags. */
475 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
476 if (msg[2] != 0) {
477 /* Error clearing flags */
478 printk(KERN_WARNING
479 "ipmi_si: Error clearing flags: %2.2x\n",
480 msg[2]);
481 }
482 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
483 start_enable_irq(smi_info);
484 else
485 smi_info->si_state = SI_NORMAL;
486 break;
487 }
488
489 case SI_GETTING_EVENTS:
490 {
491 smi_info->curr_msg->rsp_size
492 = smi_info->handlers->get_result(
493 smi_info->si_sm,
494 smi_info->curr_msg->rsp,
495 IPMI_MAX_MSG_LENGTH);
496
497 /* Do this here becase deliver_recv_msg() releases the
498 lock, and a new message can be put in during the
499 time the lock is released. */
500 msg = smi_info->curr_msg;
501 smi_info->curr_msg = NULL;
502 if (msg->rsp[2] != 0) {
503 /* Error getting event, probably done. */
504 msg->done(msg);
505
506 /* Take off the event flag. */
507 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
508 handle_flags(smi_info);
509 } else {
510 spin_lock(&smi_info->count_lock);
511 smi_info->events++;
512 spin_unlock(&smi_info->count_lock);
513
514 /* Do this before we deliver the message
515 because delivering the message releases the
516 lock and something else can mess with the
517 state. */
518 handle_flags(smi_info);
519
520 deliver_recv_msg(smi_info, msg);
521 }
522 break;
523 }
524
525 case SI_GETTING_MESSAGES:
526 {
527 smi_info->curr_msg->rsp_size
528 = smi_info->handlers->get_result(
529 smi_info->si_sm,
530 smi_info->curr_msg->rsp,
531 IPMI_MAX_MSG_LENGTH);
532
533 /* Do this here becase deliver_recv_msg() releases the
534 lock, and a new message can be put in during the
535 time the lock is released. */
536 msg = smi_info->curr_msg;
537 smi_info->curr_msg = NULL;
538 if (msg->rsp[2] != 0) {
539 /* Error getting event, probably done. */
540 msg->done(msg);
541
542 /* Take off the msg flag. */
543 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
544 handle_flags(smi_info);
545 } else {
546 spin_lock(&smi_info->count_lock);
547 smi_info->incoming_messages++;
548 spin_unlock(&smi_info->count_lock);
549
550 /* Do this before we deliver the message
551 because delivering the message releases the
552 lock and something else can mess with the
553 state. */
554 handle_flags(smi_info);
555
556 deliver_recv_msg(smi_info, msg);
557 }
558 break;
559 }
560
561 case SI_ENABLE_INTERRUPTS1:
562 {
563 unsigned char msg[4];
564
565 /* We got the flags from the SMI, now handle them. */
566 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
567 if (msg[2] != 0) {
568 printk(KERN_WARNING
569 "ipmi_si: Could not enable interrupts"
570 ", failed get, using polled mode.\n");
571 smi_info->si_state = SI_NORMAL;
572 } else {
573 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
574 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
575 msg[2] = msg[3] | 1; /* enable msg queue int */
576 smi_info->handlers->start_transaction(
577 smi_info->si_sm, msg, 3);
578 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
579 }
580 break;
581 }
582
583 case SI_ENABLE_INTERRUPTS2:
584 {
585 unsigned char msg[4];
586
587 /* We got the flags from the SMI, now handle them. */
588 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
589 if (msg[2] != 0) {
590 printk(KERN_WARNING
591 "ipmi_si: Could not enable interrupts"
592 ", failed set, using polled mode.\n");
593 }
594 smi_info->si_state = SI_NORMAL;
595 break;
596 }
597 }
598}
599
600/* Called on timeouts and events. Timeouts should pass the elapsed
601 time, interrupts should pass in zero. */
602static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
603 int time)
604{
605 enum si_sm_result si_sm_result;
606
607 restart:
608 /* There used to be a loop here that waited a little while
609 (around 25us) before giving up. That turned out to be
610 pointless, the minimum delays I was seeing were in the 300us
611 range, which is far too long to wait in an interrupt. So
612 we just run until the state machine tells us something
613 happened or it needs a delay. */
614 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
615 time = 0;
616 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
617 {
618 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
619 }
620
621 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE)
622 {
623 spin_lock(&smi_info->count_lock);
624 smi_info->complete_transactions++;
625 spin_unlock(&smi_info->count_lock);
626
627 handle_transaction_done(smi_info);
628 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
629 }
630 else if (si_sm_result == SI_SM_HOSED)
631 {
632 spin_lock(&smi_info->count_lock);
633 smi_info->hosed_count++;
634 spin_unlock(&smi_info->count_lock);
635
636 /* Do the before return_hosed_msg, because that
637 releases the lock. */
638 smi_info->si_state = SI_NORMAL;
639 if (smi_info->curr_msg != NULL) {
640 /* If we were handling a user message, format
641 a response to send to the upper layer to
642 tell it about the error. */
643 return_hosed_msg(smi_info);
644 }
645 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
646 }
647
648 /* We prefer handling attn over new messages. */
649 if (si_sm_result == SI_SM_ATTN)
650 {
651 unsigned char msg[2];
652
653 spin_lock(&smi_info->count_lock);
654 smi_info->attentions++;
655 spin_unlock(&smi_info->count_lock);
656
657 /* Got a attn, send down a get message flags to see
658 what's causing it. It would be better to handle
659 this in the upper layer, but due to the way
660 interrupts work with the SMI, that's not really
661 possible. */
662 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
663 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
664
665 smi_info->handlers->start_transaction(
666 smi_info->si_sm, msg, 2);
667 smi_info->si_state = SI_GETTING_FLAGS;
668 goto restart;
669 }
670
671 /* If we are currently idle, try to start the next message. */
672 if (si_sm_result == SI_SM_IDLE) {
673 spin_lock(&smi_info->count_lock);
674 smi_info->idles++;
675 spin_unlock(&smi_info->count_lock);
676
677 si_sm_result = start_next_msg(smi_info);
678 if (si_sm_result != SI_SM_IDLE)
679 goto restart;
680 }
681
682 if ((si_sm_result == SI_SM_IDLE)
683 && (atomic_read(&smi_info->req_events)))
684 {
685 /* We are idle and the upper layer requested that I fetch
686 events, so do so. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800688
689 smi_info->curr_msg = ipmi_alloc_smi_msg();
690 if (!smi_info->curr_msg)
691 goto out;
692
693 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
694 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
695 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800698 smi_info->si_sm,
699 smi_info->curr_msg->data,
700 smi_info->curr_msg->data_size);
701 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto restart;
703 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800704 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return si_sm_result;
706}
707
708static void sender(void *send_info,
709 struct ipmi_smi_msg *msg,
710 int priority)
711{
712 struct smi_info *smi_info = send_info;
713 enum si_sm_result result;
714 unsigned long flags;
715#ifdef DEBUG_TIMING
716 struct timeval t;
717#endif
718
719 spin_lock_irqsave(&(smi_info->msg_lock), flags);
720#ifdef DEBUG_TIMING
721 do_gettimeofday(&t);
722 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
723#endif
724
725 if (smi_info->run_to_completion) {
726 /* If we are running to completion, then throw it in
727 the list and run transactions until everything is
728 clear. Priority doesn't matter here. */
729 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
730
731 /* We have to release the msg lock and claim the smi
732 lock in this case, because of race conditions. */
733 spin_unlock_irqrestore(&(smi_info->msg_lock), flags);
734
735 spin_lock_irqsave(&(smi_info->si_lock), flags);
736 result = smi_event_handler(smi_info, 0);
737 while (result != SI_SM_IDLE) {
738 udelay(SI_SHORT_TIMEOUT_USEC);
739 result = smi_event_handler(smi_info,
740 SI_SHORT_TIMEOUT_USEC);
741 }
742 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
743 return;
744 } else {
745 if (priority > 0) {
746 list_add_tail(&(msg->link), &(smi_info->hp_xmit_msgs));
747 } else {
748 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
749 }
750 }
751 spin_unlock_irqrestore(&(smi_info->msg_lock), flags);
752
753 spin_lock_irqsave(&(smi_info->si_lock), flags);
754 if ((smi_info->si_state == SI_NORMAL)
755 && (smi_info->curr_msg == NULL))
756 {
757 start_next_msg(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
760}
761
762static void set_run_to_completion(void *send_info, int i_run_to_completion)
763{
764 struct smi_info *smi_info = send_info;
765 enum si_sm_result result;
766 unsigned long flags;
767
768 spin_lock_irqsave(&(smi_info->si_lock), flags);
769
770 smi_info->run_to_completion = i_run_to_completion;
771 if (i_run_to_completion) {
772 result = smi_event_handler(smi_info, 0);
773 while (result != SI_SM_IDLE) {
774 udelay(SI_SHORT_TIMEOUT_USEC);
775 result = smi_event_handler(smi_info,
776 SI_SHORT_TIMEOUT_USEC);
777 }
778 }
779
780 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
781}
782
Corey Minyarda9a2c442005-11-07 01:00:03 -0800783static int ipmi_thread(void *data)
784{
785 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -0800786 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800787 enum si_sm_result smi_result;
788
Corey Minyarda9a2c442005-11-07 01:00:03 -0800789 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -0800790 while (!kthread_should_stop()) {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800791 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -0800792 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800793 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Matt Domsche9a705a2005-11-07 01:00:04 -0800794 if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
795 /* do nothing */
796 }
797 else if (smi_result == SI_SM_CALL_WITH_DELAY)
akpm@osdl.org33979732006-06-27 02:54:04 -0700798 schedule();
Matt Domsche9a705a2005-11-07 01:00:04 -0800799 else
800 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800801 }
Corey Minyarda9a2c442005-11-07 01:00:03 -0800802 return 0;
803}
804
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806static void poll(void *send_info)
807{
808 struct smi_info *smi_info = send_info;
809
Corey Minyard15c62e12006-12-06 20:41:06 -0800810 /*
811 * Make sure there is some delay in the poll loop so we can
812 * drive time forward and timeout things.
813 */
814 udelay(10);
815 smi_event_handler(smi_info, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
818static void request_events(void *send_info)
819{
820 struct smi_info *smi_info = send_info;
821
822 atomic_set(&smi_info->req_events, 1);
823}
824
825static int initialized = 0;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static void smi_timeout(unsigned long data)
828{
829 struct smi_info *smi_info = (struct smi_info *) data;
830 enum si_sm_result smi_result;
831 unsigned long flags;
832 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -0800833 long time_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#ifdef DEBUG_TIMING
835 struct timeval t;
836#endif
837
Corey Minyarda9a2c442005-11-07 01:00:03 -0800838 if (atomic_read(&smi_info->stop_operation))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 spin_lock_irqsave(&(smi_info->si_lock), flags);
842#ifdef DEBUG_TIMING
843 do_gettimeofday(&t);
844 printk("**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
845#endif
846 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -0800847 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 * SI_USEC_PER_JIFFY);
849 smi_result = smi_event_handler(smi_info, time_diff);
850
851 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
852
853 smi_info->last_timeout_jiffies = jiffies_now;
854
Corey Minyardb0defcd2006-03-26 01:37:20 -0800855 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /* Running with interrupts, only do long timeouts. */
857 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
858 spin_lock_irqsave(&smi_info->count_lock, flags);
859 smi_info->long_timeouts++;
860 spin_unlock_irqrestore(&smi_info->count_lock, flags);
861 goto do_add_timer;
862 }
863
864 /* If the state machine asks for a short delay, then shorten
865 the timer timeout. */
866 if (smi_result == SI_SM_CALL_WITH_DELAY) {
867 spin_lock_irqsave(&smi_info->count_lock, flags);
868 smi_info->short_timeouts++;
869 spin_unlock_irqrestore(&smi_info->count_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 smi_info->si_timer.expires = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } else {
872 spin_lock_irqsave(&smi_info->count_lock, flags);
873 smi_info->long_timeouts++;
874 spin_unlock_irqrestore(&smi_info->count_lock, flags);
875 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 do_add_timer:
879 add_timer(&(smi_info->si_timer));
880}
881
David Howells7d12e782006-10-05 14:55:46 +0100882static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 struct smi_info *smi_info = data;
885 unsigned long flags;
886#ifdef DEBUG_TIMING
887 struct timeval t;
888#endif
889
890 spin_lock_irqsave(&(smi_info->si_lock), flags);
891
892 spin_lock(&smi_info->count_lock);
893 smi_info->interrupts++;
894 spin_unlock(&smi_info->count_lock);
895
Corey Minyarda9a2c442005-11-07 01:00:03 -0800896 if (atomic_read(&smi_info->stop_operation))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto out;
898
899#ifdef DEBUG_TIMING
900 do_gettimeofday(&t);
901 printk("**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
902#endif
903 smi_event_handler(smi_info, 0);
904 out:
905 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
906 return IRQ_HANDLED;
907}
908
David Howells7d12e782006-10-05 14:55:46 +0100909static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700910{
911 struct smi_info *smi_info = data;
912 /* We need to clear the IRQ flag for the BT interface. */
913 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
914 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
915 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +0100916 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700917}
918
Corey Minyard453823b2006-03-31 02:30:39 -0800919static int smi_start_processing(void *send_info,
920 ipmi_smi_t intf)
921{
922 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -0700923 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -0800924
925 new_smi->intf = intf;
926
927 /* Set up the timer that drives the interface. */
928 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
929 new_smi->last_timeout_jiffies = jiffies;
930 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
931
Corey Minyarddf3fe8d2006-09-30 23:28:20 -0700932 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -0700933 * Check if the user forcefully enabled the daemon.
934 */
935 if (new_smi->intf_num < num_force_kipmid)
936 enable = force_kipmid[new_smi->intf_num];
937 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -0700938 * The BT interface is efficient enough to not need a thread,
939 * and there is no need for a thread if we have interrupts.
940 */
Corey Minyarda51f4a82006-10-03 01:13:59 -0700941 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
942 enable = 1;
943
944 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -0800945 new_smi->thread = kthread_run(ipmi_thread, new_smi,
946 "kipmi%d", new_smi->intf_num);
947 if (IS_ERR(new_smi->thread)) {
948 printk(KERN_NOTICE "ipmi_si_intf: Could not start"
949 " kernel thread due to error %ld, only using"
950 " timers to drive the interface\n",
951 PTR_ERR(new_smi->thread));
952 new_smi->thread = NULL;
953 }
954 }
955
956 return 0;
957}
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700958
Corey Minyardb9675132006-12-06 20:41:02 -0800959static void set_maintenance_mode(void *send_info, int enable)
960{
961 struct smi_info *smi_info = send_info;
962
963 if (!enable)
964 atomic_set(&smi_info->req_events, 0);
965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967static struct ipmi_smi_handlers handlers =
968{
969 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -0800970 .start_processing = smi_start_processing,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 .sender = sender,
972 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -0800973 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 .set_run_to_completion = set_run_to_completion,
975 .poll = poll,
976};
977
978/* There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
979 a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS */
980
Corey Minyardb0defcd2006-03-26 01:37:20 -0800981static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -0800982static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800983static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985#define DEFAULT_REGSPACING 1
986
987static int si_trydefaults = 1;
988static char *si_type[SI_MAX_PARMS];
989#define MAX_SI_TYPE_STR 30
990static char si_type_str[MAX_SI_TYPE_STR];
991static unsigned long addrs[SI_MAX_PARMS];
992static int num_addrs;
993static unsigned int ports[SI_MAX_PARMS];
994static int num_ports;
995static int irqs[SI_MAX_PARMS];
996static int num_irqs;
997static int regspacings[SI_MAX_PARMS];
998static int num_regspacings = 0;
999static int regsizes[SI_MAX_PARMS];
1000static int num_regsizes = 0;
1001static int regshifts[SI_MAX_PARMS];
1002static int num_regshifts = 0;
1003static int slave_addrs[SI_MAX_PARMS];
1004static int num_slave_addrs = 0;
1005
1006
1007module_param_named(trydefaults, si_trydefaults, bool, 0);
1008MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1009 " default scan of the KCS and SMIC interface at the standard"
1010 " address");
1011module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1012MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1013 " interface separated by commas. The types are 'kcs',"
1014 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1015 " the first interface to kcs and the second to bt");
1016module_param_array(addrs, long, &num_addrs, 0);
1017MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1018 " addresses separated by commas. Only use if an interface"
1019 " is in memory. Otherwise, set it to zero or leave"
1020 " it blank.");
1021module_param_array(ports, int, &num_ports, 0);
1022MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1023 " addresses separated by commas. Only use if an interface"
1024 " is a port. Otherwise, set it to zero or leave"
1025 " it blank.");
1026module_param_array(irqs, int, &num_irqs, 0);
1027MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1028 " addresses separated by commas. Only use if an interface"
1029 " has an interrupt. Otherwise, set it to zero or leave"
1030 " it blank.");
1031module_param_array(regspacings, int, &num_regspacings, 0);
1032MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1033 " and each successive register used by the interface. For"
1034 " instance, if the start address is 0xca2 and the spacing"
1035 " is 2, then the second address is at 0xca4. Defaults"
1036 " to 1.");
1037module_param_array(regsizes, int, &num_regsizes, 0);
1038MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1039 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1040 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1041 " the 8-bit IPMI register has to be read from a larger"
1042 " register.");
1043module_param_array(regshifts, int, &num_regshifts, 0);
1044MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1045 " IPMI register, in bits. For instance, if the data"
1046 " is read from a 32-bit word and the IPMI data is in"
1047 " bit 8-15, then the shift would be 8");
1048module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1049MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1050 " the controller. Normally this is 0x20, but can be"
1051 " overridden by this parm. This is an array indexed"
1052 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001053module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1054MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1055 " disabled(0). Normally the IPMI driver auto-detects"
1056 " this, but the value may be overridden by this parm.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058
Corey Minyardb0defcd2006-03-26 01:37:20 -08001059#define IPMI_IO_ADDR_SPACE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#define IPMI_MEM_ADDR_SPACE 1
Corey Minyardb0defcd2006-03-26 01:37:20 -08001061static char *addr_space_to_str[] = { "I/O", "memory" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Corey Minyardb0defcd2006-03-26 01:37:20 -08001063static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001065 if (info->si_type == SI_BT)
1066 /* Disable the interrupt in the BT interface. */
1067 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1068 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071static int std_irq_setup(struct smi_info *info)
1072{
1073 int rv;
1074
Corey Minyardb0defcd2006-03-26 01:37:20 -08001075 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return 0;
1077
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001078 if (info->si_type == SI_BT) {
1079 rv = request_irq(info->irq,
1080 si_bt_irq_handler,
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -07001081 IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001082 DEVICE_NAME,
1083 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001084 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001085 /* Enable the interrupt in the BT interface. */
1086 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1087 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1088 } else
1089 rv = request_irq(info->irq,
1090 si_irq_handler,
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -07001091 IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001092 DEVICE_NAME,
1093 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (rv) {
1095 printk(KERN_WARNING
1096 "ipmi_si: %s unable to claim interrupt %d,"
1097 " running polled\n",
1098 DEVICE_NAME, info->irq);
1099 info->irq = 0;
1100 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001101 info->irq_cleanup = std_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 printk(" Using irq %d\n", info->irq);
1103 }
1104
1105 return rv;
1106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1109{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001110 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Corey Minyardb0defcd2006-03-26 01:37:20 -08001112 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
1115static void port_outb(struct si_sm_io *io, unsigned int offset,
1116 unsigned char b)
1117{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001118 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Corey Minyardb0defcd2006-03-26 01:37:20 -08001120 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1124{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001125 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Corey Minyardb0defcd2006-03-26 01:37:20 -08001127 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130static void port_outw(struct si_sm_io *io, unsigned int offset,
1131 unsigned char b)
1132{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001133 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Corey Minyardb0defcd2006-03-26 01:37:20 -08001135 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1139{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001140 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Corey Minyardb0defcd2006-03-26 01:37:20 -08001142 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145static void port_outl(struct si_sm_io *io, unsigned int offset,
1146 unsigned char b)
1147{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001148 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Corey Minyardb0defcd2006-03-26 01:37:20 -08001150 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153static void port_cleanup(struct smi_info *info)
1154{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001155 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001156 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Corey Minyardb0defcd2006-03-26 01:37:20 -08001158 if (addr) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001159 for (idx = 0; idx < info->io_size; idx++) {
1160 release_region(addr + idx * info->io.regspacing,
1161 info->io.regsize);
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166static int port_setup(struct smi_info *info)
1167{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001168 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001169 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Corey Minyardb0defcd2006-03-26 01:37:20 -08001171 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return -ENODEV;
1173
1174 info->io_cleanup = port_cleanup;
1175
1176 /* Figure out the actual inb/inw/inl/etc routine to use based
1177 upon the register size. */
1178 switch (info->io.regsize) {
1179 case 1:
1180 info->io.inputb = port_inb;
1181 info->io.outputb = port_outb;
1182 break;
1183 case 2:
1184 info->io.inputb = port_inw;
1185 info->io.outputb = port_outw;
1186 break;
1187 case 4:
1188 info->io.inputb = port_inl;
1189 info->io.outputb = port_outl;
1190 break;
1191 default:
1192 printk("ipmi_si: Invalid register size: %d\n",
1193 info->io.regsize);
1194 return -EINVAL;
1195 }
1196
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001197 /* Some BIOSes reserve disjoint I/O regions in their ACPI
1198 * tables. This causes problems when trying to register the
1199 * entire I/O region. Therefore we must register each I/O
1200 * port separately.
1201 */
1202 for (idx = 0; idx < info->io_size; idx++) {
1203 if (request_region(addr + idx * info->io.regspacing,
1204 info->io.regsize, DEVICE_NAME) == NULL) {
1205 /* Undo allocations */
1206 while (idx--) {
1207 release_region(addr + idx * info->io.regspacing,
1208 info->io.regsize);
1209 }
1210 return -EIO;
1211 }
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return 0;
1214}
1215
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001216static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 return readb((io->addr)+(offset * io->regspacing));
1219}
1220
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001221static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 unsigned char b)
1223{
1224 writeb(b, (io->addr)+(offset * io->regspacing));
1225}
1226
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001227static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001230 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001233static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 unsigned char b)
1235{
1236 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1237}
1238
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001239static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001242 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001245static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 unsigned char b)
1247{
1248 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1249}
1250
1251#ifdef readq
1252static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1253{
1254 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001255 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258static void mem_outq(struct si_sm_io *io, unsigned int offset,
1259 unsigned char b)
1260{
1261 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1262}
1263#endif
1264
1265static void mem_cleanup(struct smi_info *info)
1266{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001267 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int mapsize;
1269
1270 if (info->io.addr) {
1271 iounmap(info->io.addr);
1272
1273 mapsize = ((info->io_size * info->io.regspacing)
1274 - (info->io.regspacing - info->io.regsize));
1275
Corey Minyardb0defcd2006-03-26 01:37:20 -08001276 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280static int mem_setup(struct smi_info *info)
1281{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001282 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 int mapsize;
1284
Corey Minyardb0defcd2006-03-26 01:37:20 -08001285 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return -ENODEV;
1287
1288 info->io_cleanup = mem_cleanup;
1289
1290 /* Figure out the actual readb/readw/readl/etc routine to use based
1291 upon the register size. */
1292 switch (info->io.regsize) {
1293 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001294 info->io.inputb = intf_mem_inb;
1295 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 break;
1297 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001298 info->io.inputb = intf_mem_inw;
1299 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 break;
1301 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001302 info->io.inputb = intf_mem_inl;
1303 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
1305#ifdef readq
1306 case 8:
1307 info->io.inputb = mem_inq;
1308 info->io.outputb = mem_outq;
1309 break;
1310#endif
1311 default:
1312 printk("ipmi_si: Invalid register size: %d\n",
1313 info->io.regsize);
1314 return -EINVAL;
1315 }
1316
1317 /* Calculate the total amount of memory to claim. This is an
1318 * unusual looking calculation, but it avoids claiming any
1319 * more memory than it has to. It will claim everything
1320 * between the first address to the end of the last full
1321 * register. */
1322 mapsize = ((info->io_size * info->io.regspacing)
1323 - (info->io.regspacing - info->io.regsize));
1324
Corey Minyardb0defcd2006-03-26 01:37:20 -08001325 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return -EIO;
1327
Corey Minyardb0defcd2006-03-26 01:37:20 -08001328 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001330 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return -EIO;
1332 }
1333 return 0;
1334}
1335
Corey Minyardb0defcd2006-03-26 01:37:20 -08001336
1337static __devinit void hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001339 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 struct smi_info *info;
1341
Corey Minyardb0defcd2006-03-26 01:37:20 -08001342 for (i = 0; i < SI_MAX_PARMS; i++) {
1343 if (!ports[i] && !addrs[i])
1344 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Corey Minyardb0defcd2006-03-26 01:37:20 -08001346 info = kzalloc(sizeof(*info), GFP_KERNEL);
1347 if (!info)
1348 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Corey Minyardb0defcd2006-03-26 01:37:20 -08001350 info->addr_source = "hardcoded";
1351
1352 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
1353 info->si_type = SI_KCS;
1354 } else if (strcmp(si_type[i], "smic") == 0) {
1355 info->si_type = SI_SMIC;
1356 } else if (strcmp(si_type[i], "bt") == 0) {
1357 info->si_type = SI_BT;
1358 } else {
1359 printk(KERN_WARNING
1360 "ipmi_si: Interface type specified "
1361 "for interface %d, was invalid: %s\n",
1362 i, si_type[i]);
1363 kfree(info);
1364 continue;
1365 }
1366
1367 if (ports[i]) {
1368 /* An I/O port */
1369 info->io_setup = port_setup;
1370 info->io.addr_data = ports[i];
1371 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1372 } else if (addrs[i]) {
1373 /* A memory port */
1374 info->io_setup = mem_setup;
1375 info->io.addr_data = addrs[i];
1376 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1377 } else {
1378 printk(KERN_WARNING
1379 "ipmi_si: Interface type specified "
1380 "for interface %d, "
1381 "but port and address were not set or "
1382 "set to zero.\n", i);
1383 kfree(info);
1384 continue;
1385 }
1386
1387 info->io.addr = NULL;
1388 info->io.regspacing = regspacings[i];
1389 if (!info->io.regspacing)
1390 info->io.regspacing = DEFAULT_REGSPACING;
1391 info->io.regsize = regsizes[i];
1392 if (!info->io.regsize)
1393 info->io.regsize = DEFAULT_REGSPACING;
1394 info->io.regshift = regshifts[i];
1395 info->irq = irqs[i];
1396 if (info->irq)
1397 info->irq_setup = std_irq_setup;
1398
1399 try_smi_init(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
Len Brown84663612005-08-24 12:09:07 -04001403#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405#include <linux/acpi.h>
1406
1407/* Once we get an ACPI failure, we don't try any more, because we go
1408 through the tables sequentially. Once we don't find a table, there
1409 are no more. */
1410static int acpi_failure = 0;
1411
1412/* For GPE-type interrupts. */
1413static u32 ipmi_acpi_gpe(void *context)
1414{
1415 struct smi_info *smi_info = context;
1416 unsigned long flags;
1417#ifdef DEBUG_TIMING
1418 struct timeval t;
1419#endif
1420
1421 spin_lock_irqsave(&(smi_info->si_lock), flags);
1422
1423 spin_lock(&smi_info->count_lock);
1424 smi_info->interrupts++;
1425 spin_unlock(&smi_info->count_lock);
1426
Corey Minyarda9a2c442005-11-07 01:00:03 -08001427 if (atomic_read(&smi_info->stop_operation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 goto out;
1429
1430#ifdef DEBUG_TIMING
1431 do_gettimeofday(&t);
1432 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1433#endif
1434 smi_event_handler(smi_info, 0);
1435 out:
1436 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1437
1438 return ACPI_INTERRUPT_HANDLED;
1439}
1440
Corey Minyardb0defcd2006-03-26 01:37:20 -08001441static void acpi_gpe_irq_cleanup(struct smi_info *info)
1442{
1443 if (!info->irq)
1444 return;
1445
1446 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1447}
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449static int acpi_gpe_irq_setup(struct smi_info *info)
1450{
1451 acpi_status status;
1452
Corey Minyardb0defcd2006-03-26 01:37:20 -08001453 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return 0;
1455
1456 /* FIXME - is level triggered right? */
1457 status = acpi_install_gpe_handler(NULL,
1458 info->irq,
1459 ACPI_GPE_LEVEL_TRIGGERED,
1460 &ipmi_acpi_gpe,
1461 info);
1462 if (status != AE_OK) {
1463 printk(KERN_WARNING
1464 "ipmi_si: %s unable to claim ACPI GPE %d,"
1465 " running polled\n",
1466 DEVICE_NAME, info->irq);
1467 info->irq = 0;
1468 return -EINVAL;
1469 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001470 info->irq_cleanup = acpi_gpe_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 printk(" Using ACPI GPE %d\n", info->irq);
1472 return 0;
1473 }
1474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/*
1477 * Defined at
1478 * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/Docs/TechPapers/IA64/hpspmi.pdf
1479 */
1480struct SPMITable {
1481 s8 Signature[4];
1482 u32 Length;
1483 u8 Revision;
1484 u8 Checksum;
1485 s8 OEMID[6];
1486 s8 OEMTableID[8];
1487 s8 OEMRevision[4];
1488 s8 CreatorID[4];
1489 s8 CreatorRevision[4];
1490 u8 InterfaceType;
1491 u8 IPMIlegacy;
1492 s16 SpecificationRevision;
1493
1494 /*
1495 * Bit 0 - SCI interrupt supported
1496 * Bit 1 - I/O APIC/SAPIC
1497 */
1498 u8 InterruptType;
1499
1500 /* If bit 0 of InterruptType is set, then this is the SCI
1501 interrupt in the GPEx_STS register. */
1502 u8 GPE;
1503
1504 s16 Reserved;
1505
1506 /* If bit 1 of InterruptType is set, then this is the I/O
1507 APIC/SAPIC interrupt. */
1508 u32 GlobalSystemInterrupt;
1509
1510 /* The actual register address. */
1511 struct acpi_generic_address addr;
1512
1513 u8 UID[4];
1514
1515 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
1516};
1517
Corey Minyardb0defcd2006-03-26 01:37:20 -08001518static __devinit int try_init_acpi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 char *io_type;
1522 u8 addr_space;
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (spmi->IPMIlegacy != 1) {
1525 printk(KERN_INFO "IPMI: Bad SPMI legacy %d\n", spmi->IPMIlegacy);
1526 return -ENODEV;
1527 }
1528
1529 if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
1530 addr_space = IPMI_MEM_ADDR_SPACE;
1531 else
1532 addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001533
1534 info = kzalloc(sizeof(*info), GFP_KERNEL);
1535 if (!info) {
1536 printk(KERN_ERR "ipmi_si: Could not allocate SI data (3)\n");
1537 return -ENOMEM;
1538 }
1539
1540 info->addr_source = "ACPI";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 /* Figure out the interface type. */
1543 switch (spmi->InterfaceType)
1544 {
1545 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001546 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001549 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001552 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 default:
1555 printk(KERN_INFO "ipmi_si: Unknown ACPI/SPMI SI type %d\n",
1556 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001557 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return -EIO;
1559 }
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (spmi->InterruptType & 1) {
1562 /* We've got a GPE interrupt. */
1563 info->irq = spmi->GPE;
1564 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 } else if (spmi->InterruptType & 2) {
1566 /* We've got an APIC/SAPIC interrupt. */
1567 info->irq = spmi->GlobalSystemInterrupt;
1568 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 } else {
1570 /* Use the default interrupt setting. */
1571 info->irq = 0;
1572 info->irq_setup = NULL;
1573 }
1574
Corey Minyard35bc37a2005-05-01 08:59:10 -07001575 if (spmi->addr.register_bit_width) {
1576 /* A (hopefully) properly formed register bit width. */
Corey Minyard35bc37a2005-05-01 08:59:10 -07001577 info->io.regspacing = spmi->addr.register_bit_width / 8;
1578 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07001579 info->io.regspacing = DEFAULT_REGSPACING;
1580 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001581 info->io.regsize = info->io.regspacing;
1582 info->io.regshift = spmi->addr.register_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
1585 io_type = "memory";
1586 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001587 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 } else if (spmi->addr.address_space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
1589 io_type = "I/O";
1590 info->io_setup = port_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001591 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 } else {
1593 kfree(info);
1594 printk("ipmi_si: Unknown ACPI I/O Address type\n");
1595 return -EIO;
1596 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001597 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Corey Minyardb0defcd2006-03-26 01:37:20 -08001599 try_smi_init(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return 0;
1602}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001603
1604static __devinit void acpi_find_bmc(void)
1605{
1606 acpi_status status;
1607 struct SPMITable *spmi;
1608 int i;
1609
1610 if (acpi_disabled)
1611 return;
1612
1613 if (acpi_failure)
1614 return;
1615
1616 for (i = 0; ; i++) {
1617 status = acpi_get_firmware_table("SPMI", i+1,
1618 ACPI_LOGICAL_ADDRESSING,
1619 (struct acpi_table_header **)
1620 &spmi);
1621 if (status != AE_OK)
1622 return;
1623
1624 try_init_acpi(spmi);
1625 }
1626}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627#endif
1628
Matt Domscha9fad4c2006-01-11 12:17:44 -08001629#ifdef CONFIG_DMI
Corey Minyardb0defcd2006-03-26 01:37:20 -08001630struct dmi_ipmi_data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 u8 type;
1633 u8 addr_space;
1634 unsigned long base_addr;
1635 u8 irq;
1636 u8 offset;
1637 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001638};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Corey Minyardb0defcd2006-03-26 01:37:20 -08001640static int __devinit decode_dmi(struct dmi_header *dm,
1641 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Corey Minyarde8b33612005-09-06 15:18:45 -07001643 u8 *data = (u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 unsigned long base_addr;
1645 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07001646 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Corey Minyardb0defcd2006-03-26 01:37:20 -08001648 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 memcpy(&base_addr, data+8, sizeof(unsigned long));
1651 if (len >= 0x11) {
1652 if (base_addr & 1) {
1653 /* I/O */
1654 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001655 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 else {
1658 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001659 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
1661 /* If bit 4 of byte 0x10 is set, then the lsb for the address
1662 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001663 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Corey Minyardb0defcd2006-03-26 01:37:20 -08001665 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07001668 reg_spacing = (data[0x10] & 0xC0) >> 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 switch(reg_spacing){
1670 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001671 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 break;
1673 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001674 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 break;
1676 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001677 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 break;
1679 default:
1680 /* Some other interface, just ignore it. */
1681 return -EIO;
1682 }
1683 } else {
1684 /* Old DMI spec. */
Corey Minyard92068802005-05-01 08:59:10 -07001685 /* Note that technically, the lower bit of the base
1686 * address should be 1 if the address is I/O and 0 if
1687 * the address is in memory. So many systems get that
1688 * wrong (and all that I have seen are I/O) so we just
1689 * ignore that bit and assume I/O. Systems that use
1690 * memory should use the newer spec, anyway. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001691 dmi->base_addr = base_addr & 0xfffe;
1692 dmi->addr_space = IPMI_IO_ADDR_SPACE;
1693 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695
Corey Minyardb0defcd2006-03-26 01:37:20 -08001696 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Corey Minyardb0defcd2006-03-26 01:37:20 -08001698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Corey Minyardb0defcd2006-03-26 01:37:20 -08001701static __devinit void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Corey Minyarde8b33612005-09-06 15:18:45 -07001703 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Corey Minyardb0defcd2006-03-26 01:37:20 -08001705 info = kzalloc(sizeof(*info), GFP_KERNEL);
1706 if (!info) {
1707 printk(KERN_ERR
1708 "ipmi_si: Could not allocate SI data\n");
1709 return;
1710 }
1711
1712 info->addr_source = "SMBIOS";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Corey Minyarde8b33612005-09-06 15:18:45 -07001714 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001715 case 0x01: /* KCS */
1716 info->si_type = SI_KCS;
1717 break;
1718 case 0x02: /* SMIC */
1719 info->si_type = SI_SMIC;
1720 break;
1721 case 0x03: /* BT */
1722 info->si_type = SI_BT;
1723 break;
1724 default:
1725 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727
Corey Minyardb0defcd2006-03-26 01:37:20 -08001728 switch (ipmi_data->addr_space) {
1729 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001731 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1732 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Corey Minyardb0defcd2006-03-26 01:37:20 -08001734 case IPMI_IO_ADDR_SPACE:
1735 info->io_setup = port_setup;
1736 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1737 break;
1738
1739 default:
1740 kfree(info);
1741 printk(KERN_WARNING
1742 "ipmi_si: Unknown SMBIOS I/O Address type: %d.\n",
1743 ipmi_data->addr_space);
1744 return;
1745 }
1746 info->io.addr_data = ipmi_data->base_addr;
1747
1748 info->io.regspacing = ipmi_data->offset;
1749 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 info->io.regspacing = DEFAULT_REGSPACING;
1751 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001752 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 info->slave_addr = ipmi_data->slave_addr;
1755
Corey Minyardb0defcd2006-03-26 01:37:20 -08001756 info->irq = ipmi_data->irq;
1757 if (info->irq)
1758 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Corey Minyardb0defcd2006-03-26 01:37:20 -08001760 try_smi_init(info);
1761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Corey Minyardb0defcd2006-03-26 01:37:20 -08001763static void __devinit dmi_find_bmc(void)
1764{
1765 struct dmi_device *dev = NULL;
1766 struct dmi_ipmi_data data;
1767 int rv;
1768
1769 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07001770 memset(&data, 0, sizeof(data));
Corey Minyardb0defcd2006-03-26 01:37:20 -08001771 rv = decode_dmi((struct dmi_header *) dev->device_data, &data);
1772 if (!rv)
1773 try_init_dmi(&data);
1774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
Matt Domscha9fad4c2006-01-11 12:17:44 -08001776#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778#ifdef CONFIG_PCI
1779
Corey Minyardb0defcd2006-03-26 01:37:20 -08001780#define PCI_ERMC_CLASSCODE 0x0C0700
1781#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
1782#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
1783#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
1784#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
1785#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787#define PCI_HP_VENDOR_ID 0x103C
1788#define PCI_MMC_DEVICE_ID 0x121A
1789#define PCI_MMC_ADDR_CW 0x10
1790
Corey Minyardb0defcd2006-03-26 01:37:20 -08001791static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001793 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Corey Minyardb0defcd2006-03-26 01:37:20 -08001795 pci_disable_device(pdev);
1796}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Corey Minyardb0defcd2006-03-26 01:37:20 -08001798static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
1799 const struct pci_device_id *ent)
1800{
1801 int rv;
1802 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
1803 struct smi_info *info;
1804 int first_reg_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Corey Minyardb0defcd2006-03-26 01:37:20 -08001806 info = kzalloc(sizeof(*info), GFP_KERNEL);
1807 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07001808 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001809
1810 info->addr_source = "PCI";
1811
1812 switch (class_type) {
1813 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
1814 info->si_type = SI_SMIC;
1815 break;
1816
1817 case PCI_ERMC_CLASSCODE_TYPE_KCS:
1818 info->si_type = SI_KCS;
1819 break;
1820
1821 case PCI_ERMC_CLASSCODE_TYPE_BT:
1822 info->si_type = SI_BT;
1823 break;
1824
1825 default:
1826 kfree(info);
1827 printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
1828 pci_name(pdev), class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07001829 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07001830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Corey Minyardb0defcd2006-03-26 01:37:20 -08001832 rv = pci_enable_device(pdev);
1833 if (rv) {
1834 printk(KERN_ERR "ipmi_si: %s: couldn't enable PCI device\n",
1835 pci_name(pdev));
1836 kfree(info);
1837 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839
Corey Minyardb0defcd2006-03-26 01:37:20 -08001840 info->addr_source_cleanup = ipmi_pci_cleanup;
1841 info->addr_source_data = pdev;
1842
1843 if (pdev->subsystem_vendor == PCI_HP_VENDOR_ID)
1844 first_reg_offset = 1;
1845
1846 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
1847 info->io_setup = port_setup;
1848 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1849 } else {
1850 info->io_setup = mem_setup;
1851 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001853 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Corey Minyardb0defcd2006-03-26 01:37:20 -08001855 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001857 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Corey Minyardb0defcd2006-03-26 01:37:20 -08001859 info->irq = pdev->irq;
1860 if (info->irq)
1861 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Corey Minyard50c812b2006-03-26 01:37:21 -08001863 info->dev = &pdev->dev;
1864
Corey Minyardb0defcd2006-03-26 01:37:20 -08001865 return try_smi_init(info);
1866}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Corey Minyardb0defcd2006-03-26 01:37:20 -08001868static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
1869{
1870}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Corey Minyardb0defcd2006-03-26 01:37:20 -08001872#ifdef CONFIG_PM
1873static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return 0;
1876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Corey Minyardb0defcd2006-03-26 01:37:20 -08001878static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001880 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001882#endif
1883
1884static struct pci_device_id ipmi_pci_devices[] = {
1885 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Yvan Sethd13adb62006-11-02 22:07:13 -08001886 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001887};
1888MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
1889
1890static struct pci_driver ipmi_pci_driver = {
1891 .name = DEVICE_NAME,
1892 .id_table = ipmi_pci_devices,
1893 .probe = ipmi_pci_probe,
1894 .remove = __devexit_p(ipmi_pci_remove),
1895#ifdef CONFIG_PM
1896 .suspend = ipmi_pci_suspend,
1897 .resume = ipmi_pci_resume,
1898#endif
1899};
1900#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902
1903static int try_get_dev_id(struct smi_info *smi_info)
1904{
Corey Minyard50c812b2006-03-26 01:37:21 -08001905 unsigned char msg[2];
1906 unsigned char *resp;
1907 unsigned long resp_len;
1908 enum si_sm_result smi_result;
1909 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001912 if (!resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return -ENOMEM;
1914
1915 /* Do a Get Device ID command, since it comes back with some
1916 useful info. */
1917 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1918 msg[1] = IPMI_GET_DEVICE_ID_CMD;
1919 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
1920
1921 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
1922 for (;;)
1923 {
Corey Minyardc3e7e792005-11-07 01:00:02 -08001924 if (smi_result == SI_SM_CALL_WITH_DELAY ||
1925 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001926 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 smi_result = smi_info->handlers->event(
1928 smi_info->si_sm, 100);
1929 }
1930 else if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1931 {
1932 smi_result = smi_info->handlers->event(
1933 smi_info->si_sm, 0);
1934 }
1935 else
1936 break;
1937 }
1938 if (smi_result == SI_SM_HOSED) {
1939 /* We couldn't get the state machine to run, so whatever's at
1940 the port is probably not an IPMI SMI interface. */
1941 rv = -ENODEV;
1942 goto out;
1943 }
1944
1945 /* Otherwise, we got some data. */
1946 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1947 resp, IPMI_MAX_MSG_LENGTH);
Corey Minyard50c812b2006-03-26 01:37:21 -08001948 if (resp_len < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /* That's odd, it should be longer. */
1950 rv = -EINVAL;
1951 goto out;
1952 }
1953
1954 if ((resp[1] != IPMI_GET_DEVICE_ID_CMD) || (resp[2] != 0)) {
1955 /* That's odd, it shouldn't be able to fail. */
1956 rv = -EINVAL;
1957 goto out;
1958 }
1959
1960 /* Record info from the get device id, in case we need it. */
Corey Minyard50c812b2006-03-26 01:37:21 -08001961 ipmi_demangle_device_id(resp+3, resp_len-3, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 out:
1964 kfree(resp);
1965 return rv;
1966}
1967
1968static int type_file_read_proc(char *page, char **start, off_t off,
1969 int count, int *eof, void *data)
1970{
1971 char *out = (char *) page;
1972 struct smi_info *smi = data;
1973
1974 switch (smi->si_type) {
1975 case SI_KCS:
1976 return sprintf(out, "kcs\n");
1977 case SI_SMIC:
1978 return sprintf(out, "smic\n");
1979 case SI_BT:
1980 return sprintf(out, "bt\n");
1981 default:
1982 return 0;
1983 }
1984}
1985
1986static int stat_file_read_proc(char *page, char **start, off_t off,
1987 int count, int *eof, void *data)
1988{
1989 char *out = (char *) page;
1990 struct smi_info *smi = data;
1991
1992 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08001993 smi->irq && !smi->interrupt_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 out += sprintf(out, "short_timeouts: %ld\n",
1995 smi->short_timeouts);
1996 out += sprintf(out, "long_timeouts: %ld\n",
1997 smi->long_timeouts);
1998 out += sprintf(out, "timeout_restarts: %ld\n",
1999 smi->timeout_restarts);
2000 out += sprintf(out, "idles: %ld\n",
2001 smi->idles);
2002 out += sprintf(out, "interrupts: %ld\n",
2003 smi->interrupts);
2004 out += sprintf(out, "attentions: %ld\n",
2005 smi->attentions);
2006 out += sprintf(out, "flag_fetches: %ld\n",
2007 smi->flag_fetches);
2008 out += sprintf(out, "hosed_count: %ld\n",
2009 smi->hosed_count);
2010 out += sprintf(out, "complete_transactions: %ld\n",
2011 smi->complete_transactions);
2012 out += sprintf(out, "events: %ld\n",
2013 smi->events);
2014 out += sprintf(out, "watchdog_pretimeouts: %ld\n",
2015 smi->watchdog_pretimeouts);
2016 out += sprintf(out, "incoming_messages: %ld\n",
2017 smi->incoming_messages);
2018
2019 return (out - ((char *) page));
2020}
2021
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002022/*
2023 * oem_data_avail_to_receive_msg_avail
2024 * @info - smi_info structure with msg_flags set
2025 *
2026 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2027 * Returns 1 indicating need to re-run handle_flags().
2028 */
2029static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2030{
Corey Minyarde8b33612005-09-06 15:18:45 -07002031 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
2032 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002033 return 1;
2034}
2035
2036/*
2037 * setup_dell_poweredge_oem_data_handler
2038 * @info - smi_info.device_id must be populated
2039 *
2040 * Systems that match, but have firmware version < 1.40 may assert
2041 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2042 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2043 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2044 * as RECEIVE_MSG_AVAIL instead.
2045 *
2046 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2047 * assert the OEM[012] bits, and if it did, the driver would have to
2048 * change to handle that properly, we don't actually check for the
2049 * firmware version.
2050 * Device ID = 0x20 BMC on PowerEdge 8G servers
2051 * Device Revision = 0x80
2052 * Firmware Revision1 = 0x01 BMC version 1.40
2053 * Firmware Revision2 = 0x40 BCD encoded
2054 * IPMI Version = 0x51 IPMI 1.5
2055 * Manufacturer ID = A2 02 00 Dell IANA
2056 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002057 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2058 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2059 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002060 */
2061#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2062#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2063#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002064#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002065static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2066{
2067 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002068 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002069 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2070 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002071 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002072 smi_info->oem_data_avail_handler =
2073 oem_data_avail_to_receive_msg_avail;
2074 }
2075 else if (ipmi_version_major(id) < 1 ||
2076 (ipmi_version_major(id) == 1 &&
2077 ipmi_version_minor(id) < 5)) {
2078 smi_info->oem_data_avail_handler =
2079 oem_data_avail_to_receive_msg_avail;
2080 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002081 }
2082}
2083
Corey Minyardea940272005-11-07 00:59:59 -08002084#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2085static void return_hosed_msg_badsize(struct smi_info *smi_info)
2086{
2087 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2088
2089 /* Make it a reponse */
2090 msg->rsp[0] = msg->data[0] | 4;
2091 msg->rsp[1] = msg->data[1];
2092 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2093 msg->rsp_size = 3;
2094 smi_info->curr_msg = NULL;
2095 deliver_recv_msg(smi_info, msg);
2096}
2097
2098/*
2099 * dell_poweredge_bt_xaction_handler
2100 * @info - smi_info.device_id must be populated
2101 *
2102 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2103 * not respond to a Get SDR command if the length of the data
2104 * requested is exactly 0x3A, which leads to command timeouts and no
2105 * data returned. This intercepts such commands, and causes userspace
2106 * callers to try again with a different-sized buffer, which succeeds.
2107 */
2108
2109#define STORAGE_NETFN 0x0A
2110#define STORAGE_CMD_GET_SDR 0x23
2111static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2112 unsigned long unused,
2113 void *in)
2114{
2115 struct smi_info *smi_info = in;
2116 unsigned char *data = smi_info->curr_msg->data;
2117 unsigned int size = smi_info->curr_msg->data_size;
2118 if (size >= 8 &&
2119 (data[0]>>2) == STORAGE_NETFN &&
2120 data[1] == STORAGE_CMD_GET_SDR &&
2121 data[7] == 0x3A) {
2122 return_hosed_msg_badsize(smi_info);
2123 return NOTIFY_STOP;
2124 }
2125 return NOTIFY_DONE;
2126}
2127
2128static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2129 .notifier_call = dell_poweredge_bt_xaction_handler,
2130};
2131
2132/*
2133 * setup_dell_poweredge_bt_xaction_handler
2134 * @info - smi_info.device_id must be filled in already
2135 *
2136 * Fills in smi_info.device_id.start_transaction_pre_hook
2137 * when we know what function to use there.
2138 */
2139static void
2140setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2141{
2142 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002143 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002144 smi_info->si_type == SI_BT)
2145 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2146}
2147
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002148/*
2149 * setup_oem_data_handler
2150 * @info - smi_info.device_id must be filled in already
2151 *
2152 * Fills in smi_info.device_id.oem_data_available_handler
2153 * when we know what function to use there.
2154 */
2155
2156static void setup_oem_data_handler(struct smi_info *smi_info)
2157{
2158 setup_dell_poweredge_oem_data_handler(smi_info);
2159}
2160
Corey Minyardea940272005-11-07 00:59:59 -08002161static void setup_xaction_handlers(struct smi_info *smi_info)
2162{
2163 setup_dell_poweredge_bt_xaction_handler(smi_info);
2164}
2165
Corey Minyarda9a2c442005-11-07 01:00:03 -08002166static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
2167{
Corey Minyard453823b2006-03-31 02:30:39 -08002168 if (smi_info->intf) {
2169 /* The timer and thread are only running if the
2170 interface has been started up and registered. */
2171 if (smi_info->thread != NULL)
2172 kthread_stop(smi_info->thread);
2173 del_timer_sync(&smi_info->si_timer);
2174 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08002175}
2176
Randy Dunlap74208842006-04-18 22:21:52 -07002177static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002179 int type;
2180 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07002181} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08002182{
2183 { .type = SI_KCS, .port = 0xca2 },
2184 { .type = SI_SMIC, .port = 0xca9 },
2185 { .type = SI_BT, .port = 0xe4 },
2186 { .port = 0 }
2187};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Corey Minyardb0defcd2006-03-26 01:37:20 -08002189static __devinit void default_find_bmc(void)
2190{
2191 struct smi_info *info;
2192 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Corey Minyardb0defcd2006-03-26 01:37:20 -08002194 for (i = 0; ; i++) {
2195 if (!ipmi_defaults[i].port)
2196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Corey Minyardb0defcd2006-03-26 01:37:20 -08002198 info = kzalloc(sizeof(*info), GFP_KERNEL);
2199 if (!info)
2200 return;
2201
2202 info->addr_source = NULL;
2203
2204 info->si_type = ipmi_defaults[i].type;
2205 info->io_setup = port_setup;
2206 info->io.addr_data = ipmi_defaults[i].port;
2207 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2208
2209 info->io.addr = NULL;
2210 info->io.regspacing = DEFAULT_REGSPACING;
2211 info->io.regsize = DEFAULT_REGSPACING;
2212 info->io.regshift = 0;
2213
2214 if (try_smi_init(info) == 0) {
2215 /* Found one... */
2216 printk(KERN_INFO "ipmi_si: Found default %s state"
2217 " machine at %s address 0x%lx\n",
2218 si_to_str[info->si_type],
2219 addr_space_to_str[info->io.addr_type],
2220 info->io.addr_data);
2221 return;
2222 }
2223 }
2224}
2225
2226static int is_new_interface(struct smi_info *info)
2227{
2228 struct smi_info *e;
2229
2230 list_for_each_entry(e, &smi_infos, link) {
2231 if (e->io.addr_type != info->io.addr_type)
2232 continue;
2233 if (e->io.addr_data == info->io.addr_data)
2234 return 0;
2235 }
2236
2237 return 1;
2238}
2239
2240static int try_smi_init(struct smi_info *new_smi)
2241{
2242 int rv;
2243
2244 if (new_smi->addr_source) {
2245 printk(KERN_INFO "ipmi_si: Trying %s-specified %s state"
2246 " machine at %s address 0x%lx, slave address 0x%x,"
2247 " irq %d\n",
2248 new_smi->addr_source,
2249 si_to_str[new_smi->si_type],
2250 addr_space_to_str[new_smi->io.addr_type],
2251 new_smi->io.addr_data,
2252 new_smi->slave_addr, new_smi->irq);
2253 }
2254
Corey Minyardd6dfd132006-03-31 02:30:41 -08002255 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002256 if (!is_new_interface(new_smi)) {
2257 printk(KERN_WARNING "ipmi_si: duplicate interface\n");
2258 rv = -EBUSY;
2259 goto out_err;
2260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 /* So we know not to free it unless we have allocated one. */
2263 new_smi->intf = NULL;
2264 new_smi->si_sm = NULL;
2265 new_smi->handlers = NULL;
2266
Corey Minyardb0defcd2006-03-26 01:37:20 -08002267 switch (new_smi->si_type) {
2268 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002270 break;
2271
2272 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002274 break;
2275
2276 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002278 break;
2279
2280 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 /* No support for anything else yet. */
2282 rv = -EIO;
2283 goto out_err;
2284 }
2285
2286 /* Allocate the state machine's data and initialize it. */
2287 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002288 if (!new_smi->si_sm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 printk(" Could not allocate state machine memory\n");
2290 rv = -ENOMEM;
2291 goto out_err;
2292 }
2293 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
2294 &new_smi->io);
2295
2296 /* Now that we know the I/O size, we can set up the I/O. */
2297 rv = new_smi->io_setup(new_smi);
2298 if (rv) {
2299 printk(" Could not set up I/O space\n");
2300 goto out_err;
2301 }
2302
2303 spin_lock_init(&(new_smi->si_lock));
2304 spin_lock_init(&(new_smi->msg_lock));
2305 spin_lock_init(&(new_smi->count_lock));
2306
2307 /* Do low-level detection first. */
2308 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002309 if (new_smi->addr_source)
2310 printk(KERN_INFO "ipmi_si: Interface detection"
2311 " failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 rv = -ENODEV;
2313 goto out_err;
2314 }
2315
2316 /* Attempt a get device id command. If it fails, we probably
Corey Minyardb0defcd2006-03-26 01:37:20 -08002317 don't have a BMC here. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002319 if (rv) {
2320 if (new_smi->addr_source)
2321 printk(KERN_INFO "ipmi_si: There appears to be no BMC"
2322 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002326 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08002327 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 /* Try to claim any interrupts. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002330 if (new_smi->irq_setup)
2331 new_smi->irq_setup(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
2334 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
2335 new_smi->curr_msg = NULL;
2336 atomic_set(&new_smi->req_events, 0);
2337 new_smi->run_to_completion = 0;
2338
2339 new_smi->interrupt_disabled = 0;
Corey Minyarda9a2c442005-11-07 01:00:03 -08002340 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002341 new_smi->intf_num = smi_num;
2342 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 /* Start clearing the flags before we enable interrupts or the
2345 timer to avoid racing with the timer. */
2346 start_clear_flags(new_smi);
2347 /* IRQ is defined to be set when non-zero. */
2348 if (new_smi->irq)
2349 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
2350
Corey Minyard50c812b2006-03-26 01:37:21 -08002351 if (!new_smi->dev) {
2352 /* If we don't already have a device from something
2353 * else (like PCI), then register a new one. */
2354 new_smi->pdev = platform_device_alloc("ipmi_si",
2355 new_smi->intf_num);
2356 if (rv) {
2357 printk(KERN_ERR
2358 "ipmi_si_intf:"
2359 " Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08002360 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08002361 }
2362 new_smi->dev = &new_smi->pdev->dev;
2363 new_smi->dev->driver = &ipmi_driver;
2364
Zhang, Yanminb48f5452006-11-16 01:19:08 -08002365 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002366 if (rv) {
2367 printk(KERN_ERR
2368 "ipmi_si_intf:"
2369 " Unable to register system interface device:"
2370 " %d\n",
2371 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08002372 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08002373 }
2374 new_smi->dev_registered = 1;
2375 }
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 rv = ipmi_register_smi(&handlers,
2378 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08002379 &new_smi->device_id,
2380 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08002381 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08002382 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (rv) {
2384 printk(KERN_ERR
2385 "ipmi_si: Unable to register device: error %d\n",
2386 rv);
2387 goto out_err_stop_timer;
2388 }
2389
2390 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
2391 type_file_read_proc, NULL,
2392 new_smi, THIS_MODULE);
2393 if (rv) {
2394 printk(KERN_ERR
2395 "ipmi_si: Unable to create proc entry: %d\n",
2396 rv);
2397 goto out_err_stop_timer;
2398 }
2399
2400 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
2401 stat_file_read_proc, NULL,
2402 new_smi, THIS_MODULE);
2403 if (rv) {
2404 printk(KERN_ERR
2405 "ipmi_si: Unable to create proc entry: %d\n",
2406 rv);
2407 goto out_err_stop_timer;
2408 }
2409
Corey Minyardb0defcd2006-03-26 01:37:20 -08002410 list_add_tail(&new_smi->link, &smi_infos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Corey Minyardd6dfd132006-03-31 02:30:41 -08002412 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002413
2414 printk(" IPMI %s interface initialized\n",si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 return 0;
2417
2418 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08002419 atomic_inc(&new_smi->stop_operation);
2420 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 out_err:
2423 if (new_smi->intf)
2424 ipmi_unregister_smi(new_smi->intf);
2425
Corey Minyardb0defcd2006-03-26 01:37:20 -08002426 if (new_smi->irq_cleanup)
2427 new_smi->irq_cleanup(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 /* Wait until we know that we are out of any interrupt
2430 handlers might have been running before we freed the
2431 interrupt. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002432 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 if (new_smi->si_sm) {
2435 if (new_smi->handlers)
2436 new_smi->handlers->cleanup(new_smi->si_sm);
2437 kfree(new_smi->si_sm);
2438 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002439 if (new_smi->addr_source_cleanup)
2440 new_smi->addr_source_cleanup(new_smi);
Paolo Galtieri7767e122005-12-15 12:34:28 -08002441 if (new_smi->io_cleanup)
2442 new_smi->io_cleanup(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Corey Minyard50c812b2006-03-26 01:37:21 -08002444 if (new_smi->dev_registered)
2445 platform_device_unregister(new_smi->pdev);
2446
2447 kfree(new_smi);
2448
Corey Minyardd6dfd132006-03-31 02:30:41 -08002449 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return rv;
2452}
2453
Corey Minyardb0defcd2006-03-26 01:37:20 -08002454static __devinit int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 int i;
2457 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08002458 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 if (initialized)
2461 return 0;
2462 initialized = 1;
2463
Corey Minyard50c812b2006-03-26 01:37:21 -08002464 /* Register the device drivers. */
2465 rv = driver_register(&ipmi_driver);
2466 if (rv) {
2467 printk(KERN_ERR
2468 "init_ipmi_si: Unable to register driver: %d\n",
2469 rv);
2470 return rv;
2471 }
2472
2473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 /* Parse out the si_type string into its components. */
2475 str = si_type_str;
2476 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07002477 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 si_type[i] = str;
2479 str = strchr(str, ',');
2480 if (str) {
2481 *str = '\0';
2482 str++;
2483 } else {
2484 break;
2485 }
2486 }
2487 }
2488
Corey Minyard1fdd75b2005-09-06 15:18:42 -07002489 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Corey Minyardb0defcd2006-03-26 01:37:20 -08002491 hardcode_find_bmc();
2492
Matt Domscha9fad4c2006-01-11 12:17:44 -08002493#ifdef CONFIG_DMI
Andrey Paninb224cd32005-09-06 15:18:37 -07002494 dmi_find_bmc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495#endif
2496
Corey Minyardb0defcd2006-03-26 01:37:20 -08002497#ifdef CONFIG_ACPI
2498 if (si_trydefaults)
2499 acpi_find_bmc();
2500#endif
2501
2502#ifdef CONFIG_PCI
2503 pci_module_init(&ipmi_pci_driver);
2504#endif
2505
2506 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002507 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002508 if (list_empty(&smi_infos)) {
2509 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08002510 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002511 default_find_bmc();
2512 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002513 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 }
2515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Corey Minyardd6dfd132006-03-31 02:30:41 -08002517 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002518 if (list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002519 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002520#ifdef CONFIG_PCI
2521 pci_unregister_driver(&ipmi_pci_driver);
2522#endif
Arnaud Patard55ebcc32006-09-16 12:15:36 -07002523 driver_unregister(&ipmi_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 printk("ipmi_si: Unable to find any System Interface(s)\n");
2525 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002526 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002527 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531module_init(init_ipmi_si);
2532
Corey Minyardb0defcd2006-03-26 01:37:20 -08002533static void __devexit cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
2535 int rv;
2536 unsigned long flags;
2537
Corey Minyardb0defcd2006-03-26 01:37:20 -08002538 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 return;
2540
Corey Minyardb0defcd2006-03-26 01:37:20 -08002541 list_del(&to_clean->link);
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 /* Tell the timer and interrupt handlers that we are shutting
2544 down. */
2545 spin_lock_irqsave(&(to_clean->si_lock), flags);
2546 spin_lock(&(to_clean->msg_lock));
2547
Corey Minyarda9a2c442005-11-07 01:00:03 -08002548 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002549
2550 if (to_clean->irq_cleanup)
2551 to_clean->irq_cleanup(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 spin_unlock(&(to_clean->msg_lock));
2554 spin_unlock_irqrestore(&(to_clean->si_lock), flags);
2555
2556 /* Wait until we know that we are out of any interrupt
2557 handlers might have been running before we freed the
2558 interrupt. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002559 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Corey Minyarda9a2c442005-11-07 01:00:03 -08002561 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563 /* Interrupts and timeouts are stopped, now make sure the
2564 interface is in a clean state. */
Corey Minyarde8b33612005-09-06 15:18:45 -07002565 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002567 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569
2570 rv = ipmi_unregister_smi(to_clean->intf);
2571 if (rv) {
2572 printk(KERN_ERR
2573 "ipmi_si: Unable to unregister device: errno=%d\n",
2574 rv);
2575 }
2576
2577 to_clean->handlers->cleanup(to_clean->si_sm);
2578
2579 kfree(to_clean->si_sm);
2580
Corey Minyardb0defcd2006-03-26 01:37:20 -08002581 if (to_clean->addr_source_cleanup)
2582 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08002583 if (to_clean->io_cleanup)
2584 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08002585
2586 if (to_clean->dev_registered)
2587 platform_device_unregister(to_clean->pdev);
2588
2589 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
2591
2592static __exit void cleanup_ipmi_si(void)
2593{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002594 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Corey Minyardb0defcd2006-03-26 01:37:20 -08002596 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 return;
2598
Corey Minyardb0defcd2006-03-26 01:37:20 -08002599#ifdef CONFIG_PCI
2600 pci_unregister_driver(&ipmi_pci_driver);
2601#endif
2602
Corey Minyardd6dfd132006-03-31 02:30:41 -08002603 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002604 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
2605 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08002606 mutex_unlock(&smi_infos_lock);
Corey Minyard50c812b2006-03-26 01:37:21 -08002607
2608 driver_unregister(&ipmi_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610module_exit(cleanup_ipmi_si);
2611
2612MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07002613MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
2614MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT system interfaces.");