blob: 9b9e1e915cf68ba7d81a2d7a24e63ed33fd0b246 [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;
305
Martin Wilckae74e822010-03-10 15:23:06 -0800306static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
307static int num_max_busy_us;
308
Corey Minyardb361e272006-12-06 20:41:07 -0800309static int unload_when_empty = 1;
310
Matthew Garrett2407d772010-05-26 14:43:46 -0700311static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800312static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800313static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800314
Alan Sterne041c682006-03-27 01:16:30 -0800315static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700316static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800317{
Alan Sterne041c682006-03-27 01:16:30 -0800318 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static void deliver_recv_msg(struct smi_info *smi_info,
322 struct ipmi_smi_msg *msg)
323{
324 /* Deliver the message to the upper layer with the lock
Corey Minyardc305e3d2008-04-29 01:01:10 -0700325 released. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 spin_unlock(&(smi_info->si_lock));
327 ipmi_smi_msg_received(smi_info->intf, msg);
328 spin_lock(&(smi_info->si_lock));
329}
330
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800331static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct ipmi_smi_msg *msg = smi_info->curr_msg;
334
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800335 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
336 cCode = IPMI_ERR_UNSPECIFIED;
337 /* else use it as is */
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* Make it a reponse */
340 msg->rsp[0] = msg->data[0] | 4;
341 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800342 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 msg->rsp_size = 3;
344
345 smi_info->curr_msg = NULL;
346 deliver_recv_msg(smi_info, msg);
347}
348
349static enum si_sm_result start_next_msg(struct smi_info *smi_info)
350{
351 int rv;
352 struct list_head *entry = NULL;
353#ifdef DEBUG_TIMING
354 struct timeval t;
355#endif
356
Corey Minyardc305e3d2008-04-29 01:01:10 -0700357 /*
358 * No need to save flags, we aleady have interrupts off and we
359 * already hold the SMI lock.
360 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700361 if (!smi_info->run_to_completion)
362 spin_lock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800365 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800367 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 entry = smi_info->xmit_msgs.next;
369 }
370
Corey Minyardb0defcd2006-03-26 01:37:20 -0800371 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 smi_info->curr_msg = NULL;
373 rv = SI_SM_IDLE;
374 } else {
375 int err;
376
377 list_del(entry);
378 smi_info->curr_msg = list_entry(entry,
379 struct ipmi_smi_msg,
380 link);
381#ifdef DEBUG_TIMING
382 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700383 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif
Alan Sterne041c682006-03-27 01:16:30 -0800385 err = atomic_notifier_call_chain(&xaction_notifier_list,
386 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800387 if (err & NOTIFY_STOP_MASK) {
388 rv = SI_SM_CALL_WITHOUT_DELAY;
389 goto out;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 err = smi_info->handlers->start_transaction(
392 smi_info->si_sm,
393 smi_info->curr_msg->data,
394 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700395 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800396 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 rv = SI_SM_CALL_WITHOUT_DELAY;
399 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700400 out:
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700401 if (!smi_info->run_to_completion)
402 spin_unlock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 return rv;
405}
406
407static void start_enable_irq(struct smi_info *smi_info)
408{
409 unsigned char msg[2];
410
Corey Minyardc305e3d2008-04-29 01:01:10 -0700411 /*
412 * If we are enabling interrupts, we have to tell the
413 * BMC to use them.
414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
416 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
417
418 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
419 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
420}
421
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700422static void start_disable_irq(struct smi_info *smi_info)
423{
424 unsigned char msg[2];
425
426 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_DISABLE_INTERRUPTS1;
431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433static void start_clear_flags(struct smi_info *smi_info)
434{
435 unsigned char msg[3];
436
437 /* Make sure the watchdog pre-timeout flag is not set at startup. */
438 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
439 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
440 msg[2] = WDT_PRE_TIMEOUT_INT;
441
442 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
443 smi_info->si_state = SI_CLEARING_FLAGS;
444}
445
Corey Minyardc305e3d2008-04-29 01:01:10 -0700446/*
447 * When we have a situtaion where we run out of memory and cannot
448 * allocate messages, we just leave them in the BMC and run the system
449 * polled until we can allocate some memory. Once we have some
450 * memory, we will re-enable the interrupt.
451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static inline void disable_si_irq(struct smi_info *smi_info)
453{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800454 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700455 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 smi_info->interrupt_disabled = 1;
457 }
458}
459
460static inline void enable_si_irq(struct smi_info *smi_info)
461{
462 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700463 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 smi_info->interrupt_disabled = 0;
465 }
466}
467
468static void handle_flags(struct smi_info *smi_info)
469{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700470 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
472 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700473 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 start_clear_flags(smi_info);
476 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
477 spin_unlock(&(smi_info->si_lock));
478 ipmi_smi_watchdog_pretimeout(smi_info->intf);
479 spin_lock(&(smi_info->si_lock));
480 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
481 /* Messages available. */
482 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800483 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 disable_si_irq(smi_info);
485 smi_info->si_state = SI_NORMAL;
486 return;
487 }
488 enable_si_irq(smi_info);
489
490 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
491 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
492 smi_info->curr_msg->data_size = 2;
493
494 smi_info->handlers->start_transaction(
495 smi_info->si_sm,
496 smi_info->curr_msg->data,
497 smi_info->curr_msg->data_size);
498 smi_info->si_state = SI_GETTING_MESSAGES;
499 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
500 /* Events available. */
501 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800502 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 disable_si_irq(smi_info);
504 smi_info->si_state = SI_NORMAL;
505 return;
506 }
507 enable_si_irq(smi_info);
508
509 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
510 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
511 smi_info->curr_msg->data_size = 2;
512
513 smi_info->handlers->start_transaction(
514 smi_info->si_sm,
515 smi_info->curr_msg->data,
516 smi_info->curr_msg->data_size);
517 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700518 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700519 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700520 if (smi_info->oem_data_avail_handler(smi_info))
521 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700522 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526static void handle_transaction_done(struct smi_info *smi_info)
527{
528 struct ipmi_smi_msg *msg;
529#ifdef DEBUG_TIMING
530 struct timeval t;
531
532 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700533 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#endif
535 switch (smi_info->si_state) {
536 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800537 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539
540 smi_info->curr_msg->rsp_size
541 = smi_info->handlers->get_result(
542 smi_info->si_sm,
543 smi_info->curr_msg->rsp,
544 IPMI_MAX_MSG_LENGTH);
545
Corey Minyardc305e3d2008-04-29 01:01:10 -0700546 /*
547 * Do this here becase deliver_recv_msg() releases the
548 * lock, and a new message can be put in during the
549 * time the lock is released.
550 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 msg = smi_info->curr_msg;
552 smi_info->curr_msg = NULL;
553 deliver_recv_msg(smi_info, msg);
554 break;
555
556 case SI_GETTING_FLAGS:
557 {
558 unsigned char msg[4];
559 unsigned int len;
560
561 /* We got the flags from the SMI, now handle them. */
562 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
563 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700564 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 smi_info->si_state = SI_NORMAL;
566 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700567 /*
568 * Hmm, no flags. That's technically illegal, but
569 * don't use uninitialized data.
570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 smi_info->si_state = SI_NORMAL;
572 } else {
573 smi_info->msg_flags = msg[3];
574 handle_flags(smi_info);
575 }
576 break;
577 }
578
579 case SI_CLEARING_FLAGS:
580 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
581 {
582 unsigned char msg[3];
583
584 /* We cleared the flags. */
585 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
586 if (msg[2] != 0) {
587 /* Error clearing flags */
588 printk(KERN_WARNING
589 "ipmi_si: Error clearing flags: %2.2x\n",
590 msg[2]);
591 }
592 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
593 start_enable_irq(smi_info);
594 else
595 smi_info->si_state = SI_NORMAL;
596 break;
597 }
598
599 case SI_GETTING_EVENTS:
600 {
601 smi_info->curr_msg->rsp_size
602 = smi_info->handlers->get_result(
603 smi_info->si_sm,
604 smi_info->curr_msg->rsp,
605 IPMI_MAX_MSG_LENGTH);
606
Corey Minyardc305e3d2008-04-29 01:01:10 -0700607 /*
608 * Do this here becase deliver_recv_msg() releases the
609 * lock, and a new message can be put in during the
610 * time the lock is released.
611 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 msg = smi_info->curr_msg;
613 smi_info->curr_msg = NULL;
614 if (msg->rsp[2] != 0) {
615 /* Error getting event, probably done. */
616 msg->done(msg);
617
618 /* Take off the event flag. */
619 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
620 handle_flags(smi_info);
621 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700622 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Corey Minyardc305e3d2008-04-29 01:01:10 -0700624 /*
625 * Do this before we deliver the message
626 * because delivering the message releases the
627 * lock and something else can mess with the
628 * state.
629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 handle_flags(smi_info);
631
632 deliver_recv_msg(smi_info, msg);
633 }
634 break;
635 }
636
637 case SI_GETTING_MESSAGES:
638 {
639 smi_info->curr_msg->rsp_size
640 = smi_info->handlers->get_result(
641 smi_info->si_sm,
642 smi_info->curr_msg->rsp,
643 IPMI_MAX_MSG_LENGTH);
644
Corey Minyardc305e3d2008-04-29 01:01:10 -0700645 /*
646 * Do this here becase deliver_recv_msg() releases the
647 * lock, and a new message can be put in during the
648 * time the lock is released.
649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 msg = smi_info->curr_msg;
651 smi_info->curr_msg = NULL;
652 if (msg->rsp[2] != 0) {
653 /* Error getting event, probably done. */
654 msg->done(msg);
655
656 /* Take off the msg flag. */
657 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
658 handle_flags(smi_info);
659 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700660 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Corey Minyardc305e3d2008-04-29 01:01:10 -0700662 /*
663 * Do this before we deliver the message
664 * because delivering the message releases the
665 * lock and something else can mess with the
666 * state.
667 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 handle_flags(smi_info);
669
670 deliver_recv_msg(smi_info, msg);
671 }
672 break;
673 }
674
675 case SI_ENABLE_INTERRUPTS1:
676 {
677 unsigned char msg[4];
678
679 /* We got the flags from the SMI, now handle them. */
680 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
681 if (msg[2] != 0) {
682 printk(KERN_WARNING
683 "ipmi_si: Could not enable interrupts"
684 ", failed get, using polled mode.\n");
685 smi_info->si_state = SI_NORMAL;
686 } else {
687 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
688 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700689 msg[2] = (msg[3] |
690 IPMI_BMC_RCV_MSG_INTR |
691 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 smi_info->handlers->start_transaction(
693 smi_info->si_sm, msg, 3);
694 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
695 }
696 break;
697 }
698
699 case SI_ENABLE_INTERRUPTS2:
700 {
701 unsigned char msg[4];
702
703 /* We got the flags from the SMI, now handle them. */
704 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
705 if (msg[2] != 0) {
706 printk(KERN_WARNING
707 "ipmi_si: Could not enable interrupts"
708 ", failed set, using polled mode.\n");
709 }
710 smi_info->si_state = SI_NORMAL;
711 break;
712 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700713
714 case SI_DISABLE_INTERRUPTS1:
715 {
716 unsigned char msg[4];
717
718 /* We got the flags from the SMI, now handle them. */
719 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
720 if (msg[2] != 0) {
721 printk(KERN_WARNING
722 "ipmi_si: Could not disable interrupts"
723 ", failed get.\n");
724 smi_info->si_state = SI_NORMAL;
725 } else {
726 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
727 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
728 msg[2] = (msg[3] &
729 ~(IPMI_BMC_RCV_MSG_INTR |
730 IPMI_BMC_EVT_MSG_INTR));
731 smi_info->handlers->start_transaction(
732 smi_info->si_sm, msg, 3);
733 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
734 }
735 break;
736 }
737
738 case SI_DISABLE_INTERRUPTS2:
739 {
740 unsigned char msg[4];
741
742 /* We got the flags from the SMI, now handle them. */
743 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
744 if (msg[2] != 0) {
745 printk(KERN_WARNING
746 "ipmi_si: Could not disable interrupts"
747 ", failed set.\n");
748 }
749 smi_info->si_state = SI_NORMAL;
750 break;
751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753}
754
Corey Minyardc305e3d2008-04-29 01:01:10 -0700755/*
756 * Called on timeouts and events. Timeouts should pass the elapsed
757 * time, interrupts should pass in zero. Must be called with
758 * si_lock held and interrupts disabled.
759 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
761 int time)
762{
763 enum si_sm_result si_sm_result;
764
765 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700766 /*
767 * There used to be a loop here that waited a little while
768 * (around 25us) before giving up. That turned out to be
769 * pointless, the minimum delays I was seeing were in the 300us
770 * range, which is far too long to wait in an interrupt. So
771 * we just run until the state machine tells us something
772 * happened or it needs a delay.
773 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
775 time = 0;
776 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Corey Minyardc305e3d2008-04-29 01:01:10 -0700779 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700780 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 handle_transaction_done(smi_info);
783 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700784 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700785 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Corey Minyardc305e3d2008-04-29 01:01:10 -0700787 /*
788 * Do the before return_hosed_msg, because that
789 * releases the lock.
790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 smi_info->si_state = SI_NORMAL;
792 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700793 /*
794 * If we were handling a user message, format
795 * a response to send to the upper layer to
796 * tell it about the error.
797 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800798 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
801 }
802
Corey Minyard4ea18422008-04-29 01:01:01 -0700803 /*
804 * We prefer handling attn over new messages. But don't do
805 * this if there is not yet an upper layer to handle anything.
806 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700807 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 unsigned char msg[2];
809
Corey Minyard64959e22008-04-29 01:01:07 -0700810 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Corey Minyardc305e3d2008-04-29 01:01:10 -0700812 /*
813 * Got a attn, send down a get message flags to see
814 * what's causing it. It would be better to handle
815 * this in the upper layer, but due to the way
816 * interrupts work with the SMI, that's not really
817 * possible.
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
820 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
821
822 smi_info->handlers->start_transaction(
823 smi_info->si_sm, msg, 2);
824 smi_info->si_state = SI_GETTING_FLAGS;
825 goto restart;
826 }
827
828 /* If we are currently idle, try to start the next message. */
829 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700830 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 si_sm_result = start_next_msg(smi_info);
833 if (si_sm_result != SI_SM_IDLE)
834 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700838 && (atomic_read(&smi_info->req_events))) {
839 /*
840 * We are idle and the upper layer requested that I fetch
841 * events, so do so.
842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800844
845 smi_info->curr_msg = ipmi_alloc_smi_msg();
846 if (!smi_info->curr_msg)
847 goto out;
848
849 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
850 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
851 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800854 smi_info->si_sm,
855 smi_info->curr_msg->data,
856 smi_info->curr_msg->data_size);
857 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto restart;
859 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800860 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return si_sm_result;
862}
863
864static void sender(void *send_info,
865 struct ipmi_smi_msg *msg,
866 int priority)
867{
868 struct smi_info *smi_info = send_info;
869 enum si_sm_result result;
870 unsigned long flags;
871#ifdef DEBUG_TIMING
872 struct timeval t;
873#endif
874
Corey Minyardb361e272006-12-06 20:41:07 -0800875 if (atomic_read(&smi_info->stop_operation)) {
876 msg->rsp[0] = msg->data[0] | 4;
877 msg->rsp[1] = msg->data[1];
878 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
879 msg->rsp_size = 3;
880 deliver_recv_msg(smi_info, msg);
881 return;
882 }
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#ifdef DEBUG_TIMING
885 do_gettimeofday(&t);
886 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
887#endif
888
889 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700890 /*
891 * If we are running to completion, then throw it in
892 * the list and run transactions until everything is
893 * clear. Priority doesn't matter here.
894 */
895
896 /*
897 * Run to completion means we are single-threaded, no
898 * need for locks.
899 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 result = smi_event_handler(smi_info, 0);
903 while (result != SI_SM_IDLE) {
904 udelay(SI_SHORT_TIMEOUT_USEC);
905 result = smi_event_handler(smi_info,
906 SI_SHORT_TIMEOUT_USEC);
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Corey Minyardbda4c302008-04-29 01:01:02 -0700911 spin_lock_irqsave(&smi_info->msg_lock, flags);
912 if (priority > 0)
913 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
914 else
915 list_add_tail(&msg->link, &smi_info->xmit_msgs);
916 spin_unlock_irqrestore(&smi_info->msg_lock, flags);
917
918 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700919 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 start_next_msg(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700921 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924static void set_run_to_completion(void *send_info, int i_run_to_completion)
925{
926 struct smi_info *smi_info = send_info;
927 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 smi_info->run_to_completion = i_run_to_completion;
930 if (i_run_to_completion) {
931 result = smi_event_handler(smi_info, 0);
932 while (result != SI_SM_IDLE) {
933 udelay(SI_SHORT_TIMEOUT_USEC);
934 result = smi_event_handler(smi_info,
935 SI_SHORT_TIMEOUT_USEC);
936 }
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Martin Wilckae74e822010-03-10 15:23:06 -0800940/*
941 * Use -1 in the nsec value of the busy waiting timespec to tell that
942 * we are spinning in kipmid looking for something and not delaying
943 * between checks
944 */
945static inline void ipmi_si_set_not_busy(struct timespec *ts)
946{
947 ts->tv_nsec = -1;
948}
949static inline int ipmi_si_is_busy(struct timespec *ts)
950{
951 return ts->tv_nsec != -1;
952}
953
954static int ipmi_thread_busy_wait(enum si_sm_result smi_result,
955 const struct smi_info *smi_info,
956 struct timespec *busy_until)
957{
958 unsigned int max_busy_us = 0;
959
960 if (smi_info->intf_num < num_max_busy_us)
961 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
962 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
963 ipmi_si_set_not_busy(busy_until);
964 else if (!ipmi_si_is_busy(busy_until)) {
965 getnstimeofday(busy_until);
966 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
967 } else {
968 struct timespec now;
969 getnstimeofday(&now);
970 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
971 ipmi_si_set_not_busy(busy_until);
972 return 0;
973 }
974 }
975 return 1;
976}
977
978
979/*
980 * A busy-waiting loop for speeding up IPMI operation.
981 *
982 * Lousy hardware makes this hard. This is only enabled for systems
983 * that are not BT and do not have interrupts. It starts spinning
984 * when an operation is complete or until max_busy tells it to stop
985 * (if that is enabled). See the paragraph on kimid_max_busy_us in
986 * Documentation/IPMI.txt for details.
987 */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800988static int ipmi_thread(void *data)
989{
990 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -0800991 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800992 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -0800993 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800994
Martin Wilckae74e822010-03-10 15:23:06 -0800995 ipmi_si_set_not_busy(&busy_until);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800996 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -0800997 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -0800998 int busy_wait;
999
Corey Minyarda9a2c442005-11-07 01:00:03 -08001000 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001001 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001002 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001003 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1004 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001005 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1006 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001007 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001008 schedule();
Matt Domsche9a705a2005-11-07 01:00:04 -08001009 else
Martin Wilckae74e822010-03-10 15:23:06 -08001010 schedule_timeout_interruptible(0);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001011 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001012 return 0;
1013}
1014
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static void poll(void *send_info)
1017{
1018 struct smi_info *smi_info = send_info;
Corey Minyardfcfa4722007-10-18 03:07:09 -07001019 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Corey Minyard15c62e12006-12-06 20:41:06 -08001021 /*
1022 * Make sure there is some delay in the poll loop so we can
1023 * drive time forward and timeout things.
1024 */
1025 udelay(10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001026 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001027 smi_event_handler(smi_info, 10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001028 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031static void request_events(void *send_info)
1032{
1033 struct smi_info *smi_info = send_info;
1034
Corey Minyard40112ae2009-04-21 12:24:03 -07001035 if (atomic_read(&smi_info->stop_operation) ||
1036 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001037 return;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 atomic_set(&smi_info->req_events, 1);
1040}
1041
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001042static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044static void smi_timeout(unsigned long data)
1045{
1046 struct smi_info *smi_info = (struct smi_info *) data;
1047 enum si_sm_result smi_result;
1048 unsigned long flags;
1049 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001050 long time_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051#ifdef DEBUG_TIMING
1052 struct timeval t;
1053#endif
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 spin_lock_irqsave(&(smi_info->si_lock), flags);
1056#ifdef DEBUG_TIMING
1057 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001058 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059#endif
1060 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001061 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 * SI_USEC_PER_JIFFY);
1063 smi_result = smi_event_handler(smi_info, time_diff);
1064
1065 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1066
1067 smi_info->last_timeout_jiffies = jiffies_now;
1068
Corey Minyardb0defcd2006-03-26 01:37:20 -08001069 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* Running with interrupts, only do long timeouts. */
1071 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001072 smi_inc_stat(smi_info, long_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 goto do_add_timer;
1074 }
1075
Corey Minyardc305e3d2008-04-29 01:01:10 -07001076 /*
1077 * If the state machine asks for a short delay, then shorten
1078 * the timer timeout.
1079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001081 smi_inc_stat(smi_info, short_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 smi_info->si_timer.expires = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001084 smi_inc_stat(smi_info, long_timeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 smi_info->si_timer.expires = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
1088 do_add_timer:
1089 add_timer(&(smi_info->si_timer));
1090}
1091
David Howells7d12e782006-10-05 14:55:46 +01001092static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 struct smi_info *smi_info = data;
1095 unsigned long flags;
1096#ifdef DEBUG_TIMING
1097 struct timeval t;
1098#endif
1099
1100 spin_lock_irqsave(&(smi_info->si_lock), flags);
1101
Corey Minyard64959e22008-04-29 01:01:07 -07001102 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104#ifdef DEBUG_TIMING
1105 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001106 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107#endif
1108 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1110 return IRQ_HANDLED;
1111}
1112
David Howells7d12e782006-10-05 14:55:46 +01001113static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001114{
1115 struct smi_info *smi_info = data;
1116 /* We need to clear the IRQ flag for the BT interface. */
1117 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1118 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1119 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001120 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001121}
1122
Corey Minyard453823b2006-03-31 02:30:39 -08001123static int smi_start_processing(void *send_info,
1124 ipmi_smi_t intf)
1125{
1126 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001127 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001128
1129 new_smi->intf = intf;
1130
Corey Minyardc45adc32007-10-18 03:07:08 -07001131 /* Try to claim any interrupts. */
1132 if (new_smi->irq_setup)
1133 new_smi->irq_setup(new_smi);
1134
Corey Minyard453823b2006-03-31 02:30:39 -08001135 /* Set up the timer that drives the interface. */
1136 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1137 new_smi->last_timeout_jiffies = jiffies;
1138 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1139
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001140 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001141 * Check if the user forcefully enabled the daemon.
1142 */
1143 if (new_smi->intf_num < num_force_kipmid)
1144 enable = force_kipmid[new_smi->intf_num];
1145 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001146 * The BT interface is efficient enough to not need a thread,
1147 * and there is no need for a thread if we have interrupts.
1148 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001149 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001150 enable = 1;
1151
1152 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001153 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1154 "kipmi%d", new_smi->intf_num);
1155 if (IS_ERR(new_smi->thread)) {
1156 printk(KERN_NOTICE "ipmi_si_intf: Could not start"
1157 " kernel thread due to error %ld, only using"
1158 " timers to drive the interface\n",
1159 PTR_ERR(new_smi->thread));
1160 new_smi->thread = NULL;
1161 }
1162 }
1163
1164 return 0;
1165}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001166
Corey Minyardb9675132006-12-06 20:41:02 -08001167static void set_maintenance_mode(void *send_info, int enable)
1168{
1169 struct smi_info *smi_info = send_info;
1170
1171 if (!enable)
1172 atomic_set(&smi_info->req_events, 0);
1173}
1174
Corey Minyardc305e3d2008-04-29 01:01:10 -07001175static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001177 .start_processing = smi_start_processing,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 .sender = sender,
1179 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001180 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 .set_run_to_completion = set_run_to_completion,
1182 .poll = poll,
1183};
1184
Corey Minyardc305e3d2008-04-29 01:01:10 -07001185/*
1186 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1187 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Corey Minyardb0defcd2006-03-26 01:37:20 -08001190static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001191static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001192static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001195#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197static int si_trydefaults = 1;
1198static char *si_type[SI_MAX_PARMS];
1199#define MAX_SI_TYPE_STR 30
1200static char si_type_str[MAX_SI_TYPE_STR];
1201static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001202static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001204static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001206static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001208static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001210static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001212static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001213static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001214static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Corey Minyardb361e272006-12-06 20:41:07 -08001216#define IPMI_IO_ADDR_SPACE 0
1217#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001218static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001219
1220static int hotmod_handler(const char *val, struct kernel_param *kp);
1221
1222module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1223MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1224 " Documentation/IPMI.txt in the kernel sources for the"
1225 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227module_param_named(trydefaults, si_trydefaults, bool, 0);
1228MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1229 " default scan of the KCS and SMIC interface at the standard"
1230 " address");
1231module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1232MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1233 " interface separated by commas. The types are 'kcs',"
1234 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1235 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001236module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1238 " addresses separated by commas. Only use if an interface"
1239 " is in memory. Otherwise, set it to zero or leave"
1240 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001241module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1243 " addresses separated by commas. Only use if an interface"
1244 " is a port. Otherwise, set it to zero or leave"
1245 " it blank.");
1246module_param_array(irqs, int, &num_irqs, 0);
1247MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1248 " addresses separated by commas. Only use if an interface"
1249 " has an interrupt. Otherwise, set it to zero or leave"
1250 " it blank.");
1251module_param_array(regspacings, int, &num_regspacings, 0);
1252MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1253 " and each successive register used by the interface. For"
1254 " instance, if the start address is 0xca2 and the spacing"
1255 " is 2, then the second address is at 0xca4. Defaults"
1256 " to 1.");
1257module_param_array(regsizes, int, &num_regsizes, 0);
1258MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1259 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1260 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1261 " the 8-bit IPMI register has to be read from a larger"
1262 " register.");
1263module_param_array(regshifts, int, &num_regshifts, 0);
1264MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1265 " IPMI register, in bits. For instance, if the data"
1266 " is read from a 32-bit word and the IPMI data is in"
1267 " bit 8-15, then the shift would be 8");
1268module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1269MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1270 " the controller. Normally this is 0x20, but can be"
1271 " overridden by this parm. This is an array indexed"
1272 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001273module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1274MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1275 " disabled(0). Normally the IPMI driver auto-detects"
1276 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001277module_param(unload_when_empty, int, 0);
1278MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1279 " specified or found, default is 1. Setting to 0"
1280 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001281module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1282MODULE_PARM_DESC(kipmid_max_busy_us,
1283 "Max time (in microseconds) to busy-wait for IPMI data before"
1284 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1285 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287
Corey Minyardb0defcd2006-03-26 01:37:20 -08001288static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001290 if (info->si_type == SI_BT)
1291 /* Disable the interrupt in the BT interface. */
1292 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1293 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296static int std_irq_setup(struct smi_info *info)
1297{
1298 int rv;
1299
Corey Minyardb0defcd2006-03-26 01:37:20 -08001300 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return 0;
1302
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001303 if (info->si_type == SI_BT) {
1304 rv = request_irq(info->irq,
1305 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001306 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001307 DEVICE_NAME,
1308 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001309 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001310 /* Enable the interrupt in the BT interface. */
1311 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1312 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1313 } else
1314 rv = request_irq(info->irq,
1315 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001316 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001317 DEVICE_NAME,
1318 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (rv) {
1320 printk(KERN_WARNING
1321 "ipmi_si: %s unable to claim interrupt %d,"
1322 " running polled\n",
1323 DEVICE_NAME, info->irq);
1324 info->irq = 0;
1325 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001326 info->irq_cleanup = std_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 printk(" Using irq %d\n", info->irq);
1328 }
1329
1330 return rv;
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1334{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001335 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Corey Minyardb0defcd2006-03-26 01:37:20 -08001337 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340static void port_outb(struct si_sm_io *io, unsigned int offset,
1341 unsigned char b)
1342{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001343 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Corey Minyardb0defcd2006-03-26 01:37:20 -08001345 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
1348static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1349{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001350 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Corey Minyardb0defcd2006-03-26 01:37:20 -08001352 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355static void port_outw(struct si_sm_io *io, unsigned int offset,
1356 unsigned char b)
1357{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001358 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Corey Minyardb0defcd2006-03-26 01:37:20 -08001360 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1364{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001365 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Corey Minyardb0defcd2006-03-26 01:37:20 -08001367 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370static void port_outl(struct si_sm_io *io, unsigned int offset,
1371 unsigned char b)
1372{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001373 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Corey Minyardb0defcd2006-03-26 01:37:20 -08001375 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
1378static void port_cleanup(struct smi_info *info)
1379{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001380 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001381 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Corey Minyardb0defcd2006-03-26 01:37:20 -08001383 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001384 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001385 release_region(addr + idx * info->io.regspacing,
1386 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
1390static int port_setup(struct smi_info *info)
1391{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001392 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001393 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Corey Minyardb0defcd2006-03-26 01:37:20 -08001395 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return -ENODEV;
1397
1398 info->io_cleanup = port_cleanup;
1399
Corey Minyardc305e3d2008-04-29 01:01:10 -07001400 /*
1401 * Figure out the actual inb/inw/inl/etc routine to use based
1402 * upon the register size.
1403 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 switch (info->io.regsize) {
1405 case 1:
1406 info->io.inputb = port_inb;
1407 info->io.outputb = port_outb;
1408 break;
1409 case 2:
1410 info->io.inputb = port_inw;
1411 info->io.outputb = port_outw;
1412 break;
1413 case 4:
1414 info->io.inputb = port_inl;
1415 info->io.outputb = port_outl;
1416 break;
1417 default:
Corey Minyardc305e3d2008-04-29 01:01:10 -07001418 printk(KERN_WARNING "ipmi_si: Invalid register size: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 info->io.regsize);
1420 return -EINVAL;
1421 }
1422
Corey Minyardc305e3d2008-04-29 01:01:10 -07001423 /*
1424 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001425 * tables. This causes problems when trying to register the
1426 * entire I/O region. Therefore we must register each I/O
1427 * port separately.
1428 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001429 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001430 if (request_region(addr + idx * info->io.regspacing,
1431 info->io.regsize, DEVICE_NAME) == NULL) {
1432 /* Undo allocations */
1433 while (idx--) {
1434 release_region(addr + idx * info->io.regspacing,
1435 info->io.regsize);
1436 }
1437 return -EIO;
1438 }
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return 0;
1441}
1442
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001443static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 return readb((io->addr)+(offset * io->regspacing));
1446}
1447
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001448static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 unsigned char b)
1450{
1451 writeb(b, (io->addr)+(offset * io->regspacing));
1452}
1453
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001454static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
1456 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001457 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001460static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 unsigned char b)
1462{
1463 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1464}
1465
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001466static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001469 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001472static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 unsigned char b)
1474{
1475 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1476}
1477
1478#ifdef readq
1479static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1480{
1481 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001482 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485static void mem_outq(struct si_sm_io *io, unsigned int offset,
1486 unsigned char b)
1487{
1488 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1489}
1490#endif
1491
1492static void mem_cleanup(struct smi_info *info)
1493{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001494 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int mapsize;
1496
1497 if (info->io.addr) {
1498 iounmap(info->io.addr);
1499
1500 mapsize = ((info->io_size * info->io.regspacing)
1501 - (info->io.regspacing - info->io.regsize));
1502
Corey Minyardb0defcd2006-03-26 01:37:20 -08001503 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
1507static int mem_setup(struct smi_info *info)
1508{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001509 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 int mapsize;
1511
Corey Minyardb0defcd2006-03-26 01:37:20 -08001512 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return -ENODEV;
1514
1515 info->io_cleanup = mem_cleanup;
1516
Corey Minyardc305e3d2008-04-29 01:01:10 -07001517 /*
1518 * Figure out the actual readb/readw/readl/etc routine to use based
1519 * upon the register size.
1520 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 switch (info->io.regsize) {
1522 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001523 info->io.inputb = intf_mem_inb;
1524 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 break;
1526 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001527 info->io.inputb = intf_mem_inw;
1528 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 break;
1530 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001531 info->io.inputb = intf_mem_inl;
1532 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 break;
1534#ifdef readq
1535 case 8:
1536 info->io.inputb = mem_inq;
1537 info->io.outputb = mem_outq;
1538 break;
1539#endif
1540 default:
Corey Minyardc305e3d2008-04-29 01:01:10 -07001541 printk(KERN_WARNING "ipmi_si: Invalid register size: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 info->io.regsize);
1543 return -EINVAL;
1544 }
1545
Corey Minyardc305e3d2008-04-29 01:01:10 -07001546 /*
1547 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * unusual looking calculation, but it avoids claiming any
1549 * more memory than it has to. It will claim everything
1550 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001551 * register.
1552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 mapsize = ((info->io_size * info->io.regspacing)
1554 - (info->io.regspacing - info->io.regsize));
1555
Corey Minyardb0defcd2006-03-26 01:37:20 -08001556 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return -EIO;
1558
Corey Minyardb0defcd2006-03-26 01:37:20 -08001559 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001561 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return -EIO;
1563 }
1564 return 0;
1565}
1566
Corey Minyardb361e272006-12-06 20:41:07 -08001567/*
1568 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1569 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1570 * Options are:
1571 * rsp=<regspacing>
1572 * rsi=<regsize>
1573 * rsh=<regshift>
1574 * irq=<irq>
1575 * ipmb=<ipmb addr>
1576 */
1577enum hotmod_op { HM_ADD, HM_REMOVE };
1578struct hotmod_vals {
1579 char *name;
1580 int val;
1581};
1582static struct hotmod_vals hotmod_ops[] = {
1583 { "add", HM_ADD },
1584 { "remove", HM_REMOVE },
1585 { NULL }
1586};
1587static struct hotmod_vals hotmod_si[] = {
1588 { "kcs", SI_KCS },
1589 { "smic", SI_SMIC },
1590 { "bt", SI_BT },
1591 { NULL }
1592};
1593static struct hotmod_vals hotmod_as[] = {
1594 { "mem", IPMI_MEM_ADDR_SPACE },
1595 { "i/o", IPMI_IO_ADDR_SPACE },
1596 { NULL }
1597};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001598
Corey Minyardb361e272006-12-06 20:41:07 -08001599static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1600{
1601 char *s;
1602 int i;
1603
1604 s = strchr(*curr, ',');
1605 if (!s) {
1606 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1607 return -EINVAL;
1608 }
1609 *s = '\0';
1610 s++;
1611 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001612 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001613 *val = v[i].val;
1614 *curr = s;
1615 return 0;
1616 }
1617 }
1618
1619 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1620 return -EINVAL;
1621}
1622
Corey Minyard1d5636c2006-12-10 02:19:08 -08001623static int check_hotmod_int_op(const char *curr, const char *option,
1624 const char *name, int *val)
1625{
1626 char *n;
1627
1628 if (strcmp(curr, name) == 0) {
1629 if (!option) {
1630 printk(KERN_WARNING PFX
1631 "No option given for '%s'\n",
1632 curr);
1633 return -EINVAL;
1634 }
1635 *val = simple_strtoul(option, &n, 0);
1636 if ((*n != '\0') || (*option == '\0')) {
1637 printk(KERN_WARNING PFX
1638 "Bad option given for '%s'\n",
1639 curr);
1640 return -EINVAL;
1641 }
1642 return 1;
1643 }
1644 return 0;
1645}
1646
Corey Minyardb361e272006-12-06 20:41:07 -08001647static int hotmod_handler(const char *val, struct kernel_param *kp)
1648{
1649 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001650 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001651 char *next, *curr, *s, *n, *o;
1652 enum hotmod_op op;
1653 enum si_type si_type;
1654 int addr_space;
1655 unsigned long addr;
1656 int regspacing;
1657 int regsize;
1658 int regshift;
1659 int irq;
1660 int ipmb;
1661 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001662 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001663 struct smi_info *info;
1664
1665 if (!str)
1666 return -ENOMEM;
1667
1668 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001669 len = strlen(str);
1670 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001671 while ((ival >= 0) && isspace(str[ival])) {
1672 str[ival] = '\0';
1673 ival--;
1674 }
1675
1676 for (curr = str; curr; curr = next) {
1677 regspacing = 1;
1678 regsize = 1;
1679 regshift = 0;
1680 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001681 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001682
1683 next = strchr(curr, ':');
1684 if (next) {
1685 *next = '\0';
1686 next++;
1687 }
1688
1689 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1690 if (rv)
1691 break;
1692 op = ival;
1693
1694 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1695 if (rv)
1696 break;
1697 si_type = ival;
1698
1699 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1700 if (rv)
1701 break;
1702
1703 s = strchr(curr, ',');
1704 if (s) {
1705 *s = '\0';
1706 s++;
1707 }
1708 addr = simple_strtoul(curr, &n, 0);
1709 if ((*n != '\0') || (*curr == '\0')) {
1710 printk(KERN_WARNING PFX "Invalid hotmod address"
1711 " '%s'\n", curr);
1712 break;
1713 }
1714
1715 while (s) {
1716 curr = s;
1717 s = strchr(curr, ',');
1718 if (s) {
1719 *s = '\0';
1720 s++;
1721 }
1722 o = strchr(curr, '=');
1723 if (o) {
1724 *o = '\0';
1725 o++;
1726 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001727 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1728 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001729 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001730 else if (rv)
1731 continue;
1732 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1733 if (rv < 0)
1734 goto out;
1735 else if (rv)
1736 continue;
1737 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1738 if (rv < 0)
1739 goto out;
1740 else if (rv)
1741 continue;
1742 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1743 if (rv < 0)
1744 goto out;
1745 else if (rv)
1746 continue;
1747 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1748 if (rv < 0)
1749 goto out;
1750 else if (rv)
1751 continue;
1752
1753 rv = -EINVAL;
1754 printk(KERN_WARNING PFX
1755 "Invalid hotmod option '%s'\n",
1756 curr);
1757 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001758 }
1759
1760 if (op == HM_ADD) {
1761 info = kzalloc(sizeof(*info), GFP_KERNEL);
1762 if (!info) {
1763 rv = -ENOMEM;
1764 goto out;
1765 }
1766
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001767 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001768 info->si_type = si_type;
1769 info->io.addr_data = addr;
1770 info->io.addr_type = addr_space;
1771 if (addr_space == IPMI_MEM_ADDR_SPACE)
1772 info->io_setup = mem_setup;
1773 else
1774 info->io_setup = port_setup;
1775
1776 info->io.addr = NULL;
1777 info->io.regspacing = regspacing;
1778 if (!info->io.regspacing)
1779 info->io.regspacing = DEFAULT_REGSPACING;
1780 info->io.regsize = regsize;
1781 if (!info->io.regsize)
1782 info->io.regsize = DEFAULT_REGSPACING;
1783 info->io.regshift = regshift;
1784 info->irq = irq;
1785 if (info->irq)
1786 info->irq_setup = std_irq_setup;
1787 info->slave_addr = ipmb;
1788
Matthew Garrett2407d772010-05-26 14:43:46 -07001789 if (!add_smi(info))
1790 if (try_smi_init(info))
1791 cleanup_one_si(info);
Corey Minyardb361e272006-12-06 20:41:07 -08001792 } else {
1793 /* remove */
1794 struct smi_info *e, *tmp_e;
1795
1796 mutex_lock(&smi_infos_lock);
1797 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1798 if (e->io.addr_type != addr_space)
1799 continue;
1800 if (e->si_type != si_type)
1801 continue;
1802 if (e->io.addr_data == addr)
1803 cleanup_one_si(e);
1804 }
1805 mutex_unlock(&smi_infos_lock);
1806 }
1807 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001808 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001809 out:
1810 kfree(str);
1811 return rv;
1812}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001813
1814static __devinit void hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001816 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 struct smi_info *info;
1818
Corey Minyardb0defcd2006-03-26 01:37:20 -08001819 for (i = 0; i < SI_MAX_PARMS; i++) {
1820 if (!ports[i] && !addrs[i])
1821 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Corey Minyardb0defcd2006-03-26 01:37:20 -08001823 info = kzalloc(sizeof(*info), GFP_KERNEL);
1824 if (!info)
1825 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001827 info->addr_source = SI_HARDCODED;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001828
Corey Minyard1d5636c2006-12-10 02:19:08 -08001829 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001830 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001831 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001832 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001833 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001834 info->si_type = SI_BT;
1835 } else {
1836 printk(KERN_WARNING
1837 "ipmi_si: Interface type specified "
1838 "for interface %d, was invalid: %s\n",
1839 i, si_type[i]);
1840 kfree(info);
1841 continue;
1842 }
1843
1844 if (ports[i]) {
1845 /* An I/O port */
1846 info->io_setup = port_setup;
1847 info->io.addr_data = ports[i];
1848 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1849 } else if (addrs[i]) {
1850 /* A memory port */
1851 info->io_setup = mem_setup;
1852 info->io.addr_data = addrs[i];
1853 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1854 } else {
1855 printk(KERN_WARNING
1856 "ipmi_si: Interface type specified "
1857 "for interface %d, "
1858 "but port and address were not set or "
1859 "set to zero.\n", i);
1860 kfree(info);
1861 continue;
1862 }
1863
1864 info->io.addr = NULL;
1865 info->io.regspacing = regspacings[i];
1866 if (!info->io.regspacing)
1867 info->io.regspacing = DEFAULT_REGSPACING;
1868 info->io.regsize = regsizes[i];
1869 if (!info->io.regsize)
1870 info->io.regsize = DEFAULT_REGSPACING;
1871 info->io.regshift = regshifts[i];
1872 info->irq = irqs[i];
1873 if (info->irq)
1874 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001875 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08001876
Matthew Garrett2407d772010-05-26 14:43:46 -07001877 if (!add_smi(info))
1878 if (try_smi_init(info))
1879 cleanup_one_si(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Len Brown84663612005-08-24 12:09:07 -04001883#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885#include <linux/acpi.h>
1886
Corey Minyardc305e3d2008-04-29 01:01:10 -07001887/*
1888 * Once we get an ACPI failure, we don't try any more, because we go
1889 * through the tables sequentially. Once we don't find a table, there
1890 * are no more.
1891 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001892static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894/* For GPE-type interrupts. */
1895static u32 ipmi_acpi_gpe(void *context)
1896{
1897 struct smi_info *smi_info = context;
1898 unsigned long flags;
1899#ifdef DEBUG_TIMING
1900 struct timeval t;
1901#endif
1902
1903 spin_lock_irqsave(&(smi_info->si_lock), flags);
1904
Corey Minyard64959e22008-04-29 01:01:07 -07001905 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907#ifdef DEBUG_TIMING
1908 do_gettimeofday(&t);
1909 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1910#endif
1911 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1913
1914 return ACPI_INTERRUPT_HANDLED;
1915}
1916
Corey Minyardb0defcd2006-03-26 01:37:20 -08001917static void acpi_gpe_irq_cleanup(struct smi_info *info)
1918{
1919 if (!info->irq)
1920 return;
1921
1922 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1923}
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925static int acpi_gpe_irq_setup(struct smi_info *info)
1926{
1927 acpi_status status;
1928
Corey Minyardb0defcd2006-03-26 01:37:20 -08001929 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return 0;
1931
1932 /* FIXME - is level triggered right? */
1933 status = acpi_install_gpe_handler(NULL,
1934 info->irq,
1935 ACPI_GPE_LEVEL_TRIGGERED,
1936 &ipmi_acpi_gpe,
1937 info);
1938 if (status != AE_OK) {
1939 printk(KERN_WARNING
1940 "ipmi_si: %s unable to claim ACPI GPE %d,"
1941 " running polled\n",
1942 DEVICE_NAME, info->irq);
1943 info->irq = 0;
1944 return -EINVAL;
1945 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001946 info->irq_cleanup = acpi_gpe_irq_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 printk(" Using ACPI GPE %d\n", info->irq);
1948 return 0;
1949 }
1950}
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952/*
1953 * Defined at
Corey Minyardc305e3d2008-04-29 01:01:10 -07001954 * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/
1955 * Docs/TechPapers/IA64/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 */
1957struct SPMITable {
1958 s8 Signature[4];
1959 u32 Length;
1960 u8 Revision;
1961 u8 Checksum;
1962 s8 OEMID[6];
1963 s8 OEMTableID[8];
1964 s8 OEMRevision[4];
1965 s8 CreatorID[4];
1966 s8 CreatorRevision[4];
1967 u8 InterfaceType;
1968 u8 IPMIlegacy;
1969 s16 SpecificationRevision;
1970
1971 /*
1972 * Bit 0 - SCI interrupt supported
1973 * Bit 1 - I/O APIC/SAPIC
1974 */
1975 u8 InterruptType;
1976
Corey Minyardc305e3d2008-04-29 01:01:10 -07001977 /*
1978 * If bit 0 of InterruptType is set, then this is the SCI
1979 * interrupt in the GPEx_STS register.
1980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 u8 GPE;
1982
1983 s16 Reserved;
1984
Corey Minyardc305e3d2008-04-29 01:01:10 -07001985 /*
1986 * If bit 1 of InterruptType is set, then this is the I/O
1987 * APIC/SAPIC interrupt.
1988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 u32 GlobalSystemInterrupt;
1990
1991 /* The actual register address. */
1992 struct acpi_generic_address addr;
1993
1994 u8 UID[4];
1995
1996 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
1997};
1998
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07001999static __devinit int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 u8 addr_space;
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (spmi->IPMIlegacy != 1) {
2005 printk(KERN_INFO "IPMI: Bad SPMI legacy %d\n", spmi->IPMIlegacy);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002006 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
2008
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002009 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 addr_space = IPMI_MEM_ADDR_SPACE;
2011 else
2012 addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002013
2014 info = kzalloc(sizeof(*info), GFP_KERNEL);
2015 if (!info) {
2016 printk(KERN_ERR "ipmi_si: Could not allocate SI data (3)\n");
2017 return -ENOMEM;
2018 }
2019
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002020 info->addr_source = SI_SPMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002023 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002025 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002028 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002031 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 default:
2034 printk(KERN_INFO "ipmi_si: Unknown ACPI/SPMI SI type %d\n",
2035 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002036 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return -EIO;
2038 }
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (spmi->InterruptType & 1) {
2041 /* We've got a GPE interrupt. */
2042 info->irq = spmi->GPE;
2043 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 } else if (spmi->InterruptType & 2) {
2045 /* We've got an APIC/SAPIC interrupt. */
2046 info->irq = spmi->GlobalSystemInterrupt;
2047 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 } else {
2049 /* Use the default interrupt setting. */
2050 info->irq = 0;
2051 info->irq_setup = NULL;
2052 }
2053
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002054 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002055 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002056 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002057 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002058 info->io.regspacing = DEFAULT_REGSPACING;
2059 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002060 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002061 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002063 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002065 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002066 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002068 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 } else {
2070 kfree(info);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002071 printk(KERN_WARNING
2072 "ipmi_si: Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return -EIO;
2074 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002075 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Matthew Garrett2407d772010-05-26 14:43:46 -07002077 add_smi(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return 0;
2080}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002081
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002082static __devinit void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002083{
2084 acpi_status status;
2085 struct SPMITable *spmi;
2086 int i;
2087
2088 if (acpi_disabled)
2089 return;
2090
2091 if (acpi_failure)
2092 return;
2093
2094 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002095 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2096 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002097 if (status != AE_OK)
2098 return;
2099
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002100 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002101 }
2102}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002103
2104static int __devinit ipmi_pnp_probe(struct pnp_dev *dev,
2105 const struct pnp_device_id *dev_id)
2106{
2107 struct acpi_device *acpi_dev;
2108 struct smi_info *info;
2109 acpi_handle handle;
2110 acpi_status status;
2111 unsigned long long tmp;
2112
2113 acpi_dev = pnp_acpi_device(dev);
2114 if (!acpi_dev)
2115 return -ENODEV;
2116
2117 info = kzalloc(sizeof(*info), GFP_KERNEL);
2118 if (!info)
2119 return -ENOMEM;
2120
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002121 info->addr_source = SI_ACPI;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002122
2123 handle = acpi_dev->handle;
2124
2125 /* _IFT tells us the interface type: KCS, BT, etc */
2126 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2127 if (ACPI_FAILURE(status))
2128 goto err_free;
2129
2130 switch (tmp) {
2131 case 1:
2132 info->si_type = SI_KCS;
2133 break;
2134 case 2:
2135 info->si_type = SI_SMIC;
2136 break;
2137 case 3:
2138 info->si_type = SI_BT;
2139 break;
2140 default:
2141 dev_info(&dev->dev, "unknown interface type %lld\n", tmp);
2142 goto err_free;
2143 }
2144
2145 if (pnp_port_valid(dev, 0)) {
2146 info->io_setup = port_setup;
2147 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2148 info->io.addr_data = pnp_port_start(dev, 0);
2149 } else if (pnp_mem_valid(dev, 0)) {
2150 info->io_setup = mem_setup;
2151 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2152 info->io.addr_data = pnp_mem_start(dev, 0);
2153 } else {
2154 dev_err(&dev->dev, "no I/O or memory address\n");
2155 goto err_free;
2156 }
2157
2158 info->io.regspacing = DEFAULT_REGSPACING;
2159 info->io.regsize = DEFAULT_REGSPACING;
2160 info->io.regshift = 0;
2161
2162 /* If _GPE exists, use it; otherwise use standard interrupts */
2163 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2164 if (ACPI_SUCCESS(status)) {
2165 info->irq = tmp;
2166 info->irq_setup = acpi_gpe_irq_setup;
2167 } else if (pnp_irq_valid(dev, 0)) {
2168 info->irq = pnp_irq(dev, 0);
2169 info->irq_setup = std_irq_setup;
2170 }
2171
2172 info->dev = &acpi_dev->dev;
2173 pnp_set_drvdata(dev, info);
2174
Matthew Garrett2407d772010-05-26 14:43:46 -07002175 return add_smi(info);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002176
2177err_free:
2178 kfree(info);
2179 return -EINVAL;
2180}
2181
2182static void __devexit ipmi_pnp_remove(struct pnp_dev *dev)
2183{
2184 struct smi_info *info = pnp_get_drvdata(dev);
2185
2186 cleanup_one_si(info);
2187}
2188
2189static const struct pnp_device_id pnp_dev_table[] = {
2190 {"IPI0001", 0},
2191 {"", 0},
2192};
2193
2194static struct pnp_driver ipmi_pnp_driver = {
2195 .name = DEVICE_NAME,
2196 .probe = ipmi_pnp_probe,
2197 .remove = __devexit_p(ipmi_pnp_remove),
2198 .id_table = pnp_dev_table,
2199};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200#endif
2201
Matt Domscha9fad4c2006-01-11 12:17:44 -08002202#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002203struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 u8 type;
2205 u8 addr_space;
2206 unsigned long base_addr;
2207 u8 irq;
2208 u8 offset;
2209 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002210};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jeff Garzik18552562007-10-03 15:15:40 -04002212static int __devinit decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002213 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Jeff Garzik18552562007-10-03 15:15:40 -04002215 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 unsigned long base_addr;
2217 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002218 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Corey Minyardb0defcd2006-03-26 01:37:20 -08002220 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 memcpy(&base_addr, data+8, sizeof(unsigned long));
2223 if (len >= 0x11) {
2224 if (base_addr & 1) {
2225 /* I/O */
2226 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002227 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002228 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002230 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2233 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002234 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Corey Minyardb0defcd2006-03-26 01:37:20 -08002236 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002239 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002240 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002242 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 break;
2244 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002245 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 break;
2247 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002248 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 break;
2250 default:
2251 /* Some other interface, just ignore it. */
2252 return -EIO;
2253 }
2254 } else {
2255 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002256 /*
2257 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002258 * address should be 1 if the address is I/O and 0 if
2259 * the address is in memory. So many systems get that
2260 * wrong (and all that I have seen are I/O) so we just
2261 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002262 * memory should use the newer spec, anyway.
2263 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002264 dmi->base_addr = base_addr & 0xfffe;
2265 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2266 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268
Corey Minyardb0defcd2006-03-26 01:37:20 -08002269 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Corey Minyardb0defcd2006-03-26 01:37:20 -08002271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
Corey Minyardb0defcd2006-03-26 01:37:20 -08002274static __devinit void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Corey Minyarde8b33612005-09-06 15:18:45 -07002276 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Corey Minyardb0defcd2006-03-26 01:37:20 -08002278 info = kzalloc(sizeof(*info), GFP_KERNEL);
2279 if (!info) {
2280 printk(KERN_ERR
2281 "ipmi_si: Could not allocate SI data\n");
2282 return;
2283 }
2284
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002285 info->addr_source = SI_SMBIOS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Corey Minyarde8b33612005-09-06 15:18:45 -07002287 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002288 case 0x01: /* KCS */
2289 info->si_type = SI_KCS;
2290 break;
2291 case 0x02: /* SMIC */
2292 info->si_type = SI_SMIC;
2293 break;
2294 case 0x03: /* BT */
2295 info->si_type = SI_BT;
2296 break;
2297 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002298 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002299 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301
Corey Minyardb0defcd2006-03-26 01:37:20 -08002302 switch (ipmi_data->addr_space) {
2303 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002305 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Corey Minyardb0defcd2006-03-26 01:37:20 -08002308 case IPMI_IO_ADDR_SPACE:
2309 info->io_setup = port_setup;
2310 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2311 break;
2312
2313 default:
2314 kfree(info);
2315 printk(KERN_WARNING
2316 "ipmi_si: Unknown SMBIOS I/O Address type: %d.\n",
2317 ipmi_data->addr_space);
2318 return;
2319 }
2320 info->io.addr_data = ipmi_data->base_addr;
2321
2322 info->io.regspacing = ipmi_data->offset;
2323 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 info->io.regspacing = DEFAULT_REGSPACING;
2325 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002326 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 info->slave_addr = ipmi_data->slave_addr;
2329
Corey Minyardb0defcd2006-03-26 01:37:20 -08002330 info->irq = ipmi_data->irq;
2331 if (info->irq)
2332 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Matthew Garrett2407d772010-05-26 14:43:46 -07002334 add_smi(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Corey Minyardb0defcd2006-03-26 01:37:20 -08002337static void __devinit dmi_find_bmc(void)
2338{
Jeff Garzik18552562007-10-03 15:15:40 -04002339 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002340 struct dmi_ipmi_data data;
2341 int rv;
2342
2343 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002344 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002345 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2346 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002347 if (!rv)
2348 try_init_dmi(&data);
2349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002351#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353#ifdef CONFIG_PCI
2354
Corey Minyardb0defcd2006-03-26 01:37:20 -08002355#define PCI_ERMC_CLASSCODE 0x0C0700
2356#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2357#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2358#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2359#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2360#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362#define PCI_HP_VENDOR_ID 0x103C
2363#define PCI_MMC_DEVICE_ID 0x121A
2364#define PCI_MMC_ADDR_CW 0x10
2365
Corey Minyardb0defcd2006-03-26 01:37:20 -08002366static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002368 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Corey Minyardb0defcd2006-03-26 01:37:20 -08002370 pci_disable_device(pdev);
2371}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Corey Minyardb0defcd2006-03-26 01:37:20 -08002373static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
2374 const struct pci_device_id *ent)
2375{
2376 int rv;
2377 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2378 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Corey Minyardb0defcd2006-03-26 01:37:20 -08002380 info = kzalloc(sizeof(*info), GFP_KERNEL);
2381 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002382 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002383
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002384 info->addr_source = SI_PCI;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002385
2386 switch (class_type) {
2387 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2388 info->si_type = SI_SMIC;
2389 break;
2390
2391 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2392 info->si_type = SI_KCS;
2393 break;
2394
2395 case PCI_ERMC_CLASSCODE_TYPE_BT:
2396 info->si_type = SI_BT;
2397 break;
2398
2399 default:
2400 kfree(info);
2401 printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
2402 pci_name(pdev), class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002403 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Corey Minyardb0defcd2006-03-26 01:37:20 -08002406 rv = pci_enable_device(pdev);
2407 if (rv) {
2408 printk(KERN_ERR "ipmi_si: %s: couldn't enable PCI device\n",
2409 pci_name(pdev));
2410 kfree(info);
2411 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 }
2413
Corey Minyardb0defcd2006-03-26 01:37:20 -08002414 info->addr_source_cleanup = ipmi_pci_cleanup;
2415 info->addr_source_data = pdev;
2416
Corey Minyardb0defcd2006-03-26 01:37:20 -08002417 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2418 info->io_setup = port_setup;
2419 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2420 } else {
2421 info->io_setup = mem_setup;
2422 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002424 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Corey Minyardb0defcd2006-03-26 01:37:20 -08002426 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002428 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Corey Minyardb0defcd2006-03-26 01:37:20 -08002430 info->irq = pdev->irq;
2431 if (info->irq)
2432 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Corey Minyard50c812b2006-03-26 01:37:21 -08002434 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002435 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002436
Matthew Garrett2407d772010-05-26 14:43:46 -07002437 return add_smi(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002438}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Corey Minyardb0defcd2006-03-26 01:37:20 -08002440static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
2441{
Corey Minyardfca3b742007-05-08 00:23:59 -07002442 struct smi_info *info = pci_get_drvdata(pdev);
2443 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002444}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Corey Minyardb0defcd2006-03-26 01:37:20 -08002446#ifdef CONFIG_PM
2447static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2448{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return 0;
2450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Corey Minyardb0defcd2006-03-26 01:37:20 -08002452static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002454 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002456#endif
2457
2458static struct pci_device_id ipmi_pci_devices[] = {
2459 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002460 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2461 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002462};
2463MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2464
2465static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002466 .name = DEVICE_NAME,
2467 .id_table = ipmi_pci_devices,
2468 .probe = ipmi_pci_probe,
2469 .remove = __devexit_p(ipmi_pci_remove),
Corey Minyardb0defcd2006-03-26 01:37:20 -08002470#ifdef CONFIG_PM
Corey Minyardc305e3d2008-04-29 01:01:10 -07002471 .suspend = ipmi_pci_suspend,
2472 .resume = ipmi_pci_resume,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002473#endif
2474};
2475#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
2477
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002478#ifdef CONFIG_PPC_OF
2479static int __devinit ipmi_of_probe(struct of_device *dev,
2480 const struct of_device_id *match)
2481{
2482 struct smi_info *info;
2483 struct resource resource;
2484 const int *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002485 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002486 int ret;
2487 int proplen;
2488
2489 dev_info(&dev->dev, PFX "probing via device tree\n");
2490
2491 ret = of_address_to_resource(np, 0, &resource);
2492 if (ret) {
2493 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2494 return ret;
2495 }
2496
Stephen Rothwell9c250992007-08-15 16:42:12 +10002497 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002498 if (regsize && proplen != 4) {
2499 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2500 return -EINVAL;
2501 }
2502
Stephen Rothwell9c250992007-08-15 16:42:12 +10002503 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002504 if (regspacing && proplen != 4) {
2505 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2506 return -EINVAL;
2507 }
2508
Stephen Rothwell9c250992007-08-15 16:42:12 +10002509 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002510 if (regshift && proplen != 4) {
2511 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2512 return -EINVAL;
2513 }
2514
2515 info = kzalloc(sizeof(*info), GFP_KERNEL);
2516
2517 if (!info) {
2518 dev_err(&dev->dev,
2519 PFX "could not allocate memory for OF probe\n");
2520 return -ENOMEM;
2521 }
2522
2523 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002524 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002525 info->irq_setup = std_irq_setup;
2526
Nate Case3b7ec112008-05-14 16:05:39 -07002527 if (resource.flags & IORESOURCE_IO) {
2528 info->io_setup = port_setup;
2529 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2530 } else {
2531 info->io_setup = mem_setup;
2532 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2533 }
2534
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002535 info->io.addr_data = resource.start;
2536
2537 info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE;
2538 info->io.regspacing = regspacing ? *regspacing : DEFAULT_REGSPACING;
2539 info->io.regshift = regshift ? *regshift : 0;
2540
Grant Likely61c7a082010-04-13 16:12:29 -07002541 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002542 info->dev = &dev->dev;
2543
Mijo Safradin32d21982007-08-22 14:01:48 -07002544 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %x\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002545 info->io.addr_data, info->io.regsize, info->io.regspacing,
2546 info->irq);
2547
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002548 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002549
Matthew Garrett2407d772010-05-26 14:43:46 -07002550 return add_smi(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002551}
2552
2553static int __devexit ipmi_of_remove(struct of_device *dev)
2554{
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002555 cleanup_one_si(dev_get_drvdata(&dev->dev));
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002556 return 0;
2557}
2558
2559static struct of_device_id ipmi_match[] =
2560{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002561 { .type = "ipmi", .compatible = "ipmi-kcs",
2562 .data = (void *)(unsigned long) SI_KCS },
2563 { .type = "ipmi", .compatible = "ipmi-smic",
2564 .data = (void *)(unsigned long) SI_SMIC },
2565 { .type = "ipmi", .compatible = "ipmi-bt",
2566 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002567 {},
2568};
2569
Corey Minyardc305e3d2008-04-29 01:01:10 -07002570static struct of_platform_driver ipmi_of_platform_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002571 .driver = {
2572 .name = "ipmi",
2573 .owner = THIS_MODULE,
2574 .of_match_table = ipmi_match,
2575 },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002576 .probe = ipmi_of_probe,
2577 .remove = __devexit_p(ipmi_of_remove),
2578};
2579#endif /* CONFIG_PPC_OF */
2580
Corey Minyard40112ae2009-04-21 12:24:03 -07002581static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
Corey Minyard50c812b2006-03-26 01:37:21 -08002583 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002586 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002587 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2588 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002589 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 smi_result = smi_info->handlers->event(
2591 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002592 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 smi_result = smi_info->handlers->event(
2594 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002595 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 break;
2597 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002598 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002599 /*
2600 * We couldn't get the state machine to run, so whatever's at
2601 * the port is probably not an IPMI SMI interface.
2602 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002603 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Corey Minyard40112ae2009-04-21 12:24:03 -07002605 return 0;
2606}
2607
2608static int try_get_dev_id(struct smi_info *smi_info)
2609{
2610 unsigned char msg[2];
2611 unsigned char *resp;
2612 unsigned long resp_len;
2613 int rv = 0;
2614
2615 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2616 if (!resp)
2617 return -ENOMEM;
2618
2619 /*
2620 * Do a Get Device ID command, since it comes back with some
2621 * useful info.
2622 */
2623 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2624 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2625 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2626
2627 rv = wait_for_msg_done(smi_info);
2628 if (rv)
2629 goto out;
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2632 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Corey Minyardd8c98612007-10-18 03:07:11 -07002634 /* Check and record info from the get device id, in case we need it. */
2635 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 out:
2638 kfree(resp);
2639 return rv;
2640}
2641
Corey Minyard40112ae2009-04-21 12:24:03 -07002642static int try_enable_event_buffer(struct smi_info *smi_info)
2643{
2644 unsigned char msg[3];
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 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2654 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2655 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2656
2657 rv = wait_for_msg_done(smi_info);
2658 if (rv) {
2659 printk(KERN_WARNING
2660 "ipmi_si: Error getting response from get global,"
2661 " enables command, the event buffer is not"
2662 " enabled.\n");
2663 goto out;
2664 }
2665
2666 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2667 resp, IPMI_MAX_MSG_LENGTH);
2668
2669 if (resp_len < 4 ||
2670 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2671 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2672 resp[2] != 0) {
2673 printk(KERN_WARNING
2674 "ipmi_si: Invalid return from get global"
2675 " enables command, cannot enable the event"
2676 " buffer.\n");
2677 rv = -EINVAL;
2678 goto out;
2679 }
2680
2681 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2682 /* buffer is already enabled, nothing to do. */
2683 goto out;
2684
2685 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2686 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2687 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2688 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2689
2690 rv = wait_for_msg_done(smi_info);
2691 if (rv) {
2692 printk(KERN_WARNING
2693 "ipmi_si: Error getting response from set global,"
2694 " enables command, the event buffer is not"
2695 " 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 < 3 ||
2703 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2704 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
2705 printk(KERN_WARNING
2706 "ipmi_si: Invalid return from get global,"
2707 "enables command, not enable the event"
2708 " buffer.\n");
2709 rv = -EINVAL;
2710 goto out;
2711 }
2712
2713 if (resp[2] != 0)
2714 /*
2715 * An error when setting the event buffer bit means
2716 * that the event buffer is not supported.
2717 */
2718 rv = -ENOENT;
2719 out:
2720 kfree(resp);
2721 return rv;
2722}
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724static int type_file_read_proc(char *page, char **start, off_t off,
2725 int count, int *eof, void *data)
2726{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 struct smi_info *smi = data;
2728
Corey Minyardb361e272006-12-06 20:41:07 -08002729 return sprintf(page, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
2732static int stat_file_read_proc(char *page, char **start, off_t off,
2733 int count, int *eof, void *data)
2734{
2735 char *out = (char *) page;
2736 struct smi_info *smi = data;
2737
2738 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002739 smi->irq && !smi->interrupt_disabled);
Corey Minyard64959e22008-04-29 01:01:07 -07002740 out += sprintf(out, "short_timeouts: %u\n",
2741 smi_get_stat(smi, short_timeouts));
2742 out += sprintf(out, "long_timeouts: %u\n",
2743 smi_get_stat(smi, long_timeouts));
Corey Minyard64959e22008-04-29 01:01:07 -07002744 out += sprintf(out, "idles: %u\n",
2745 smi_get_stat(smi, idles));
2746 out += sprintf(out, "interrupts: %u\n",
2747 smi_get_stat(smi, interrupts));
2748 out += sprintf(out, "attentions: %u\n",
2749 smi_get_stat(smi, attentions));
2750 out += sprintf(out, "flag_fetches: %u\n",
2751 smi_get_stat(smi, flag_fetches));
2752 out += sprintf(out, "hosed_count: %u\n",
2753 smi_get_stat(smi, hosed_count));
2754 out += sprintf(out, "complete_transactions: %u\n",
2755 smi_get_stat(smi, complete_transactions));
2756 out += sprintf(out, "events: %u\n",
2757 smi_get_stat(smi, events));
2758 out += sprintf(out, "watchdog_pretimeouts: %u\n",
2759 smi_get_stat(smi, watchdog_pretimeouts));
2760 out += sprintf(out, "incoming_messages: %u\n",
2761 smi_get_stat(smi, incoming_messages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Corey Minyardb361e272006-12-06 20:41:07 -08002763 return out - page;
2764}
2765
2766static int param_read_proc(char *page, char **start, off_t off,
2767 int count, int *eof, void *data)
2768{
2769 struct smi_info *smi = data;
2770
2771 return sprintf(page,
2772 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2773 si_to_str[smi->si_type],
2774 addr_space_to_str[smi->io.addr_type],
2775 smi->io.addr_data,
2776 smi->io.regspacing,
2777 smi->io.regsize,
2778 smi->io.regshift,
2779 smi->irq,
2780 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002783/*
2784 * oem_data_avail_to_receive_msg_avail
2785 * @info - smi_info structure with msg_flags set
2786 *
2787 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2788 * Returns 1 indicating need to re-run handle_flags().
2789 */
2790static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2791{
Corey Minyarde8b33612005-09-06 15:18:45 -07002792 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002793 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002794 return 1;
2795}
2796
2797/*
2798 * setup_dell_poweredge_oem_data_handler
2799 * @info - smi_info.device_id must be populated
2800 *
2801 * Systems that match, but have firmware version < 1.40 may assert
2802 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2803 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2804 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2805 * as RECEIVE_MSG_AVAIL instead.
2806 *
2807 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2808 * assert the OEM[012] bits, and if it did, the driver would have to
2809 * change to handle that properly, we don't actually check for the
2810 * firmware version.
2811 * Device ID = 0x20 BMC on PowerEdge 8G servers
2812 * Device Revision = 0x80
2813 * Firmware Revision1 = 0x01 BMC version 1.40
2814 * Firmware Revision2 = 0x40 BCD encoded
2815 * IPMI Version = 0x51 IPMI 1.5
2816 * Manufacturer ID = A2 02 00 Dell IANA
2817 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002818 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2819 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2820 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002821 */
2822#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2823#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2824#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002825#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002826static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2827{
2828 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002829 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002830 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2831 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002832 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002833 smi_info->oem_data_avail_handler =
2834 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002835 } else if (ipmi_version_major(id) < 1 ||
2836 (ipmi_version_major(id) == 1 &&
2837 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002838 smi_info->oem_data_avail_handler =
2839 oem_data_avail_to_receive_msg_avail;
2840 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002841 }
2842}
2843
Corey Minyardea940272005-11-07 00:59:59 -08002844#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2845static void return_hosed_msg_badsize(struct smi_info *smi_info)
2846{
2847 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2848
2849 /* Make it a reponse */
2850 msg->rsp[0] = msg->data[0] | 4;
2851 msg->rsp[1] = msg->data[1];
2852 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2853 msg->rsp_size = 3;
2854 smi_info->curr_msg = NULL;
2855 deliver_recv_msg(smi_info, msg);
2856}
2857
2858/*
2859 * dell_poweredge_bt_xaction_handler
2860 * @info - smi_info.device_id must be populated
2861 *
2862 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2863 * not respond to a Get SDR command if the length of the data
2864 * requested is exactly 0x3A, which leads to command timeouts and no
2865 * data returned. This intercepts such commands, and causes userspace
2866 * callers to try again with a different-sized buffer, which succeeds.
2867 */
2868
2869#define STORAGE_NETFN 0x0A
2870#define STORAGE_CMD_GET_SDR 0x23
2871static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2872 unsigned long unused,
2873 void *in)
2874{
2875 struct smi_info *smi_info = in;
2876 unsigned char *data = smi_info->curr_msg->data;
2877 unsigned int size = smi_info->curr_msg->data_size;
2878 if (size >= 8 &&
2879 (data[0]>>2) == STORAGE_NETFN &&
2880 data[1] == STORAGE_CMD_GET_SDR &&
2881 data[7] == 0x3A) {
2882 return_hosed_msg_badsize(smi_info);
2883 return NOTIFY_STOP;
2884 }
2885 return NOTIFY_DONE;
2886}
2887
2888static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2889 .notifier_call = dell_poweredge_bt_xaction_handler,
2890};
2891
2892/*
2893 * setup_dell_poweredge_bt_xaction_handler
2894 * @info - smi_info.device_id must be filled in already
2895 *
2896 * Fills in smi_info.device_id.start_transaction_pre_hook
2897 * when we know what function to use there.
2898 */
2899static void
2900setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2901{
2902 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002903 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002904 smi_info->si_type == SI_BT)
2905 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2906}
2907
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002908/*
2909 * setup_oem_data_handler
2910 * @info - smi_info.device_id must be filled in already
2911 *
2912 * Fills in smi_info.device_id.oem_data_available_handler
2913 * when we know what function to use there.
2914 */
2915
2916static void setup_oem_data_handler(struct smi_info *smi_info)
2917{
2918 setup_dell_poweredge_oem_data_handler(smi_info);
2919}
2920
Corey Minyardea940272005-11-07 00:59:59 -08002921static void setup_xaction_handlers(struct smi_info *smi_info)
2922{
2923 setup_dell_poweredge_bt_xaction_handler(smi_info);
2924}
2925
Corey Minyarda9a2c442005-11-07 01:00:03 -08002926static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
2927{
Corey Minyard453823b2006-03-31 02:30:39 -08002928 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002929 /*
2930 * The timer and thread are only running if the
2931 * interface has been started up and registered.
2932 */
Corey Minyard453823b2006-03-31 02:30:39 -08002933 if (smi_info->thread != NULL)
2934 kthread_stop(smi_info->thread);
2935 del_timer_sync(&smi_info->si_timer);
2936 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08002937}
2938
Randy Dunlap74208842006-04-18 22:21:52 -07002939static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002941 int type;
2942 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07002943} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08002944{
2945 { .type = SI_KCS, .port = 0xca2 },
2946 { .type = SI_SMIC, .port = 0xca9 },
2947 { .type = SI_BT, .port = 0xe4 },
2948 { .port = 0 }
2949};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Corey Minyardb0defcd2006-03-26 01:37:20 -08002951static __devinit void default_find_bmc(void)
2952{
2953 struct smi_info *info;
2954 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Corey Minyardb0defcd2006-03-26 01:37:20 -08002956 for (i = 0; ; i++) {
2957 if (!ipmi_defaults[i].port)
2958 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07002959#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08002960 if (check_legacy_ioport(ipmi_defaults[i].port))
2961 continue;
2962#endif
Andrew Mortona09f4852008-08-20 14:09:14 -07002963 info = kzalloc(sizeof(*info), GFP_KERNEL);
2964 if (!info)
2965 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08002966
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002967 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002968
2969 info->si_type = ipmi_defaults[i].type;
2970 info->io_setup = port_setup;
2971 info->io.addr_data = ipmi_defaults[i].port;
2972 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2973
2974 info->io.addr = NULL;
2975 info->io.regspacing = DEFAULT_REGSPACING;
2976 info->io.regsize = DEFAULT_REGSPACING;
2977 info->io.regshift = 0;
2978
Matthew Garrett2407d772010-05-26 14:43:46 -07002979 if (add_smi(info) == 0) {
2980 if ((try_smi_init(info)) == 0) {
2981 /* Found one... */
2982 printk(KERN_INFO "ipmi_si: Found default %s"
2983 " state machine at %s address 0x%lx\n",
2984 si_to_str[info->si_type],
2985 addr_space_to_str[info->io.addr_type],
2986 info->io.addr_data);
2987 } else
2988 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002989 }
2990 }
2991}
2992
2993static int is_new_interface(struct smi_info *info)
2994{
2995 struct smi_info *e;
2996
2997 list_for_each_entry(e, &smi_infos, link) {
2998 if (e->io.addr_type != info->io.addr_type)
2999 continue;
3000 if (e->io.addr_data == info->io.addr_data)
3001 return 0;
3002 }
3003
3004 return 1;
3005}
3006
Matthew Garrett2407d772010-05-26 14:43:46 -07003007static int add_smi(struct smi_info *new_smi)
3008{
3009 int rv = 0;
3010
3011 printk(KERN_INFO "ipmi_si: Adding %s-specified %s state machine",
3012 ipmi_addr_src_to_str[new_smi->addr_source],
3013 si_to_str[new_smi->si_type]);
3014 mutex_lock(&smi_infos_lock);
3015 if (!is_new_interface(new_smi)) {
3016 printk(KERN_CONT ": duplicate interface\n");
3017 rv = -EBUSY;
3018 goto out_err;
3019 }
3020
3021 printk(KERN_CONT "\n");
3022
3023 /* So we know not to free it unless we have allocated one. */
3024 new_smi->intf = NULL;
3025 new_smi->si_sm = NULL;
3026 new_smi->handlers = NULL;
3027
3028 list_add_tail(&new_smi->link, &smi_infos);
3029
3030out_err:
3031 mutex_unlock(&smi_infos_lock);
3032 return rv;
3033}
3034
Corey Minyardb0defcd2006-03-26 01:37:20 -08003035static int try_smi_init(struct smi_info *new_smi)
3036{
Matthew Garrett2407d772010-05-26 14:43:46 -07003037 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003038 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003039
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003040 printk(KERN_INFO "ipmi_si: Trying %s-specified %s state"
3041 " machine at %s address 0x%lx, slave address 0x%x,"
3042 " irq %d\n",
3043 ipmi_addr_src_to_str[new_smi->addr_source],
3044 si_to_str[new_smi->si_type],
3045 addr_space_to_str[new_smi->io.addr_type],
3046 new_smi->io.addr_data,
3047 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003048
Corey Minyardb0defcd2006-03-26 01:37:20 -08003049 switch (new_smi->si_type) {
3050 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003052 break;
3053
3054 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003056 break;
3057
3058 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003060 break;
3061
3062 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 /* No support for anything else yet. */
3064 rv = -EIO;
3065 goto out_err;
3066 }
3067
3068 /* Allocate the state machine's data and initialize it. */
3069 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003070 if (!new_smi->si_sm) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003071 printk(KERN_ERR "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 rv = -ENOMEM;
3073 goto out_err;
3074 }
3075 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3076 &new_smi->io);
3077
3078 /* Now that we know the I/O size, we can set up the I/O. */
3079 rv = new_smi->io_setup(new_smi);
3080 if (rv) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003081 printk(KERN_ERR "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 goto out_err;
3083 }
3084
3085 spin_lock_init(&(new_smi->si_lock));
3086 spin_lock_init(&(new_smi->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
3088 /* Do low-level detection first. */
3089 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003090 if (new_smi->addr_source)
3091 printk(KERN_INFO "ipmi_si: Interface detection"
3092 " failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 rv = -ENODEV;
3094 goto out_err;
3095 }
3096
Corey Minyardc305e3d2008-04-29 01:01:10 -07003097 /*
3098 * Attempt a get device id command. If it fails, we probably
3099 * don't have a BMC here.
3100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003102 if (rv) {
3103 if (new_smi->addr_source)
3104 printk(KERN_INFO "ipmi_si: There appears to be no BMC"
3105 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003109 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003110 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
3113 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
3114 new_smi->curr_msg = NULL;
3115 atomic_set(&new_smi->req_events, 0);
3116 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003117 for (i = 0; i < SI_NUM_STATS; i++)
3118 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 new_smi->interrupt_disabled = 0;
Corey Minyarda9a2c442005-11-07 01:00:03 -08003121 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003122 new_smi->intf_num = smi_num;
3123 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Corey Minyard40112ae2009-04-21 12:24:03 -07003125 rv = try_enable_event_buffer(new_smi);
3126 if (rv == 0)
3127 new_smi->has_event_buffer = 1;
3128
Corey Minyardc305e3d2008-04-29 01:01:10 -07003129 /*
3130 * Start clearing the flags before we enable interrupts or the
3131 * timer to avoid racing with the timer.
3132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 start_clear_flags(new_smi);
3134 /* IRQ is defined to be set when non-zero. */
3135 if (new_smi->irq)
3136 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3137
Corey Minyard50c812b2006-03-26 01:37:21 -08003138 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003139 /*
3140 * If we don't already have a device from something
3141 * else (like PCI), then register a new one.
3142 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003143 new_smi->pdev = platform_device_alloc("ipmi_si",
3144 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003145 if (!new_smi->pdev) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003146 printk(KERN_ERR
3147 "ipmi_si_intf:"
3148 " Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003149 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003150 }
3151 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003152 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003153
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003154 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003155 if (rv) {
3156 printk(KERN_ERR
3157 "ipmi_si_intf:"
3158 " Unable to register system interface device:"
3159 " %d\n",
3160 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003161 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003162 }
3163 new_smi->dev_registered = 1;
3164 }
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 rv = ipmi_register_smi(&handlers,
3167 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003168 &new_smi->device_id,
3169 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08003170 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08003171 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 if (rv) {
3173 printk(KERN_ERR
3174 "ipmi_si: Unable to register device: error %d\n",
3175 rv);
3176 goto out_err_stop_timer;
3177 }
3178
3179 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003180 type_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003181 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 if (rv) {
3183 printk(KERN_ERR
3184 "ipmi_si: Unable to create proc entry: %d\n",
3185 rv);
3186 goto out_err_stop_timer;
3187 }
3188
3189 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003190 stat_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003191 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (rv) {
3193 printk(KERN_ERR
3194 "ipmi_si: Unable to create proc entry: %d\n",
3195 rv);
3196 goto out_err_stop_timer;
3197 }
3198
Corey Minyardb361e272006-12-06 20:41:07 -08003199 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003200 param_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003201 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003202 if (rv) {
3203 printk(KERN_ERR
3204 "ipmi_si: Unable to create proc entry: %d\n",
3205 rv);
3206 goto out_err_stop_timer;
3207 }
3208
Corey Minyardc305e3d2008-04-29 01:01:10 -07003209 printk(KERN_INFO "IPMI %s interface initialized\n",
3210 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
3212 return 0;
3213
3214 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003215 atomic_inc(&new_smi->stop_operation);
3216 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 out_err:
Matthew Garrett2407d772010-05-26 14:43:46 -07003219 new_smi->interrupt_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Matthew Garrett2407d772010-05-26 14:43:46 -07003221 if (new_smi->intf) {
3222 ipmi_unregister_smi(new_smi->intf);
3223 new_smi->intf = NULL;
3224 }
3225
3226 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003227 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003228 new_smi->irq_cleanup = NULL;
3229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Corey Minyardc305e3d2008-04-29 01:01:10 -07003231 /*
3232 * Wait until we know that we are out of any interrupt
3233 * handlers might have been running before we freed the
3234 * interrupt.
3235 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003236 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238 if (new_smi->si_sm) {
3239 if (new_smi->handlers)
3240 new_smi->handlers->cleanup(new_smi->si_sm);
3241 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003242 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003244 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003245 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003246 new_smi->addr_source_cleanup = NULL;
3247 }
3248 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003249 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003250 new_smi->io_cleanup = NULL;
3251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Matthew Garrett2407d772010-05-26 14:43:46 -07003253 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003254 platform_device_unregister(new_smi->pdev);
Matthew Garrett2407d772010-05-26 14:43:46 -07003255 new_smi->dev_registered = 0;
3256 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 return rv;
3259}
3260
Corey Minyardb0defcd2006-03-26 01:37:20 -08003261static __devinit int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 int i;
3264 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003265 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003266 struct smi_info *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 if (initialized)
3269 return 0;
3270 initialized = 1;
3271
Corey Minyard50c812b2006-03-26 01:37:21 -08003272 /* Register the device drivers. */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003273 rv = driver_register(&ipmi_driver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08003274 if (rv) {
3275 printk(KERN_ERR
3276 "init_ipmi_si: Unable to register driver: %d\n",
3277 rv);
3278 return rv;
3279 }
3280
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 /* Parse out the si_type string into its components. */
3283 str = si_type_str;
3284 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003285 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 si_type[i] = str;
3287 str = strchr(str, ',');
3288 if (str) {
3289 *str = '\0';
3290 str++;
3291 } else {
3292 break;
3293 }
3294 }
3295 }
3296
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003297 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Corey Minyardb0defcd2006-03-26 01:37:20 -08003299 hardcode_find_bmc();
3300
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003301 /* If the user gave us a device, they presumably want us to use it */
3302 mutex_lock(&smi_infos_lock);
3303 if (!list_empty(&smi_infos)) {
3304 mutex_unlock(&smi_infos_lock);
3305 return 0;
3306 }
3307 mutex_unlock(&smi_infos_lock);
3308
Matt Domscha9fad4c2006-01-11 12:17:44 -08003309#ifdef CONFIG_DMI
Andrey Paninb224cd32005-09-06 15:18:37 -07003310 dmi_find_bmc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311#endif
3312
Corey Minyardb0defcd2006-03-26 01:37:20 -08003313#ifdef CONFIG_ACPI
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07003314 spmi_find_bmc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08003315#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003316#ifdef CONFIG_ACPI
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003317 pnp_register_driver(&ipmi_pnp_driver);
3318#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003319
3320#ifdef CONFIG_PCI
Corey Minyard168b35a2006-12-06 20:41:11 -08003321 rv = pci_register_driver(&ipmi_pci_driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003322 if (rv)
Corey Minyard168b35a2006-12-06 20:41:11 -08003323 printk(KERN_ERR
3324 "init_ipmi_si: Unable to register PCI driver: %d\n",
3325 rv);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003326#endif
3327
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003328#ifdef CONFIG_PPC_OF
3329 of_register_platform_driver(&ipmi_of_platform_driver);
3330#endif
3331
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003332 /* Try to register something with interrupts first */
3333
Matthew Garrett2407d772010-05-26 14:43:46 -07003334 mutex_lock(&smi_infos_lock);
3335 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003336 if (e->irq) {
3337 if (!try_smi_init(e)) {
3338 mutex_unlock(&smi_infos_lock);
3339 return 0;
3340 }
3341 }
3342 }
3343
3344 /* Fall back to the preferred device */
3345
3346 list_for_each_entry(e, &smi_infos, link) {
3347 if (!e->irq) {
3348 if (!try_smi_init(e)) {
3349 mutex_unlock(&smi_infos_lock);
3350 return 0;
3351 }
3352 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003353 }
3354 mutex_unlock(&smi_infos_lock);
3355
Corey Minyardb0defcd2006-03-26 01:37:20 -08003356 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003357 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003358 if (list_empty(&smi_infos)) {
3359 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003360 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003361 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003362 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003363 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Corey Minyardd6dfd132006-03-31 02:30:41 -08003366 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003367 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003368 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003369#ifdef CONFIG_PCI
3370 pci_unregister_driver(&ipmi_pci_driver);
3371#endif
Christian Krafft10fb62e2007-05-12 10:37:01 -07003372
3373#ifdef CONFIG_PPC_OF
3374 of_unregister_platform_driver(&ipmi_of_platform_driver);
3375#endif
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003376 driver_unregister(&ipmi_driver.driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003377 printk(KERN_WARNING
3378 "ipmi_si: Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003380 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003381 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}
3385module_init(init_ipmi_si);
3386
Corey Minyardb361e272006-12-06 20:41:07 -08003387static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Matthew Garrett2407d772010-05-26 14:43:46 -07003389 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 unsigned long flags;
3391
Corey Minyardb0defcd2006-03-26 01:37:20 -08003392 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 return;
3394
Corey Minyardb0defcd2006-03-26 01:37:20 -08003395 list_del(&to_clean->link);
3396
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003397 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003398 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003399
Corey Minyardc305e3d2008-04-29 01:01:10 -07003400 /*
3401 * Make sure the timer and thread are stopped and will not run
3402 * again.
3403 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003404 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Corey Minyardc305e3d2008-04-29 01:01:10 -07003406 /*
3407 * Timeouts are stopped, now make sure the interrupts are off
3408 * for the device. A little tricky with locks to make sure
3409 * there are no races.
3410 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003411 spin_lock_irqsave(&to_clean->si_lock, flags);
3412 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3413 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3414 poll(to_clean);
3415 schedule_timeout_uninterruptible(1);
3416 spin_lock_irqsave(&to_clean->si_lock, flags);
3417 }
3418 disable_si_irq(to_clean);
3419 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3420 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3421 poll(to_clean);
3422 schedule_timeout_uninterruptible(1);
3423 }
3424
3425 /* Clean up interrupts and make sure that everything is done. */
3426 if (to_clean->irq_cleanup)
3427 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003428 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003430 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
3432
Matthew Garrett2407d772010-05-26 14:43:46 -07003433 if (to_clean->intf)
3434 rv = ipmi_unregister_smi(to_clean->intf);
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 if (rv) {
3437 printk(KERN_ERR
3438 "ipmi_si: Unable to unregister device: errno=%d\n",
3439 rv);
3440 }
3441
Matthew Garrett2407d772010-05-26 14:43:46 -07003442 if (to_clean->handlers)
3443 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445 kfree(to_clean->si_sm);
3446
Corey Minyardb0defcd2006-03-26 01:37:20 -08003447 if (to_clean->addr_source_cleanup)
3448 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003449 if (to_clean->io_cleanup)
3450 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003451
3452 if (to_clean->dev_registered)
3453 platform_device_unregister(to_clean->pdev);
3454
3455 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456}
3457
3458static __exit void cleanup_ipmi_si(void)
3459{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003460 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Corey Minyardb0defcd2006-03-26 01:37:20 -08003462 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 return;
3464
Corey Minyardb0defcd2006-03-26 01:37:20 -08003465#ifdef CONFIG_PCI
3466 pci_unregister_driver(&ipmi_pci_driver);
3467#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003468#ifdef CONFIG_ACPI
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003469 pnp_unregister_driver(&ipmi_pnp_driver);
3470#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003471
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003472#ifdef CONFIG_PPC_OF
3473 of_unregister_platform_driver(&ipmi_of_platform_driver);
3474#endif
3475
Corey Minyardd6dfd132006-03-31 02:30:41 -08003476 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003477 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3478 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003479 mutex_unlock(&smi_infos_lock);
Corey Minyard50c812b2006-03-26 01:37:21 -08003480
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003481 driver_unregister(&ipmi_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482}
3483module_exit(cleanup_ipmi_si);
3484
3485MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003486MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003487MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3488 " system interfaces.");