blob: ff68e7c34ce779a3c0e4b8397c38287fc05aeabf [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>
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -070067#include <linux/pnp.h>
Corey Minyardb361e272006-12-06 20:41:07 -080068
Corey Minyarddba9b4f2007-05-08 00:23:51 -070069#ifdef CONFIG_PPC_OF
Stephen Rothwell11c675c2008-05-23 16:22:42 +100070#include <linux/of_device.h>
71#include <linux/of_platform.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070072#endif
73
Corey Minyardb361e272006-12-06 20:41:07 -080074#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Measure times between events in the driver. */
77#undef DEBUG_TIMING
78
79/* Call every 10 ms. */
80#define SI_TIMEOUT_TIME_USEC 10000
81#define SI_USEC_PER_JIFFY (1000000/HZ)
82#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
83#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070084 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86enum si_intf_state {
87 SI_NORMAL,
88 SI_GETTING_FLAGS,
89 SI_GETTING_EVENTS,
90 SI_CLEARING_FLAGS,
91 SI_CLEARING_FLAGS_THEN_SET_IRQ,
92 SI_GETTING_MESSAGES,
93 SI_ENABLE_INTERRUPTS1,
Corey Minyardee6cd5f2007-05-08 00:23:54 -070094 SI_ENABLE_INTERRUPTS2,
95 SI_DISABLE_INTERRUPTS1,
96 SI_DISABLE_INTERRUPTS2
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* FIXME - add watchdog stuff. */
98};
99
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700100/* Some BT-specific defines we need here. */
101#define IPMI_BT_INTMASK_REG 2
102#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
103#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105enum si_type {
106 SI_KCS, SI_SMIC, SI_BT
107};
Corey Minyardb361e272006-12-06 20:41:07 -0800108static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700110enum ipmi_addr_src {
111 SI_INVALID = 0, SI_HOTMOD, SI_HARDCODED, SI_SPMI, SI_ACPI, SI_SMBIOS,
112 SI_PCI, SI_DEVICETREE, SI_DEFAULT
113};
114static char *ipmi_addr_src_to_str[] = { NULL, "hotmod", "hardcoded", "SPMI",
115 "ACPI", "SMBIOS", "PCI",
116 "device-tree", "default" };
117
Corey Minyard50c812b2006-03-26 01:37:21 -0800118#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700119
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -0800120static struct platform_driver ipmi_driver = {
121 .driver = {
122 .name = DEVICE_NAME,
123 .bus = &platform_bus_type
124 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800125};
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700126
Corey Minyard64959e22008-04-29 01:01:07 -0700127
128/*
129 * Indexes into stats[] in smi_info below.
130 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700131enum si_stat_indexes {
132 /*
133 * Number of times the driver requested a timer while an operation
134 * was in progress.
135 */
136 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700137
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700138 /*
139 * Number of times the driver requested a timer while nothing was in
140 * progress.
141 */
142 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700143
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700144 /* Number of times the interface was idle while being polled. */
145 SI_STAT_idles,
146
147 /* Number of interrupts the driver handled. */
148 SI_STAT_interrupts,
149
150 /* Number of time the driver got an ATTN from the hardware. */
151 SI_STAT_attentions,
152
153 /* Number of times the driver requested flags from the hardware. */
154 SI_STAT_flag_fetches,
155
156 /* Number of times the hardware didn't follow the state machine. */
157 SI_STAT_hosed_count,
158
159 /* Number of completed messages. */
160 SI_STAT_complete_transactions,
161
162 /* Number of IPMI events received from the hardware. */
163 SI_STAT_events,
164
165 /* Number of watchdog pretimeouts. */
166 SI_STAT_watchdog_pretimeouts,
167
168 /* Number of asyncronous messages received. */
169 SI_STAT_incoming_messages,
170
171
172 /* This *must* remain last, add new values above this. */
173 SI_NUM_STATS
174};
Corey Minyard64959e22008-04-29 01:01:07 -0700175
Corey Minyardc305e3d2008-04-29 01:01:10 -0700176struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800177 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ipmi_smi_t intf;
179 struct si_sm_data *si_sm;
180 struct si_sm_handlers *handlers;
181 enum si_type si_type;
182 spinlock_t si_lock;
183 spinlock_t msg_lock;
184 struct list_head xmit_msgs;
185 struct list_head hp_xmit_msgs;
186 struct ipmi_smi_msg *curr_msg;
187 enum si_intf_state si_state;
188
Corey Minyardc305e3d2008-04-29 01:01:10 -0700189 /*
190 * Used to handle the various types of I/O that can occur with
191 * IPMI
192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct si_sm_io io;
194 int (*io_setup)(struct smi_info *info);
195 void (*io_cleanup)(struct smi_info *info);
196 int (*irq_setup)(struct smi_info *info);
197 void (*irq_cleanup)(struct smi_info *info);
198 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700199 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800200 void (*addr_source_cleanup)(struct smi_info *info);
201 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Corey Minyardc305e3d2008-04-29 01:01:10 -0700203 /*
204 * Per-OEM handler, called from handle_flags(). Returns 1
205 * when handle_flags() needs to be re-run or 0 indicating it
206 * set si_state itself.
207 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700208 int (*oem_data_avail_handler)(struct smi_info *smi_info);
209
Corey Minyardc305e3d2008-04-29 01:01:10 -0700210 /*
211 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
212 * is set to hold the flags until we are done handling everything
213 * from the flags.
214 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#define RECEIVE_MSG_AVAIL 0x01
216#define EVENT_MSG_BUFFER_FULL 0x02
217#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700218#define OEM0_DATA_AVAIL 0x20
219#define OEM1_DATA_AVAIL 0x40
220#define OEM2_DATA_AVAIL 0x80
221#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700222 OEM1_DATA_AVAIL | \
223 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 unsigned char msg_flags;
225
Corey Minyard40112ae2009-04-21 12:24:03 -0700226 /* Does the BMC have an event buffer? */
227 char has_event_buffer;
228
Corey Minyardc305e3d2008-04-29 01:01:10 -0700229 /*
230 * If set to true, this will request events the next time the
231 * state machine is idle.
232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 atomic_t req_events;
234
Corey Minyardc305e3d2008-04-29 01:01:10 -0700235 /*
236 * If true, run the state machine to completion on every send
237 * call. Generally used after a panic to make sure stuff goes
238 * out.
239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int run_to_completion;
241
242 /* The I/O port of an SI interface. */
243 int port;
244
Corey Minyardc305e3d2008-04-29 01:01:10 -0700245 /*
246 * The space between start addresses of the two ports. For
247 * instance, if the first port is 0xca2 and the spacing is 4, then
248 * the second port is 0xca6.
249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unsigned int spacing;
251
252 /* zero if no irq; */
253 int irq;
254
255 /* The timer for this si. */
256 struct timer_list si_timer;
257
258 /* The time (in jiffies) the last timeout occurred at. */
259 unsigned long last_timeout_jiffies;
260
261 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800262 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Corey Minyardc305e3d2008-04-29 01:01:10 -0700264 /*
265 * The driver will disable interrupts when it gets into a
266 * situation where it cannot handle messages due to lack of
267 * memory. Once that situation clears up, it will re-enable
268 * interrupts.
269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 int interrupt_disabled;
271
Corey Minyard50c812b2006-03-26 01:37:21 -0800272 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700273 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Corey Minyard50c812b2006-03-26 01:37:21 -0800275 /* Driver model stuff. */
276 struct device *dev;
277 struct platform_device *pdev;
278
Corey Minyardc305e3d2008-04-29 01:01:10 -0700279 /*
280 * True if we allocated the device, false if it came from
281 * someplace else (like PCI).
282 */
Corey Minyard50c812b2006-03-26 01:37:21 -0800283 int dev_registered;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* Slave address, could be reported from DMI. */
286 unsigned char slave_addr;
287
288 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700289 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800290
Corey Minyardc305e3d2008-04-29 01:01:10 -0700291 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800292
293 struct list_head link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Corey Minyard64959e22008-04-29 01:01:07 -0700296#define smi_inc_stat(smi, stat) \
297 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
298#define smi_get_stat(smi, stat) \
299 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
300
Corey Minyarda51f4a82006-10-03 01:13:59 -0700301#define SI_MAX_PARMS 4
302
303static int force_kipmid[SI_MAX_PARMS];
304static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700305#ifdef CONFIG_PCI
306static int pci_registered;
307#endif
308#ifdef CONFIG_PPC_OF
309static int of_registered;
310#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700311
Martin Wilckae74e822010-03-10 15:23:06 -0800312static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
313static int num_max_busy_us;
314
Corey Minyardb361e272006-12-06 20:41:07 -0800315static int unload_when_empty = 1;
316
Matthew Garrett2407d772010-05-26 14:43:46 -0700317static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800318static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800319static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800320
Alan Sterne041c682006-03-27 01:16:30 -0800321static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700322static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800323{
Alan Sterne041c682006-03-27 01:16:30 -0800324 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static void deliver_recv_msg(struct smi_info *smi_info,
328 struct ipmi_smi_msg *msg)
329{
330 /* Deliver the message to the upper layer with the lock
Corey Minyardc305e3d2008-04-29 01:01:10 -0700331 released. */
Jiri Kosinaa747c5a2010-05-26 14:43:53 -0700332
333 if (smi_info->run_to_completion) {
334 ipmi_smi_msg_received(smi_info->intf, msg);
335 } else {
336 spin_unlock(&(smi_info->si_lock));
337 ipmi_smi_msg_received(smi_info->intf, msg);
338 spin_lock(&(smi_info->si_lock));
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800342static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct ipmi_smi_msg *msg = smi_info->curr_msg;
345
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800346 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
347 cCode = IPMI_ERR_UNSPECIFIED;
348 /* else use it as is */
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* Make it a reponse */
351 msg->rsp[0] = msg->data[0] | 4;
352 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800353 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 msg->rsp_size = 3;
355
356 smi_info->curr_msg = NULL;
357 deliver_recv_msg(smi_info, msg);
358}
359
360static enum si_sm_result start_next_msg(struct smi_info *smi_info)
361{
362 int rv;
363 struct list_head *entry = NULL;
364#ifdef DEBUG_TIMING
365 struct timeval t;
366#endif
367
Corey Minyardc305e3d2008-04-29 01:01:10 -0700368 /*
369 * No need to save flags, we aleady have interrupts off and we
370 * already hold the SMI lock.
371 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700372 if (!smi_info->run_to_completion)
373 spin_lock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800376 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800378 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 entry = smi_info->xmit_msgs.next;
380 }
381
Corey Minyardb0defcd2006-03-26 01:37:20 -0800382 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 smi_info->curr_msg = NULL;
384 rv = SI_SM_IDLE;
385 } else {
386 int err;
387
388 list_del(entry);
389 smi_info->curr_msg = list_entry(entry,
390 struct ipmi_smi_msg,
391 link);
392#ifdef DEBUG_TIMING
393 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700394 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#endif
Alan Sterne041c682006-03-27 01:16:30 -0800396 err = atomic_notifier_call_chain(&xaction_notifier_list,
397 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800398 if (err & NOTIFY_STOP_MASK) {
399 rv = SI_SM_CALL_WITHOUT_DELAY;
400 goto out;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 err = smi_info->handlers->start_transaction(
403 smi_info->si_sm,
404 smi_info->curr_msg->data,
405 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700406 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800407 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 rv = SI_SM_CALL_WITHOUT_DELAY;
410 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700411 out:
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700412 if (!smi_info->run_to_completion)
413 spin_unlock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 return rv;
416}
417
418static void start_enable_irq(struct smi_info *smi_info)
419{
420 unsigned char msg[2];
421
Corey Minyardc305e3d2008-04-29 01:01:10 -0700422 /*
423 * If we are enabling interrupts, we have to tell the
424 * BMC to use them.
425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
427 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
428
429 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
430 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
431}
432
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700433static void start_disable_irq(struct smi_info *smi_info)
434{
435 unsigned char msg[2];
436
437 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
438 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
439
440 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
441 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444static void start_clear_flags(struct smi_info *smi_info)
445{
446 unsigned char msg[3];
447
448 /* Make sure the watchdog pre-timeout flag is not set at startup. */
449 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
450 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
451 msg[2] = WDT_PRE_TIMEOUT_INT;
452
453 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
454 smi_info->si_state = SI_CLEARING_FLAGS;
455}
456
Corey Minyardc305e3d2008-04-29 01:01:10 -0700457/*
458 * When we have a situtaion where we run out of memory and cannot
459 * allocate messages, we just leave them in the BMC and run the system
460 * polled until we can allocate some memory. Once we have some
461 * memory, we will re-enable the interrupt.
462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static inline void disable_si_irq(struct smi_info *smi_info)
464{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800465 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700466 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 smi_info->interrupt_disabled = 1;
Matthew Garrettea4078c2010-05-26 14:43:48 -0700468 if (!atomic_read(&smi_info->stop_operation))
469 mod_timer(&smi_info->si_timer,
470 jiffies + SI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472}
473
474static inline void enable_si_irq(struct smi_info *smi_info)
475{
476 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700477 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 smi_info->interrupt_disabled = 0;
479 }
480}
481
482static void handle_flags(struct smi_info *smi_info)
483{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700484 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
486 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700487 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 start_clear_flags(smi_info);
490 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
491 spin_unlock(&(smi_info->si_lock));
492 ipmi_smi_watchdog_pretimeout(smi_info->intf);
493 spin_lock(&(smi_info->si_lock));
494 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
495 /* Messages available. */
496 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800497 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 disable_si_irq(smi_info);
499 smi_info->si_state = SI_NORMAL;
500 return;
501 }
502 enable_si_irq(smi_info);
503
504 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
505 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
506 smi_info->curr_msg->data_size = 2;
507
508 smi_info->handlers->start_transaction(
509 smi_info->si_sm,
510 smi_info->curr_msg->data,
511 smi_info->curr_msg->data_size);
512 smi_info->si_state = SI_GETTING_MESSAGES;
513 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
514 /* Events available. */
515 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800516 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 disable_si_irq(smi_info);
518 smi_info->si_state = SI_NORMAL;
519 return;
520 }
521 enable_si_irq(smi_info);
522
523 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
524 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
525 smi_info->curr_msg->data_size = 2;
526
527 smi_info->handlers->start_transaction(
528 smi_info->si_sm,
529 smi_info->curr_msg->data,
530 smi_info->curr_msg->data_size);
531 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700532 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700533 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700534 if (smi_info->oem_data_avail_handler(smi_info))
535 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700536 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540static void handle_transaction_done(struct smi_info *smi_info)
541{
542 struct ipmi_smi_msg *msg;
543#ifdef DEBUG_TIMING
544 struct timeval t;
545
546 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700547 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#endif
549 switch (smi_info->si_state) {
550 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800551 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
553
554 smi_info->curr_msg->rsp_size
555 = smi_info->handlers->get_result(
556 smi_info->si_sm,
557 smi_info->curr_msg->rsp,
558 IPMI_MAX_MSG_LENGTH);
559
Corey Minyardc305e3d2008-04-29 01:01:10 -0700560 /*
561 * Do this here becase deliver_recv_msg() releases the
562 * lock, and a new message can be put in during the
563 * time the lock is released.
564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 msg = smi_info->curr_msg;
566 smi_info->curr_msg = NULL;
567 deliver_recv_msg(smi_info, msg);
568 break;
569
570 case SI_GETTING_FLAGS:
571 {
572 unsigned char msg[4];
573 unsigned int len;
574
575 /* We got the flags from the SMI, now handle them. */
576 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
577 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700578 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 smi_info->si_state = SI_NORMAL;
580 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700581 /*
582 * Hmm, no flags. That's technically illegal, but
583 * don't use uninitialized data.
584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 smi_info->si_state = SI_NORMAL;
586 } else {
587 smi_info->msg_flags = msg[3];
588 handle_flags(smi_info);
589 }
590 break;
591 }
592
593 case SI_CLEARING_FLAGS:
594 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
595 {
596 unsigned char msg[3];
597
598 /* We cleared the flags. */
599 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
600 if (msg[2] != 0) {
601 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700602 dev_warn(smi_info->dev,
603 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
606 start_enable_irq(smi_info);
607 else
608 smi_info->si_state = SI_NORMAL;
609 break;
610 }
611
612 case SI_GETTING_EVENTS:
613 {
614 smi_info->curr_msg->rsp_size
615 = smi_info->handlers->get_result(
616 smi_info->si_sm,
617 smi_info->curr_msg->rsp,
618 IPMI_MAX_MSG_LENGTH);
619
Corey Minyardc305e3d2008-04-29 01:01:10 -0700620 /*
621 * Do this here becase deliver_recv_msg() releases the
622 * lock, and a new message can be put in during the
623 * time the lock is released.
624 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 msg = smi_info->curr_msg;
626 smi_info->curr_msg = NULL;
627 if (msg->rsp[2] != 0) {
628 /* Error getting event, probably done. */
629 msg->done(msg);
630
631 /* Take off the event flag. */
632 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
633 handle_flags(smi_info);
634 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700635 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Corey Minyardc305e3d2008-04-29 01:01:10 -0700637 /*
638 * Do this before we deliver the message
639 * because delivering the message releases the
640 * lock and something else can mess with the
641 * state.
642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 handle_flags(smi_info);
644
645 deliver_recv_msg(smi_info, msg);
646 }
647 break;
648 }
649
650 case SI_GETTING_MESSAGES:
651 {
652 smi_info->curr_msg->rsp_size
653 = smi_info->handlers->get_result(
654 smi_info->si_sm,
655 smi_info->curr_msg->rsp,
656 IPMI_MAX_MSG_LENGTH);
657
Corey Minyardc305e3d2008-04-29 01:01:10 -0700658 /*
659 * Do this here becase deliver_recv_msg() releases the
660 * lock, and a new message can be put in during the
661 * time the lock is released.
662 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 msg = smi_info->curr_msg;
664 smi_info->curr_msg = NULL;
665 if (msg->rsp[2] != 0) {
666 /* Error getting event, probably done. */
667 msg->done(msg);
668
669 /* Take off the msg flag. */
670 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
671 handle_flags(smi_info);
672 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700673 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Corey Minyardc305e3d2008-04-29 01:01:10 -0700675 /*
676 * Do this before we deliver the message
677 * because delivering the message releases the
678 * lock and something else can mess with the
679 * state.
680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 handle_flags(smi_info);
682
683 deliver_recv_msg(smi_info, msg);
684 }
685 break;
686 }
687
688 case SI_ENABLE_INTERRUPTS1:
689 {
690 unsigned char msg[4];
691
692 /* We got the flags from the SMI, now handle them. */
693 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
694 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700695 dev_warn(smi_info->dev, "Could not enable interrupts"
696 ", failed get, using polled mode.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 smi_info->si_state = SI_NORMAL;
698 } else {
699 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
700 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700701 msg[2] = (msg[3] |
702 IPMI_BMC_RCV_MSG_INTR |
703 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 smi_info->handlers->start_transaction(
705 smi_info->si_sm, msg, 3);
706 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
707 }
708 break;
709 }
710
711 case SI_ENABLE_INTERRUPTS2:
712 {
713 unsigned char msg[4];
714
715 /* We got the flags from the SMI, now handle them. */
716 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Myron Stowe279fbd02010-05-26 14:43:52 -0700717 if (msg[2] != 0)
718 dev_warn(smi_info->dev, "Could not enable interrupts"
719 ", failed set, using polled mode.\n");
720 else
Matthew Garrettea4078c2010-05-26 14:43:48 -0700721 smi_info->interrupt_disabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 smi_info->si_state = SI_NORMAL;
723 break;
724 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700725
726 case SI_DISABLE_INTERRUPTS1:
727 {
728 unsigned char msg[4];
729
730 /* We got the flags from the SMI, now handle them. */
731 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
732 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700733 dev_warn(smi_info->dev, "Could not disable interrupts"
734 ", failed get.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700735 smi_info->si_state = SI_NORMAL;
736 } else {
737 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
738 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
739 msg[2] = (msg[3] &
740 ~(IPMI_BMC_RCV_MSG_INTR |
741 IPMI_BMC_EVT_MSG_INTR));
742 smi_info->handlers->start_transaction(
743 smi_info->si_sm, msg, 3);
744 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
745 }
746 break;
747 }
748
749 case SI_DISABLE_INTERRUPTS2:
750 {
751 unsigned char msg[4];
752
753 /* We got the flags from the SMI, now handle them. */
754 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
755 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700756 dev_warn(smi_info->dev, "Could not disable interrupts"
757 ", failed set.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700758 }
759 smi_info->si_state = SI_NORMAL;
760 break;
761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763}
764
Corey Minyardc305e3d2008-04-29 01:01:10 -0700765/*
766 * Called on timeouts and events. Timeouts should pass the elapsed
767 * time, interrupts should pass in zero. Must be called with
768 * si_lock held and interrupts disabled.
769 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
771 int time)
772{
773 enum si_sm_result si_sm_result;
774
775 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700776 /*
777 * There used to be a loop here that waited a little while
778 * (around 25us) before giving up. That turned out to be
779 * pointless, the minimum delays I was seeing were in the 300us
780 * range, which is far too long to wait in an interrupt. So
781 * we just run until the state machine tells us something
782 * happened or it needs a delay.
783 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
785 time = 0;
786 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Corey Minyardc305e3d2008-04-29 01:01:10 -0700789 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700790 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 handle_transaction_done(smi_info);
793 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700794 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700795 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Corey Minyardc305e3d2008-04-29 01:01:10 -0700797 /*
798 * Do the before return_hosed_msg, because that
799 * releases the lock.
800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 smi_info->si_state = SI_NORMAL;
802 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700803 /*
804 * If we were handling a user message, format
805 * a response to send to the upper layer to
806 * tell it about the error.
807 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800808 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
811 }
812
Corey Minyard4ea18422008-04-29 01:01:01 -0700813 /*
814 * We prefer handling attn over new messages. But don't do
815 * this if there is not yet an upper layer to handle anything.
816 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700817 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 unsigned char msg[2];
819
Corey Minyard64959e22008-04-29 01:01:07 -0700820 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Corey Minyardc305e3d2008-04-29 01:01:10 -0700822 /*
823 * Got a attn, send down a get message flags to see
824 * what's causing it. It would be better to handle
825 * this in the upper layer, but due to the way
826 * interrupts work with the SMI, that's not really
827 * possible.
828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
830 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
831
832 smi_info->handlers->start_transaction(
833 smi_info->si_sm, msg, 2);
834 smi_info->si_state = SI_GETTING_FLAGS;
835 goto restart;
836 }
837
838 /* If we are currently idle, try to start the next message. */
839 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700840 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 si_sm_result = start_next_msg(smi_info);
843 if (si_sm_result != SI_SM_IDLE)
844 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700848 && (atomic_read(&smi_info->req_events))) {
849 /*
850 * We are idle and the upper layer requested that I fetch
851 * events, so do so.
852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800854
855 smi_info->curr_msg = ipmi_alloc_smi_msg();
856 if (!smi_info->curr_msg)
857 goto out;
858
859 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
860 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
861 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800864 smi_info->si_sm,
865 smi_info->curr_msg->data,
866 smi_info->curr_msg->data_size);
867 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto restart;
869 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800870 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return si_sm_result;
872}
873
874static void sender(void *send_info,
875 struct ipmi_smi_msg *msg,
876 int priority)
877{
878 struct smi_info *smi_info = send_info;
879 enum si_sm_result result;
880 unsigned long flags;
881#ifdef DEBUG_TIMING
882 struct timeval t;
883#endif
884
Corey Minyardb361e272006-12-06 20:41:07 -0800885 if (atomic_read(&smi_info->stop_operation)) {
886 msg->rsp[0] = msg->data[0] | 4;
887 msg->rsp[1] = msg->data[1];
888 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
889 msg->rsp_size = 3;
890 deliver_recv_msg(smi_info, msg);
891 return;
892 }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#ifdef DEBUG_TIMING
895 do_gettimeofday(&t);
896 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
897#endif
898
Matthew Garrettea4078c2010-05-26 14:43:48 -0700899 mod_timer(&smi_info->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
900
Matthew Garrett3326f4f2010-05-26 14:43:49 -0700901 if (smi_info->thread)
902 wake_up_process(smi_info->thread);
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700905 /*
906 * If we are running to completion, then throw it in
907 * the list and run transactions until everything is
908 * clear. Priority doesn't matter here.
909 */
910
911 /*
912 * Run to completion means we are single-threaded, no
913 * need for locks.
914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 result = smi_event_handler(smi_info, 0);
918 while (result != SI_SM_IDLE) {
919 udelay(SI_SHORT_TIMEOUT_USEC);
920 result = smi_event_handler(smi_info,
921 SI_SHORT_TIMEOUT_USEC);
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Corey Minyardbda4c302008-04-29 01:01:02 -0700926 spin_lock_irqsave(&smi_info->msg_lock, flags);
927 if (priority > 0)
928 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
929 else
930 list_add_tail(&msg->link, &smi_info->xmit_msgs);
931 spin_unlock_irqrestore(&smi_info->msg_lock, flags);
932
933 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700934 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 start_next_msg(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700936 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939static void set_run_to_completion(void *send_info, int i_run_to_completion)
940{
941 struct smi_info *smi_info = send_info;
942 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 smi_info->run_to_completion = i_run_to_completion;
945 if (i_run_to_completion) {
946 result = smi_event_handler(smi_info, 0);
947 while (result != SI_SM_IDLE) {
948 udelay(SI_SHORT_TIMEOUT_USEC);
949 result = smi_event_handler(smi_info,
950 SI_SHORT_TIMEOUT_USEC);
951 }
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Martin Wilckae74e822010-03-10 15:23:06 -0800955/*
956 * Use -1 in the nsec value of the busy waiting timespec to tell that
957 * we are spinning in kipmid looking for something and not delaying
958 * between checks
959 */
960static inline void ipmi_si_set_not_busy(struct timespec *ts)
961{
962 ts->tv_nsec = -1;
963}
964static inline int ipmi_si_is_busy(struct timespec *ts)
965{
966 return ts->tv_nsec != -1;
967}
968
969static int ipmi_thread_busy_wait(enum si_sm_result smi_result,
970 const struct smi_info *smi_info,
971 struct timespec *busy_until)
972{
973 unsigned int max_busy_us = 0;
974
975 if (smi_info->intf_num < num_max_busy_us)
976 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
977 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
978 ipmi_si_set_not_busy(busy_until);
979 else if (!ipmi_si_is_busy(busy_until)) {
980 getnstimeofday(busy_until);
981 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
982 } else {
983 struct timespec now;
984 getnstimeofday(&now);
985 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
986 ipmi_si_set_not_busy(busy_until);
987 return 0;
988 }
989 }
990 return 1;
991}
992
993
994/*
995 * A busy-waiting loop for speeding up IPMI operation.
996 *
997 * Lousy hardware makes this hard. This is only enabled for systems
998 * that are not BT and do not have interrupts. It starts spinning
999 * when an operation is complete or until max_busy tells it to stop
1000 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1001 * Documentation/IPMI.txt for details.
1002 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001003static int ipmi_thread(void *data)
1004{
1005 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001006 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001007 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -08001008 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001009
Martin Wilckae74e822010-03-10 15:23:06 -08001010 ipmi_si_set_not_busy(&busy_until);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001011 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -08001012 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001013 int busy_wait;
1014
Corey Minyarda9a2c442005-11-07 01:00:03 -08001015 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001016 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001017 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001018 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1019 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001020 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1021 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001022 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001023 schedule();
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001024 else if (smi_result == SI_SM_IDLE)
1025 schedule_timeout_interruptible(100);
Matt Domsche9a705a2005-11-07 01:00:04 -08001026 else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001027 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001028 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001029 return 0;
1030}
1031
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033static void poll(void *send_info)
1034{
1035 struct smi_info *smi_info = send_info;
Corey Minyardfcfa4722007-10-18 03:07:09 -07001036 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Corey Minyard15c62e12006-12-06 20:41:06 -08001038 /*
1039 * Make sure there is some delay in the poll loop so we can
1040 * drive time forward and timeout things.
1041 */
1042 udelay(10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001043 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001044 smi_event_handler(smi_info, 10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001045 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static void request_events(void *send_info)
1049{
1050 struct smi_info *smi_info = send_info;
1051
Corey Minyard40112ae2009-04-21 12:24:03 -07001052 if (atomic_read(&smi_info->stop_operation) ||
1053 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001054 return;
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 atomic_set(&smi_info->req_events, 1);
1057}
1058
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001059static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061static void smi_timeout(unsigned long data)
1062{
1063 struct smi_info *smi_info = (struct smi_info *) data;
1064 enum si_sm_result smi_result;
1065 unsigned long flags;
1066 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001067 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001068 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef DEBUG_TIMING
1070 struct timeval t;
1071#endif
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 spin_lock_irqsave(&(smi_info->si_lock), flags);
1074#ifdef DEBUG_TIMING
1075 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001076 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077#endif
1078 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001079 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * SI_USEC_PER_JIFFY);
1081 smi_result = smi_event_handler(smi_info, time_diff);
1082
1083 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1084
1085 smi_info->last_timeout_jiffies = jiffies_now;
1086
Corey Minyardb0defcd2006-03-26 01:37:20 -08001087 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001089 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001090 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001091 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093
Corey Minyardc305e3d2008-04-29 01:01:10 -07001094 /*
1095 * If the state machine asks for a short delay, then shorten
1096 * the timer timeout.
1097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001099 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001100 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001102 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001103 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001106 do_mod_timer:
1107 if (smi_result != SI_SM_IDLE)
1108 mod_timer(&(smi_info->si_timer), timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
David Howells7d12e782006-10-05 14:55:46 +01001111static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 struct smi_info *smi_info = data;
1114 unsigned long flags;
1115#ifdef DEBUG_TIMING
1116 struct timeval t;
1117#endif
1118
1119 spin_lock_irqsave(&(smi_info->si_lock), flags);
1120
Corey Minyard64959e22008-04-29 01:01:07 -07001121 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123#ifdef DEBUG_TIMING
1124 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001125 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126#endif
1127 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1129 return IRQ_HANDLED;
1130}
1131
David Howells7d12e782006-10-05 14:55:46 +01001132static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001133{
1134 struct smi_info *smi_info = data;
1135 /* We need to clear the IRQ flag for the BT interface. */
1136 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1137 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1138 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001139 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001140}
1141
Corey Minyard453823b2006-03-31 02:30:39 -08001142static int smi_start_processing(void *send_info,
1143 ipmi_smi_t intf)
1144{
1145 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001146 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001147
1148 new_smi->intf = intf;
1149
Corey Minyardc45adc32007-10-18 03:07:08 -07001150 /* Try to claim any interrupts. */
1151 if (new_smi->irq_setup)
1152 new_smi->irq_setup(new_smi);
1153
Corey Minyard453823b2006-03-31 02:30:39 -08001154 /* Set up the timer that drives the interface. */
1155 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1156 new_smi->last_timeout_jiffies = jiffies;
1157 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1158
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001159 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001160 * Check if the user forcefully enabled the daemon.
1161 */
1162 if (new_smi->intf_num < num_force_kipmid)
1163 enable = force_kipmid[new_smi->intf_num];
1164 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001165 * The BT interface is efficient enough to not need a thread,
1166 * and there is no need for a thread if we have interrupts.
1167 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001168 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001169 enable = 1;
1170
1171 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001172 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1173 "kipmi%d", new_smi->intf_num);
1174 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001175 dev_notice(new_smi->dev, "Could not start"
1176 " kernel thread due to error %ld, only using"
1177 " timers to drive the interface\n",
1178 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001179 new_smi->thread = NULL;
1180 }
1181 }
1182
1183 return 0;
1184}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001185
Corey Minyardb9675132006-12-06 20:41:02 -08001186static void set_maintenance_mode(void *send_info, int enable)
1187{
1188 struct smi_info *smi_info = send_info;
1189
1190 if (!enable)
1191 atomic_set(&smi_info->req_events, 0);
1192}
1193
Corey Minyardc305e3d2008-04-29 01:01:10 -07001194static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001196 .start_processing = smi_start_processing,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 .sender = sender,
1198 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001199 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 .set_run_to_completion = set_run_to_completion,
1201 .poll = poll,
1202};
1203
Corey Minyardc305e3d2008-04-29 01:01:10 -07001204/*
1205 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1206 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Corey Minyardb0defcd2006-03-26 01:37:20 -08001209static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001210static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001211static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001214#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216static int si_trydefaults = 1;
1217static char *si_type[SI_MAX_PARMS];
1218#define MAX_SI_TYPE_STR 30
1219static char si_type_str[MAX_SI_TYPE_STR];
1220static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001221static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001223static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001225static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001227static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001229static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001231static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001232static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001233static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Corey Minyardb361e272006-12-06 20:41:07 -08001235#define IPMI_IO_ADDR_SPACE 0
1236#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001237static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001238
1239static int hotmod_handler(const char *val, struct kernel_param *kp);
1240
1241module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1242MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1243 " Documentation/IPMI.txt in the kernel sources for the"
1244 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246module_param_named(trydefaults, si_trydefaults, bool, 0);
1247MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1248 " default scan of the KCS and SMIC interface at the standard"
1249 " address");
1250module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1251MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1252 " interface separated by commas. The types are 'kcs',"
1253 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1254 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001255module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1257 " addresses separated by commas. Only use if an interface"
1258 " is in memory. Otherwise, set it to zero or leave"
1259 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001260module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1262 " addresses separated by commas. Only use if an interface"
1263 " is a port. Otherwise, set it to zero or leave"
1264 " it blank.");
1265module_param_array(irqs, int, &num_irqs, 0);
1266MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1267 " addresses separated by commas. Only use if an interface"
1268 " has an interrupt. Otherwise, set it to zero or leave"
1269 " it blank.");
1270module_param_array(regspacings, int, &num_regspacings, 0);
1271MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1272 " and each successive register used by the interface. For"
1273 " instance, if the start address is 0xca2 and the spacing"
1274 " is 2, then the second address is at 0xca4. Defaults"
1275 " to 1.");
1276module_param_array(regsizes, int, &num_regsizes, 0);
1277MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1278 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1279 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1280 " the 8-bit IPMI register has to be read from a larger"
1281 " register.");
1282module_param_array(regshifts, int, &num_regshifts, 0);
1283MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1284 " IPMI register, in bits. For instance, if the data"
1285 " is read from a 32-bit word and the IPMI data is in"
1286 " bit 8-15, then the shift would be 8");
1287module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1288MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1289 " the controller. Normally this is 0x20, but can be"
1290 " overridden by this parm. This is an array indexed"
1291 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001292module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1293MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1294 " disabled(0). Normally the IPMI driver auto-detects"
1295 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001296module_param(unload_when_empty, int, 0);
1297MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1298 " specified or found, default is 1. Setting to 0"
1299 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001300module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1301MODULE_PARM_DESC(kipmid_max_busy_us,
1302 "Max time (in microseconds) to busy-wait for IPMI data before"
1303 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1304 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306
Corey Minyardb0defcd2006-03-26 01:37:20 -08001307static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001309 if (info->si_type == SI_BT)
1310 /* Disable the interrupt in the BT interface. */
1311 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1312 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315static int std_irq_setup(struct smi_info *info)
1316{
1317 int rv;
1318
Corey Minyardb0defcd2006-03-26 01:37:20 -08001319 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return 0;
1321
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001322 if (info->si_type == SI_BT) {
1323 rv = request_irq(info->irq,
1324 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001325 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001326 DEVICE_NAME,
1327 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001328 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001329 /* Enable the interrupt in the BT interface. */
1330 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1331 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1332 } else
1333 rv = request_irq(info->irq,
1334 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001335 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001336 DEVICE_NAME,
1337 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001339 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1340 " running polled\n",
1341 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 info->irq = 0;
1343 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001344 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001345 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
1348 return rv;
1349}
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1352{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001353 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Corey Minyardb0defcd2006-03-26 01:37:20 -08001355 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358static void port_outb(struct si_sm_io *io, unsigned int offset,
1359 unsigned char b)
1360{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001361 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Corey Minyardb0defcd2006-03-26 01:37:20 -08001363 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1367{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001368 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Corey Minyardb0defcd2006-03-26 01:37:20 -08001370 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
1373static void port_outw(struct si_sm_io *io, unsigned int offset,
1374 unsigned char b)
1375{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001376 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Corey Minyardb0defcd2006-03-26 01:37:20 -08001378 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
1381static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1382{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001383 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Corey Minyardb0defcd2006-03-26 01:37:20 -08001385 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
1388static void port_outl(struct si_sm_io *io, unsigned int offset,
1389 unsigned char b)
1390{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001391 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Corey Minyardb0defcd2006-03-26 01:37:20 -08001393 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396static void port_cleanup(struct smi_info *info)
1397{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001398 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001399 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Corey Minyardb0defcd2006-03-26 01:37:20 -08001401 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001402 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001403 release_region(addr + idx * info->io.regspacing,
1404 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408static int port_setup(struct smi_info *info)
1409{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001410 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001411 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Corey Minyardb0defcd2006-03-26 01:37:20 -08001413 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -ENODEV;
1415
1416 info->io_cleanup = port_cleanup;
1417
Corey Minyardc305e3d2008-04-29 01:01:10 -07001418 /*
1419 * Figure out the actual inb/inw/inl/etc routine to use based
1420 * upon the register size.
1421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 switch (info->io.regsize) {
1423 case 1:
1424 info->io.inputb = port_inb;
1425 info->io.outputb = port_outb;
1426 break;
1427 case 2:
1428 info->io.inputb = port_inw;
1429 info->io.outputb = port_outw;
1430 break;
1431 case 4:
1432 info->io.inputb = port_inl;
1433 info->io.outputb = port_outl;
1434 break;
1435 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001436 dev_warn(info->dev, "Invalid register size: %d\n",
1437 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return -EINVAL;
1439 }
1440
Corey Minyardc305e3d2008-04-29 01:01:10 -07001441 /*
1442 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001443 * tables. This causes problems when trying to register the
1444 * entire I/O region. Therefore we must register each I/O
1445 * port separately.
1446 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001447 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001448 if (request_region(addr + idx * info->io.regspacing,
1449 info->io.regsize, DEVICE_NAME) == NULL) {
1450 /* Undo allocations */
1451 while (idx--) {
1452 release_region(addr + idx * info->io.regspacing,
1453 info->io.regsize);
1454 }
1455 return -EIO;
1456 }
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return 0;
1459}
1460
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001461static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 return readb((io->addr)+(offset * io->regspacing));
1464}
1465
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001466static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 unsigned char b)
1468{
1469 writeb(b, (io->addr)+(offset * io->regspacing));
1470}
1471
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001472static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001475 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001478static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 unsigned char b)
1480{
1481 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1482}
1483
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001484static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001487 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001490static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 unsigned char b)
1492{
1493 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1494}
1495
1496#ifdef readq
1497static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1498{
1499 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001500 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
1503static void mem_outq(struct si_sm_io *io, unsigned int offset,
1504 unsigned char b)
1505{
1506 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1507}
1508#endif
1509
1510static void mem_cleanup(struct smi_info *info)
1511{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001512 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 int mapsize;
1514
1515 if (info->io.addr) {
1516 iounmap(info->io.addr);
1517
1518 mapsize = ((info->io_size * info->io.regspacing)
1519 - (info->io.regspacing - info->io.regsize));
1520
Corey Minyardb0defcd2006-03-26 01:37:20 -08001521 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
1525static int mem_setup(struct smi_info *info)
1526{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001527 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 int mapsize;
1529
Corey Minyardb0defcd2006-03-26 01:37:20 -08001530 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return -ENODEV;
1532
1533 info->io_cleanup = mem_cleanup;
1534
Corey Minyardc305e3d2008-04-29 01:01:10 -07001535 /*
1536 * Figure out the actual readb/readw/readl/etc routine to use based
1537 * upon the register size.
1538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 switch (info->io.regsize) {
1540 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001541 info->io.inputb = intf_mem_inb;
1542 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 break;
1544 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001545 info->io.inputb = intf_mem_inw;
1546 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 break;
1548 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001549 info->io.inputb = intf_mem_inl;
1550 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 break;
1552#ifdef readq
1553 case 8:
1554 info->io.inputb = mem_inq;
1555 info->io.outputb = mem_outq;
1556 break;
1557#endif
1558 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001559 dev_warn(info->dev, "Invalid register size: %d\n",
1560 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return -EINVAL;
1562 }
1563
Corey Minyardc305e3d2008-04-29 01:01:10 -07001564 /*
1565 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 * unusual looking calculation, but it avoids claiming any
1567 * more memory than it has to. It will claim everything
1568 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001569 * register.
1570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 mapsize = ((info->io_size * info->io.regspacing)
1572 - (info->io.regspacing - info->io.regsize));
1573
Corey Minyardb0defcd2006-03-26 01:37:20 -08001574 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EIO;
1576
Corey Minyardb0defcd2006-03-26 01:37:20 -08001577 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001579 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return -EIO;
1581 }
1582 return 0;
1583}
1584
Corey Minyardb361e272006-12-06 20:41:07 -08001585/*
1586 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1587 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1588 * Options are:
1589 * rsp=<regspacing>
1590 * rsi=<regsize>
1591 * rsh=<regshift>
1592 * irq=<irq>
1593 * ipmb=<ipmb addr>
1594 */
1595enum hotmod_op { HM_ADD, HM_REMOVE };
1596struct hotmod_vals {
1597 char *name;
1598 int val;
1599};
1600static struct hotmod_vals hotmod_ops[] = {
1601 { "add", HM_ADD },
1602 { "remove", HM_REMOVE },
1603 { NULL }
1604};
1605static struct hotmod_vals hotmod_si[] = {
1606 { "kcs", SI_KCS },
1607 { "smic", SI_SMIC },
1608 { "bt", SI_BT },
1609 { NULL }
1610};
1611static struct hotmod_vals hotmod_as[] = {
1612 { "mem", IPMI_MEM_ADDR_SPACE },
1613 { "i/o", IPMI_IO_ADDR_SPACE },
1614 { NULL }
1615};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001616
Corey Minyardb361e272006-12-06 20:41:07 -08001617static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1618{
1619 char *s;
1620 int i;
1621
1622 s = strchr(*curr, ',');
1623 if (!s) {
1624 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1625 return -EINVAL;
1626 }
1627 *s = '\0';
1628 s++;
1629 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001630 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001631 *val = v[i].val;
1632 *curr = s;
1633 return 0;
1634 }
1635 }
1636
1637 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1638 return -EINVAL;
1639}
1640
Corey Minyard1d5636c2006-12-10 02:19:08 -08001641static int check_hotmod_int_op(const char *curr, const char *option,
1642 const char *name, int *val)
1643{
1644 char *n;
1645
1646 if (strcmp(curr, name) == 0) {
1647 if (!option) {
1648 printk(KERN_WARNING PFX
1649 "No option given for '%s'\n",
1650 curr);
1651 return -EINVAL;
1652 }
1653 *val = simple_strtoul(option, &n, 0);
1654 if ((*n != '\0') || (*option == '\0')) {
1655 printk(KERN_WARNING PFX
1656 "Bad option given for '%s'\n",
1657 curr);
1658 return -EINVAL;
1659 }
1660 return 1;
1661 }
1662 return 0;
1663}
1664
Corey Minyardb361e272006-12-06 20:41:07 -08001665static int hotmod_handler(const char *val, struct kernel_param *kp)
1666{
1667 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001668 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001669 char *next, *curr, *s, *n, *o;
1670 enum hotmod_op op;
1671 enum si_type si_type;
1672 int addr_space;
1673 unsigned long addr;
1674 int regspacing;
1675 int regsize;
1676 int regshift;
1677 int irq;
1678 int ipmb;
1679 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001680 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001681 struct smi_info *info;
1682
1683 if (!str)
1684 return -ENOMEM;
1685
1686 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001687 len = strlen(str);
1688 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001689 while ((ival >= 0) && isspace(str[ival])) {
1690 str[ival] = '\0';
1691 ival--;
1692 }
1693
1694 for (curr = str; curr; curr = next) {
1695 regspacing = 1;
1696 regsize = 1;
1697 regshift = 0;
1698 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001699 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001700
1701 next = strchr(curr, ':');
1702 if (next) {
1703 *next = '\0';
1704 next++;
1705 }
1706
1707 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1708 if (rv)
1709 break;
1710 op = ival;
1711
1712 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1713 if (rv)
1714 break;
1715 si_type = ival;
1716
1717 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1718 if (rv)
1719 break;
1720
1721 s = strchr(curr, ',');
1722 if (s) {
1723 *s = '\0';
1724 s++;
1725 }
1726 addr = simple_strtoul(curr, &n, 0);
1727 if ((*n != '\0') || (*curr == '\0')) {
1728 printk(KERN_WARNING PFX "Invalid hotmod address"
1729 " '%s'\n", curr);
1730 break;
1731 }
1732
1733 while (s) {
1734 curr = s;
1735 s = strchr(curr, ',');
1736 if (s) {
1737 *s = '\0';
1738 s++;
1739 }
1740 o = strchr(curr, '=');
1741 if (o) {
1742 *o = '\0';
1743 o++;
1744 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001745 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1746 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001747 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001748 else if (rv)
1749 continue;
1750 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1751 if (rv < 0)
1752 goto out;
1753 else if (rv)
1754 continue;
1755 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1756 if (rv < 0)
1757 goto out;
1758 else if (rv)
1759 continue;
1760 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1761 if (rv < 0)
1762 goto out;
1763 else if (rv)
1764 continue;
1765 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1766 if (rv < 0)
1767 goto out;
1768 else if (rv)
1769 continue;
1770
1771 rv = -EINVAL;
1772 printk(KERN_WARNING PFX
1773 "Invalid hotmod option '%s'\n",
1774 curr);
1775 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001776 }
1777
1778 if (op == HM_ADD) {
1779 info = kzalloc(sizeof(*info), GFP_KERNEL);
1780 if (!info) {
1781 rv = -ENOMEM;
1782 goto out;
1783 }
1784
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001785 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001786 info->si_type = si_type;
1787 info->io.addr_data = addr;
1788 info->io.addr_type = addr_space;
1789 if (addr_space == IPMI_MEM_ADDR_SPACE)
1790 info->io_setup = mem_setup;
1791 else
1792 info->io_setup = port_setup;
1793
1794 info->io.addr = NULL;
1795 info->io.regspacing = regspacing;
1796 if (!info->io.regspacing)
1797 info->io.regspacing = DEFAULT_REGSPACING;
1798 info->io.regsize = regsize;
1799 if (!info->io.regsize)
1800 info->io.regsize = DEFAULT_REGSPACING;
1801 info->io.regshift = regshift;
1802 info->irq = irq;
1803 if (info->irq)
1804 info->irq_setup = std_irq_setup;
1805 info->slave_addr = ipmb;
1806
Matthew Garrett2407d772010-05-26 14:43:46 -07001807 if (!add_smi(info))
1808 if (try_smi_init(info))
1809 cleanup_one_si(info);
Corey Minyardb361e272006-12-06 20:41:07 -08001810 } else {
1811 /* remove */
1812 struct smi_info *e, *tmp_e;
1813
1814 mutex_lock(&smi_infos_lock);
1815 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1816 if (e->io.addr_type != addr_space)
1817 continue;
1818 if (e->si_type != si_type)
1819 continue;
1820 if (e->io.addr_data == addr)
1821 cleanup_one_si(e);
1822 }
1823 mutex_unlock(&smi_infos_lock);
1824 }
1825 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001826 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001827 out:
1828 kfree(str);
1829 return rv;
1830}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001831
1832static __devinit void hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001834 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 struct smi_info *info;
1836
Corey Minyardb0defcd2006-03-26 01:37:20 -08001837 for (i = 0; i < SI_MAX_PARMS; i++) {
1838 if (!ports[i] && !addrs[i])
1839 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Corey Minyardb0defcd2006-03-26 01:37:20 -08001841 info = kzalloc(sizeof(*info), GFP_KERNEL);
1842 if (!info)
1843 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001845 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001846 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001847
Corey Minyard1d5636c2006-12-10 02:19:08 -08001848 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001849 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001850 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001851 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001852 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001853 info->si_type = SI_BT;
1854 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001855 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001856 "for interface %d, was invalid: %s\n",
1857 i, si_type[i]);
1858 kfree(info);
1859 continue;
1860 }
1861
1862 if (ports[i]) {
1863 /* An I/O port */
1864 info->io_setup = port_setup;
1865 info->io.addr_data = ports[i];
1866 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1867 } else if (addrs[i]) {
1868 /* A memory port */
1869 info->io_setup = mem_setup;
1870 info->io.addr_data = addrs[i];
1871 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1872 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001873 printk(KERN_WARNING PFX "Interface type specified "
1874 "for interface %d, but port and address were "
1875 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001876 kfree(info);
1877 continue;
1878 }
1879
1880 info->io.addr = NULL;
1881 info->io.regspacing = regspacings[i];
1882 if (!info->io.regspacing)
1883 info->io.regspacing = DEFAULT_REGSPACING;
1884 info->io.regsize = regsizes[i];
1885 if (!info->io.regsize)
1886 info->io.regsize = DEFAULT_REGSPACING;
1887 info->io.regshift = regshifts[i];
1888 info->irq = irqs[i];
1889 if (info->irq)
1890 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001891 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08001892
Matthew Garrett2407d772010-05-26 14:43:46 -07001893 if (!add_smi(info))
1894 if (try_smi_init(info))
1895 cleanup_one_si(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Len Brown84663612005-08-24 12:09:07 -04001899#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901#include <linux/acpi.h>
1902
Corey Minyardc305e3d2008-04-29 01:01:10 -07001903/*
1904 * Once we get an ACPI failure, we don't try any more, because we go
1905 * through the tables sequentially. Once we don't find a table, there
1906 * are no more.
1907 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001908static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910/* For GPE-type interrupts. */
1911static u32 ipmi_acpi_gpe(void *context)
1912{
1913 struct smi_info *smi_info = context;
1914 unsigned long flags;
1915#ifdef DEBUG_TIMING
1916 struct timeval t;
1917#endif
1918
1919 spin_lock_irqsave(&(smi_info->si_lock), flags);
1920
Corey Minyard64959e22008-04-29 01:01:07 -07001921 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923#ifdef DEBUG_TIMING
1924 do_gettimeofday(&t);
1925 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1926#endif
1927 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1929
1930 return ACPI_INTERRUPT_HANDLED;
1931}
1932
Corey Minyardb0defcd2006-03-26 01:37:20 -08001933static void acpi_gpe_irq_cleanup(struct smi_info *info)
1934{
1935 if (!info->irq)
1936 return;
1937
1938 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1939}
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941static int acpi_gpe_irq_setup(struct smi_info *info)
1942{
1943 acpi_status status;
1944
Corey Minyardb0defcd2006-03-26 01:37:20 -08001945 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return 0;
1947
1948 /* FIXME - is level triggered right? */
1949 status = acpi_install_gpe_handler(NULL,
1950 info->irq,
1951 ACPI_GPE_LEVEL_TRIGGERED,
1952 &ipmi_acpi_gpe,
1953 info);
1954 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001955 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
1956 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 info->irq = 0;
1958 return -EINVAL;
1959 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001960 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001961 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return 0;
1963 }
1964}
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966/*
1967 * Defined at
Corey Minyardc305e3d2008-04-29 01:01:10 -07001968 * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/
1969 * Docs/TechPapers/IA64/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 */
1971struct SPMITable {
1972 s8 Signature[4];
1973 u32 Length;
1974 u8 Revision;
1975 u8 Checksum;
1976 s8 OEMID[6];
1977 s8 OEMTableID[8];
1978 s8 OEMRevision[4];
1979 s8 CreatorID[4];
1980 s8 CreatorRevision[4];
1981 u8 InterfaceType;
1982 u8 IPMIlegacy;
1983 s16 SpecificationRevision;
1984
1985 /*
1986 * Bit 0 - SCI interrupt supported
1987 * Bit 1 - I/O APIC/SAPIC
1988 */
1989 u8 InterruptType;
1990
Corey Minyardc305e3d2008-04-29 01:01:10 -07001991 /*
1992 * If bit 0 of InterruptType is set, then this is the SCI
1993 * interrupt in the GPEx_STS register.
1994 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 u8 GPE;
1996
1997 s16 Reserved;
1998
Corey Minyardc305e3d2008-04-29 01:01:10 -07001999 /*
2000 * If bit 1 of InterruptType is set, then this is the I/O
2001 * APIC/SAPIC interrupt.
2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 u32 GlobalSystemInterrupt;
2004
2005 /* The actual register address. */
2006 struct acpi_generic_address addr;
2007
2008 u8 UID[4];
2009
2010 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2011};
2012
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002013static __devinit int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
2015 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 u8 addr_space;
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002019 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2020 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002023 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 addr_space = IPMI_MEM_ADDR_SPACE;
2025 else
2026 addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002027
2028 info = kzalloc(sizeof(*info), GFP_KERNEL);
2029 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002030 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002031 return -ENOMEM;
2032 }
2033
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002034 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002035 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002038 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002040 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002043 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002046 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002049 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2050 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002051 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 return -EIO;
2053 }
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (spmi->InterruptType & 1) {
2056 /* We've got a GPE interrupt. */
2057 info->irq = spmi->GPE;
2058 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 } else if (spmi->InterruptType & 2) {
2060 /* We've got an APIC/SAPIC interrupt. */
2061 info->irq = spmi->GlobalSystemInterrupt;
2062 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 } else {
2064 /* Use the default interrupt setting. */
2065 info->irq = 0;
2066 info->irq_setup = NULL;
2067 }
2068
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002069 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002070 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002071 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002072 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002073 info->io.regspacing = DEFAULT_REGSPACING;
2074 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002075 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002076 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002078 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002080 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002081 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002083 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 } else {
2085 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002086 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return -EIO;
2088 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002089 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Matthew Garrett2407d772010-05-26 14:43:46 -07002091 add_smi(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return 0;
2094}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002095
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002096static __devinit void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002097{
2098 acpi_status status;
2099 struct SPMITable *spmi;
2100 int i;
2101
2102 if (acpi_disabled)
2103 return;
2104
2105 if (acpi_failure)
2106 return;
2107
2108 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002109 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2110 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002111 if (status != AE_OK)
2112 return;
2113
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002114 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002115 }
2116}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002117
2118static int __devinit ipmi_pnp_probe(struct pnp_dev *dev,
2119 const struct pnp_device_id *dev_id)
2120{
2121 struct acpi_device *acpi_dev;
2122 struct smi_info *info;
Myron Stowe279fbd02010-05-26 14:43:52 -07002123 struct resource *res;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002124 acpi_handle handle;
2125 acpi_status status;
2126 unsigned long long tmp;
2127
2128 acpi_dev = pnp_acpi_device(dev);
2129 if (!acpi_dev)
2130 return -ENODEV;
2131
2132 info = kzalloc(sizeof(*info), GFP_KERNEL);
2133 if (!info)
2134 return -ENOMEM;
2135
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002136 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002137 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002138
2139 handle = acpi_dev->handle;
2140
2141 /* _IFT tells us the interface type: KCS, BT, etc */
2142 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2143 if (ACPI_FAILURE(status))
2144 goto err_free;
2145
2146 switch (tmp) {
2147 case 1:
2148 info->si_type = SI_KCS;
2149 break;
2150 case 2:
2151 info->si_type = SI_SMIC;
2152 break;
2153 case 3:
2154 info->si_type = SI_BT;
2155 break;
2156 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002157 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002158 goto err_free;
2159 }
2160
Myron Stowe279fbd02010-05-26 14:43:52 -07002161 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2162 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002163 info->io_setup = port_setup;
2164 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002165 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002166 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2167 if (res) {
2168 info->io_setup = mem_setup;
2169 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2170 }
2171 }
2172 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002173 dev_err(&dev->dev, "no I/O or memory address\n");
2174 goto err_free;
2175 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002176 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002177
2178 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002179 res = pnp_get_resource(dev,
2180 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2181 IORESOURCE_IO : IORESOURCE_MEM,
2182 1);
2183 if (res) {
2184 if (res->start > info->io.addr_data)
2185 info->io.regspacing = res->start - info->io.addr_data;
2186 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002187 info->io.regsize = DEFAULT_REGSPACING;
2188 info->io.regshift = 0;
2189
2190 /* If _GPE exists, use it; otherwise use standard interrupts */
2191 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2192 if (ACPI_SUCCESS(status)) {
2193 info->irq = tmp;
2194 info->irq_setup = acpi_gpe_irq_setup;
2195 } else if (pnp_irq_valid(dev, 0)) {
2196 info->irq = pnp_irq(dev, 0);
2197 info->irq_setup = std_irq_setup;
2198 }
2199
Myron Stowe8c8eae22010-05-26 14:43:51 -07002200 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002201 pnp_set_drvdata(dev, info);
2202
Myron Stowe279fbd02010-05-26 14:43:52 -07002203 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2204 res, info->io.regsize, info->io.regspacing,
2205 info->irq);
2206
Matthew Garrett2407d772010-05-26 14:43:46 -07002207 return add_smi(info);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002208
2209err_free:
2210 kfree(info);
2211 return -EINVAL;
2212}
2213
2214static void __devexit ipmi_pnp_remove(struct pnp_dev *dev)
2215{
2216 struct smi_info *info = pnp_get_drvdata(dev);
2217
2218 cleanup_one_si(info);
2219}
2220
2221static const struct pnp_device_id pnp_dev_table[] = {
2222 {"IPI0001", 0},
2223 {"", 0},
2224};
2225
2226static struct pnp_driver ipmi_pnp_driver = {
2227 .name = DEVICE_NAME,
2228 .probe = ipmi_pnp_probe,
2229 .remove = __devexit_p(ipmi_pnp_remove),
2230 .id_table = pnp_dev_table,
2231};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232#endif
2233
Matt Domscha9fad4c2006-01-11 12:17:44 -08002234#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002235struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 u8 type;
2237 u8 addr_space;
2238 unsigned long base_addr;
2239 u8 irq;
2240 u8 offset;
2241 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002242};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Jeff Garzik18552562007-10-03 15:15:40 -04002244static int __devinit decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002245 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
Jeff Garzik18552562007-10-03 15:15:40 -04002247 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 unsigned long base_addr;
2249 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002250 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Corey Minyardb0defcd2006-03-26 01:37:20 -08002252 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 memcpy(&base_addr, data+8, sizeof(unsigned long));
2255 if (len >= 0x11) {
2256 if (base_addr & 1) {
2257 /* I/O */
2258 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002259 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002260 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002262 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2265 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002266 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Corey Minyardb0defcd2006-03-26 01:37:20 -08002268 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002271 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002272 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002274 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 break;
2276 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002277 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 break;
2279 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002280 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 break;
2282 default:
2283 /* Some other interface, just ignore it. */
2284 return -EIO;
2285 }
2286 } else {
2287 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002288 /*
2289 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002290 * address should be 1 if the address is I/O and 0 if
2291 * the address is in memory. So many systems get that
2292 * wrong (and all that I have seen are I/O) so we just
2293 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002294 * memory should use the newer spec, anyway.
2295 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002296 dmi->base_addr = base_addr & 0xfffe;
2297 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2298 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
Corey Minyardb0defcd2006-03-26 01:37:20 -08002301 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Corey Minyardb0defcd2006-03-26 01:37:20 -08002303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
Corey Minyardb0defcd2006-03-26 01:37:20 -08002306static __devinit void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Corey Minyarde8b33612005-09-06 15:18:45 -07002308 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Corey Minyardb0defcd2006-03-26 01:37:20 -08002310 info = kzalloc(sizeof(*info), GFP_KERNEL);
2311 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002312 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002313 return;
2314 }
2315
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002316 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002317 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Corey Minyarde8b33612005-09-06 15:18:45 -07002319 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002320 case 0x01: /* KCS */
2321 info->si_type = SI_KCS;
2322 break;
2323 case 0x02: /* SMIC */
2324 info->si_type = SI_SMIC;
2325 break;
2326 case 0x03: /* BT */
2327 info->si_type = SI_BT;
2328 break;
2329 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002330 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002331 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Corey Minyardb0defcd2006-03-26 01:37:20 -08002334 switch (ipmi_data->addr_space) {
2335 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002337 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Corey Minyardb0defcd2006-03-26 01:37:20 -08002340 case IPMI_IO_ADDR_SPACE:
2341 info->io_setup = port_setup;
2342 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2343 break;
2344
2345 default:
2346 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002347 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002348 ipmi_data->addr_space);
2349 return;
2350 }
2351 info->io.addr_data = ipmi_data->base_addr;
2352
2353 info->io.regspacing = ipmi_data->offset;
2354 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 info->io.regspacing = DEFAULT_REGSPACING;
2356 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002357 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 info->slave_addr = ipmi_data->slave_addr;
2360
Corey Minyardb0defcd2006-03-26 01:37:20 -08002361 info->irq = ipmi_data->irq;
2362 if (info->irq)
2363 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Matthew Garrett2407d772010-05-26 14:43:46 -07002365 add_smi(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002366}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Corey Minyardb0defcd2006-03-26 01:37:20 -08002368static void __devinit dmi_find_bmc(void)
2369{
Jeff Garzik18552562007-10-03 15:15:40 -04002370 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002371 struct dmi_ipmi_data data;
2372 int rv;
2373
2374 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002375 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002376 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2377 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002378 if (!rv)
2379 try_init_dmi(&data);
2380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002382#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384#ifdef CONFIG_PCI
2385
Corey Minyardb0defcd2006-03-26 01:37:20 -08002386#define PCI_ERMC_CLASSCODE 0x0C0700
2387#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2388#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2389#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2390#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2391#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393#define PCI_HP_VENDOR_ID 0x103C
2394#define PCI_MMC_DEVICE_ID 0x121A
2395#define PCI_MMC_ADDR_CW 0x10
2396
Corey Minyardb0defcd2006-03-26 01:37:20 -08002397static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002399 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Corey Minyardb0defcd2006-03-26 01:37:20 -08002401 pci_disable_device(pdev);
2402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Corey Minyardb0defcd2006-03-26 01:37:20 -08002404static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
2405 const struct pci_device_id *ent)
2406{
2407 int rv;
2408 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2409 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Corey Minyardb0defcd2006-03-26 01:37:20 -08002411 info = kzalloc(sizeof(*info), GFP_KERNEL);
2412 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002413 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002414
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002415 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002416 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002417
2418 switch (class_type) {
2419 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2420 info->si_type = SI_SMIC;
2421 break;
2422
2423 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2424 info->si_type = SI_KCS;
2425 break;
2426
2427 case PCI_ERMC_CLASSCODE_TYPE_BT:
2428 info->si_type = SI_BT;
2429 break;
2430
2431 default:
2432 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002433 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002434 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Corey Minyardb0defcd2006-03-26 01:37:20 -08002437 rv = pci_enable_device(pdev);
2438 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002439 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002440 kfree(info);
2441 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 }
2443
Corey Minyardb0defcd2006-03-26 01:37:20 -08002444 info->addr_source_cleanup = ipmi_pci_cleanup;
2445 info->addr_source_data = pdev;
2446
Corey Minyardb0defcd2006-03-26 01:37:20 -08002447 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2448 info->io_setup = port_setup;
2449 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2450 } else {
2451 info->io_setup = mem_setup;
2452 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002454 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Corey Minyardb0defcd2006-03-26 01:37:20 -08002456 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002458 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Corey Minyardb0defcd2006-03-26 01:37:20 -08002460 info->irq = pdev->irq;
2461 if (info->irq)
2462 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Corey Minyard50c812b2006-03-26 01:37:21 -08002464 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002465 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002466
Myron Stowe279fbd02010-05-26 14:43:52 -07002467 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2468 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2469 info->irq);
2470
Matthew Garrett2407d772010-05-26 14:43:46 -07002471 return add_smi(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Corey Minyardb0defcd2006-03-26 01:37:20 -08002474static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
2475{
Corey Minyardfca3b742007-05-08 00:23:59 -07002476 struct smi_info *info = pci_get_drvdata(pdev);
2477 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Corey Minyardb0defcd2006-03-26 01:37:20 -08002480#ifdef CONFIG_PM
2481static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return 0;
2484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Corey Minyardb0defcd2006-03-26 01:37:20 -08002486static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002490#endif
2491
2492static struct pci_device_id ipmi_pci_devices[] = {
2493 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002494 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2495 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002496};
2497MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2498
2499static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002500 .name = DEVICE_NAME,
2501 .id_table = ipmi_pci_devices,
2502 .probe = ipmi_pci_probe,
2503 .remove = __devexit_p(ipmi_pci_remove),
Corey Minyardb0defcd2006-03-26 01:37:20 -08002504#ifdef CONFIG_PM
Corey Minyardc305e3d2008-04-29 01:01:10 -07002505 .suspend = ipmi_pci_suspend,
2506 .resume = ipmi_pci_resume,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002507#endif
2508};
2509#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002512#ifdef CONFIG_PPC_OF
2513static int __devinit ipmi_of_probe(struct of_device *dev,
2514 const struct of_device_id *match)
2515{
2516 struct smi_info *info;
2517 struct resource resource;
2518 const int *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002519 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002520 int ret;
2521 int proplen;
2522
Myron Stowe279fbd02010-05-26 14:43:52 -07002523 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002524
2525 ret = of_address_to_resource(np, 0, &resource);
2526 if (ret) {
2527 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2528 return ret;
2529 }
2530
Stephen Rothwell9c250992007-08-15 16:42:12 +10002531 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002532 if (regsize && proplen != 4) {
2533 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2534 return -EINVAL;
2535 }
2536
Stephen Rothwell9c250992007-08-15 16:42:12 +10002537 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002538 if (regspacing && proplen != 4) {
2539 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2540 return -EINVAL;
2541 }
2542
Stephen Rothwell9c250992007-08-15 16:42:12 +10002543 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002544 if (regshift && proplen != 4) {
2545 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2546 return -EINVAL;
2547 }
2548
2549 info = kzalloc(sizeof(*info), GFP_KERNEL);
2550
2551 if (!info) {
2552 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002553 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002554 return -ENOMEM;
2555 }
2556
2557 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002558 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002559 info->irq_setup = std_irq_setup;
2560
Nate Case3b7ec112008-05-14 16:05:39 -07002561 if (resource.flags & IORESOURCE_IO) {
2562 info->io_setup = port_setup;
2563 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2564 } else {
2565 info->io_setup = mem_setup;
2566 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2567 }
2568
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002569 info->io.addr_data = resource.start;
2570
2571 info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE;
2572 info->io.regspacing = regspacing ? *regspacing : DEFAULT_REGSPACING;
2573 info->io.regshift = regshift ? *regshift : 0;
2574
Grant Likely61c7a082010-04-13 16:12:29 -07002575 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002576 info->dev = &dev->dev;
2577
Myron Stowe279fbd02010-05-26 14:43:52 -07002578 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002579 info->io.addr_data, info->io.regsize, info->io.regspacing,
2580 info->irq);
2581
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002582 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002583
Matthew Garrett2407d772010-05-26 14:43:46 -07002584 return add_smi(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002585}
2586
2587static int __devexit ipmi_of_remove(struct of_device *dev)
2588{
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002589 cleanup_one_si(dev_get_drvdata(&dev->dev));
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002590 return 0;
2591}
2592
2593static struct of_device_id ipmi_match[] =
2594{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002595 { .type = "ipmi", .compatible = "ipmi-kcs",
2596 .data = (void *)(unsigned long) SI_KCS },
2597 { .type = "ipmi", .compatible = "ipmi-smic",
2598 .data = (void *)(unsigned long) SI_SMIC },
2599 { .type = "ipmi", .compatible = "ipmi-bt",
2600 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002601 {},
2602};
2603
Corey Minyardc305e3d2008-04-29 01:01:10 -07002604static struct of_platform_driver ipmi_of_platform_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002605 .driver = {
2606 .name = "ipmi",
2607 .owner = THIS_MODULE,
2608 .of_match_table = ipmi_match,
2609 },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002610 .probe = ipmi_of_probe,
2611 .remove = __devexit_p(ipmi_of_remove),
2612};
2613#endif /* CONFIG_PPC_OF */
2614
Corey Minyard40112ae2009-04-21 12:24:03 -07002615static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Corey Minyard50c812b2006-03-26 01:37:21 -08002617 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002620 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002621 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2622 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002623 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 smi_result = smi_info->handlers->event(
2625 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002626 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 smi_result = smi_info->handlers->event(
2628 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002629 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 break;
2631 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002632 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002633 /*
2634 * We couldn't get the state machine to run, so whatever's at
2635 * the port is probably not an IPMI SMI interface.
2636 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002637 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Corey Minyard40112ae2009-04-21 12:24:03 -07002639 return 0;
2640}
2641
2642static int try_get_dev_id(struct smi_info *smi_info)
2643{
2644 unsigned char msg[2];
2645 unsigned char *resp;
2646 unsigned long resp_len;
2647 int rv = 0;
2648
2649 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2650 if (!resp)
2651 return -ENOMEM;
2652
2653 /*
2654 * Do a Get Device ID command, since it comes back with some
2655 * useful info.
2656 */
2657 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2658 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2659 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2660
2661 rv = wait_for_msg_done(smi_info);
2662 if (rv)
2663 goto out;
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2666 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Corey Minyardd8c98612007-10-18 03:07:11 -07002668 /* Check and record info from the get device id, in case we need it. */
2669 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671 out:
2672 kfree(resp);
2673 return rv;
2674}
2675
Corey Minyard40112ae2009-04-21 12:24:03 -07002676static int try_enable_event_buffer(struct smi_info *smi_info)
2677{
2678 unsigned char msg[3];
2679 unsigned char *resp;
2680 unsigned long resp_len;
2681 int rv = 0;
2682
2683 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2684 if (!resp)
2685 return -ENOMEM;
2686
2687 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2688 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2689 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2690
2691 rv = wait_for_msg_done(smi_info);
2692 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002693 printk(KERN_WARNING PFX "Error getting response from get"
2694 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002695 " enabled.\n");
2696 goto out;
2697 }
2698
2699 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2700 resp, IPMI_MAX_MSG_LENGTH);
2701
2702 if (resp_len < 4 ||
2703 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2704 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2705 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002706 printk(KERN_WARNING PFX "Invalid return from get global"
2707 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002708 rv = -EINVAL;
2709 goto out;
2710 }
2711
2712 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2713 /* buffer is already enabled, nothing to do. */
2714 goto out;
2715
2716 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2717 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2718 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2719 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2720
2721 rv = wait_for_msg_done(smi_info);
2722 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002723 printk(KERN_WARNING PFX "Error getting response from set"
2724 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002725 " enabled.\n");
2726 goto out;
2727 }
2728
2729 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2730 resp, IPMI_MAX_MSG_LENGTH);
2731
2732 if (resp_len < 3 ||
2733 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2734 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002735 printk(KERN_WARNING PFX "Invalid return from get global,"
2736 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002737 rv = -EINVAL;
2738 goto out;
2739 }
2740
2741 if (resp[2] != 0)
2742 /*
2743 * An error when setting the event buffer bit means
2744 * that the event buffer is not supported.
2745 */
2746 rv = -ENOENT;
2747 out:
2748 kfree(resp);
2749 return rv;
2750}
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752static int type_file_read_proc(char *page, char **start, off_t off,
2753 int count, int *eof, void *data)
2754{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 struct smi_info *smi = data;
2756
Corey Minyardb361e272006-12-06 20:41:07 -08002757 return sprintf(page, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
2760static int stat_file_read_proc(char *page, char **start, off_t off,
2761 int count, int *eof, void *data)
2762{
2763 char *out = (char *) page;
2764 struct smi_info *smi = data;
2765
2766 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002767 smi->irq && !smi->interrupt_disabled);
Corey Minyard64959e22008-04-29 01:01:07 -07002768 out += sprintf(out, "short_timeouts: %u\n",
2769 smi_get_stat(smi, short_timeouts));
2770 out += sprintf(out, "long_timeouts: %u\n",
2771 smi_get_stat(smi, long_timeouts));
Corey Minyard64959e22008-04-29 01:01:07 -07002772 out += sprintf(out, "idles: %u\n",
2773 smi_get_stat(smi, idles));
2774 out += sprintf(out, "interrupts: %u\n",
2775 smi_get_stat(smi, interrupts));
2776 out += sprintf(out, "attentions: %u\n",
2777 smi_get_stat(smi, attentions));
2778 out += sprintf(out, "flag_fetches: %u\n",
2779 smi_get_stat(smi, flag_fetches));
2780 out += sprintf(out, "hosed_count: %u\n",
2781 smi_get_stat(smi, hosed_count));
2782 out += sprintf(out, "complete_transactions: %u\n",
2783 smi_get_stat(smi, complete_transactions));
2784 out += sprintf(out, "events: %u\n",
2785 smi_get_stat(smi, events));
2786 out += sprintf(out, "watchdog_pretimeouts: %u\n",
2787 smi_get_stat(smi, watchdog_pretimeouts));
2788 out += sprintf(out, "incoming_messages: %u\n",
2789 smi_get_stat(smi, incoming_messages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Corey Minyardb361e272006-12-06 20:41:07 -08002791 return out - page;
2792}
2793
2794static int param_read_proc(char *page, char **start, off_t off,
2795 int count, int *eof, void *data)
2796{
2797 struct smi_info *smi = data;
2798
2799 return sprintf(page,
2800 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2801 si_to_str[smi->si_type],
2802 addr_space_to_str[smi->io.addr_type],
2803 smi->io.addr_data,
2804 smi->io.regspacing,
2805 smi->io.regsize,
2806 smi->io.regshift,
2807 smi->irq,
2808 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809}
2810
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002811/*
2812 * oem_data_avail_to_receive_msg_avail
2813 * @info - smi_info structure with msg_flags set
2814 *
2815 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2816 * Returns 1 indicating need to re-run handle_flags().
2817 */
2818static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2819{
Corey Minyarde8b33612005-09-06 15:18:45 -07002820 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002821 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002822 return 1;
2823}
2824
2825/*
2826 * setup_dell_poweredge_oem_data_handler
2827 * @info - smi_info.device_id must be populated
2828 *
2829 * Systems that match, but have firmware version < 1.40 may assert
2830 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2831 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2832 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2833 * as RECEIVE_MSG_AVAIL instead.
2834 *
2835 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2836 * assert the OEM[012] bits, and if it did, the driver would have to
2837 * change to handle that properly, we don't actually check for the
2838 * firmware version.
2839 * Device ID = 0x20 BMC on PowerEdge 8G servers
2840 * Device Revision = 0x80
2841 * Firmware Revision1 = 0x01 BMC version 1.40
2842 * Firmware Revision2 = 0x40 BCD encoded
2843 * IPMI Version = 0x51 IPMI 1.5
2844 * Manufacturer ID = A2 02 00 Dell IANA
2845 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002846 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2847 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2848 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002849 */
2850#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2851#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2852#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002853#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002854static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2855{
2856 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002857 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002858 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2859 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002860 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002861 smi_info->oem_data_avail_handler =
2862 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002863 } else if (ipmi_version_major(id) < 1 ||
2864 (ipmi_version_major(id) == 1 &&
2865 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002866 smi_info->oem_data_avail_handler =
2867 oem_data_avail_to_receive_msg_avail;
2868 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002869 }
2870}
2871
Corey Minyardea940272005-11-07 00:59:59 -08002872#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2873static void return_hosed_msg_badsize(struct smi_info *smi_info)
2874{
2875 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2876
2877 /* Make it a reponse */
2878 msg->rsp[0] = msg->data[0] | 4;
2879 msg->rsp[1] = msg->data[1];
2880 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2881 msg->rsp_size = 3;
2882 smi_info->curr_msg = NULL;
2883 deliver_recv_msg(smi_info, msg);
2884}
2885
2886/*
2887 * dell_poweredge_bt_xaction_handler
2888 * @info - smi_info.device_id must be populated
2889 *
2890 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2891 * not respond to a Get SDR command if the length of the data
2892 * requested is exactly 0x3A, which leads to command timeouts and no
2893 * data returned. This intercepts such commands, and causes userspace
2894 * callers to try again with a different-sized buffer, which succeeds.
2895 */
2896
2897#define STORAGE_NETFN 0x0A
2898#define STORAGE_CMD_GET_SDR 0x23
2899static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2900 unsigned long unused,
2901 void *in)
2902{
2903 struct smi_info *smi_info = in;
2904 unsigned char *data = smi_info->curr_msg->data;
2905 unsigned int size = smi_info->curr_msg->data_size;
2906 if (size >= 8 &&
2907 (data[0]>>2) == STORAGE_NETFN &&
2908 data[1] == STORAGE_CMD_GET_SDR &&
2909 data[7] == 0x3A) {
2910 return_hosed_msg_badsize(smi_info);
2911 return NOTIFY_STOP;
2912 }
2913 return NOTIFY_DONE;
2914}
2915
2916static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2917 .notifier_call = dell_poweredge_bt_xaction_handler,
2918};
2919
2920/*
2921 * setup_dell_poweredge_bt_xaction_handler
2922 * @info - smi_info.device_id must be filled in already
2923 *
2924 * Fills in smi_info.device_id.start_transaction_pre_hook
2925 * when we know what function to use there.
2926 */
2927static void
2928setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2929{
2930 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002931 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002932 smi_info->si_type == SI_BT)
2933 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2934}
2935
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002936/*
2937 * setup_oem_data_handler
2938 * @info - smi_info.device_id must be filled in already
2939 *
2940 * Fills in smi_info.device_id.oem_data_available_handler
2941 * when we know what function to use there.
2942 */
2943
2944static void setup_oem_data_handler(struct smi_info *smi_info)
2945{
2946 setup_dell_poweredge_oem_data_handler(smi_info);
2947}
2948
Corey Minyardea940272005-11-07 00:59:59 -08002949static void setup_xaction_handlers(struct smi_info *smi_info)
2950{
2951 setup_dell_poweredge_bt_xaction_handler(smi_info);
2952}
2953
Corey Minyarda9a2c442005-11-07 01:00:03 -08002954static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
2955{
Corey Minyard453823b2006-03-31 02:30:39 -08002956 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002957 /*
2958 * The timer and thread are only running if the
2959 * interface has been started up and registered.
2960 */
Corey Minyard453823b2006-03-31 02:30:39 -08002961 if (smi_info->thread != NULL)
2962 kthread_stop(smi_info->thread);
2963 del_timer_sync(&smi_info->si_timer);
2964 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08002965}
2966
Randy Dunlap74208842006-04-18 22:21:52 -07002967static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002969 int type;
2970 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07002971} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08002972{
2973 { .type = SI_KCS, .port = 0xca2 },
2974 { .type = SI_SMIC, .port = 0xca9 },
2975 { .type = SI_BT, .port = 0xe4 },
2976 { .port = 0 }
2977};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Corey Minyardb0defcd2006-03-26 01:37:20 -08002979static __devinit void default_find_bmc(void)
2980{
2981 struct smi_info *info;
2982 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Corey Minyardb0defcd2006-03-26 01:37:20 -08002984 for (i = 0; ; i++) {
2985 if (!ipmi_defaults[i].port)
2986 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07002987#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08002988 if (check_legacy_ioport(ipmi_defaults[i].port))
2989 continue;
2990#endif
Andrew Mortona09f4852008-08-20 14:09:14 -07002991 info = kzalloc(sizeof(*info), GFP_KERNEL);
2992 if (!info)
2993 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08002994
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002995 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002996
2997 info->si_type = ipmi_defaults[i].type;
2998 info->io_setup = port_setup;
2999 info->io.addr_data = ipmi_defaults[i].port;
3000 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3001
3002 info->io.addr = NULL;
3003 info->io.regspacing = DEFAULT_REGSPACING;
3004 info->io.regsize = DEFAULT_REGSPACING;
3005 info->io.regshift = 0;
3006
Matthew Garrett2407d772010-05-26 14:43:46 -07003007 if (add_smi(info) == 0) {
3008 if ((try_smi_init(info)) == 0) {
3009 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003010 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003011 " state machine at %s address 0x%lx\n",
3012 si_to_str[info->si_type],
3013 addr_space_to_str[info->io.addr_type],
3014 info->io.addr_data);
3015 } else
3016 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003017 }
3018 }
3019}
3020
3021static int is_new_interface(struct smi_info *info)
3022{
3023 struct smi_info *e;
3024
3025 list_for_each_entry(e, &smi_infos, link) {
3026 if (e->io.addr_type != info->io.addr_type)
3027 continue;
3028 if (e->io.addr_data == info->io.addr_data)
3029 return 0;
3030 }
3031
3032 return 1;
3033}
3034
Matthew Garrett2407d772010-05-26 14:43:46 -07003035static int add_smi(struct smi_info *new_smi)
3036{
3037 int rv = 0;
3038
Myron Stowe279fbd02010-05-26 14:43:52 -07003039 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Matthew Garrett2407d772010-05-26 14:43:46 -07003040 ipmi_addr_src_to_str[new_smi->addr_source],
3041 si_to_str[new_smi->si_type]);
3042 mutex_lock(&smi_infos_lock);
3043 if (!is_new_interface(new_smi)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003044 printk(KERN_CONT PFX "duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003045 rv = -EBUSY;
3046 goto out_err;
3047 }
3048
3049 printk(KERN_CONT "\n");
3050
3051 /* So we know not to free it unless we have allocated one. */
3052 new_smi->intf = NULL;
3053 new_smi->si_sm = NULL;
3054 new_smi->handlers = NULL;
3055
3056 list_add_tail(&new_smi->link, &smi_infos);
3057
3058out_err:
3059 mutex_unlock(&smi_infos_lock);
3060 return rv;
3061}
3062
Corey Minyardb0defcd2006-03-26 01:37:20 -08003063static int try_smi_init(struct smi_info *new_smi)
3064{
Matthew Garrett2407d772010-05-26 14:43:46 -07003065 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003066 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003067
Myron Stowe279fbd02010-05-26 14:43:52 -07003068 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003069 " machine at %s address 0x%lx, slave address 0x%x,"
3070 " irq %d\n",
3071 ipmi_addr_src_to_str[new_smi->addr_source],
3072 si_to_str[new_smi->si_type],
3073 addr_space_to_str[new_smi->io.addr_type],
3074 new_smi->io.addr_data,
3075 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003076
Corey Minyardb0defcd2006-03-26 01:37:20 -08003077 switch (new_smi->si_type) {
3078 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003080 break;
3081
3082 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003084 break;
3085
3086 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003088 break;
3089
3090 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 /* No support for anything else yet. */
3092 rv = -EIO;
3093 goto out_err;
3094 }
3095
3096 /* Allocate the state machine's data and initialize it. */
3097 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003098 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003099 printk(KERN_ERR PFX
3100 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 rv = -ENOMEM;
3102 goto out_err;
3103 }
3104 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3105 &new_smi->io);
3106
3107 /* Now that we know the I/O size, we can set up the I/O. */
3108 rv = new_smi->io_setup(new_smi);
3109 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003110 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 goto out_err;
3112 }
3113
3114 spin_lock_init(&(new_smi->si_lock));
3115 spin_lock_init(&(new_smi->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117 /* Do low-level detection first. */
3118 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003119 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003120 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 rv = -ENODEV;
3122 goto out_err;
3123 }
3124
Corey Minyardc305e3d2008-04-29 01:01:10 -07003125 /*
3126 * Attempt a get device id command. If it fails, we probably
3127 * don't have a BMC here.
3128 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003130 if (rv) {
3131 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003132 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003133 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003137 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003138 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
3141 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
3142 new_smi->curr_msg = NULL;
3143 atomic_set(&new_smi->req_events, 0);
3144 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003145 for (i = 0; i < SI_NUM_STATS; i++)
3146 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Matthew Garrettea4078c2010-05-26 14:43:48 -07003148 new_smi->interrupt_disabled = 1;
Corey Minyarda9a2c442005-11-07 01:00:03 -08003149 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003150 new_smi->intf_num = smi_num;
3151 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Corey Minyard40112ae2009-04-21 12:24:03 -07003153 rv = try_enable_event_buffer(new_smi);
3154 if (rv == 0)
3155 new_smi->has_event_buffer = 1;
3156
Corey Minyardc305e3d2008-04-29 01:01:10 -07003157 /*
3158 * Start clearing the flags before we enable interrupts or the
3159 * timer to avoid racing with the timer.
3160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 start_clear_flags(new_smi);
3162 /* IRQ is defined to be set when non-zero. */
3163 if (new_smi->irq)
3164 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3165
Corey Minyard50c812b2006-03-26 01:37:21 -08003166 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003167 /*
3168 * If we don't already have a device from something
3169 * else (like PCI), then register a new one.
3170 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003171 new_smi->pdev = platform_device_alloc("ipmi_si",
3172 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003173 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003174 printk(KERN_ERR PFX
3175 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003176 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003177 }
3178 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003179 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003180
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003181 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003182 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003183 printk(KERN_ERR PFX
3184 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003185 " %d\n",
3186 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003187 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003188 }
3189 new_smi->dev_registered = 1;
3190 }
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 rv = ipmi_register_smi(&handlers,
3193 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003194 &new_smi->device_id,
3195 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08003196 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08003197 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003199 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3200 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 goto out_err_stop_timer;
3202 }
3203
3204 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003205 type_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003206 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003208 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 goto out_err_stop_timer;
3210 }
3211
3212 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003213 stat_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003214 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003216 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 goto out_err_stop_timer;
3218 }
3219
Corey Minyardb361e272006-12-06 20:41:07 -08003220 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003221 param_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003222 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003223 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003224 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003225 goto out_err_stop_timer;
3226 }
3227
Myron Stowe279fbd02010-05-26 14:43:52 -07003228 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3229 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231 return 0;
3232
3233 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003234 atomic_inc(&new_smi->stop_operation);
3235 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 out_err:
Matthew Garrett2407d772010-05-26 14:43:46 -07003238 new_smi->interrupt_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Matthew Garrett2407d772010-05-26 14:43:46 -07003240 if (new_smi->intf) {
3241 ipmi_unregister_smi(new_smi->intf);
3242 new_smi->intf = NULL;
3243 }
3244
3245 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003246 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003247 new_smi->irq_cleanup = NULL;
3248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Corey Minyardc305e3d2008-04-29 01:01:10 -07003250 /*
3251 * Wait until we know that we are out of any interrupt
3252 * handlers might have been running before we freed the
3253 * interrupt.
3254 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003255 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
3257 if (new_smi->si_sm) {
3258 if (new_smi->handlers)
3259 new_smi->handlers->cleanup(new_smi->si_sm);
3260 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003261 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003263 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003264 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003265 new_smi->addr_source_cleanup = NULL;
3266 }
3267 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003268 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003269 new_smi->io_cleanup = NULL;
3270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Matthew Garrett2407d772010-05-26 14:43:46 -07003272 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003273 platform_device_unregister(new_smi->pdev);
Matthew Garrett2407d772010-05-26 14:43:46 -07003274 new_smi->dev_registered = 0;
3275 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 return rv;
3278}
3279
Corey Minyardb0defcd2006-03-26 01:37:20 -08003280static __devinit int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 int i;
3283 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003284 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003285 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003286 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 if (initialized)
3289 return 0;
3290 initialized = 1;
3291
Corey Minyard50c812b2006-03-26 01:37:21 -08003292 /* Register the device drivers. */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003293 rv = driver_register(&ipmi_driver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08003294 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003295 printk(KERN_ERR PFX "Unable to register driver: %d\n", rv);
Corey Minyard50c812b2006-03-26 01:37:21 -08003296 return rv;
3297 }
3298
3299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 /* Parse out the si_type string into its components. */
3301 str = si_type_str;
3302 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003303 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 si_type[i] = str;
3305 str = strchr(str, ',');
3306 if (str) {
3307 *str = '\0';
3308 str++;
3309 } else {
3310 break;
3311 }
3312 }
3313 }
3314
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003315 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
Corey Minyardb0defcd2006-03-26 01:37:20 -08003317 hardcode_find_bmc();
3318
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003319 /* If the user gave us a device, they presumably want us to use it */
3320 mutex_lock(&smi_infos_lock);
3321 if (!list_empty(&smi_infos)) {
3322 mutex_unlock(&smi_infos_lock);
3323 return 0;
3324 }
3325 mutex_unlock(&smi_infos_lock);
3326
Corey Minyardb0defcd2006-03-26 01:37:20 -08003327#ifdef CONFIG_PCI
Corey Minyard168b35a2006-12-06 20:41:11 -08003328 rv = pci_register_driver(&ipmi_pci_driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003329 if (rv)
Myron Stowe279fbd02010-05-26 14:43:52 -07003330 printk(KERN_ERR PFX "Unable to register PCI driver: %d\n", rv);
Matthew Garrett56480282010-06-29 15:05:29 -07003331 else
3332 pci_registered = 1;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003333#endif
3334
Matthew Garrett754d4532010-05-26 14:43:47 -07003335#ifdef CONFIG_ACPI
3336 pnp_register_driver(&ipmi_pnp_driver);
3337#endif
3338
3339#ifdef CONFIG_DMI
3340 dmi_find_bmc();
3341#endif
3342
3343#ifdef CONFIG_ACPI
3344 spmi_find_bmc();
3345#endif
3346
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003347#ifdef CONFIG_PPC_OF
3348 of_register_platform_driver(&ipmi_of_platform_driver);
Matthew Garrett56480282010-06-29 15:05:29 -07003349 of_registered = 1;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003350#endif
3351
Matthew Garrett06ee4592010-05-26 14:43:49 -07003352 /* We prefer devices with interrupts, but in the case of a machine
3353 with multiple BMCs we assume that there will be several instances
3354 of a given type so if we succeed in registering a type then also
3355 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003356
Matthew Garrett2407d772010-05-26 14:43:46 -07003357 mutex_lock(&smi_infos_lock);
3358 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003359 /* Try to register a device if it has an IRQ and we either
3360 haven't successfully registered a device yet or this
3361 device has the same type as one we successfully registered */
3362 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003363 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003364 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003365 }
3366 }
3367 }
3368
Matthew Garrett06ee4592010-05-26 14:43:49 -07003369 /* type will only have been set if we successfully registered an si */
3370 if (type) {
3371 mutex_unlock(&smi_infos_lock);
3372 return 0;
3373 }
3374
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003375 /* Fall back to the preferred device */
3376
3377 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003378 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003379 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003380 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003381 }
3382 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003383 }
3384 mutex_unlock(&smi_infos_lock);
3385
Matthew Garrett06ee4592010-05-26 14:43:49 -07003386 if (type)
3387 return 0;
3388
Corey Minyardb0defcd2006-03-26 01:37:20 -08003389 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003390 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003391 if (list_empty(&smi_infos)) {
3392 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003393 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003394 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003395 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003396 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Corey Minyardd6dfd132006-03-31 02:30:41 -08003399 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003400 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003401 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003402#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003403 if (pci_registered)
3404 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003405#endif
Christian Krafft10fb62e2007-05-12 10:37:01 -07003406
3407#ifdef CONFIG_PPC_OF
Matthew Garrett56480282010-06-29 15:05:29 -07003408 if (of_registered)
3409 of_unregister_platform_driver(&ipmi_of_platform_driver);
Christian Krafft10fb62e2007-05-12 10:37:01 -07003410#endif
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003411 driver_unregister(&ipmi_driver.driver);
Myron Stowe279fbd02010-05-26 14:43:52 -07003412 printk(KERN_WARNING PFX
3413 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003415 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003416 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419}
3420module_init(init_ipmi_si);
3421
Corey Minyardb361e272006-12-06 20:41:07 -08003422static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423{
Matthew Garrett2407d772010-05-26 14:43:46 -07003424 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 unsigned long flags;
3426
Corey Minyardb0defcd2006-03-26 01:37:20 -08003427 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return;
3429
Corey Minyardb0defcd2006-03-26 01:37:20 -08003430 list_del(&to_clean->link);
3431
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003432 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003433 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003434
Corey Minyardc305e3d2008-04-29 01:01:10 -07003435 /*
3436 * Make sure the timer and thread are stopped and will not run
3437 * again.
3438 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003439 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Corey Minyardc305e3d2008-04-29 01:01:10 -07003441 /*
3442 * Timeouts are stopped, now make sure the interrupts are off
3443 * for the device. A little tricky with locks to make sure
3444 * there are no races.
3445 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003446 spin_lock_irqsave(&to_clean->si_lock, flags);
3447 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3448 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3449 poll(to_clean);
3450 schedule_timeout_uninterruptible(1);
3451 spin_lock_irqsave(&to_clean->si_lock, flags);
3452 }
3453 disable_si_irq(to_clean);
3454 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3455 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3456 poll(to_clean);
3457 schedule_timeout_uninterruptible(1);
3458 }
3459
3460 /* Clean up interrupts and make sure that everything is done. */
3461 if (to_clean->irq_cleanup)
3462 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003463 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003465 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
3467
Matthew Garrett2407d772010-05-26 14:43:46 -07003468 if (to_clean->intf)
3469 rv = ipmi_unregister_smi(to_clean->intf);
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003472 printk(KERN_ERR PFX "Unable to unregister device: errno=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 rv);
3474 }
3475
Matthew Garrett2407d772010-05-26 14:43:46 -07003476 if (to_clean->handlers)
3477 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479 kfree(to_clean->si_sm);
3480
Corey Minyardb0defcd2006-03-26 01:37:20 -08003481 if (to_clean->addr_source_cleanup)
3482 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003483 if (to_clean->io_cleanup)
3484 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003485
3486 if (to_clean->dev_registered)
3487 platform_device_unregister(to_clean->pdev);
3488
3489 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
3492static __exit void cleanup_ipmi_si(void)
3493{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003494 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
Corey Minyardb0defcd2006-03-26 01:37:20 -08003496 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 return;
3498
Corey Minyardb0defcd2006-03-26 01:37:20 -08003499#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003500 if (pci_registered)
3501 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003502#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003503#ifdef CONFIG_ACPI
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003504 pnp_unregister_driver(&ipmi_pnp_driver);
3505#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003506
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003507#ifdef CONFIG_PPC_OF
Matthew Garrett56480282010-06-29 15:05:29 -07003508 if (of_registered)
3509 of_unregister_platform_driver(&ipmi_of_platform_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003510#endif
3511
Corey Minyardd6dfd132006-03-31 02:30:41 -08003512 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003513 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3514 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003515 mutex_unlock(&smi_infos_lock);
Corey Minyard50c812b2006-03-26 01:37:21 -08003516
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003517 driver_unregister(&ipmi_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518}
3519module_exit(cleanup_ipmi_si);
3520
3521MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003522MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003523MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3524 " system interfaces.");