blob: b58e587d2990055c4c47fe2f1d28769aa9127037 [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.
Corey Minyarddba9b4f2007-05-08 00:23:51 -070012 * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 *
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
28 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
29 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * You should have received a copy of the GNU General Public License along
32 * with this program; if not, write to the Free Software Foundation, Inc.,
33 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 */
35
36/*
37 * This file holds the "policy" for the interface to the SMI state
38 * machine. It does the configuration, handles timers and interrupts,
39 * and drives the real SMI state machine.
40 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/module.h>
43#include <linux/moduleparam.h>
44#include <asm/system.h>
45#include <linux/sched.h>
46#include <linux/timer.h>
47#include <linux/errno.h>
48#include <linux/spinlock.h>
49#include <linux/slab.h>
50#include <linux/delay.h>
51#include <linux/list.h>
52#include <linux/pci.h>
53#include <linux/ioport.h>
Corey Minyardea940272005-11-07 00:59:59 -080054#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080055#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080056#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/interrupt.h>
59#include <linux/rcupdate.h>
60#include <linux/ipmi_smi.h>
61#include <asm/io.h>
62#include "ipmi_si_sm.h"
63#include <linux/init.h>
Andrey Paninb224cd32005-09-06 15:18:37 -070064#include <linux/dmi.h>
Corey Minyardb361e272006-12-06 20:41:07 -080065#include <linux/string.h>
66#include <linux/ctype.h>
67
Corey Minyarddba9b4f2007-05-08 00:23:51 -070068#ifdef CONFIG_PPC_OF
Stephen Rothwell11c675c2008-05-23 16:22:42 +100069#include <linux/of_device.h>
70#include <linux/of_platform.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070071#endif
72
Corey Minyardb361e272006-12-06 20:41:07 -080073#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* Measure times between events in the driver. */
76#undef DEBUG_TIMING
77
78/* Call every 10 ms. */
79#define SI_TIMEOUT_TIME_USEC 10000
80#define SI_USEC_PER_JIFFY (1000000/HZ)
81#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
82#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070083 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85enum si_intf_state {
86 SI_NORMAL,
87 SI_GETTING_FLAGS,
88 SI_GETTING_EVENTS,
89 SI_CLEARING_FLAGS,
90 SI_CLEARING_FLAGS_THEN_SET_IRQ,
91 SI_GETTING_MESSAGES,
92 SI_ENABLE_INTERRUPTS1,
Corey Minyardee6cd5f2007-05-08 00:23:54 -070093 SI_ENABLE_INTERRUPTS2,
94 SI_DISABLE_INTERRUPTS1,
95 SI_DISABLE_INTERRUPTS2
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* FIXME - add watchdog stuff. */
97};
98
Corey Minyard9dbf68f2005-05-01 08:59:11 -070099/* Some BT-specific defines we need here. */
100#define IPMI_BT_INTMASK_REG 2
101#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
102#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104enum si_type {
105 SI_KCS, SI_SMIC, SI_BT
106};
Corey Minyardb361e272006-12-06 20:41:07 -0800107static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Corey Minyard50c812b2006-03-26 01:37:21 -0800109#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700110
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -0800111static struct platform_driver ipmi_driver = {
112 .driver = {
113 .name = DEVICE_NAME,
114 .bus = &platform_bus_type
115 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800116};
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700117
Corey Minyard64959e22008-04-29 01:01:07 -0700118
119/*
120 * Indexes into stats[] in smi_info below.
121 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700122enum si_stat_indexes {
123 /*
124 * Number of times the driver requested a timer while an operation
125 * was in progress.
126 */
127 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700128
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700129 /*
130 * Number of times the driver requested a timer while nothing was in
131 * progress.
132 */
133 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700134
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700135 /* Number of times the interface was idle while being polled. */
136 SI_STAT_idles,
137
138 /* Number of interrupts the driver handled. */
139 SI_STAT_interrupts,
140
141 /* Number of time the driver got an ATTN from the hardware. */
142 SI_STAT_attentions,
143
144 /* Number of times the driver requested flags from the hardware. */
145 SI_STAT_flag_fetches,
146
147 /* Number of times the hardware didn't follow the state machine. */
148 SI_STAT_hosed_count,
149
150 /* Number of completed messages. */
151 SI_STAT_complete_transactions,
152
153 /* Number of IPMI events received from the hardware. */
154 SI_STAT_events,
155
156 /* Number of watchdog pretimeouts. */
157 SI_STAT_watchdog_pretimeouts,
158
159 /* Number of asyncronous messages received. */
160 SI_STAT_incoming_messages,
161
162
163 /* This *must* remain last, add new values above this. */
164 SI_NUM_STATS
165};
Corey Minyard64959e22008-04-29 01:01:07 -0700166
Corey Minyardc305e3d2008-04-29 01:01:10 -0700167struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800168 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 ipmi_smi_t intf;
170 struct si_sm_data *si_sm;
171 struct si_sm_handlers *handlers;
172 enum si_type si_type;
173 spinlock_t si_lock;
174 spinlock_t msg_lock;
175 struct list_head xmit_msgs;
176 struct list_head hp_xmit_msgs;
177 struct ipmi_smi_msg *curr_msg;
178 enum si_intf_state si_state;
179
Corey Minyardc305e3d2008-04-29 01:01:10 -0700180 /*
181 * Used to handle the various types of I/O that can occur with
182 * IPMI
183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct si_sm_io io;
185 int (*io_setup)(struct smi_info *info);
186 void (*io_cleanup)(struct smi_info *info);
187 int (*irq_setup)(struct smi_info *info);
188 void (*irq_cleanup)(struct smi_info *info);
189 unsigned int io_size;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800190 char *addr_source; /* ACPI, PCI, SMBIOS, hardcode, default. */
191 void (*addr_source_cleanup)(struct smi_info *info);
192 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Corey Minyardc305e3d2008-04-29 01:01:10 -0700194 /*
195 * Per-OEM handler, called from handle_flags(). Returns 1
196 * when handle_flags() needs to be re-run or 0 indicating it
197 * set si_state itself.
198 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700199 int (*oem_data_avail_handler)(struct smi_info *smi_info);
200
Corey Minyardc305e3d2008-04-29 01:01:10 -0700201 /*
202 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
203 * is set to hold the flags until we are done handling everything
204 * from the flags.
205 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define RECEIVE_MSG_AVAIL 0x01
207#define EVENT_MSG_BUFFER_FULL 0x02
208#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700209#define OEM0_DATA_AVAIL 0x20
210#define OEM1_DATA_AVAIL 0x40
211#define OEM2_DATA_AVAIL 0x80
212#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700213 OEM1_DATA_AVAIL | \
214 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 unsigned char msg_flags;
216
Corey Minyard40112ae2009-04-21 12:24:03 -0700217 /* Does the BMC have an event buffer? */
218 char has_event_buffer;
219
Corey Minyardc305e3d2008-04-29 01:01:10 -0700220 /*
221 * If set to true, this will request events the next time the
222 * state machine is idle.
223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 atomic_t req_events;
225
Corey Minyardc305e3d2008-04-29 01:01:10 -0700226 /*
227 * If true, run the state machine to completion on every send
228 * call. Generally used after a panic to make sure stuff goes
229 * out.
230 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 int run_to_completion;
232
233 /* The I/O port of an SI interface. */
234 int port;
235
Corey Minyardc305e3d2008-04-29 01:01:10 -0700236 /*
237 * The space between start addresses of the two ports. For
238 * instance, if the first port is 0xca2 and the spacing is 4, then
239 * the second port is 0xca6.
240 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 unsigned int spacing;
242
243 /* zero if no irq; */
244 int irq;
245
246 /* The timer for this si. */
247 struct timer_list si_timer;
248
249 /* The time (in jiffies) the last timeout occurred at. */
250 unsigned long last_timeout_jiffies;
251
252 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800253 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Corey Minyardc305e3d2008-04-29 01:01:10 -0700255 /*
256 * The driver will disable interrupts when it gets into a
257 * situation where it cannot handle messages due to lack of
258 * memory. Once that situation clears up, it will re-enable
259 * interrupts.
260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 int interrupt_disabled;
262
Corey Minyard50c812b2006-03-26 01:37:21 -0800263 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700264 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Corey Minyard50c812b2006-03-26 01:37:21 -0800266 /* Driver model stuff. */
267 struct device *dev;
268 struct platform_device *pdev;
269
Corey Minyardc305e3d2008-04-29 01:01:10 -0700270 /*
271 * True if we allocated the device, false if it came from
272 * someplace else (like PCI).
273 */
Corey Minyard50c812b2006-03-26 01:37:21 -0800274 int dev_registered;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Slave address, could be reported from DMI. */
277 unsigned char slave_addr;
278
279 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700280 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800281
Corey Minyardc305e3d2008-04-29 01:01:10 -0700282 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800283
284 struct list_head link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Corey Minyard64959e22008-04-29 01:01:07 -0700287#define smi_inc_stat(smi, stat) \
288 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
289#define smi_get_stat(smi, stat) \
290 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
291
Corey Minyarda51f4a82006-10-03 01:13:59 -0700292#define SI_MAX_PARMS 4
293
294static int force_kipmid[SI_MAX_PARMS];
295static int num_force_kipmid;
296
Corey Minyardb361e272006-12-06 20:41:07 -0800297static int unload_when_empty = 1;
298
Corey Minyardb0defcd2006-03-26 01:37:20 -0800299static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800300static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800301
Alan Sterne041c682006-03-27 01:16:30 -0800302static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700303static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800304{
Alan Sterne041c682006-03-27 01:16:30 -0800305 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static void deliver_recv_msg(struct smi_info *smi_info,
309 struct ipmi_smi_msg *msg)
310{
311 /* Deliver the message to the upper layer with the lock
Corey Minyardc305e3d2008-04-29 01:01:10 -0700312 released. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 spin_unlock(&(smi_info->si_lock));
314 ipmi_smi_msg_received(smi_info->intf, msg);
315 spin_lock(&(smi_info->si_lock));
316}
317
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800318static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct ipmi_smi_msg *msg = smi_info->curr_msg;
321
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800322 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
323 cCode = IPMI_ERR_UNSPECIFIED;
324 /* else use it as is */
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /* Make it a reponse */
327 msg->rsp[0] = msg->data[0] | 4;
328 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800329 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 msg->rsp_size = 3;
331
332 smi_info->curr_msg = NULL;
333 deliver_recv_msg(smi_info, msg);
334}
335
336static enum si_sm_result start_next_msg(struct smi_info *smi_info)
337{
338 int rv;
339 struct list_head *entry = NULL;
340#ifdef DEBUG_TIMING
341 struct timeval t;
342#endif
343
Corey Minyardc305e3d2008-04-29 01:01:10 -0700344 /*
345 * No need to save flags, we aleady have interrupts off and we
346 * already hold the SMI lock.
347 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700348 if (!smi_info->run_to_completion)
349 spin_lock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800352 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800354 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 entry = smi_info->xmit_msgs.next;
356 }
357
Corey Minyardb0defcd2006-03-26 01:37:20 -0800358 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 smi_info->curr_msg = NULL;
360 rv = SI_SM_IDLE;
361 } else {
362 int err;
363
364 list_del(entry);
365 smi_info->curr_msg = list_entry(entry,
366 struct ipmi_smi_msg,
367 link);
368#ifdef DEBUG_TIMING
369 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700370 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371#endif
Alan Sterne041c682006-03-27 01:16:30 -0800372 err = atomic_notifier_call_chain(&xaction_notifier_list,
373 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800374 if (err & NOTIFY_STOP_MASK) {
375 rv = SI_SM_CALL_WITHOUT_DELAY;
376 goto out;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 err = smi_info->handlers->start_transaction(
379 smi_info->si_sm,
380 smi_info->curr_msg->data,
381 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700382 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800383 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 rv = SI_SM_CALL_WITHOUT_DELAY;
386 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700387 out:
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700388 if (!smi_info->run_to_completion)
389 spin_unlock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 return rv;
392}
393
394static void start_enable_irq(struct smi_info *smi_info)
395{
396 unsigned char msg[2];
397
Corey Minyardc305e3d2008-04-29 01:01:10 -0700398 /*
399 * If we are enabling interrupts, we have to tell the
400 * BMC to use them.
401 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
403 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
404
405 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
406 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
407}
408
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700409static void start_disable_irq(struct smi_info *smi_info)
410{
411 unsigned char msg[2];
412
413 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
414 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
415
416 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
417 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static void start_clear_flags(struct smi_info *smi_info)
421{
422 unsigned char msg[3];
423
424 /* Make sure the watchdog pre-timeout flag is not set at startup. */
425 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
426 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
427 msg[2] = WDT_PRE_TIMEOUT_INT;
428
429 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
430 smi_info->si_state = SI_CLEARING_FLAGS;
431}
432
Corey Minyardc305e3d2008-04-29 01:01:10 -0700433/*
434 * When we have a situtaion where we run out of memory and cannot
435 * allocate messages, we just leave them in the BMC and run the system
436 * polled until we can allocate some memory. Once we have some
437 * memory, we will re-enable the interrupt.
438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static inline void disable_si_irq(struct smi_info *smi_info)
440{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800441 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700442 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 smi_info->interrupt_disabled = 1;
444 }
445}
446
447static inline void enable_si_irq(struct smi_info *smi_info)
448{
449 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700450 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 smi_info->interrupt_disabled = 0;
452 }
453}
454
455static void handle_flags(struct smi_info *smi_info)
456{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700457 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
459 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700460 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 start_clear_flags(smi_info);
463 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
464 spin_unlock(&(smi_info->si_lock));
465 ipmi_smi_watchdog_pretimeout(smi_info->intf);
466 spin_lock(&(smi_info->si_lock));
467 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
468 /* Messages available. */
469 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800470 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 disable_si_irq(smi_info);
472 smi_info->si_state = SI_NORMAL;
473 return;
474 }
475 enable_si_irq(smi_info);
476
477 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
478 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
479 smi_info->curr_msg->data_size = 2;
480
481 smi_info->handlers->start_transaction(
482 smi_info->si_sm,
483 smi_info->curr_msg->data,
484 smi_info->curr_msg->data_size);
485 smi_info->si_state = SI_GETTING_MESSAGES;
486 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
487 /* Events available. */
488 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800489 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 disable_si_irq(smi_info);
491 smi_info->si_state = SI_NORMAL;
492 return;
493 }
494 enable_si_irq(smi_info);
495
496 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
497 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
498 smi_info->curr_msg->data_size = 2;
499
500 smi_info->handlers->start_transaction(
501 smi_info->si_sm,
502 smi_info->curr_msg->data,
503 smi_info->curr_msg->data_size);
504 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700505 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700506 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700507 if (smi_info->oem_data_avail_handler(smi_info))
508 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700509 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513static void handle_transaction_done(struct smi_info *smi_info)
514{
515 struct ipmi_smi_msg *msg;
516#ifdef DEBUG_TIMING
517 struct timeval t;
518
519 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700520 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521#endif
522 switch (smi_info->si_state) {
523 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800524 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
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
Corey Minyardc305e3d2008-04-29 01:01:10 -0700533 /*
534 * Do this here becase deliver_recv_msg() releases the
535 * lock, and a new message can be put in during the
536 * time the lock is released.
537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 msg = smi_info->curr_msg;
539 smi_info->curr_msg = NULL;
540 deliver_recv_msg(smi_info, msg);
541 break;
542
543 case SI_GETTING_FLAGS:
544 {
545 unsigned char msg[4];
546 unsigned int len;
547
548 /* We got the flags from the SMI, now handle them. */
549 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
550 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700551 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 smi_info->si_state = SI_NORMAL;
553 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700554 /*
555 * Hmm, no flags. That's technically illegal, but
556 * don't use uninitialized data.
557 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 smi_info->si_state = SI_NORMAL;
559 } else {
560 smi_info->msg_flags = msg[3];
561 handle_flags(smi_info);
562 }
563 break;
564 }
565
566 case SI_CLEARING_FLAGS:
567 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
568 {
569 unsigned char msg[3];
570
571 /* We cleared the flags. */
572 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
573 if (msg[2] != 0) {
574 /* Error clearing flags */
575 printk(KERN_WARNING
576 "ipmi_si: Error clearing flags: %2.2x\n",
577 msg[2]);
578 }
579 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
580 start_enable_irq(smi_info);
581 else
582 smi_info->si_state = SI_NORMAL;
583 break;
584 }
585
586 case SI_GETTING_EVENTS:
587 {
588 smi_info->curr_msg->rsp_size
589 = smi_info->handlers->get_result(
590 smi_info->si_sm,
591 smi_info->curr_msg->rsp,
592 IPMI_MAX_MSG_LENGTH);
593
Corey Minyardc305e3d2008-04-29 01:01:10 -0700594 /*
595 * Do this here becase deliver_recv_msg() releases the
596 * lock, and a new message can be put in during the
597 * time the lock is released.
598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 msg = smi_info->curr_msg;
600 smi_info->curr_msg = NULL;
601 if (msg->rsp[2] != 0) {
602 /* Error getting event, probably done. */
603 msg->done(msg);
604
605 /* Take off the event flag. */
606 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
607 handle_flags(smi_info);
608 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700609 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Corey Minyardc305e3d2008-04-29 01:01:10 -0700611 /*
612 * Do this before we deliver the message
613 * because delivering the message releases the
614 * lock and something else can mess with the
615 * state.
616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 handle_flags(smi_info);
618
619 deliver_recv_msg(smi_info, msg);
620 }
621 break;
622 }
623
624 case SI_GETTING_MESSAGES:
625 {
626 smi_info->curr_msg->rsp_size
627 = smi_info->handlers->get_result(
628 smi_info->si_sm,
629 smi_info->curr_msg->rsp,
630 IPMI_MAX_MSG_LENGTH);
631
Corey Minyardc305e3d2008-04-29 01:01:10 -0700632 /*
633 * Do this here becase deliver_recv_msg() releases the
634 * lock, and a new message can be put in during the
635 * time the lock is released.
636 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 msg = smi_info->curr_msg;
638 smi_info->curr_msg = NULL;
639 if (msg->rsp[2] != 0) {
640 /* Error getting event, probably done. */
641 msg->done(msg);
642
643 /* Take off the msg flag. */
644 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
645 handle_flags(smi_info);
646 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700647 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Corey Minyardc305e3d2008-04-29 01:01:10 -0700649 /*
650 * Do this before we deliver the message
651 * because delivering the message releases the
652 * lock and something else can mess with the
653 * state.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 handle_flags(smi_info);
656
657 deliver_recv_msg(smi_info, msg);
658 }
659 break;
660 }
661
662 case SI_ENABLE_INTERRUPTS1:
663 {
664 unsigned char msg[4];
665
666 /* We got the flags from the SMI, now handle them. */
667 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
668 if (msg[2] != 0) {
669 printk(KERN_WARNING
670 "ipmi_si: Could not enable interrupts"
671 ", failed get, using polled mode.\n");
672 smi_info->si_state = SI_NORMAL;
673 } else {
674 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
675 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700676 msg[2] = (msg[3] |
677 IPMI_BMC_RCV_MSG_INTR |
678 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 smi_info->handlers->start_transaction(
680 smi_info->si_sm, msg, 3);
681 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
682 }
683 break;
684 }
685
686 case SI_ENABLE_INTERRUPTS2:
687 {
688 unsigned char msg[4];
689
690 /* We got the flags from the SMI, now handle them. */
691 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
692 if (msg[2] != 0) {
693 printk(KERN_WARNING
694 "ipmi_si: Could not enable interrupts"
695 ", failed set, using polled mode.\n");
696 }
697 smi_info->si_state = SI_NORMAL;
698 break;
699 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700700
701 case SI_DISABLE_INTERRUPTS1:
702 {
703 unsigned char msg[4];
704
705 /* We got the flags from the SMI, now handle them. */
706 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
707 if (msg[2] != 0) {
708 printk(KERN_WARNING
709 "ipmi_si: Could not disable interrupts"
710 ", failed get.\n");
711 smi_info->si_state = SI_NORMAL;
712 } else {
713 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
714 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
715 msg[2] = (msg[3] &
716 ~(IPMI_BMC_RCV_MSG_INTR |
717 IPMI_BMC_EVT_MSG_INTR));
718 smi_info->handlers->start_transaction(
719 smi_info->si_sm, msg, 3);
720 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
721 }
722 break;
723 }
724
725 case SI_DISABLE_INTERRUPTS2:
726 {
727 unsigned char msg[4];
728
729 /* We got the flags from the SMI, now handle them. */
730 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
731 if (msg[2] != 0) {
732 printk(KERN_WARNING
733 "ipmi_si: Could not disable interrupts"
734 ", failed set.\n");
735 }
736 smi_info->si_state = SI_NORMAL;
737 break;
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740}
741
Corey Minyardc305e3d2008-04-29 01:01:10 -0700742/*
743 * Called on timeouts and events. Timeouts should pass the elapsed
744 * time, interrupts should pass in zero. Must be called with
745 * si_lock held and interrupts disabled.
746 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
748 int time)
749{
750 enum si_sm_result si_sm_result;
751
752 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700753 /*
754 * There used to be a loop here that waited a little while
755 * (around 25us) before giving up. That turned out to be
756 * pointless, the minimum delays I was seeing were in the 300us
757 * range, which is far too long to wait in an interrupt. So
758 * we just run until the state machine tells us something
759 * happened or it needs a delay.
760 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
762 time = 0;
763 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Corey Minyardc305e3d2008-04-29 01:01:10 -0700766 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700767 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 handle_transaction_done(smi_info);
770 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700771 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700772 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Corey Minyardc305e3d2008-04-29 01:01:10 -0700774 /*
775 * Do the before return_hosed_msg, because that
776 * releases the lock.
777 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 smi_info->si_state = SI_NORMAL;
779 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700780 /*
781 * If we were handling a user message, format
782 * a response to send to the upper layer to
783 * tell it about the error.
784 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800785 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
788 }
789
Corey Minyard4ea18422008-04-29 01:01:01 -0700790 /*
791 * We prefer handling attn over new messages. But don't do
792 * this if there is not yet an upper layer to handle anything.
793 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700794 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 unsigned char msg[2];
796
Corey Minyard64959e22008-04-29 01:01:07 -0700797 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Corey Minyardc305e3d2008-04-29 01:01:10 -0700799 /*
800 * Got a attn, send down a get message flags to see
801 * what's causing it. It would be better to handle
802 * this in the upper layer, but due to the way
803 * interrupts work with the SMI, that's not really
804 * possible.
805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
807 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
808
809 smi_info->handlers->start_transaction(
810 smi_info->si_sm, msg, 2);
811 smi_info->si_state = SI_GETTING_FLAGS;
812 goto restart;
813 }
814
815 /* If we are currently idle, try to start the next message. */
816 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700817 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 si_sm_result = start_next_msg(smi_info);
820 if (si_sm_result != SI_SM_IDLE)
821 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700825 && (atomic_read(&smi_info->req_events))) {
826 /*
827 * We are idle and the upper layer requested that I fetch
828 * events, so do so.
829 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800831
832 smi_info->curr_msg = ipmi_alloc_smi_msg();
833 if (!smi_info->curr_msg)
834 goto out;
835
836 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
837 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
838 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800841 smi_info->si_sm,
842 smi_info->curr_msg->data,
843 smi_info->curr_msg->data_size);
844 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 goto restart;
846 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800847 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return si_sm_result;
849}
850
851static void sender(void *send_info,
852 struct ipmi_smi_msg *msg,
853 int priority)
854{
855 struct smi_info *smi_info = send_info;
856 enum si_sm_result result;
857 unsigned long flags;
858#ifdef DEBUG_TIMING
859 struct timeval t;
860#endif
861
Corey Minyardb361e272006-12-06 20:41:07 -0800862 if (atomic_read(&smi_info->stop_operation)) {
863 msg->rsp[0] = msg->data[0] | 4;
864 msg->rsp[1] = msg->data[1];
865 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
866 msg->rsp_size = 3;
867 deliver_recv_msg(smi_info, msg);
868 return;
869 }
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871#ifdef DEBUG_TIMING
872 do_gettimeofday(&t);
873 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
874#endif
875
876 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700877 /*
878 * If we are running to completion, then throw it in
879 * the list and run transactions until everything is
880 * clear. Priority doesn't matter here.
881 */
882
883 /*
884 * Run to completion means we are single-threaded, no
885 * need for locks.
886 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 result = smi_event_handler(smi_info, 0);
890 while (result != SI_SM_IDLE) {
891 udelay(SI_SHORT_TIMEOUT_USEC);
892 result = smi_event_handler(smi_info,
893 SI_SHORT_TIMEOUT_USEC);
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Corey Minyardbda4c302008-04-29 01:01:02 -0700898 spin_lock_irqsave(&smi_info->msg_lock, flags);
899 if (priority > 0)
900 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
901 else
902 list_add_tail(&msg->link, &smi_info->xmit_msgs);
903 spin_unlock_irqrestore(&smi_info->msg_lock, flags);
904
905 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700906 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 start_next_msg(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700908 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
911static void set_run_to_completion(void *send_info, int i_run_to_completion)
912{
913 struct smi_info *smi_info = send_info;
914 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 smi_info->run_to_completion = i_run_to_completion;
917 if (i_run_to_completion) {
918 result = smi_event_handler(smi_info, 0);
919 while (result != SI_SM_IDLE) {
920 udelay(SI_SHORT_TIMEOUT_USEC);
921 result = smi_event_handler(smi_info,
922 SI_SHORT_TIMEOUT_USEC);
923 }
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Corey Minyarda9a2c442005-11-07 01:00:03 -0800927static int ipmi_thread(void *data)
928{
929 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -0800930 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800931 enum si_sm_result smi_result;
932
Corey Minyarda9a2c442005-11-07 01:00:03 -0800933 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -0800934 while (!kthread_should_stop()) {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800935 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -0800936 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800937 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700938 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
939 ; /* do nothing */
Matt Domsche9a705a2005-11-07 01:00:04 -0800940 else if (smi_result == SI_SM_CALL_WITH_DELAY)
akpm@osdl.org33979732006-06-27 02:54:04 -0700941 schedule();
Matt Domsche9a705a2005-11-07 01:00:04 -0800942 else
943 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800944 }
Corey Minyarda9a2c442005-11-07 01:00:03 -0800945 return 0;
946}
947
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949static void poll(void *send_info)
950{
951 struct smi_info *smi_info = send_info;
Corey Minyardfcfa4722007-10-18 03:07:09 -0700952 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Corey Minyard15c62e12006-12-06 20:41:06 -0800954 /*
955 * Make sure there is some delay in the poll loop so we can
956 * drive time forward and timeout things.
957 */
958 udelay(10);
Corey Minyardfcfa4722007-10-18 03:07:09 -0700959 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -0800960 smi_event_handler(smi_info, 10);
Corey Minyardfcfa4722007-10-18 03:07:09 -0700961 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964static void request_events(void *send_info)
965{
966 struct smi_info *smi_info = send_info;
967
Corey Minyard40112ae2009-04-21 12:24:03 -0700968 if (atomic_read(&smi_info->stop_operation) ||
969 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -0800970 return;
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 atomic_set(&smi_info->req_events, 1);
973}
974
Randy Dunlap0c8204b2006-12-10 02:19:06 -0800975static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977static void smi_timeout(unsigned long data)
978{
979 struct smi_info *smi_info = (struct smi_info *) data;
980 enum si_sm_result smi_result;
981 unsigned long flags;
982 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -0800983 long time_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984#ifdef DEBUG_TIMING
985 struct timeval t;
986#endif
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 spin_lock_irqsave(&(smi_info->si_lock), flags);
989#ifdef DEBUG_TIMING
990 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700991 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992#endif
993 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -0800994 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 * SI_USEC_PER_JIFFY);
996 smi_result = smi_event_handler(smi_info, time_diff);
997
998 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
999
1000 smi_info->last_timeout_jiffies = jiffies_now;
1001
Corey Minyardb0defcd2006-03-26 01:37:20 -08001002 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /* Running with interrupts, only do long timeouts. */
1004 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001005 smi_inc_stat(smi_info, long_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto do_add_timer;
1007 }
1008
Corey Minyardc305e3d2008-04-29 01:01:10 -07001009 /*
1010 * If the state machine asks for a short delay, then shorten
1011 * the timer timeout.
1012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001014 smi_inc_stat(smi_info, short_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 smi_info->si_timer.expires = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001017 smi_inc_stat(smi_info, long_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
1021 do_add_timer:
1022 add_timer(&(smi_info->si_timer));
1023}
1024
David Howells7d12e782006-10-05 14:55:46 +01001025static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct smi_info *smi_info = data;
1028 unsigned long flags;
1029#ifdef DEBUG_TIMING
1030 struct timeval t;
1031#endif
1032
1033 spin_lock_irqsave(&(smi_info->si_lock), flags);
1034
Corey Minyard64959e22008-04-29 01:01:07 -07001035 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037#ifdef DEBUG_TIMING
1038 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001039 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040#endif
1041 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1043 return IRQ_HANDLED;
1044}
1045
David Howells7d12e782006-10-05 14:55:46 +01001046static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001047{
1048 struct smi_info *smi_info = data;
1049 /* We need to clear the IRQ flag for the BT interface. */
1050 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1051 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1052 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001053 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001054}
1055
Corey Minyard453823b2006-03-31 02:30:39 -08001056static int smi_start_processing(void *send_info,
1057 ipmi_smi_t intf)
1058{
1059 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001060 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001061
1062 new_smi->intf = intf;
1063
Corey Minyardc45adc32007-10-18 03:07:08 -07001064 /* Try to claim any interrupts. */
1065 if (new_smi->irq_setup)
1066 new_smi->irq_setup(new_smi);
1067
Corey Minyard453823b2006-03-31 02:30:39 -08001068 /* Set up the timer that drives the interface. */
1069 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1070 new_smi->last_timeout_jiffies = jiffies;
1071 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1072
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001073 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001074 * Check if the user forcefully enabled the daemon.
1075 */
1076 if (new_smi->intf_num < num_force_kipmid)
1077 enable = force_kipmid[new_smi->intf_num];
1078 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001079 * The BT interface is efficient enough to not need a thread,
1080 * and there is no need for a thread if we have interrupts.
1081 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001082 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001083 enable = 1;
1084
1085 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001086 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1087 "kipmi%d", new_smi->intf_num);
1088 if (IS_ERR(new_smi->thread)) {
1089 printk(KERN_NOTICE "ipmi_si_intf: Could not start"
1090 " kernel thread due to error %ld, only using"
1091 " timers to drive the interface\n",
1092 PTR_ERR(new_smi->thread));
1093 new_smi->thread = NULL;
1094 }
1095 }
1096
1097 return 0;
1098}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001099
Corey Minyardb9675132006-12-06 20:41:02 -08001100static void set_maintenance_mode(void *send_info, int enable)
1101{
1102 struct smi_info *smi_info = send_info;
1103
1104 if (!enable)
1105 atomic_set(&smi_info->req_events, 0);
1106}
1107
Corey Minyardc305e3d2008-04-29 01:01:10 -07001108static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001110 .start_processing = smi_start_processing,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 .sender = sender,
1112 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001113 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 .set_run_to_completion = set_run_to_completion,
1115 .poll = poll,
1116};
1117
Corey Minyardc305e3d2008-04-29 01:01:10 -07001118/*
1119 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1120 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1121 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Corey Minyardb0defcd2006-03-26 01:37:20 -08001123static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001124static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001125static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001128#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130static int si_trydefaults = 1;
1131static char *si_type[SI_MAX_PARMS];
1132#define MAX_SI_TYPE_STR 30
1133static char si_type_str[MAX_SI_TYPE_STR];
1134static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001135static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001137static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001139static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001141static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001143static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001145static unsigned int num_regshifts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146static int slave_addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001147static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Corey Minyardb361e272006-12-06 20:41:07 -08001149#define IPMI_IO_ADDR_SPACE 0
1150#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001151static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001152
1153static int hotmod_handler(const char *val, struct kernel_param *kp);
1154
1155module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1156MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1157 " Documentation/IPMI.txt in the kernel sources for the"
1158 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160module_param_named(trydefaults, si_trydefaults, bool, 0);
1161MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1162 " default scan of the KCS and SMIC interface at the standard"
1163 " address");
1164module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1165MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1166 " interface separated by commas. The types are 'kcs',"
1167 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1168 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001169module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1171 " addresses separated by commas. Only use if an interface"
1172 " is in memory. Otherwise, set it to zero or leave"
1173 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001174module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1176 " addresses separated by commas. Only use if an interface"
1177 " is a port. Otherwise, set it to zero or leave"
1178 " it blank.");
1179module_param_array(irqs, int, &num_irqs, 0);
1180MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1181 " addresses separated by commas. Only use if an interface"
1182 " has an interrupt. Otherwise, set it to zero or leave"
1183 " it blank.");
1184module_param_array(regspacings, int, &num_regspacings, 0);
1185MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1186 " and each successive register used by the interface. For"
1187 " instance, if the start address is 0xca2 and the spacing"
1188 " is 2, then the second address is at 0xca4. Defaults"
1189 " to 1.");
1190module_param_array(regsizes, int, &num_regsizes, 0);
1191MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1192 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1193 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1194 " the 8-bit IPMI register has to be read from a larger"
1195 " register.");
1196module_param_array(regshifts, int, &num_regshifts, 0);
1197MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1198 " IPMI register, in bits. For instance, if the data"
1199 " is read from a 32-bit word and the IPMI data is in"
1200 " bit 8-15, then the shift would be 8");
1201module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1202MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1203 " the controller. Normally this is 0x20, but can be"
1204 " overridden by this parm. This is an array indexed"
1205 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001206module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1207MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1208 " disabled(0). Normally the IPMI driver auto-detects"
1209 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001210module_param(unload_when_empty, int, 0);
1211MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1212 " specified or found, default is 1. Setting to 0"
1213 " is useful for hot add of devices using hotmod.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215
Corey Minyardb0defcd2006-03-26 01:37:20 -08001216static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001218 if (info->si_type == SI_BT)
1219 /* Disable the interrupt in the BT interface. */
1220 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1221 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224static int std_irq_setup(struct smi_info *info)
1225{
1226 int rv;
1227
Corey Minyardb0defcd2006-03-26 01:37:20 -08001228 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return 0;
1230
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001231 if (info->si_type == SI_BT) {
1232 rv = request_irq(info->irq,
1233 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001234 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001235 DEVICE_NAME,
1236 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001237 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001238 /* Enable the interrupt in the BT interface. */
1239 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1240 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1241 } else
1242 rv = request_irq(info->irq,
1243 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001244 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001245 DEVICE_NAME,
1246 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (rv) {
1248 printk(KERN_WARNING
1249 "ipmi_si: %s unable to claim interrupt %d,"
1250 " running polled\n",
1251 DEVICE_NAME, info->irq);
1252 info->irq = 0;
1253 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001254 info->irq_cleanup = std_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 printk(" Using irq %d\n", info->irq);
1256 }
1257
1258 return rv;
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1262{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001263 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Corey Minyardb0defcd2006-03-26 01:37:20 -08001265 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
1268static void port_outb(struct si_sm_io *io, unsigned int offset,
1269 unsigned char b)
1270{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001271 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Corey Minyardb0defcd2006-03-26 01:37:20 -08001273 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1277{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001278 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Corey Minyardb0defcd2006-03-26 01:37:20 -08001280 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283static void port_outw(struct si_sm_io *io, unsigned int offset,
1284 unsigned char b)
1285{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001286 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Corey Minyardb0defcd2006-03-26 01:37:20 -08001288 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1292{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001293 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Corey Minyardb0defcd2006-03-26 01:37:20 -08001295 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298static void port_outl(struct si_sm_io *io, unsigned int offset,
1299 unsigned char b)
1300{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001301 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Corey Minyardb0defcd2006-03-26 01:37:20 -08001303 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306static void port_cleanup(struct smi_info *info)
1307{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001308 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001309 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Corey Minyardb0defcd2006-03-26 01:37:20 -08001311 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001312 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001313 release_region(addr + idx * info->io.regspacing,
1314 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318static int port_setup(struct smi_info *info)
1319{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001320 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001321 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Corey Minyardb0defcd2006-03-26 01:37:20 -08001323 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 return -ENODEV;
1325
1326 info->io_cleanup = port_cleanup;
1327
Corey Minyardc305e3d2008-04-29 01:01:10 -07001328 /*
1329 * Figure out the actual inb/inw/inl/etc routine to use based
1330 * upon the register size.
1331 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 switch (info->io.regsize) {
1333 case 1:
1334 info->io.inputb = port_inb;
1335 info->io.outputb = port_outb;
1336 break;
1337 case 2:
1338 info->io.inputb = port_inw;
1339 info->io.outputb = port_outw;
1340 break;
1341 case 4:
1342 info->io.inputb = port_inl;
1343 info->io.outputb = port_outl;
1344 break;
1345 default:
Corey Minyardc305e3d2008-04-29 01:01:10 -07001346 printk(KERN_WARNING "ipmi_si: Invalid register size: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 info->io.regsize);
1348 return -EINVAL;
1349 }
1350
Corey Minyardc305e3d2008-04-29 01:01:10 -07001351 /*
1352 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001353 * tables. This causes problems when trying to register the
1354 * entire I/O region. Therefore we must register each I/O
1355 * port separately.
1356 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001357 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001358 if (request_region(addr + idx * info->io.regspacing,
1359 info->io.regsize, DEVICE_NAME) == NULL) {
1360 /* Undo allocations */
1361 while (idx--) {
1362 release_region(addr + idx * info->io.regspacing,
1363 info->io.regsize);
1364 }
1365 return -EIO;
1366 }
1367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369}
1370
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001371static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 return readb((io->addr)+(offset * io->regspacing));
1374}
1375
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001376static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 unsigned char b)
1378{
1379 writeb(b, (io->addr)+(offset * io->regspacing));
1380}
1381
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001382static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001385 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001388static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 unsigned char b)
1390{
1391 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1392}
1393
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001394static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001397 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001400static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 unsigned char b)
1402{
1403 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1404}
1405
1406#ifdef readq
1407static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1408{
1409 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001410 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413static void mem_outq(struct si_sm_io *io, unsigned int offset,
1414 unsigned char b)
1415{
1416 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1417}
1418#endif
1419
1420static void mem_cleanup(struct smi_info *info)
1421{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001422 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 int mapsize;
1424
1425 if (info->io.addr) {
1426 iounmap(info->io.addr);
1427
1428 mapsize = ((info->io_size * info->io.regspacing)
1429 - (info->io.regspacing - info->io.regsize));
1430
Corey Minyardb0defcd2006-03-26 01:37:20 -08001431 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435static int mem_setup(struct smi_info *info)
1436{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001437 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 int mapsize;
1439
Corey Minyardb0defcd2006-03-26 01:37:20 -08001440 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return -ENODEV;
1442
1443 info->io_cleanup = mem_cleanup;
1444
Corey Minyardc305e3d2008-04-29 01:01:10 -07001445 /*
1446 * Figure out the actual readb/readw/readl/etc routine to use based
1447 * upon the register size.
1448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 switch (info->io.regsize) {
1450 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001451 info->io.inputb = intf_mem_inb;
1452 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
1454 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001455 info->io.inputb = intf_mem_inw;
1456 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
1458 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001459 info->io.inputb = intf_mem_inl;
1460 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 break;
1462#ifdef readq
1463 case 8:
1464 info->io.inputb = mem_inq;
1465 info->io.outputb = mem_outq;
1466 break;
1467#endif
1468 default:
Corey Minyardc305e3d2008-04-29 01:01:10 -07001469 printk(KERN_WARNING "ipmi_si: Invalid register size: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 info->io.regsize);
1471 return -EINVAL;
1472 }
1473
Corey Minyardc305e3d2008-04-29 01:01:10 -07001474 /*
1475 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * unusual looking calculation, but it avoids claiming any
1477 * more memory than it has to. It will claim everything
1478 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001479 * register.
1480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 mapsize = ((info->io_size * info->io.regspacing)
1482 - (info->io.regspacing - info->io.regsize));
1483
Corey Minyardb0defcd2006-03-26 01:37:20 -08001484 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return -EIO;
1486
Corey Minyardb0defcd2006-03-26 01:37:20 -08001487 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001489 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return -EIO;
1491 }
1492 return 0;
1493}
1494
Corey Minyardb361e272006-12-06 20:41:07 -08001495/*
1496 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1497 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1498 * Options are:
1499 * rsp=<regspacing>
1500 * rsi=<regsize>
1501 * rsh=<regshift>
1502 * irq=<irq>
1503 * ipmb=<ipmb addr>
1504 */
1505enum hotmod_op { HM_ADD, HM_REMOVE };
1506struct hotmod_vals {
1507 char *name;
1508 int val;
1509};
1510static struct hotmod_vals hotmod_ops[] = {
1511 { "add", HM_ADD },
1512 { "remove", HM_REMOVE },
1513 { NULL }
1514};
1515static struct hotmod_vals hotmod_si[] = {
1516 { "kcs", SI_KCS },
1517 { "smic", SI_SMIC },
1518 { "bt", SI_BT },
1519 { NULL }
1520};
1521static struct hotmod_vals hotmod_as[] = {
1522 { "mem", IPMI_MEM_ADDR_SPACE },
1523 { "i/o", IPMI_IO_ADDR_SPACE },
1524 { NULL }
1525};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001526
Corey Minyardb361e272006-12-06 20:41:07 -08001527static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1528{
1529 char *s;
1530 int i;
1531
1532 s = strchr(*curr, ',');
1533 if (!s) {
1534 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1535 return -EINVAL;
1536 }
1537 *s = '\0';
1538 s++;
1539 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001540 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001541 *val = v[i].val;
1542 *curr = s;
1543 return 0;
1544 }
1545 }
1546
1547 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1548 return -EINVAL;
1549}
1550
Corey Minyard1d5636c2006-12-10 02:19:08 -08001551static int check_hotmod_int_op(const char *curr, const char *option,
1552 const char *name, int *val)
1553{
1554 char *n;
1555
1556 if (strcmp(curr, name) == 0) {
1557 if (!option) {
1558 printk(KERN_WARNING PFX
1559 "No option given for '%s'\n",
1560 curr);
1561 return -EINVAL;
1562 }
1563 *val = simple_strtoul(option, &n, 0);
1564 if ((*n != '\0') || (*option == '\0')) {
1565 printk(KERN_WARNING PFX
1566 "Bad option given for '%s'\n",
1567 curr);
1568 return -EINVAL;
1569 }
1570 return 1;
1571 }
1572 return 0;
1573}
1574
Corey Minyardb361e272006-12-06 20:41:07 -08001575static int hotmod_handler(const char *val, struct kernel_param *kp)
1576{
1577 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001578 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001579 char *next, *curr, *s, *n, *o;
1580 enum hotmod_op op;
1581 enum si_type si_type;
1582 int addr_space;
1583 unsigned long addr;
1584 int regspacing;
1585 int regsize;
1586 int regshift;
1587 int irq;
1588 int ipmb;
1589 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001590 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001591 struct smi_info *info;
1592
1593 if (!str)
1594 return -ENOMEM;
1595
1596 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001597 len = strlen(str);
1598 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001599 while ((ival >= 0) && isspace(str[ival])) {
1600 str[ival] = '\0';
1601 ival--;
1602 }
1603
1604 for (curr = str; curr; curr = next) {
1605 regspacing = 1;
1606 regsize = 1;
1607 regshift = 0;
1608 irq = 0;
1609 ipmb = 0x20;
1610
1611 next = strchr(curr, ':');
1612 if (next) {
1613 *next = '\0';
1614 next++;
1615 }
1616
1617 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1618 if (rv)
1619 break;
1620 op = ival;
1621
1622 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1623 if (rv)
1624 break;
1625 si_type = ival;
1626
1627 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1628 if (rv)
1629 break;
1630
1631 s = strchr(curr, ',');
1632 if (s) {
1633 *s = '\0';
1634 s++;
1635 }
1636 addr = simple_strtoul(curr, &n, 0);
1637 if ((*n != '\0') || (*curr == '\0')) {
1638 printk(KERN_WARNING PFX "Invalid hotmod address"
1639 " '%s'\n", curr);
1640 break;
1641 }
1642
1643 while (s) {
1644 curr = s;
1645 s = strchr(curr, ',');
1646 if (s) {
1647 *s = '\0';
1648 s++;
1649 }
1650 o = strchr(curr, '=');
1651 if (o) {
1652 *o = '\0';
1653 o++;
1654 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001655 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1656 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001657 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001658 else if (rv)
1659 continue;
1660 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1661 if (rv < 0)
1662 goto out;
1663 else if (rv)
1664 continue;
1665 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1666 if (rv < 0)
1667 goto out;
1668 else if (rv)
1669 continue;
1670 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1671 if (rv < 0)
1672 goto out;
1673 else if (rv)
1674 continue;
1675 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1676 if (rv < 0)
1677 goto out;
1678 else if (rv)
1679 continue;
1680
1681 rv = -EINVAL;
1682 printk(KERN_WARNING PFX
1683 "Invalid hotmod option '%s'\n",
1684 curr);
1685 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001686 }
1687
1688 if (op == HM_ADD) {
1689 info = kzalloc(sizeof(*info), GFP_KERNEL);
1690 if (!info) {
1691 rv = -ENOMEM;
1692 goto out;
1693 }
1694
1695 info->addr_source = "hotmod";
1696 info->si_type = si_type;
1697 info->io.addr_data = addr;
1698 info->io.addr_type = addr_space;
1699 if (addr_space == IPMI_MEM_ADDR_SPACE)
1700 info->io_setup = mem_setup;
1701 else
1702 info->io_setup = port_setup;
1703
1704 info->io.addr = NULL;
1705 info->io.regspacing = regspacing;
1706 if (!info->io.regspacing)
1707 info->io.regspacing = DEFAULT_REGSPACING;
1708 info->io.regsize = regsize;
1709 if (!info->io.regsize)
1710 info->io.regsize = DEFAULT_REGSPACING;
1711 info->io.regshift = regshift;
1712 info->irq = irq;
1713 if (info->irq)
1714 info->irq_setup = std_irq_setup;
1715 info->slave_addr = ipmb;
1716
1717 try_smi_init(info);
1718 } else {
1719 /* remove */
1720 struct smi_info *e, *tmp_e;
1721
1722 mutex_lock(&smi_infos_lock);
1723 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1724 if (e->io.addr_type != addr_space)
1725 continue;
1726 if (e->si_type != si_type)
1727 continue;
1728 if (e->io.addr_data == addr)
1729 cleanup_one_si(e);
1730 }
1731 mutex_unlock(&smi_infos_lock);
1732 }
1733 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001734 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001735 out:
1736 kfree(str);
1737 return rv;
1738}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001739
1740static __devinit void hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001742 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct smi_info *info;
1744
Corey Minyardb0defcd2006-03-26 01:37:20 -08001745 for (i = 0; i < SI_MAX_PARMS; i++) {
1746 if (!ports[i] && !addrs[i])
1747 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Corey Minyardb0defcd2006-03-26 01:37:20 -08001749 info = kzalloc(sizeof(*info), GFP_KERNEL);
1750 if (!info)
1751 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Corey Minyardb0defcd2006-03-26 01:37:20 -08001753 info->addr_source = "hardcoded";
1754
Corey Minyard1d5636c2006-12-10 02:19:08 -08001755 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001756 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001757 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001758 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001759 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001760 info->si_type = SI_BT;
1761 } else {
1762 printk(KERN_WARNING
1763 "ipmi_si: Interface type specified "
1764 "for interface %d, was invalid: %s\n",
1765 i, si_type[i]);
1766 kfree(info);
1767 continue;
1768 }
1769
1770 if (ports[i]) {
1771 /* An I/O port */
1772 info->io_setup = port_setup;
1773 info->io.addr_data = ports[i];
1774 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1775 } else if (addrs[i]) {
1776 /* A memory port */
1777 info->io_setup = mem_setup;
1778 info->io.addr_data = addrs[i];
1779 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1780 } else {
1781 printk(KERN_WARNING
1782 "ipmi_si: Interface type specified "
1783 "for interface %d, "
1784 "but port and address were not set or "
1785 "set to zero.\n", i);
1786 kfree(info);
1787 continue;
1788 }
1789
1790 info->io.addr = NULL;
1791 info->io.regspacing = regspacings[i];
1792 if (!info->io.regspacing)
1793 info->io.regspacing = DEFAULT_REGSPACING;
1794 info->io.regsize = regsizes[i];
1795 if (!info->io.regsize)
1796 info->io.regsize = DEFAULT_REGSPACING;
1797 info->io.regshift = regshifts[i];
1798 info->irq = irqs[i];
1799 if (info->irq)
1800 info->irq_setup = std_irq_setup;
1801
1802 try_smi_init(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
Len Brown84663612005-08-24 12:09:07 -04001806#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808#include <linux/acpi.h>
1809
Corey Minyardc305e3d2008-04-29 01:01:10 -07001810/*
1811 * Once we get an ACPI failure, we don't try any more, because we go
1812 * through the tables sequentially. Once we don't find a table, there
1813 * are no more.
1814 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001815static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817/* For GPE-type interrupts. */
1818static u32 ipmi_acpi_gpe(void *context)
1819{
1820 struct smi_info *smi_info = context;
1821 unsigned long flags;
1822#ifdef DEBUG_TIMING
1823 struct timeval t;
1824#endif
1825
1826 spin_lock_irqsave(&(smi_info->si_lock), flags);
1827
Corey Minyard64959e22008-04-29 01:01:07 -07001828 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830#ifdef DEBUG_TIMING
1831 do_gettimeofday(&t);
1832 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1833#endif
1834 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1836
1837 return ACPI_INTERRUPT_HANDLED;
1838}
1839
Corey Minyardb0defcd2006-03-26 01:37:20 -08001840static void acpi_gpe_irq_cleanup(struct smi_info *info)
1841{
1842 if (!info->irq)
1843 return;
1844
1845 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848static int acpi_gpe_irq_setup(struct smi_info *info)
1849{
1850 acpi_status status;
1851
Corey Minyardb0defcd2006-03-26 01:37:20 -08001852 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return 0;
1854
1855 /* FIXME - is level triggered right? */
1856 status = acpi_install_gpe_handler(NULL,
1857 info->irq,
1858 ACPI_GPE_LEVEL_TRIGGERED,
1859 &ipmi_acpi_gpe,
1860 info);
1861 if (status != AE_OK) {
1862 printk(KERN_WARNING
1863 "ipmi_si: %s unable to claim ACPI GPE %d,"
1864 " running polled\n",
1865 DEVICE_NAME, info->irq);
1866 info->irq = 0;
1867 return -EINVAL;
1868 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001869 info->irq_cleanup = acpi_gpe_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 printk(" Using ACPI GPE %d\n", info->irq);
1871 return 0;
1872 }
1873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875/*
1876 * Defined at
Corey Minyardc305e3d2008-04-29 01:01:10 -07001877 * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/
1878 * Docs/TechPapers/IA64/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
1880struct SPMITable {
1881 s8 Signature[4];
1882 u32 Length;
1883 u8 Revision;
1884 u8 Checksum;
1885 s8 OEMID[6];
1886 s8 OEMTableID[8];
1887 s8 OEMRevision[4];
1888 s8 CreatorID[4];
1889 s8 CreatorRevision[4];
1890 u8 InterfaceType;
1891 u8 IPMIlegacy;
1892 s16 SpecificationRevision;
1893
1894 /*
1895 * Bit 0 - SCI interrupt supported
1896 * Bit 1 - I/O APIC/SAPIC
1897 */
1898 u8 InterruptType;
1899
Corey Minyardc305e3d2008-04-29 01:01:10 -07001900 /*
1901 * If bit 0 of InterruptType is set, then this is the SCI
1902 * interrupt in the GPEx_STS register.
1903 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 u8 GPE;
1905
1906 s16 Reserved;
1907
Corey Minyardc305e3d2008-04-29 01:01:10 -07001908 /*
1909 * If bit 1 of InterruptType is set, then this is the I/O
1910 * APIC/SAPIC interrupt.
1911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 u32 GlobalSystemInterrupt;
1913
1914 /* The actual register address. */
1915 struct acpi_generic_address addr;
1916
1917 u8 UID[4];
1918
1919 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
1920};
1921
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07001922static __devinit int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 u8 addr_space;
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (spmi->IPMIlegacy != 1) {
1928 printk(KERN_INFO "IPMI: Bad SPMI legacy %d\n", spmi->IPMIlegacy);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001929 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001932 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 addr_space = IPMI_MEM_ADDR_SPACE;
1934 else
1935 addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001936
1937 info = kzalloc(sizeof(*info), GFP_KERNEL);
1938 if (!info) {
1939 printk(KERN_ERR "ipmi_si: Could not allocate SI data (3)\n");
1940 return -ENOMEM;
1941 }
1942
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07001943 info->addr_source = "SPMI";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001946 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001948 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001951 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08001954 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 default:
1957 printk(KERN_INFO "ipmi_si: Unknown ACPI/SPMI SI type %d\n",
1958 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001959 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return -EIO;
1961 }
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (spmi->InterruptType & 1) {
1964 /* We've got a GPE interrupt. */
1965 info->irq = spmi->GPE;
1966 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 } else if (spmi->InterruptType & 2) {
1968 /* We've got an APIC/SAPIC interrupt. */
1969 info->irq = spmi->GlobalSystemInterrupt;
1970 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 } else {
1972 /* Use the default interrupt setting. */
1973 info->irq = 0;
1974 info->irq_setup = NULL;
1975 }
1976
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001977 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07001978 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001979 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07001980 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07001981 info->io.regspacing = DEFAULT_REGSPACING;
1982 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001983 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001984 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001986 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07001988 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03001989 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07001991 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 } else {
1993 kfree(info);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001994 printk(KERN_WARNING
1995 "ipmi_si: Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return -EIO;
1997 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001998 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Corey Minyardb0defcd2006-03-26 01:37:20 -08002000 try_smi_init(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 0;
2003}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002004
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002005static __devinit void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002006{
2007 acpi_status status;
2008 struct SPMITable *spmi;
2009 int i;
2010
2011 if (acpi_disabled)
2012 return;
2013
2014 if (acpi_failure)
2015 return;
2016
2017 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002018 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2019 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002020 if (status != AE_OK)
2021 return;
2022
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002023 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002024 }
2025}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026#endif
2027
Matt Domscha9fad4c2006-01-11 12:17:44 -08002028#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002029struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 u8 type;
2031 u8 addr_space;
2032 unsigned long base_addr;
2033 u8 irq;
2034 u8 offset;
2035 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002036};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Jeff Garzik18552562007-10-03 15:15:40 -04002038static int __devinit decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002039 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Jeff Garzik18552562007-10-03 15:15:40 -04002041 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 unsigned long base_addr;
2043 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002044 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Corey Minyardb0defcd2006-03-26 01:37:20 -08002046 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 memcpy(&base_addr, data+8, sizeof(unsigned long));
2049 if (len >= 0x11) {
2050 if (base_addr & 1) {
2051 /* I/O */
2052 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002053 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002054 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002056 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2059 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002060 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Corey Minyardb0defcd2006-03-26 01:37:20 -08002062 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002065 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002066 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002068 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 break;
2070 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002071 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 break;
2073 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002074 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 break;
2076 default:
2077 /* Some other interface, just ignore it. */
2078 return -EIO;
2079 }
2080 } else {
2081 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002082 /*
2083 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002084 * address should be 1 if the address is I/O and 0 if
2085 * the address is in memory. So many systems get that
2086 * wrong (and all that I have seen are I/O) so we just
2087 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002088 * memory should use the newer spec, anyway.
2089 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002090 dmi->base_addr = base_addr & 0xfffe;
2091 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2092 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
2094
Corey Minyardb0defcd2006-03-26 01:37:20 -08002095 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Corey Minyardb0defcd2006-03-26 01:37:20 -08002097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Corey Minyardb0defcd2006-03-26 01:37:20 -08002100static __devinit void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Corey Minyarde8b33612005-09-06 15:18:45 -07002102 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Corey Minyardb0defcd2006-03-26 01:37:20 -08002104 info = kzalloc(sizeof(*info), GFP_KERNEL);
2105 if (!info) {
2106 printk(KERN_ERR
2107 "ipmi_si: Could not allocate SI data\n");
2108 return;
2109 }
2110
2111 info->addr_source = "SMBIOS";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Corey Minyarde8b33612005-09-06 15:18:45 -07002113 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002114 case 0x01: /* KCS */
2115 info->si_type = SI_KCS;
2116 break;
2117 case 0x02: /* SMIC */
2118 info->si_type = SI_SMIC;
2119 break;
2120 case 0x03: /* BT */
2121 info->si_type = SI_BT;
2122 break;
2123 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002124 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002125 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
2127
Corey Minyardb0defcd2006-03-26 01:37:20 -08002128 switch (ipmi_data->addr_space) {
2129 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002131 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2132 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Corey Minyardb0defcd2006-03-26 01:37:20 -08002134 case IPMI_IO_ADDR_SPACE:
2135 info->io_setup = port_setup;
2136 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2137 break;
2138
2139 default:
2140 kfree(info);
2141 printk(KERN_WARNING
2142 "ipmi_si: Unknown SMBIOS I/O Address type: %d.\n",
2143 ipmi_data->addr_space);
2144 return;
2145 }
2146 info->io.addr_data = ipmi_data->base_addr;
2147
2148 info->io.regspacing = ipmi_data->offset;
2149 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 info->io.regspacing = DEFAULT_REGSPACING;
2151 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002152 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 info->slave_addr = ipmi_data->slave_addr;
2155
Corey Minyardb0defcd2006-03-26 01:37:20 -08002156 info->irq = ipmi_data->irq;
2157 if (info->irq)
2158 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Corey Minyardb0defcd2006-03-26 01:37:20 -08002160 try_smi_init(info);
2161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Corey Minyardb0defcd2006-03-26 01:37:20 -08002163static void __devinit dmi_find_bmc(void)
2164{
Jeff Garzik18552562007-10-03 15:15:40 -04002165 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002166 struct dmi_ipmi_data data;
2167 int rv;
2168
2169 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002170 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002171 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2172 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002173 if (!rv)
2174 try_init_dmi(&data);
2175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002177#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179#ifdef CONFIG_PCI
2180
Corey Minyardb0defcd2006-03-26 01:37:20 -08002181#define PCI_ERMC_CLASSCODE 0x0C0700
2182#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2183#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2184#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2185#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2186#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188#define PCI_HP_VENDOR_ID 0x103C
2189#define PCI_MMC_DEVICE_ID 0x121A
2190#define PCI_MMC_ADDR_CW 0x10
2191
Corey Minyardb0defcd2006-03-26 01:37:20 -08002192static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002194 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Corey Minyardb0defcd2006-03-26 01:37:20 -08002196 pci_disable_device(pdev);
2197}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Corey Minyardb0defcd2006-03-26 01:37:20 -08002199static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
2200 const struct pci_device_id *ent)
2201{
2202 int rv;
2203 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2204 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Corey Minyardb0defcd2006-03-26 01:37:20 -08002206 info = kzalloc(sizeof(*info), GFP_KERNEL);
2207 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002208 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002209
2210 info->addr_source = "PCI";
2211
2212 switch (class_type) {
2213 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2214 info->si_type = SI_SMIC;
2215 break;
2216
2217 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2218 info->si_type = SI_KCS;
2219 break;
2220
2221 case PCI_ERMC_CLASSCODE_TYPE_BT:
2222 info->si_type = SI_BT;
2223 break;
2224
2225 default:
2226 kfree(info);
2227 printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
2228 pci_name(pdev), class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002229 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Corey Minyardb0defcd2006-03-26 01:37:20 -08002232 rv = pci_enable_device(pdev);
2233 if (rv) {
2234 printk(KERN_ERR "ipmi_si: %s: couldn't enable PCI device\n",
2235 pci_name(pdev));
2236 kfree(info);
2237 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 }
2239
Corey Minyardb0defcd2006-03-26 01:37:20 -08002240 info->addr_source_cleanup = ipmi_pci_cleanup;
2241 info->addr_source_data = pdev;
2242
Corey Minyardb0defcd2006-03-26 01:37:20 -08002243 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2244 info->io_setup = port_setup;
2245 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2246 } else {
2247 info->io_setup = mem_setup;
2248 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002250 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Corey Minyardb0defcd2006-03-26 01:37:20 -08002252 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002254 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Corey Minyardb0defcd2006-03-26 01:37:20 -08002256 info->irq = pdev->irq;
2257 if (info->irq)
2258 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Corey Minyard50c812b2006-03-26 01:37:21 -08002260 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002261 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002262
Corey Minyardb0defcd2006-03-26 01:37:20 -08002263 return try_smi_init(info);
2264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Corey Minyardb0defcd2006-03-26 01:37:20 -08002266static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
2267{
Corey Minyardfca3b742007-05-08 00:23:59 -07002268 struct smi_info *info = pci_get_drvdata(pdev);
2269 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002270}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Corey Minyardb0defcd2006-03-26 01:37:20 -08002272#ifdef CONFIG_PM
2273static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2274{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 return 0;
2276}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Corey Minyardb0defcd2006-03-26 01:37:20 -08002278static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002282#endif
2283
2284static struct pci_device_id ipmi_pci_devices[] = {
2285 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002286 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2287 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002288};
2289MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2290
2291static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002292 .name = DEVICE_NAME,
2293 .id_table = ipmi_pci_devices,
2294 .probe = ipmi_pci_probe,
2295 .remove = __devexit_p(ipmi_pci_remove),
Corey Minyardb0defcd2006-03-26 01:37:20 -08002296#ifdef CONFIG_PM
Corey Minyardc305e3d2008-04-29 01:01:10 -07002297 .suspend = ipmi_pci_suspend,
2298 .resume = ipmi_pci_resume,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002299#endif
2300};
2301#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002304#ifdef CONFIG_PPC_OF
2305static int __devinit ipmi_of_probe(struct of_device *dev,
2306 const struct of_device_id *match)
2307{
2308 struct smi_info *info;
2309 struct resource resource;
2310 const int *regsize, *regspacing, *regshift;
2311 struct device_node *np = dev->node;
2312 int ret;
2313 int proplen;
2314
2315 dev_info(&dev->dev, PFX "probing via device tree\n");
2316
2317 ret = of_address_to_resource(np, 0, &resource);
2318 if (ret) {
2319 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2320 return ret;
2321 }
2322
Stephen Rothwell9c250992007-08-15 16:42:12 +10002323 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002324 if (regsize && proplen != 4) {
2325 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2326 return -EINVAL;
2327 }
2328
Stephen Rothwell9c250992007-08-15 16:42:12 +10002329 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002330 if (regspacing && proplen != 4) {
2331 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2332 return -EINVAL;
2333 }
2334
Stephen Rothwell9c250992007-08-15 16:42:12 +10002335 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002336 if (regshift && proplen != 4) {
2337 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2338 return -EINVAL;
2339 }
2340
2341 info = kzalloc(sizeof(*info), GFP_KERNEL);
2342
2343 if (!info) {
2344 dev_err(&dev->dev,
2345 PFX "could not allocate memory for OF probe\n");
2346 return -ENOMEM;
2347 }
2348
2349 info->si_type = (enum si_type) match->data;
2350 info->addr_source = "device-tree";
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002351 info->irq_setup = std_irq_setup;
2352
Nate Case3b7ec112008-05-14 16:05:39 -07002353 if (resource.flags & IORESOURCE_IO) {
2354 info->io_setup = port_setup;
2355 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2356 } else {
2357 info->io_setup = mem_setup;
2358 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2359 }
2360
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002361 info->io.addr_data = resource.start;
2362
2363 info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE;
2364 info->io.regspacing = regspacing ? *regspacing : DEFAULT_REGSPACING;
2365 info->io.regshift = regshift ? *regshift : 0;
2366
2367 info->irq = irq_of_parse_and_map(dev->node, 0);
2368 info->dev = &dev->dev;
2369
Mijo Safradin32d21982007-08-22 14:01:48 -07002370 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %x\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002371 info->io.addr_data, info->io.regsize, info->io.regspacing,
2372 info->irq);
2373
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002374 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002375
2376 return try_smi_init(info);
2377}
2378
2379static int __devexit ipmi_of_remove(struct of_device *dev)
2380{
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002381 cleanup_one_si(dev_get_drvdata(&dev->dev));
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002382 return 0;
2383}
2384
2385static struct of_device_id ipmi_match[] =
2386{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002387 { .type = "ipmi", .compatible = "ipmi-kcs",
2388 .data = (void *)(unsigned long) SI_KCS },
2389 { .type = "ipmi", .compatible = "ipmi-smic",
2390 .data = (void *)(unsigned long) SI_SMIC },
2391 { .type = "ipmi", .compatible = "ipmi-bt",
2392 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002393 {},
2394};
2395
Corey Minyardc305e3d2008-04-29 01:01:10 -07002396static struct of_platform_driver ipmi_of_platform_driver = {
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002397 .name = "ipmi",
2398 .match_table = ipmi_match,
2399 .probe = ipmi_of_probe,
2400 .remove = __devexit_p(ipmi_of_remove),
2401};
2402#endif /* CONFIG_PPC_OF */
2403
Corey Minyard40112ae2009-04-21 12:24:03 -07002404static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
Corey Minyard50c812b2006-03-26 01:37:21 -08002406 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002409 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002410 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2411 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002412 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 smi_result = smi_info->handlers->event(
2414 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002415 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 smi_result = smi_info->handlers->event(
2417 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002418 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 break;
2420 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002421 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002422 /*
2423 * We couldn't get the state machine to run, so whatever's at
2424 * the port is probably not an IPMI SMI interface.
2425 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002426 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Corey Minyard40112ae2009-04-21 12:24:03 -07002428 return 0;
2429}
2430
2431static int try_get_dev_id(struct smi_info *smi_info)
2432{
2433 unsigned char msg[2];
2434 unsigned char *resp;
2435 unsigned long resp_len;
2436 int rv = 0;
2437
2438 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2439 if (!resp)
2440 return -ENOMEM;
2441
2442 /*
2443 * Do a Get Device ID command, since it comes back with some
2444 * useful info.
2445 */
2446 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2447 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2448 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2449
2450 rv = wait_for_msg_done(smi_info);
2451 if (rv)
2452 goto out;
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2455 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Corey Minyardd8c98612007-10-18 03:07:11 -07002457 /* Check and record info from the get device id, in case we need it. */
2458 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 out:
2461 kfree(resp);
2462 return rv;
2463}
2464
Corey Minyard40112ae2009-04-21 12:24:03 -07002465static int try_enable_event_buffer(struct smi_info *smi_info)
2466{
2467 unsigned char msg[3];
2468 unsigned char *resp;
2469 unsigned long resp_len;
2470 int rv = 0;
2471
2472 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2473 if (!resp)
2474 return -ENOMEM;
2475
2476 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2477 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2478 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2479
2480 rv = wait_for_msg_done(smi_info);
2481 if (rv) {
2482 printk(KERN_WARNING
2483 "ipmi_si: Error getting response from get global,"
2484 " enables command, the event buffer is not"
2485 " enabled.\n");
2486 goto out;
2487 }
2488
2489 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2490 resp, IPMI_MAX_MSG_LENGTH);
2491
2492 if (resp_len < 4 ||
2493 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2494 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2495 resp[2] != 0) {
2496 printk(KERN_WARNING
2497 "ipmi_si: Invalid return from get global"
2498 " enables command, cannot enable the event"
2499 " buffer.\n");
2500 rv = -EINVAL;
2501 goto out;
2502 }
2503
2504 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2505 /* buffer is already enabled, nothing to do. */
2506 goto out;
2507
2508 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2509 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2510 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2511 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2512
2513 rv = wait_for_msg_done(smi_info);
2514 if (rv) {
2515 printk(KERN_WARNING
2516 "ipmi_si: Error getting response from set global,"
2517 " enables command, the event buffer is not"
2518 " enabled.\n");
2519 goto out;
2520 }
2521
2522 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2523 resp, IPMI_MAX_MSG_LENGTH);
2524
2525 if (resp_len < 3 ||
2526 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2527 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
2528 printk(KERN_WARNING
2529 "ipmi_si: Invalid return from get global,"
2530 "enables command, not enable the event"
2531 " buffer.\n");
2532 rv = -EINVAL;
2533 goto out;
2534 }
2535
2536 if (resp[2] != 0)
2537 /*
2538 * An error when setting the event buffer bit means
2539 * that the event buffer is not supported.
2540 */
2541 rv = -ENOENT;
2542 out:
2543 kfree(resp);
2544 return rv;
2545}
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547static int type_file_read_proc(char *page, char **start, off_t off,
2548 int count, int *eof, void *data)
2549{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 struct smi_info *smi = data;
2551
Corey Minyardb361e272006-12-06 20:41:07 -08002552 return sprintf(page, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
2555static int stat_file_read_proc(char *page, char **start, off_t off,
2556 int count, int *eof, void *data)
2557{
2558 char *out = (char *) page;
2559 struct smi_info *smi = data;
2560
2561 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002562 smi->irq && !smi->interrupt_disabled);
Corey Minyard64959e22008-04-29 01:01:07 -07002563 out += sprintf(out, "short_timeouts: %u\n",
2564 smi_get_stat(smi, short_timeouts));
2565 out += sprintf(out, "long_timeouts: %u\n",
2566 smi_get_stat(smi, long_timeouts));
Corey Minyard64959e22008-04-29 01:01:07 -07002567 out += sprintf(out, "idles: %u\n",
2568 smi_get_stat(smi, idles));
2569 out += sprintf(out, "interrupts: %u\n",
2570 smi_get_stat(smi, interrupts));
2571 out += sprintf(out, "attentions: %u\n",
2572 smi_get_stat(smi, attentions));
2573 out += sprintf(out, "flag_fetches: %u\n",
2574 smi_get_stat(smi, flag_fetches));
2575 out += sprintf(out, "hosed_count: %u\n",
2576 smi_get_stat(smi, hosed_count));
2577 out += sprintf(out, "complete_transactions: %u\n",
2578 smi_get_stat(smi, complete_transactions));
2579 out += sprintf(out, "events: %u\n",
2580 smi_get_stat(smi, events));
2581 out += sprintf(out, "watchdog_pretimeouts: %u\n",
2582 smi_get_stat(smi, watchdog_pretimeouts));
2583 out += sprintf(out, "incoming_messages: %u\n",
2584 smi_get_stat(smi, incoming_messages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Corey Minyardb361e272006-12-06 20:41:07 -08002586 return out - page;
2587}
2588
2589static int param_read_proc(char *page, char **start, off_t off,
2590 int count, int *eof, void *data)
2591{
2592 struct smi_info *smi = data;
2593
2594 return sprintf(page,
2595 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2596 si_to_str[smi->si_type],
2597 addr_space_to_str[smi->io.addr_type],
2598 smi->io.addr_data,
2599 smi->io.regspacing,
2600 smi->io.regsize,
2601 smi->io.regshift,
2602 smi->irq,
2603 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002606/*
2607 * oem_data_avail_to_receive_msg_avail
2608 * @info - smi_info structure with msg_flags set
2609 *
2610 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2611 * Returns 1 indicating need to re-run handle_flags().
2612 */
2613static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2614{
Corey Minyarde8b33612005-09-06 15:18:45 -07002615 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002616 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002617 return 1;
2618}
2619
2620/*
2621 * setup_dell_poweredge_oem_data_handler
2622 * @info - smi_info.device_id must be populated
2623 *
2624 * Systems that match, but have firmware version < 1.40 may assert
2625 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2626 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2627 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2628 * as RECEIVE_MSG_AVAIL instead.
2629 *
2630 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2631 * assert the OEM[012] bits, and if it did, the driver would have to
2632 * change to handle that properly, we don't actually check for the
2633 * firmware version.
2634 * Device ID = 0x20 BMC on PowerEdge 8G servers
2635 * Device Revision = 0x80
2636 * Firmware Revision1 = 0x01 BMC version 1.40
2637 * Firmware Revision2 = 0x40 BCD encoded
2638 * IPMI Version = 0x51 IPMI 1.5
2639 * Manufacturer ID = A2 02 00 Dell IANA
2640 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002641 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2642 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2643 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002644 */
2645#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2646#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2647#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002648#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002649static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2650{
2651 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002652 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002653 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2654 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002655 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002656 smi_info->oem_data_avail_handler =
2657 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002658 } else if (ipmi_version_major(id) < 1 ||
2659 (ipmi_version_major(id) == 1 &&
2660 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002661 smi_info->oem_data_avail_handler =
2662 oem_data_avail_to_receive_msg_avail;
2663 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002664 }
2665}
2666
Corey Minyardea940272005-11-07 00:59:59 -08002667#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2668static void return_hosed_msg_badsize(struct smi_info *smi_info)
2669{
2670 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2671
2672 /* Make it a reponse */
2673 msg->rsp[0] = msg->data[0] | 4;
2674 msg->rsp[1] = msg->data[1];
2675 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2676 msg->rsp_size = 3;
2677 smi_info->curr_msg = NULL;
2678 deliver_recv_msg(smi_info, msg);
2679}
2680
2681/*
2682 * dell_poweredge_bt_xaction_handler
2683 * @info - smi_info.device_id must be populated
2684 *
2685 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2686 * not respond to a Get SDR command if the length of the data
2687 * requested is exactly 0x3A, which leads to command timeouts and no
2688 * data returned. This intercepts such commands, and causes userspace
2689 * callers to try again with a different-sized buffer, which succeeds.
2690 */
2691
2692#define STORAGE_NETFN 0x0A
2693#define STORAGE_CMD_GET_SDR 0x23
2694static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2695 unsigned long unused,
2696 void *in)
2697{
2698 struct smi_info *smi_info = in;
2699 unsigned char *data = smi_info->curr_msg->data;
2700 unsigned int size = smi_info->curr_msg->data_size;
2701 if (size >= 8 &&
2702 (data[0]>>2) == STORAGE_NETFN &&
2703 data[1] == STORAGE_CMD_GET_SDR &&
2704 data[7] == 0x3A) {
2705 return_hosed_msg_badsize(smi_info);
2706 return NOTIFY_STOP;
2707 }
2708 return NOTIFY_DONE;
2709}
2710
2711static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2712 .notifier_call = dell_poweredge_bt_xaction_handler,
2713};
2714
2715/*
2716 * setup_dell_poweredge_bt_xaction_handler
2717 * @info - smi_info.device_id must be filled in already
2718 *
2719 * Fills in smi_info.device_id.start_transaction_pre_hook
2720 * when we know what function to use there.
2721 */
2722static void
2723setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2724{
2725 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002726 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002727 smi_info->si_type == SI_BT)
2728 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2729}
2730
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002731/*
2732 * setup_oem_data_handler
2733 * @info - smi_info.device_id must be filled in already
2734 *
2735 * Fills in smi_info.device_id.oem_data_available_handler
2736 * when we know what function to use there.
2737 */
2738
2739static void setup_oem_data_handler(struct smi_info *smi_info)
2740{
2741 setup_dell_poweredge_oem_data_handler(smi_info);
2742}
2743
Corey Minyardea940272005-11-07 00:59:59 -08002744static void setup_xaction_handlers(struct smi_info *smi_info)
2745{
2746 setup_dell_poweredge_bt_xaction_handler(smi_info);
2747}
2748
Corey Minyarda9a2c442005-11-07 01:00:03 -08002749static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
2750{
Corey Minyard453823b2006-03-31 02:30:39 -08002751 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002752 /*
2753 * The timer and thread are only running if the
2754 * interface has been started up and registered.
2755 */
Corey Minyard453823b2006-03-31 02:30:39 -08002756 if (smi_info->thread != NULL)
2757 kthread_stop(smi_info->thread);
2758 del_timer_sync(&smi_info->si_timer);
2759 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08002760}
2761
Randy Dunlap74208842006-04-18 22:21:52 -07002762static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002764 int type;
2765 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07002766} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08002767{
2768 { .type = SI_KCS, .port = 0xca2 },
2769 { .type = SI_SMIC, .port = 0xca9 },
2770 { .type = SI_BT, .port = 0xe4 },
2771 { .port = 0 }
2772};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Corey Minyardb0defcd2006-03-26 01:37:20 -08002774static __devinit void default_find_bmc(void)
2775{
2776 struct smi_info *info;
2777 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Corey Minyardb0defcd2006-03-26 01:37:20 -08002779 for (i = 0; ; i++) {
2780 if (!ipmi_defaults[i].port)
2781 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07002782#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08002783 if (check_legacy_ioport(ipmi_defaults[i].port))
2784 continue;
2785#endif
Andrew Mortona09f4852008-08-20 14:09:14 -07002786 info = kzalloc(sizeof(*info), GFP_KERNEL);
2787 if (!info)
2788 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08002789
Corey Minyardb0defcd2006-03-26 01:37:20 -08002790 info->addr_source = NULL;
2791
2792 info->si_type = ipmi_defaults[i].type;
2793 info->io_setup = port_setup;
2794 info->io.addr_data = ipmi_defaults[i].port;
2795 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2796
2797 info->io.addr = NULL;
2798 info->io.regspacing = DEFAULT_REGSPACING;
2799 info->io.regsize = DEFAULT_REGSPACING;
2800 info->io.regshift = 0;
2801
2802 if (try_smi_init(info) == 0) {
2803 /* Found one... */
2804 printk(KERN_INFO "ipmi_si: Found default %s state"
2805 " machine at %s address 0x%lx\n",
2806 si_to_str[info->si_type],
2807 addr_space_to_str[info->io.addr_type],
2808 info->io.addr_data);
2809 return;
2810 }
2811 }
2812}
2813
2814static int is_new_interface(struct smi_info *info)
2815{
2816 struct smi_info *e;
2817
2818 list_for_each_entry(e, &smi_infos, link) {
2819 if (e->io.addr_type != info->io.addr_type)
2820 continue;
2821 if (e->io.addr_data == info->io.addr_data)
2822 return 0;
2823 }
2824
2825 return 1;
2826}
2827
2828static int try_smi_init(struct smi_info *new_smi)
2829{
2830 int rv;
Corey Minyard64959e22008-04-29 01:01:07 -07002831 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002832
2833 if (new_smi->addr_source) {
2834 printk(KERN_INFO "ipmi_si: Trying %s-specified %s state"
2835 " machine at %s address 0x%lx, slave address 0x%x,"
2836 " irq %d\n",
2837 new_smi->addr_source,
2838 si_to_str[new_smi->si_type],
2839 addr_space_to_str[new_smi->io.addr_type],
2840 new_smi->io.addr_data,
2841 new_smi->slave_addr, new_smi->irq);
2842 }
2843
Corey Minyardd6dfd132006-03-31 02:30:41 -08002844 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002845 if (!is_new_interface(new_smi)) {
2846 printk(KERN_WARNING "ipmi_si: duplicate interface\n");
2847 rv = -EBUSY;
2848 goto out_err;
2849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851 /* So we know not to free it unless we have allocated one. */
2852 new_smi->intf = NULL;
2853 new_smi->si_sm = NULL;
2854 new_smi->handlers = NULL;
2855
Corey Minyardb0defcd2006-03-26 01:37:20 -08002856 switch (new_smi->si_type) {
2857 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002859 break;
2860
2861 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002863 break;
2864
2865 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002867 break;
2868
2869 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 /* No support for anything else yet. */
2871 rv = -EIO;
2872 goto out_err;
2873 }
2874
2875 /* Allocate the state machine's data and initialize it. */
2876 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002877 if (!new_smi->si_sm) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002878 printk(KERN_ERR "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 rv = -ENOMEM;
2880 goto out_err;
2881 }
2882 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
2883 &new_smi->io);
2884
2885 /* Now that we know the I/O size, we can set up the I/O. */
2886 rv = new_smi->io_setup(new_smi);
2887 if (rv) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002888 printk(KERN_ERR "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 goto out_err;
2890 }
2891
2892 spin_lock_init(&(new_smi->si_lock));
2893 spin_lock_init(&(new_smi->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895 /* Do low-level detection first. */
2896 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002897 if (new_smi->addr_source)
2898 printk(KERN_INFO "ipmi_si: Interface detection"
2899 " failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 rv = -ENODEV;
2901 goto out_err;
2902 }
2903
Corey Minyardc305e3d2008-04-29 01:01:10 -07002904 /*
2905 * Attempt a get device id command. If it fails, we probably
2906 * don't have a BMC here.
2907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002909 if (rv) {
2910 if (new_smi->addr_source)
2911 printk(KERN_INFO "ipmi_si: There appears to be no BMC"
2912 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002916 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08002917 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
2920 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
2921 new_smi->curr_msg = NULL;
2922 atomic_set(&new_smi->req_events, 0);
2923 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07002924 for (i = 0; i < SI_NUM_STATS; i++)
2925 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
2927 new_smi->interrupt_disabled = 0;
Corey Minyarda9a2c442005-11-07 01:00:03 -08002928 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002929 new_smi->intf_num = smi_num;
2930 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Corey Minyard40112ae2009-04-21 12:24:03 -07002932 rv = try_enable_event_buffer(new_smi);
2933 if (rv == 0)
2934 new_smi->has_event_buffer = 1;
2935
Corey Minyardc305e3d2008-04-29 01:01:10 -07002936 /*
2937 * Start clearing the flags before we enable interrupts or the
2938 * timer to avoid racing with the timer.
2939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 start_clear_flags(new_smi);
2941 /* IRQ is defined to be set when non-zero. */
2942 if (new_smi->irq)
2943 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
2944
Corey Minyard50c812b2006-03-26 01:37:21 -08002945 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002946 /*
2947 * If we don't already have a device from something
2948 * else (like PCI), then register a new one.
2949 */
Corey Minyard50c812b2006-03-26 01:37:21 -08002950 new_smi->pdev = platform_device_alloc("ipmi_si",
2951 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07002952 if (!new_smi->pdev) {
Corey Minyard50c812b2006-03-26 01:37:21 -08002953 printk(KERN_ERR
2954 "ipmi_si_intf:"
2955 " Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08002956 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08002957 }
2958 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08002959 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08002960
Zhang, Yanminb48f5452006-11-16 01:19:08 -08002961 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002962 if (rv) {
2963 printk(KERN_ERR
2964 "ipmi_si_intf:"
2965 " Unable to register system interface device:"
2966 " %d\n",
2967 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08002968 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08002969 }
2970 new_smi->dev_registered = 1;
2971 }
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 rv = ipmi_register_smi(&handlers,
2974 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08002975 &new_smi->device_id,
2976 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08002977 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08002978 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 if (rv) {
2980 printk(KERN_ERR
2981 "ipmi_si: Unable to register device: error %d\n",
2982 rv);
2983 goto out_err_stop_timer;
2984 }
2985
2986 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07002987 type_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002988 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 if (rv) {
2990 printk(KERN_ERR
2991 "ipmi_si: Unable to create proc entry: %d\n",
2992 rv);
2993 goto out_err_stop_timer;
2994 }
2995
2996 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07002997 stat_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002998 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (rv) {
3000 printk(KERN_ERR
3001 "ipmi_si: Unable to create proc entry: %d\n",
3002 rv);
3003 goto out_err_stop_timer;
3004 }
3005
Corey Minyardb361e272006-12-06 20:41:07 -08003006 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003007 param_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003008 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003009 if (rv) {
3010 printk(KERN_ERR
3011 "ipmi_si: Unable to create proc entry: %d\n",
3012 rv);
3013 goto out_err_stop_timer;
3014 }
3015
Corey Minyardb0defcd2006-03-26 01:37:20 -08003016 list_add_tail(&new_smi->link, &smi_infos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Corey Minyardd6dfd132006-03-31 02:30:41 -08003018 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003019
Corey Minyardc305e3d2008-04-29 01:01:10 -07003020 printk(KERN_INFO "IPMI %s interface initialized\n",
3021 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023 return 0;
3024
3025 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003026 atomic_inc(&new_smi->stop_operation);
3027 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 out_err:
3030 if (new_smi->intf)
3031 ipmi_unregister_smi(new_smi->intf);
3032
Corey Minyardb0defcd2006-03-26 01:37:20 -08003033 if (new_smi->irq_cleanup)
3034 new_smi->irq_cleanup(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Corey Minyardc305e3d2008-04-29 01:01:10 -07003036 /*
3037 * Wait until we know that we are out of any interrupt
3038 * handlers might have been running before we freed the
3039 * interrupt.
3040 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003041 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043 if (new_smi->si_sm) {
3044 if (new_smi->handlers)
3045 new_smi->handlers->cleanup(new_smi->si_sm);
3046 kfree(new_smi->si_sm);
3047 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003048 if (new_smi->addr_source_cleanup)
3049 new_smi->addr_source_cleanup(new_smi);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003050 if (new_smi->io_cleanup)
3051 new_smi->io_cleanup(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Corey Minyard50c812b2006-03-26 01:37:21 -08003053 if (new_smi->dev_registered)
3054 platform_device_unregister(new_smi->pdev);
3055
3056 kfree(new_smi);
3057
Corey Minyardd6dfd132006-03-31 02:30:41 -08003058 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 return rv;
3061}
3062
Corey Minyardb0defcd2006-03-26 01:37:20 -08003063static __devinit int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 int i;
3066 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003067 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 if (initialized)
3070 return 0;
3071 initialized = 1;
3072
Corey Minyard50c812b2006-03-26 01:37:21 -08003073 /* Register the device drivers. */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003074 rv = driver_register(&ipmi_driver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08003075 if (rv) {
3076 printk(KERN_ERR
3077 "init_ipmi_si: Unable to register driver: %d\n",
3078 rv);
3079 return rv;
3080 }
3081
3082
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 /* Parse out the si_type string into its components. */
3084 str = si_type_str;
3085 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003086 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 si_type[i] = str;
3088 str = strchr(str, ',');
3089 if (str) {
3090 *str = '\0';
3091 str++;
3092 } else {
3093 break;
3094 }
3095 }
3096 }
3097
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003098 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Corey Minyardb0defcd2006-03-26 01:37:20 -08003100 hardcode_find_bmc();
3101
Matt Domscha9fad4c2006-01-11 12:17:44 -08003102#ifdef CONFIG_DMI
Andrey Paninb224cd32005-09-06 15:18:37 -07003103 dmi_find_bmc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104#endif
3105
Corey Minyardb0defcd2006-03-26 01:37:20 -08003106#ifdef CONFIG_ACPI
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07003107 spmi_find_bmc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08003108#endif
3109
3110#ifdef CONFIG_PCI
Corey Minyard168b35a2006-12-06 20:41:11 -08003111 rv = pci_register_driver(&ipmi_pci_driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003112 if (rv)
Corey Minyard168b35a2006-12-06 20:41:11 -08003113 printk(KERN_ERR
3114 "init_ipmi_si: Unable to register PCI driver: %d\n",
3115 rv);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003116#endif
3117
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003118#ifdef CONFIG_PPC_OF
3119 of_register_platform_driver(&ipmi_of_platform_driver);
3120#endif
3121
Corey Minyardb0defcd2006-03-26 01:37:20 -08003122 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003123 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003124 if (list_empty(&smi_infos)) {
3125 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003126 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003127 default_find_bmc();
3128 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003129 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
3131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Corey Minyardd6dfd132006-03-31 02:30:41 -08003133 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003134 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003135 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003136#ifdef CONFIG_PCI
3137 pci_unregister_driver(&ipmi_pci_driver);
3138#endif
Christian Krafft10fb62e2007-05-12 10:37:01 -07003139
3140#ifdef CONFIG_PPC_OF
3141 of_unregister_platform_driver(&ipmi_of_platform_driver);
3142#endif
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003143 driver_unregister(&ipmi_driver.driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003144 printk(KERN_WARNING
3145 "ipmi_si: Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003147 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003148 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151}
3152module_init(init_ipmi_si);
3153
Corey Minyardb361e272006-12-06 20:41:07 -08003154static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155{
3156 int rv;
3157 unsigned long flags;
3158
Corey Minyardb0defcd2006-03-26 01:37:20 -08003159 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 return;
3161
Corey Minyardb0defcd2006-03-26 01:37:20 -08003162 list_del(&to_clean->link);
3163
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003164 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003165 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003166
Corey Minyardc305e3d2008-04-29 01:01:10 -07003167 /*
3168 * Make sure the timer and thread are stopped and will not run
3169 * again.
3170 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003171 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Corey Minyardc305e3d2008-04-29 01:01:10 -07003173 /*
3174 * Timeouts are stopped, now make sure the interrupts are off
3175 * for the device. A little tricky with locks to make sure
3176 * there are no races.
3177 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003178 spin_lock_irqsave(&to_clean->si_lock, flags);
3179 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3180 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3181 poll(to_clean);
3182 schedule_timeout_uninterruptible(1);
3183 spin_lock_irqsave(&to_clean->si_lock, flags);
3184 }
3185 disable_si_irq(to_clean);
3186 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3187 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3188 poll(to_clean);
3189 schedule_timeout_uninterruptible(1);
3190 }
3191
3192 /* Clean up interrupts and make sure that everything is done. */
3193 if (to_clean->irq_cleanup)
3194 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003195 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003197 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 }
3199
3200 rv = ipmi_unregister_smi(to_clean->intf);
3201 if (rv) {
3202 printk(KERN_ERR
3203 "ipmi_si: Unable to unregister device: errno=%d\n",
3204 rv);
3205 }
3206
3207 to_clean->handlers->cleanup(to_clean->si_sm);
3208
3209 kfree(to_clean->si_sm);
3210
Corey Minyardb0defcd2006-03-26 01:37:20 -08003211 if (to_clean->addr_source_cleanup)
3212 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003213 if (to_clean->io_cleanup)
3214 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003215
3216 if (to_clean->dev_registered)
3217 platform_device_unregister(to_clean->pdev);
3218
3219 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220}
3221
3222static __exit void cleanup_ipmi_si(void)
3223{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003224 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Corey Minyardb0defcd2006-03-26 01:37:20 -08003226 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 return;
3228
Corey Minyardb0defcd2006-03-26 01:37:20 -08003229#ifdef CONFIG_PCI
3230 pci_unregister_driver(&ipmi_pci_driver);
3231#endif
3232
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003233#ifdef CONFIG_PPC_OF
3234 of_unregister_platform_driver(&ipmi_of_platform_driver);
3235#endif
3236
Corey Minyardd6dfd132006-03-31 02:30:41 -08003237 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003238 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3239 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003240 mutex_unlock(&smi_infos_lock);
Corey Minyard50c812b2006-03-26 01:37:21 -08003241
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003242 driver_unregister(&ipmi_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244module_exit(cleanup_ipmi_si);
3245
3246MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003247MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003248MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3249 " system interfaces.");