blob: 0ac9b45a585e46e145f962e300fa2daf33590307 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/sched.h>
Alexey Dobriyan07412732011-05-26 16:25:55 -070045#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#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>
Zhao Yakui16f42322010-12-08 10:10:16 +080060#include <linux/ipmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ipmi_smi.h>
62#include <asm/io.h>
63#include "ipmi_si_sm.h"
64#include <linux/init.h>
Andrey Paninb224cd32005-09-06 15:18:37 -070065#include <linux/dmi.h>
Corey Minyardb361e272006-12-06 20:41:07 -080066#include <linux/string.h>
67#include <linux/ctype.h>
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -070068#include <linux/pnp.h>
Stephen Rothwell11c675c2008-05-23 16:22:42 +100069#include <linux/of_device.h>
70#include <linux/of_platform.h>
Rob Herring672d8ea2010-11-16 14:33:51 -060071#include <linux/of_address.h>
72#include <linux/of_irq.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070073
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 -0700110static char *ipmi_addr_src_to_str[] = { NULL, "hotmod", "hardcoded", "SPMI",
111 "ACPI", "SMBIOS", "PCI",
112 "device-tree", "default" };
113
Corey Minyard50c812b2006-03-26 01:37:21 -0800114#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700115
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600116static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700117
118/*
119 * Indexes into stats[] in smi_info below.
120 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700121enum si_stat_indexes {
122 /*
123 * Number of times the driver requested a timer while an operation
124 * was in progress.
125 */
126 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700127
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700128 /*
129 * Number of times the driver requested a timer while nothing was in
130 * progress.
131 */
132 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700133
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700134 /* Number of times the interface was idle while being polled. */
135 SI_STAT_idles,
136
137 /* Number of interrupts the driver handled. */
138 SI_STAT_interrupts,
139
140 /* Number of time the driver got an ATTN from the hardware. */
141 SI_STAT_attentions,
142
143 /* Number of times the driver requested flags from the hardware. */
144 SI_STAT_flag_fetches,
145
146 /* Number of times the hardware didn't follow the state machine. */
147 SI_STAT_hosed_count,
148
149 /* Number of completed messages. */
150 SI_STAT_complete_transactions,
151
152 /* Number of IPMI events received from the hardware. */
153 SI_STAT_events,
154
155 /* Number of watchdog pretimeouts. */
156 SI_STAT_watchdog_pretimeouts,
157
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400158 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700159 SI_STAT_incoming_messages,
160
161
162 /* This *must* remain last, add new values above this. */
163 SI_NUM_STATS
164};
Corey Minyard64959e22008-04-29 01:01:07 -0700165
Corey Minyardc305e3d2008-04-29 01:01:10 -0700166struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800167 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ipmi_smi_t intf;
169 struct si_sm_data *si_sm;
170 struct si_sm_handlers *handlers;
171 enum si_type si_type;
172 spinlock_t si_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct list_head xmit_msgs;
174 struct list_head hp_xmit_msgs;
175 struct ipmi_smi_msg *curr_msg;
176 enum si_intf_state si_state;
177
Corey Minyardc305e3d2008-04-29 01:01:10 -0700178 /*
179 * Used to handle the various types of I/O that can occur with
180 * IPMI
181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct si_sm_io io;
183 int (*io_setup)(struct smi_info *info);
184 void (*io_cleanup)(struct smi_info *info);
185 int (*irq_setup)(struct smi_info *info);
186 void (*irq_cleanup)(struct smi_info *info);
187 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700188 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800189 void (*addr_source_cleanup)(struct smi_info *info);
190 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Corey Minyardc305e3d2008-04-29 01:01:10 -0700192 /*
193 * Per-OEM handler, called from handle_flags(). Returns 1
194 * when handle_flags() needs to be re-run or 0 indicating it
195 * set si_state itself.
196 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700197 int (*oem_data_avail_handler)(struct smi_info *smi_info);
198
Corey Minyardc305e3d2008-04-29 01:01:10 -0700199 /*
200 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
201 * is set to hold the flags until we are done handling everything
202 * from the flags.
203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define RECEIVE_MSG_AVAIL 0x01
205#define EVENT_MSG_BUFFER_FULL 0x02
206#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700207#define OEM0_DATA_AVAIL 0x20
208#define OEM1_DATA_AVAIL 0x40
209#define OEM2_DATA_AVAIL 0x80
210#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700211 OEM1_DATA_AVAIL | \
212 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 unsigned char msg_flags;
214
Corey Minyard40112ae2009-04-21 12:24:03 -0700215 /* Does the BMC have an event buffer? */
216 char has_event_buffer;
217
Corey Minyardc305e3d2008-04-29 01:01:10 -0700218 /*
219 * If set to true, this will request events the next time the
220 * state machine is idle.
221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 atomic_t req_events;
223
Corey Minyardc305e3d2008-04-29 01:01:10 -0700224 /*
225 * If true, run the state machine to completion on every send
226 * call. Generally used after a panic to make sure stuff goes
227 * out.
228 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int run_to_completion;
230
231 /* The I/O port of an SI interface. */
232 int port;
233
Corey Minyardc305e3d2008-04-29 01:01:10 -0700234 /*
235 * The space between start addresses of the two ports. For
236 * instance, if the first port is 0xca2 and the spacing is 4, then
237 * the second port is 0xca6.
238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 unsigned int spacing;
240
241 /* zero if no irq; */
242 int irq;
243
244 /* The timer for this si. */
245 struct timer_list si_timer;
246
247 /* The time (in jiffies) the last timeout occurred at. */
248 unsigned long last_timeout_jiffies;
249
250 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800251 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Corey Minyardc305e3d2008-04-29 01:01:10 -0700253 /*
254 * The driver will disable interrupts when it gets into a
255 * situation where it cannot handle messages due to lack of
256 * memory. Once that situation clears up, it will re-enable
257 * interrupts.
258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int interrupt_disabled;
260
Corey Minyard50c812b2006-03-26 01:37:21 -0800261 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700262 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Corey Minyard50c812b2006-03-26 01:37:21 -0800264 /* Driver model stuff. */
265 struct device *dev;
266 struct platform_device *pdev;
267
Corey Minyardc305e3d2008-04-29 01:01:10 -0700268 /*
269 * True if we allocated the device, false if it came from
270 * someplace else (like PCI).
271 */
Corey Minyard50c812b2006-03-26 01:37:21 -0800272 int dev_registered;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* Slave address, could be reported from DMI. */
275 unsigned char slave_addr;
276
277 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700278 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800279
Corey Minyardc305e3d2008-04-29 01:01:10 -0700280 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800281
282 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800283 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Corey Minyard64959e22008-04-29 01:01:07 -0700286#define smi_inc_stat(smi, stat) \
287 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
288#define smi_get_stat(smi, stat) \
289 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
290
Corey Minyarda51f4a82006-10-03 01:13:59 -0700291#define SI_MAX_PARMS 4
292
293static int force_kipmid[SI_MAX_PARMS];
294static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700295#ifdef CONFIG_PCI
296static int pci_registered;
297#endif
Yinghai Lu561f8182010-09-22 13:05:15 -0700298#ifdef CONFIG_ACPI
299static int pnp_registered;
300#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700301
Martin Wilckae74e822010-03-10 15:23:06 -0800302static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
303static int num_max_busy_us;
304
Corey Minyardb361e272006-12-06 20:41:07 -0800305static int unload_when_empty = 1;
306
Matthew Garrett2407d772010-05-26 14:43:46 -0700307static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800308static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800309static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600310static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800311
Alan Sterne041c682006-03-27 01:16:30 -0800312static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700313static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800314{
Alan Sterne041c682006-03-27 01:16:30 -0800315 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static void deliver_recv_msg(struct smi_info *smi_info,
319 struct ipmi_smi_msg *msg)
320{
Corey Minyard7adf5792012-03-28 14:42:49 -0700321 /* Deliver the message to the upper layer. */
322 ipmi_smi_msg_received(smi_info->intf, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800325static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct ipmi_smi_msg *msg = smi_info->curr_msg;
328
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800329 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
330 cCode = IPMI_ERR_UNSPECIFIED;
331 /* else use it as is */
332
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300333 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 msg->rsp[0] = msg->data[0] | 4;
335 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800336 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 msg->rsp_size = 3;
338
339 smi_info->curr_msg = NULL;
340 deliver_recv_msg(smi_info, msg);
341}
342
343static enum si_sm_result start_next_msg(struct smi_info *smi_info)
344{
345 int rv;
346 struct list_head *entry = NULL;
347#ifdef DEBUG_TIMING
348 struct timeval t;
349#endif
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800352 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800354 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 entry = smi_info->xmit_msgs.next;
356 }
357
Corey Minyardb0defcd2006-03-26 01:37:20 -0800358 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 smi_info->curr_msg = NULL;
360 rv = SI_SM_IDLE;
361 } else {
362 int err;
363
364 list_del(entry);
365 smi_info->curr_msg = list_entry(entry,
366 struct ipmi_smi_msg,
367 link);
368#ifdef DEBUG_TIMING
369 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700370 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371#endif
Alan Sterne041c682006-03-27 01:16:30 -0800372 err = atomic_notifier_call_chain(&xaction_notifier_list,
373 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800374 if (err & NOTIFY_STOP_MASK) {
375 rv = SI_SM_CALL_WITHOUT_DELAY;
376 goto out;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 err = smi_info->handlers->start_transaction(
379 smi_info->si_sm,
380 smi_info->curr_msg->data,
381 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700382 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800383 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 rv = SI_SM_CALL_WITHOUT_DELAY;
386 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700387 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return rv;
389}
390
391static void start_enable_irq(struct smi_info *smi_info)
392{
393 unsigned char msg[2];
394
Corey Minyardc305e3d2008-04-29 01:01:10 -0700395 /*
396 * If we are enabling interrupts, we have to tell the
397 * BMC to use them.
398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
400 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
401
402 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
403 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
404}
405
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700406static void start_disable_irq(struct smi_info *smi_info)
407{
408 unsigned char msg[2];
409
410 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
411 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
412
413 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
414 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static void start_clear_flags(struct smi_info *smi_info)
418{
419 unsigned char msg[3];
420
421 /* Make sure the watchdog pre-timeout flag is not set at startup. */
422 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
423 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
424 msg[2] = WDT_PRE_TIMEOUT_INT;
425
426 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
427 smi_info->si_state = SI_CLEARING_FLAGS;
428}
429
Corey Minyardc305e3d2008-04-29 01:01:10 -0700430/*
431 * When we have a situtaion where we run out of memory and cannot
432 * allocate messages, we just leave them in the BMC and run the system
433 * polled until we can allocate some memory. Once we have some
434 * memory, we will re-enable the interrupt.
435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static inline void disable_si_irq(struct smi_info *smi_info)
437{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800438 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700439 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 smi_info->interrupt_disabled = 1;
Matthew Garrettea4078c2010-05-26 14:43:48 -0700441 if (!atomic_read(&smi_info->stop_operation))
442 mod_timer(&smi_info->si_timer,
443 jiffies + SI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445}
446
447static inline void enable_si_irq(struct smi_info *smi_info)
448{
449 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700450 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 smi_info->interrupt_disabled = 0;
452 }
453}
454
455static void handle_flags(struct smi_info *smi_info)
456{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700457 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
459 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700460 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 start_clear_flags(smi_info);
463 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
466 /* Messages available. */
467 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800468 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 disable_si_irq(smi_info);
470 smi_info->si_state = SI_NORMAL;
471 return;
472 }
473 enable_si_irq(smi_info);
474
475 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
476 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
477 smi_info->curr_msg->data_size = 2;
478
479 smi_info->handlers->start_transaction(
480 smi_info->si_sm,
481 smi_info->curr_msg->data,
482 smi_info->curr_msg->data_size);
483 smi_info->si_state = SI_GETTING_MESSAGES;
484 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
485 /* Events available. */
486 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800487 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 disable_si_irq(smi_info);
489 smi_info->si_state = SI_NORMAL;
490 return;
491 }
492 enable_si_irq(smi_info);
493
494 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
495 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
496 smi_info->curr_msg->data_size = 2;
497
498 smi_info->handlers->start_transaction(
499 smi_info->si_sm,
500 smi_info->curr_msg->data,
501 smi_info->curr_msg->data_size);
502 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700503 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700504 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700505 if (smi_info->oem_data_avail_handler(smi_info))
506 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700507 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511static void handle_transaction_done(struct smi_info *smi_info)
512{
513 struct ipmi_smi_msg *msg;
514#ifdef DEBUG_TIMING
515 struct timeval t;
516
517 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700518 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#endif
520 switch (smi_info->si_state) {
521 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800522 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
524
525 smi_info->curr_msg->rsp_size
526 = smi_info->handlers->get_result(
527 smi_info->si_sm,
528 smi_info->curr_msg->rsp,
529 IPMI_MAX_MSG_LENGTH);
530
Corey Minyardc305e3d2008-04-29 01:01:10 -0700531 /*
532 * Do this here becase deliver_recv_msg() releases the
533 * lock, and a new message can be put in during the
534 * time the lock is released.
535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 msg = smi_info->curr_msg;
537 smi_info->curr_msg = NULL;
538 deliver_recv_msg(smi_info, msg);
539 break;
540
541 case SI_GETTING_FLAGS:
542 {
543 unsigned char msg[4];
544 unsigned int len;
545
546 /* We got the flags from the SMI, now handle them. */
547 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
548 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700549 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 smi_info->si_state = SI_NORMAL;
551 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700552 /*
553 * Hmm, no flags. That's technically illegal, but
554 * don't use uninitialized data.
555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 smi_info->si_state = SI_NORMAL;
557 } else {
558 smi_info->msg_flags = msg[3];
559 handle_flags(smi_info);
560 }
561 break;
562 }
563
564 case SI_CLEARING_FLAGS:
565 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
566 {
567 unsigned char msg[3];
568
569 /* We cleared the flags. */
570 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
571 if (msg[2] != 0) {
572 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700573 dev_warn(smi_info->dev,
574 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
577 start_enable_irq(smi_info);
578 else
579 smi_info->si_state = SI_NORMAL;
580 break;
581 }
582
583 case SI_GETTING_EVENTS:
584 {
585 smi_info->curr_msg->rsp_size
586 = smi_info->handlers->get_result(
587 smi_info->si_sm,
588 smi_info->curr_msg->rsp,
589 IPMI_MAX_MSG_LENGTH);
590
Corey Minyardc305e3d2008-04-29 01:01:10 -0700591 /*
592 * Do this here becase deliver_recv_msg() releases the
593 * lock, and a new message can be put in during the
594 * time the lock is released.
595 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 msg = smi_info->curr_msg;
597 smi_info->curr_msg = NULL;
598 if (msg->rsp[2] != 0) {
599 /* Error getting event, probably done. */
600 msg->done(msg);
601
602 /* Take off the event flag. */
603 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
604 handle_flags(smi_info);
605 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700606 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Corey Minyardc305e3d2008-04-29 01:01:10 -0700608 /*
609 * Do this before we deliver the message
610 * because delivering the message releases the
611 * lock and something else can mess with the
612 * state.
613 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 handle_flags(smi_info);
615
616 deliver_recv_msg(smi_info, msg);
617 }
618 break;
619 }
620
621 case SI_GETTING_MESSAGES:
622 {
623 smi_info->curr_msg->rsp_size
624 = smi_info->handlers->get_result(
625 smi_info->si_sm,
626 smi_info->curr_msg->rsp,
627 IPMI_MAX_MSG_LENGTH);
628
Corey Minyardc305e3d2008-04-29 01:01:10 -0700629 /*
630 * Do this here becase deliver_recv_msg() releases the
631 * lock, and a new message can be put in during the
632 * time the lock is released.
633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 msg = smi_info->curr_msg;
635 smi_info->curr_msg = NULL;
636 if (msg->rsp[2] != 0) {
637 /* Error getting event, probably done. */
638 msg->done(msg);
639
640 /* Take off the msg flag. */
641 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
642 handle_flags(smi_info);
643 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700644 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Corey Minyardc305e3d2008-04-29 01:01:10 -0700646 /*
647 * Do this before we deliver the message
648 * because delivering the message releases the
649 * lock and something else can mess with the
650 * state.
651 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 handle_flags(smi_info);
653
654 deliver_recv_msg(smi_info, msg);
655 }
656 break;
657 }
658
659 case SI_ENABLE_INTERRUPTS1:
660 {
661 unsigned char msg[4];
662
663 /* We got the flags from the SMI, now handle them. */
664 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
665 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700666 dev_warn(smi_info->dev, "Could not enable interrupts"
667 ", failed get, using polled mode.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 smi_info->si_state = SI_NORMAL;
669 } else {
670 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
671 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700672 msg[2] = (msg[3] |
673 IPMI_BMC_RCV_MSG_INTR |
674 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 smi_info->handlers->start_transaction(
676 smi_info->si_sm, msg, 3);
677 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
678 }
679 break;
680 }
681
682 case SI_ENABLE_INTERRUPTS2:
683 {
684 unsigned char msg[4];
685
686 /* We got the flags from the SMI, now handle them. */
687 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Myron Stowe279fbd02010-05-26 14:43:52 -0700688 if (msg[2] != 0)
689 dev_warn(smi_info->dev, "Could not enable interrupts"
690 ", failed set, using polled mode.\n");
691 else
Matthew Garrettea4078c2010-05-26 14:43:48 -0700692 smi_info->interrupt_disabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 smi_info->si_state = SI_NORMAL;
694 break;
695 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700696
697 case SI_DISABLE_INTERRUPTS1:
698 {
699 unsigned char msg[4];
700
701 /* We got the flags from the SMI, now handle them. */
702 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
703 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700704 dev_warn(smi_info->dev, "Could not disable interrupts"
705 ", failed get.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700706 smi_info->si_state = SI_NORMAL;
707 } else {
708 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
709 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
710 msg[2] = (msg[3] &
711 ~(IPMI_BMC_RCV_MSG_INTR |
712 IPMI_BMC_EVT_MSG_INTR));
713 smi_info->handlers->start_transaction(
714 smi_info->si_sm, msg, 3);
715 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
716 }
717 break;
718 }
719
720 case SI_DISABLE_INTERRUPTS2:
721 {
722 unsigned char msg[4];
723
724 /* We got the flags from the SMI, now handle them. */
725 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
726 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700727 dev_warn(smi_info->dev, "Could not disable interrupts"
728 ", failed set.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700729 }
730 smi_info->si_state = SI_NORMAL;
731 break;
732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734}
735
Corey Minyardc305e3d2008-04-29 01:01:10 -0700736/*
737 * Called on timeouts and events. Timeouts should pass the elapsed
738 * time, interrupts should pass in zero. Must be called with
739 * si_lock held and interrupts disabled.
740 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
742 int time)
743{
744 enum si_sm_result si_sm_result;
745
746 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700747 /*
748 * There used to be a loop here that waited a little while
749 * (around 25us) before giving up. That turned out to be
750 * pointless, the minimum delays I was seeing were in the 300us
751 * range, which is far too long to wait in an interrupt. So
752 * we just run until the state machine tells us something
753 * happened or it needs a delay.
754 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
756 time = 0;
757 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Corey Minyardc305e3d2008-04-29 01:01:10 -0700760 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700761 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 handle_transaction_done(smi_info);
764 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700765 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700766 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Corey Minyardc305e3d2008-04-29 01:01:10 -0700768 /*
769 * Do the before return_hosed_msg, because that
770 * releases the lock.
771 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 smi_info->si_state = SI_NORMAL;
773 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700774 /*
775 * If we were handling a user message, format
776 * a response to send to the upper layer to
777 * tell it about the error.
778 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800779 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
782 }
783
Corey Minyard4ea18422008-04-29 01:01:01 -0700784 /*
785 * We prefer handling attn over new messages. But don't do
786 * this if there is not yet an upper layer to handle anything.
787 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700788 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 unsigned char msg[2];
790
Corey Minyard64959e22008-04-29 01:01:07 -0700791 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Corey Minyardc305e3d2008-04-29 01:01:10 -0700793 /*
794 * Got a attn, send down a get message flags to see
795 * what's causing it. It would be better to handle
796 * this in the upper layer, but due to the way
797 * interrupts work with the SMI, that's not really
798 * possible.
799 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
801 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
802
803 smi_info->handlers->start_transaction(
804 smi_info->si_sm, msg, 2);
805 smi_info->si_state = SI_GETTING_FLAGS;
806 goto restart;
807 }
808
809 /* If we are currently idle, try to start the next message. */
810 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700811 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 si_sm_result = start_next_msg(smi_info);
814 if (si_sm_result != SI_SM_IDLE)
815 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700819 && (atomic_read(&smi_info->req_events))) {
820 /*
821 * We are idle and the upper layer requested that I fetch
822 * events, so do so.
823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800825
826 smi_info->curr_msg = ipmi_alloc_smi_msg();
827 if (!smi_info->curr_msg)
828 goto out;
829
830 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
831 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
832 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800835 smi_info->si_sm,
836 smi_info->curr_msg->data,
837 smi_info->curr_msg->data_size);
838 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 goto restart;
840 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800841 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return si_sm_result;
843}
844
845static void sender(void *send_info,
846 struct ipmi_smi_msg *msg,
847 int priority)
848{
849 struct smi_info *smi_info = send_info;
850 enum si_sm_result result;
851 unsigned long flags;
852#ifdef DEBUG_TIMING
853 struct timeval t;
854#endif
855
Corey Minyardb361e272006-12-06 20:41:07 -0800856 if (atomic_read(&smi_info->stop_operation)) {
857 msg->rsp[0] = msg->data[0] | 4;
858 msg->rsp[1] = msg->data[1];
859 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
860 msg->rsp_size = 3;
861 deliver_recv_msg(smi_info, msg);
862 return;
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865#ifdef DEBUG_TIMING
866 do_gettimeofday(&t);
867 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
868#endif
869
870 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700871 /*
872 * If we are running to completion, then throw it in
873 * the list and run transactions until everything is
874 * clear. Priority doesn't matter here.
875 */
876
877 /*
878 * Run to completion means we are single-threaded, no
879 * need for locks.
880 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 result = smi_event_handler(smi_info, 0);
884 while (result != SI_SM_IDLE) {
885 udelay(SI_SHORT_TIMEOUT_USEC);
886 result = smi_event_handler(smi_info,
887 SI_SHORT_TIMEOUT_USEC);
888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Corey Minyardf60adf42012-03-28 14:42:50 -0700892 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardbda4c302008-04-29 01:01:02 -0700893 if (priority > 0)
894 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
895 else
896 list_add_tail(&msg->link, &smi_info->xmit_msgs);
Corey Minyardbda4c302008-04-29 01:01:02 -0700897
Srinivas_Gowdab88e7692012-03-28 14:42:48 -0700898 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
Corey Minyardf60adf42012-03-28 14:42:50 -0700899 /*
900 * last_timeout_jiffies is updated here to avoid
901 * smi_timeout() handler passing very large time_diff
902 * value to smi_event_handler() that causes
903 * the send command to abort.
904 */
905 smi_info->last_timeout_jiffies = jiffies;
906
907 mod_timer(&smi_info->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
908
909 if (smi_info->thread)
910 wake_up_process(smi_info->thread);
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 start_next_msg(smi_info);
Srinivas_Gowdab88e7692012-03-28 14:42:48 -0700913 smi_event_handler(smi_info, 0);
914 }
Corey Minyardbda4c302008-04-29 01:01:02 -0700915 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static void set_run_to_completion(void *send_info, int i_run_to_completion)
919{
920 struct smi_info *smi_info = send_info;
921 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 smi_info->run_to_completion = i_run_to_completion;
924 if (i_run_to_completion) {
925 result = smi_event_handler(smi_info, 0);
926 while (result != SI_SM_IDLE) {
927 udelay(SI_SHORT_TIMEOUT_USEC);
928 result = smi_event_handler(smi_info,
929 SI_SHORT_TIMEOUT_USEC);
930 }
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Martin Wilckae74e822010-03-10 15:23:06 -0800934/*
935 * Use -1 in the nsec value of the busy waiting timespec to tell that
936 * we are spinning in kipmid looking for something and not delaying
937 * between checks
938 */
939static inline void ipmi_si_set_not_busy(struct timespec *ts)
940{
941 ts->tv_nsec = -1;
942}
943static inline int ipmi_si_is_busy(struct timespec *ts)
944{
945 return ts->tv_nsec != -1;
946}
947
948static int ipmi_thread_busy_wait(enum si_sm_result smi_result,
949 const struct smi_info *smi_info,
950 struct timespec *busy_until)
951{
952 unsigned int max_busy_us = 0;
953
954 if (smi_info->intf_num < num_max_busy_us)
955 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
956 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
957 ipmi_si_set_not_busy(busy_until);
958 else if (!ipmi_si_is_busy(busy_until)) {
959 getnstimeofday(busy_until);
960 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
961 } else {
962 struct timespec now;
963 getnstimeofday(&now);
964 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
965 ipmi_si_set_not_busy(busy_until);
966 return 0;
967 }
968 }
969 return 1;
970}
971
972
973/*
974 * A busy-waiting loop for speeding up IPMI operation.
975 *
976 * Lousy hardware makes this hard. This is only enabled for systems
977 * that are not BT and do not have interrupts. It starts spinning
978 * when an operation is complete or until max_busy tells it to stop
979 * (if that is enabled). See the paragraph on kimid_max_busy_us in
980 * Documentation/IPMI.txt for details.
981 */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800982static int ipmi_thread(void *data)
983{
984 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -0800985 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800986 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -0800987 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -0800988
Martin Wilckae74e822010-03-10 15:23:06 -0800989 ipmi_si_set_not_busy(&busy_until);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800990 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -0800991 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -0800992 int busy_wait;
993
Corey Minyarda9a2c442005-11-07 01:00:03 -0800994 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -0800995 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -0800996 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -0800997 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
998 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700999 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1000 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001001 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001002 schedule();
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001003 else if (smi_result == SI_SM_IDLE)
1004 schedule_timeout_interruptible(100);
Matt Domsche9a705a2005-11-07 01:00:04 -08001005 else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001006 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001007 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001008 return 0;
1009}
1010
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012static void poll(void *send_info)
1013{
1014 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001015 unsigned long flags = 0;
1016 int run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Corey Minyard15c62e12006-12-06 20:41:06 -08001018 /*
1019 * Make sure there is some delay in the poll loop so we can
1020 * drive time forward and timeout things.
1021 */
1022 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001023 if (!run_to_completion)
1024 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001025 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001026 if (!run_to_completion)
1027 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030static void request_events(void *send_info)
1031{
1032 struct smi_info *smi_info = send_info;
1033
Corey Minyard40112ae2009-04-21 12:24:03 -07001034 if (atomic_read(&smi_info->stop_operation) ||
1035 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001036 return;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 atomic_set(&smi_info->req_events, 1);
1039}
1040
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001041static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043static void smi_timeout(unsigned long data)
1044{
1045 struct smi_info *smi_info = (struct smi_info *) data;
1046 enum si_sm_result smi_result;
1047 unsigned long flags;
1048 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001049 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001050 long timeout;
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. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001071 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001072 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001073 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
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);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001082 timeout = 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);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001085 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001088 do_mod_timer:
1089 if (smi_result != SI_SM_IDLE)
1090 mod_timer(&(smi_info->si_timer), timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
David Howells7d12e782006-10-05 14:55:46 +01001093static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct smi_info *smi_info = data;
1096 unsigned long flags;
1097#ifdef DEBUG_TIMING
1098 struct timeval t;
1099#endif
1100
1101 spin_lock_irqsave(&(smi_info->si_lock), flags);
1102
Corey Minyard64959e22008-04-29 01:01:07 -07001103 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#ifdef DEBUG_TIMING
1106 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001107 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#endif
1109 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1111 return IRQ_HANDLED;
1112}
1113
David Howells7d12e782006-10-05 14:55:46 +01001114static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001115{
1116 struct smi_info *smi_info = data;
1117 /* We need to clear the IRQ flag for the BT interface. */
1118 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1119 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1120 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001121 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001122}
1123
Corey Minyard453823b2006-03-31 02:30:39 -08001124static int smi_start_processing(void *send_info,
1125 ipmi_smi_t intf)
1126{
1127 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001128 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001129
1130 new_smi->intf = intf;
1131
Corey Minyardc45adc32007-10-18 03:07:08 -07001132 /* Try to claim any interrupts. */
1133 if (new_smi->irq_setup)
1134 new_smi->irq_setup(new_smi);
1135
Corey Minyard453823b2006-03-31 02:30:39 -08001136 /* Set up the timer that drives the interface. */
1137 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1138 new_smi->last_timeout_jiffies = jiffies;
1139 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1140
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001141 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001142 * Check if the user forcefully enabled the daemon.
1143 */
1144 if (new_smi->intf_num < num_force_kipmid)
1145 enable = force_kipmid[new_smi->intf_num];
1146 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001147 * The BT interface is efficient enough to not need a thread,
1148 * and there is no need for a thread if we have interrupts.
1149 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001150 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001151 enable = 1;
1152
1153 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001154 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1155 "kipmi%d", new_smi->intf_num);
1156 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001157 dev_notice(new_smi->dev, "Could not start"
1158 " kernel thread due to error %ld, only using"
1159 " timers to drive the interface\n",
1160 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001161 new_smi->thread = NULL;
1162 }
1163 }
1164
1165 return 0;
1166}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001167
Zhao Yakui16f42322010-12-08 10:10:16 +08001168static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1169{
1170 struct smi_info *smi = send_info;
1171
1172 data->addr_src = smi->addr_source;
1173 data->dev = smi->dev;
1174 data->addr_info = smi->addr_info;
1175 get_device(smi->dev);
1176
1177 return 0;
1178}
1179
Corey Minyardb9675132006-12-06 20:41:02 -08001180static void set_maintenance_mode(void *send_info, int enable)
1181{
1182 struct smi_info *smi_info = send_info;
1183
1184 if (!enable)
1185 atomic_set(&smi_info->req_events, 0);
1186}
1187
Corey Minyardc305e3d2008-04-29 01:01:10 -07001188static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001190 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001191 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 .sender = sender,
1193 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001194 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 .set_run_to_completion = set_run_to_completion,
1196 .poll = poll,
1197};
1198
Corey Minyardc305e3d2008-04-29 01:01:10 -07001199/*
1200 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1201 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Corey Minyardb0defcd2006-03-26 01:37:20 -08001204static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001205static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001206static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001209#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Corey Minyardd941aea2013-02-27 17:05:12 -08001211#ifdef CONFIG_ACPI
1212static bool si_tryacpi = 1;
1213#endif
1214#ifdef CONFIG_DMI
1215static bool si_trydmi = 1;
1216#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001217static bool si_tryplatform = 1;
1218#ifdef CONFIG_PCI
1219static bool si_trypci = 1;
1220#endif
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301221static bool si_trydefaults = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222static char *si_type[SI_MAX_PARMS];
1223#define MAX_SI_TYPE_STR 30
1224static char si_type_str[MAX_SI_TYPE_STR];
1225static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001226static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001228static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001230static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001232static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001234static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001236static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001237static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001238static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Corey Minyardb361e272006-12-06 20:41:07 -08001240#define IPMI_IO_ADDR_SPACE 0
1241#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001242static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001243
1244static int hotmod_handler(const char *val, struct kernel_param *kp);
1245
1246module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1247MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1248 " Documentation/IPMI.txt in the kernel sources for the"
1249 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Corey Minyardd941aea2013-02-27 17:05:12 -08001251#ifdef CONFIG_ACPI
1252module_param_named(tryacpi, si_tryacpi, bool, 0);
1253MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1254 " default scan of the interfaces identified via ACPI");
1255#endif
1256#ifdef CONFIG_DMI
1257module_param_named(trydmi, si_trydmi, bool, 0);
1258MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1259 " default scan of the interfaces identified via DMI");
1260#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001261module_param_named(tryplatform, si_tryplatform, bool, 0);
1262MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1263 " default scan of the interfaces identified via platform"
1264 " interfaces like openfirmware");
1265#ifdef CONFIG_PCI
1266module_param_named(trypci, si_trypci, bool, 0);
1267MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1268 " default scan of the interfaces identified via pci");
1269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270module_param_named(trydefaults, si_trydefaults, bool, 0);
1271MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1272 " default scan of the KCS and SMIC interface at the standard"
1273 " address");
1274module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1275MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1276 " interface separated by commas. The types are 'kcs',"
1277 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1278 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001279module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1281 " addresses separated by commas. Only use if an interface"
1282 " is in memory. Otherwise, set it to zero or leave"
1283 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001284module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1286 " addresses separated by commas. Only use if an interface"
1287 " is a port. Otherwise, set it to zero or leave"
1288 " it blank.");
1289module_param_array(irqs, int, &num_irqs, 0);
1290MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1291 " addresses separated by commas. Only use if an interface"
1292 " has an interrupt. Otherwise, set it to zero or leave"
1293 " it blank.");
1294module_param_array(regspacings, int, &num_regspacings, 0);
1295MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1296 " and each successive register used by the interface. For"
1297 " instance, if the start address is 0xca2 and the spacing"
1298 " is 2, then the second address is at 0xca4. Defaults"
1299 " to 1.");
1300module_param_array(regsizes, int, &num_regsizes, 0);
1301MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1302 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1303 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1304 " the 8-bit IPMI register has to be read from a larger"
1305 " register.");
1306module_param_array(regshifts, int, &num_regshifts, 0);
1307MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1308 " IPMI register, in bits. For instance, if the data"
1309 " is read from a 32-bit word and the IPMI data is in"
1310 " bit 8-15, then the shift would be 8");
1311module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1312MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1313 " the controller. Normally this is 0x20, but can be"
1314 " overridden by this parm. This is an array indexed"
1315 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001316module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1317MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1318 " disabled(0). Normally the IPMI driver auto-detects"
1319 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001320module_param(unload_when_empty, int, 0);
1321MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1322 " specified or found, default is 1. Setting to 0"
1323 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001324module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1325MODULE_PARM_DESC(kipmid_max_busy_us,
1326 "Max time (in microseconds) to busy-wait for IPMI data before"
1327 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1328 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330
Corey Minyardb0defcd2006-03-26 01:37:20 -08001331static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001333 if (info->si_type == SI_BT)
1334 /* Disable the interrupt in the BT interface. */
1335 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1336 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339static int std_irq_setup(struct smi_info *info)
1340{
1341 int rv;
1342
Corey Minyardb0defcd2006-03-26 01:37:20 -08001343 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return 0;
1345
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001346 if (info->si_type == SI_BT) {
1347 rv = request_irq(info->irq,
1348 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001349 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001350 DEVICE_NAME,
1351 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001352 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001353 /* Enable the interrupt in the BT interface. */
1354 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1355 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1356 } else
1357 rv = request_irq(info->irq,
1358 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001359 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001360 DEVICE_NAME,
1361 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001363 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1364 " running polled\n",
1365 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 info->irq = 0;
1367 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001368 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001369 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
1372 return rv;
1373}
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1376{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001377 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Corey Minyardb0defcd2006-03-26 01:37:20 -08001379 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
1382static void port_outb(struct si_sm_io *io, unsigned int offset,
1383 unsigned char b)
1384{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001385 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Corey Minyardb0defcd2006-03-26 01:37:20 -08001387 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
1390static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1391{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001392 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Corey Minyardb0defcd2006-03-26 01:37:20 -08001394 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397static void port_outw(struct si_sm_io *io, unsigned int offset,
1398 unsigned char b)
1399{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001400 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Corey Minyardb0defcd2006-03-26 01:37:20 -08001402 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
1405static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1406{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001407 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Corey Minyardb0defcd2006-03-26 01:37:20 -08001409 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
1412static void port_outl(struct si_sm_io *io, unsigned int offset,
1413 unsigned char b)
1414{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001415 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Corey Minyardb0defcd2006-03-26 01:37:20 -08001417 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
1420static void port_cleanup(struct smi_info *info)
1421{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001422 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001423 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Corey Minyardb0defcd2006-03-26 01:37:20 -08001425 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001426 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001427 release_region(addr + idx * info->io.regspacing,
1428 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
1432static int port_setup(struct smi_info *info)
1433{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001434 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001435 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Corey Minyardb0defcd2006-03-26 01:37:20 -08001437 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return -ENODEV;
1439
1440 info->io_cleanup = port_cleanup;
1441
Corey Minyardc305e3d2008-04-29 01:01:10 -07001442 /*
1443 * Figure out the actual inb/inw/inl/etc routine to use based
1444 * upon the register size.
1445 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 switch (info->io.regsize) {
1447 case 1:
1448 info->io.inputb = port_inb;
1449 info->io.outputb = port_outb;
1450 break;
1451 case 2:
1452 info->io.inputb = port_inw;
1453 info->io.outputb = port_outw;
1454 break;
1455 case 4:
1456 info->io.inputb = port_inl;
1457 info->io.outputb = port_outl;
1458 break;
1459 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001460 dev_warn(info->dev, "Invalid register size: %d\n",
1461 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return -EINVAL;
1463 }
1464
Corey Minyardc305e3d2008-04-29 01:01:10 -07001465 /*
1466 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001467 * tables. This causes problems when trying to register the
1468 * entire I/O region. Therefore we must register each I/O
1469 * port separately.
1470 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001471 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001472 if (request_region(addr + idx * info->io.regspacing,
1473 info->io.regsize, DEVICE_NAME) == NULL) {
1474 /* Undo allocations */
1475 while (idx--) {
1476 release_region(addr + idx * info->io.regspacing,
1477 info->io.regsize);
1478 }
1479 return -EIO;
1480 }
1481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return 0;
1483}
1484
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001485static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 return readb((io->addr)+(offset * io->regspacing));
1488}
1489
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001490static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 unsigned char b)
1492{
1493 writeb(b, (io->addr)+(offset * io->regspacing));
1494}
1495
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001496static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001499 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001502static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 unsigned char b)
1504{
1505 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1506}
1507
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001508static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
1510 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001511 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001514static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 unsigned char b)
1516{
1517 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1518}
1519
1520#ifdef readq
1521static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1522{
1523 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001524 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527static void mem_outq(struct si_sm_io *io, unsigned int offset,
1528 unsigned char b)
1529{
1530 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1531}
1532#endif
1533
1534static void mem_cleanup(struct smi_info *info)
1535{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001536 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 int mapsize;
1538
1539 if (info->io.addr) {
1540 iounmap(info->io.addr);
1541
1542 mapsize = ((info->io_size * info->io.regspacing)
1543 - (info->io.regspacing - info->io.regsize));
1544
Corey Minyardb0defcd2006-03-26 01:37:20 -08001545 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
1549static int mem_setup(struct smi_info *info)
1550{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001551 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 int mapsize;
1553
Corey Minyardb0defcd2006-03-26 01:37:20 -08001554 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return -ENODEV;
1556
1557 info->io_cleanup = mem_cleanup;
1558
Corey Minyardc305e3d2008-04-29 01:01:10 -07001559 /*
1560 * Figure out the actual readb/readw/readl/etc routine to use based
1561 * upon the register size.
1562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 switch (info->io.regsize) {
1564 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001565 info->io.inputb = intf_mem_inb;
1566 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 break;
1568 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001569 info->io.inputb = intf_mem_inw;
1570 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 break;
1572 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001573 info->io.inputb = intf_mem_inl;
1574 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 break;
1576#ifdef readq
1577 case 8:
1578 info->io.inputb = mem_inq;
1579 info->io.outputb = mem_outq;
1580 break;
1581#endif
1582 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001583 dev_warn(info->dev, "Invalid register size: %d\n",
1584 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 return -EINVAL;
1586 }
1587
Corey Minyardc305e3d2008-04-29 01:01:10 -07001588 /*
1589 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 * unusual looking calculation, but it avoids claiming any
1591 * more memory than it has to. It will claim everything
1592 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001593 * register.
1594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 mapsize = ((info->io_size * info->io.regspacing)
1596 - (info->io.regspacing - info->io.regsize));
1597
Corey Minyardb0defcd2006-03-26 01:37:20 -08001598 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return -EIO;
1600
Corey Minyardb0defcd2006-03-26 01:37:20 -08001601 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001603 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return -EIO;
1605 }
1606 return 0;
1607}
1608
Corey Minyardb361e272006-12-06 20:41:07 -08001609/*
1610 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1611 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1612 * Options are:
1613 * rsp=<regspacing>
1614 * rsi=<regsize>
1615 * rsh=<regshift>
1616 * irq=<irq>
1617 * ipmb=<ipmb addr>
1618 */
1619enum hotmod_op { HM_ADD, HM_REMOVE };
1620struct hotmod_vals {
1621 char *name;
1622 int val;
1623};
1624static struct hotmod_vals hotmod_ops[] = {
1625 { "add", HM_ADD },
1626 { "remove", HM_REMOVE },
1627 { NULL }
1628};
1629static struct hotmod_vals hotmod_si[] = {
1630 { "kcs", SI_KCS },
1631 { "smic", SI_SMIC },
1632 { "bt", SI_BT },
1633 { NULL }
1634};
1635static struct hotmod_vals hotmod_as[] = {
1636 { "mem", IPMI_MEM_ADDR_SPACE },
1637 { "i/o", IPMI_IO_ADDR_SPACE },
1638 { NULL }
1639};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001640
Corey Minyardb361e272006-12-06 20:41:07 -08001641static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1642{
1643 char *s;
1644 int i;
1645
1646 s = strchr(*curr, ',');
1647 if (!s) {
1648 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1649 return -EINVAL;
1650 }
1651 *s = '\0';
1652 s++;
1653 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001654 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001655 *val = v[i].val;
1656 *curr = s;
1657 return 0;
1658 }
1659 }
1660
1661 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1662 return -EINVAL;
1663}
1664
Corey Minyard1d5636c2006-12-10 02:19:08 -08001665static int check_hotmod_int_op(const char *curr, const char *option,
1666 const char *name, int *val)
1667{
1668 char *n;
1669
1670 if (strcmp(curr, name) == 0) {
1671 if (!option) {
1672 printk(KERN_WARNING PFX
1673 "No option given for '%s'\n",
1674 curr);
1675 return -EINVAL;
1676 }
1677 *val = simple_strtoul(option, &n, 0);
1678 if ((*n != '\0') || (*option == '\0')) {
1679 printk(KERN_WARNING PFX
1680 "Bad option given for '%s'\n",
1681 curr);
1682 return -EINVAL;
1683 }
1684 return 1;
1685 }
1686 return 0;
1687}
1688
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001689static struct smi_info *smi_info_alloc(void)
1690{
1691 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1692
Corey Minyardf60adf42012-03-28 14:42:50 -07001693 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001694 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001695 return info;
1696}
1697
Corey Minyardb361e272006-12-06 20:41:07 -08001698static int hotmod_handler(const char *val, struct kernel_param *kp)
1699{
1700 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001701 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001702 char *next, *curr, *s, *n, *o;
1703 enum hotmod_op op;
1704 enum si_type si_type;
1705 int addr_space;
1706 unsigned long addr;
1707 int regspacing;
1708 int regsize;
1709 int regshift;
1710 int irq;
1711 int ipmb;
1712 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001713 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001714 struct smi_info *info;
1715
1716 if (!str)
1717 return -ENOMEM;
1718
1719 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001720 len = strlen(str);
1721 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001722 while ((ival >= 0) && isspace(str[ival])) {
1723 str[ival] = '\0';
1724 ival--;
1725 }
1726
1727 for (curr = str; curr; curr = next) {
1728 regspacing = 1;
1729 regsize = 1;
1730 regshift = 0;
1731 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001732 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001733
1734 next = strchr(curr, ':');
1735 if (next) {
1736 *next = '\0';
1737 next++;
1738 }
1739
1740 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1741 if (rv)
1742 break;
1743 op = ival;
1744
1745 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1746 if (rv)
1747 break;
1748 si_type = ival;
1749
1750 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1751 if (rv)
1752 break;
1753
1754 s = strchr(curr, ',');
1755 if (s) {
1756 *s = '\0';
1757 s++;
1758 }
1759 addr = simple_strtoul(curr, &n, 0);
1760 if ((*n != '\0') || (*curr == '\0')) {
1761 printk(KERN_WARNING PFX "Invalid hotmod address"
1762 " '%s'\n", curr);
1763 break;
1764 }
1765
1766 while (s) {
1767 curr = s;
1768 s = strchr(curr, ',');
1769 if (s) {
1770 *s = '\0';
1771 s++;
1772 }
1773 o = strchr(curr, '=');
1774 if (o) {
1775 *o = '\0';
1776 o++;
1777 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001778 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1779 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001780 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001781 else if (rv)
1782 continue;
1783 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1784 if (rv < 0)
1785 goto out;
1786 else if (rv)
1787 continue;
1788 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1789 if (rv < 0)
1790 goto out;
1791 else if (rv)
1792 continue;
1793 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1794 if (rv < 0)
1795 goto out;
1796 else if (rv)
1797 continue;
1798 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1799 if (rv < 0)
1800 goto out;
1801 else if (rv)
1802 continue;
1803
1804 rv = -EINVAL;
1805 printk(KERN_WARNING PFX
1806 "Invalid hotmod option '%s'\n",
1807 curr);
1808 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001809 }
1810
1811 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001812 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001813 if (!info) {
1814 rv = -ENOMEM;
1815 goto out;
1816 }
1817
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001818 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001819 info->si_type = si_type;
1820 info->io.addr_data = addr;
1821 info->io.addr_type = addr_space;
1822 if (addr_space == IPMI_MEM_ADDR_SPACE)
1823 info->io_setup = mem_setup;
1824 else
1825 info->io_setup = port_setup;
1826
1827 info->io.addr = NULL;
1828 info->io.regspacing = regspacing;
1829 if (!info->io.regspacing)
1830 info->io.regspacing = DEFAULT_REGSPACING;
1831 info->io.regsize = regsize;
1832 if (!info->io.regsize)
1833 info->io.regsize = DEFAULT_REGSPACING;
1834 info->io.regshift = regshift;
1835 info->irq = irq;
1836 if (info->irq)
1837 info->irq_setup = std_irq_setup;
1838 info->slave_addr = ipmb;
1839
Yinghai Lu7faefea2010-08-10 18:03:10 -07001840 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001841 if (try_smi_init(info))
1842 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07001843 } else {
1844 kfree(info);
1845 }
Corey Minyardb361e272006-12-06 20:41:07 -08001846 } else {
1847 /* remove */
1848 struct smi_info *e, *tmp_e;
1849
1850 mutex_lock(&smi_infos_lock);
1851 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1852 if (e->io.addr_type != addr_space)
1853 continue;
1854 if (e->si_type != si_type)
1855 continue;
1856 if (e->io.addr_data == addr)
1857 cleanup_one_si(e);
1858 }
1859 mutex_unlock(&smi_infos_lock);
1860 }
1861 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001862 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001863 out:
1864 kfree(str);
1865 return rv;
1866}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001867
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001868static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001870 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001871 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 struct smi_info *info;
1873
Corey Minyardb0defcd2006-03-26 01:37:20 -08001874 for (i = 0; i < SI_MAX_PARMS; i++) {
1875 if (!ports[i] && !addrs[i])
1876 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001878 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001879 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001880 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001882 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001883 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001884
Corey Minyard1d5636c2006-12-10 02:19:08 -08001885 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001886 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001887 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001888 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001889 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001890 info->si_type = SI_BT;
1891 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001892 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001893 "for interface %d, was invalid: %s\n",
1894 i, si_type[i]);
1895 kfree(info);
1896 continue;
1897 }
1898
1899 if (ports[i]) {
1900 /* An I/O port */
1901 info->io_setup = port_setup;
1902 info->io.addr_data = ports[i];
1903 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1904 } else if (addrs[i]) {
1905 /* A memory port */
1906 info->io_setup = mem_setup;
1907 info->io.addr_data = addrs[i];
1908 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1909 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001910 printk(KERN_WARNING PFX "Interface type specified "
1911 "for interface %d, but port and address were "
1912 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001913 kfree(info);
1914 continue;
1915 }
1916
1917 info->io.addr = NULL;
1918 info->io.regspacing = regspacings[i];
1919 if (!info->io.regspacing)
1920 info->io.regspacing = DEFAULT_REGSPACING;
1921 info->io.regsize = regsizes[i];
1922 if (!info->io.regsize)
1923 info->io.regsize = DEFAULT_REGSPACING;
1924 info->io.regshift = regshifts[i];
1925 info->irq = irqs[i];
1926 if (info->irq)
1927 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001928 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08001929
Yinghai Lu7faefea2010-08-10 18:03:10 -07001930 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001931 if (try_smi_init(info))
1932 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001933 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001934 } else {
1935 kfree(info);
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001938 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
Len Brown84663612005-08-24 12:09:07 -04001941#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943#include <linux/acpi.h>
1944
Corey Minyardc305e3d2008-04-29 01:01:10 -07001945/*
1946 * Once we get an ACPI failure, we don't try any more, because we go
1947 * through the tables sequentially. Once we don't find a table, there
1948 * are no more.
1949 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001950static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08001953static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
1954 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 struct smi_info *smi_info = context;
1957 unsigned long flags;
1958#ifdef DEBUG_TIMING
1959 struct timeval t;
1960#endif
1961
1962 spin_lock_irqsave(&(smi_info->si_lock), flags);
1963
Corey Minyard64959e22008-04-29 01:01:07 -07001964 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966#ifdef DEBUG_TIMING
1967 do_gettimeofday(&t);
1968 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1969#endif
1970 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1972
1973 return ACPI_INTERRUPT_HANDLED;
1974}
1975
Corey Minyardb0defcd2006-03-26 01:37:20 -08001976static void acpi_gpe_irq_cleanup(struct smi_info *info)
1977{
1978 if (!info->irq)
1979 return;
1980
1981 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1982}
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984static int acpi_gpe_irq_setup(struct smi_info *info)
1985{
1986 acpi_status status;
1987
Corey Minyardb0defcd2006-03-26 01:37:20 -08001988 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return 0;
1990
1991 /* FIXME - is level triggered right? */
1992 status = acpi_install_gpe_handler(NULL,
1993 info->irq,
1994 ACPI_GPE_LEVEL_TRIGGERED,
1995 &ipmi_acpi_gpe,
1996 info);
1997 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001998 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
1999 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 info->irq = 0;
2001 return -EINVAL;
2002 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002003 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002004 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return 0;
2006 }
2007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009/*
2010 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002011 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 */
2013struct SPMITable {
2014 s8 Signature[4];
2015 u32 Length;
2016 u8 Revision;
2017 u8 Checksum;
2018 s8 OEMID[6];
2019 s8 OEMTableID[8];
2020 s8 OEMRevision[4];
2021 s8 CreatorID[4];
2022 s8 CreatorRevision[4];
2023 u8 InterfaceType;
2024 u8 IPMIlegacy;
2025 s16 SpecificationRevision;
2026
2027 /*
2028 * Bit 0 - SCI interrupt supported
2029 * Bit 1 - I/O APIC/SAPIC
2030 */
2031 u8 InterruptType;
2032
Corey Minyardc305e3d2008-04-29 01:01:10 -07002033 /*
2034 * If bit 0 of InterruptType is set, then this is the SCI
2035 * interrupt in the GPEx_STS register.
2036 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 u8 GPE;
2038
2039 s16 Reserved;
2040
Corey Minyardc305e3d2008-04-29 01:01:10 -07002041 /*
2042 * If bit 1 of InterruptType is set, then this is the I/O
2043 * APIC/SAPIC interrupt.
2044 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 u32 GlobalSystemInterrupt;
2046
2047 /* The actual register address. */
2048 struct acpi_generic_address addr;
2049
2050 u8 UID[4];
2051
2052 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2053};
2054
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002055static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002060 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2061 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
2063
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002064 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002065 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002066 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002067 return -ENOMEM;
2068 }
2069
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002070 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002071 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002074 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002076 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002079 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002082 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002085 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2086 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002087 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return -EIO;
2089 }
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (spmi->InterruptType & 1) {
2092 /* We've got a GPE interrupt. */
2093 info->irq = spmi->GPE;
2094 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 } else if (spmi->InterruptType & 2) {
2096 /* We've got an APIC/SAPIC interrupt. */
2097 info->irq = spmi->GlobalSystemInterrupt;
2098 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 } else {
2100 /* Use the default interrupt setting. */
2101 info->irq = 0;
2102 info->irq_setup = NULL;
2103 }
2104
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002105 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002106 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002107 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002108 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002109 info->io.regspacing = DEFAULT_REGSPACING;
2110 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002111 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002112 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002114 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002116 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002117 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002119 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 } else {
2121 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002122 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return -EIO;
2124 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002125 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002127 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2128 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2129 info->io.addr_data, info->io.regsize, info->io.regspacing,
2130 info->irq);
2131
Yinghai Lu7faefea2010-08-10 18:03:10 -07002132 if (add_smi(info))
2133 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return 0;
2136}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002137
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002138static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002139{
2140 acpi_status status;
2141 struct SPMITable *spmi;
2142 int i;
2143
2144 if (acpi_disabled)
2145 return;
2146
2147 if (acpi_failure)
2148 return;
2149
2150 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002151 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2152 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002153 if (status != AE_OK)
2154 return;
2155
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002156 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002157 }
2158}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002159
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002160static int ipmi_pnp_probe(struct pnp_dev *dev,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002161 const struct pnp_device_id *dev_id)
2162{
2163 struct acpi_device *acpi_dev;
2164 struct smi_info *info;
Yinghai Lua9e31762010-09-22 13:04:53 -07002165 struct resource *res, *res_second;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002166 acpi_handle handle;
2167 acpi_status status;
2168 unsigned long long tmp;
2169
2170 acpi_dev = pnp_acpi_device(dev);
2171 if (!acpi_dev)
2172 return -ENODEV;
2173
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002174 info = smi_info_alloc();
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002175 if (!info)
2176 return -ENOMEM;
2177
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002178 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002179 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002180
2181 handle = acpi_dev->handle;
Zhao Yakui16f42322010-12-08 10:10:16 +08002182 info->addr_info.acpi_info.acpi_handle = handle;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002183
2184 /* _IFT tells us the interface type: KCS, BT, etc */
2185 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2186 if (ACPI_FAILURE(status))
2187 goto err_free;
2188
2189 switch (tmp) {
2190 case 1:
2191 info->si_type = SI_KCS;
2192 break;
2193 case 2:
2194 info->si_type = SI_SMIC;
2195 break;
2196 case 3:
2197 info->si_type = SI_BT;
2198 break;
2199 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002200 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002201 goto err_free;
2202 }
2203
Myron Stowe279fbd02010-05-26 14:43:52 -07002204 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2205 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002206 info->io_setup = port_setup;
2207 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002208 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002209 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2210 if (res) {
2211 info->io_setup = mem_setup;
2212 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2213 }
2214 }
2215 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002216 dev_err(&dev->dev, "no I/O or memory address\n");
2217 goto err_free;
2218 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002219 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002220
2221 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lua9e31762010-09-22 13:04:53 -07002222 res_second = pnp_get_resource(dev,
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002223 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2224 IORESOURCE_IO : IORESOURCE_MEM,
2225 1);
Yinghai Lua9e31762010-09-22 13:04:53 -07002226 if (res_second) {
2227 if (res_second->start > info->io.addr_data)
2228 info->io.regspacing = res_second->start - info->io.addr_data;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002229 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002230 info->io.regsize = DEFAULT_REGSPACING;
2231 info->io.regshift = 0;
2232
2233 /* If _GPE exists, use it; otherwise use standard interrupts */
2234 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2235 if (ACPI_SUCCESS(status)) {
2236 info->irq = tmp;
2237 info->irq_setup = acpi_gpe_irq_setup;
2238 } else if (pnp_irq_valid(dev, 0)) {
2239 info->irq = pnp_irq(dev, 0);
2240 info->irq_setup = std_irq_setup;
2241 }
2242
Myron Stowe8c8eae22010-05-26 14:43:51 -07002243 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002244 pnp_set_drvdata(dev, info);
2245
Myron Stowe279fbd02010-05-26 14:43:52 -07002246 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2247 res, info->io.regsize, info->io.regspacing,
2248 info->irq);
2249
Yinghai Lu7faefea2010-08-10 18:03:10 -07002250 if (add_smi(info))
2251 goto err_free;
2252
2253 return 0;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002254
2255err_free:
2256 kfree(info);
2257 return -EINVAL;
2258}
2259
Bill Pemberton39af33f2012-11-19 13:26:26 -05002260static void ipmi_pnp_remove(struct pnp_dev *dev)
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002261{
2262 struct smi_info *info = pnp_get_drvdata(dev);
2263
2264 cleanup_one_si(info);
2265}
2266
2267static const struct pnp_device_id pnp_dev_table[] = {
2268 {"IPI0001", 0},
2269 {"", 0},
2270};
2271
2272static struct pnp_driver ipmi_pnp_driver = {
2273 .name = DEVICE_NAME,
2274 .probe = ipmi_pnp_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002275 .remove = ipmi_pnp_remove,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002276 .id_table = pnp_dev_table,
2277};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278#endif
2279
Matt Domscha9fad4c2006-01-11 12:17:44 -08002280#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002281struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 u8 type;
2283 u8 addr_space;
2284 unsigned long base_addr;
2285 u8 irq;
2286 u8 offset;
2287 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002288};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002290static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002291 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Jeff Garzik18552562007-10-03 15:15:40 -04002293 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 unsigned long base_addr;
2295 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002296 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Corey Minyardb0defcd2006-03-26 01:37:20 -08002298 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 memcpy(&base_addr, data+8, sizeof(unsigned long));
2301 if (len >= 0x11) {
2302 if (base_addr & 1) {
2303 /* I/O */
2304 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002305 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002306 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002308 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2311 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002312 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Corey Minyardb0defcd2006-03-26 01:37:20 -08002314 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002317 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002318 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002320 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 break;
2322 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002323 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 break;
2325 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002326 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 break;
2328 default:
2329 /* Some other interface, just ignore it. */
2330 return -EIO;
2331 }
2332 } else {
2333 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002334 /*
2335 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002336 * address should be 1 if the address is I/O and 0 if
2337 * the address is in memory. So many systems get that
2338 * wrong (and all that I have seen are I/O) so we just
2339 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002340 * memory should use the newer spec, anyway.
2341 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002342 dmi->base_addr = base_addr & 0xfffe;
2343 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2344 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346
Corey Minyardb0defcd2006-03-26 01:37:20 -08002347 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Corey Minyardb0defcd2006-03-26 01:37:20 -08002349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002352static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Corey Minyarde8b33612005-09-06 15:18:45 -07002354 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002356 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002357 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002358 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002359 return;
2360 }
2361
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002362 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002363 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Corey Minyarde8b33612005-09-06 15:18:45 -07002365 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002366 case 0x01: /* KCS */
2367 info->si_type = SI_KCS;
2368 break;
2369 case 0x02: /* SMIC */
2370 info->si_type = SI_SMIC;
2371 break;
2372 case 0x03: /* BT */
2373 info->si_type = SI_BT;
2374 break;
2375 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002376 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002377 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379
Corey Minyardb0defcd2006-03-26 01:37:20 -08002380 switch (ipmi_data->addr_space) {
2381 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002383 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Corey Minyardb0defcd2006-03-26 01:37:20 -08002386 case IPMI_IO_ADDR_SPACE:
2387 info->io_setup = port_setup;
2388 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2389 break;
2390
2391 default:
2392 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002393 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002394 ipmi_data->addr_space);
2395 return;
2396 }
2397 info->io.addr_data = ipmi_data->base_addr;
2398
2399 info->io.regspacing = ipmi_data->offset;
2400 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 info->io.regspacing = DEFAULT_REGSPACING;
2402 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002403 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 info->slave_addr = ipmi_data->slave_addr;
2406
Corey Minyardb0defcd2006-03-26 01:37:20 -08002407 info->irq = ipmi_data->irq;
2408 if (info->irq)
2409 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002411 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2412 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2413 info->io.addr_data, info->io.regsize, info->io.regspacing,
2414 info->irq);
2415
Yinghai Lu7faefea2010-08-10 18:03:10 -07002416 if (add_smi(info))
2417 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002418}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002420static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002421{
Jeff Garzik18552562007-10-03 15:15:40 -04002422 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002423 struct dmi_ipmi_data data;
2424 int rv;
2425
2426 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002427 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002428 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2429 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002430 if (!rv)
2431 try_init_dmi(&data);
2432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002434#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436#ifdef CONFIG_PCI
2437
Corey Minyardb0defcd2006-03-26 01:37:20 -08002438#define PCI_ERMC_CLASSCODE 0x0C0700
2439#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2440#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2441#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2442#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2443#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445#define PCI_HP_VENDOR_ID 0x103C
2446#define PCI_MMC_DEVICE_ID 0x121A
2447#define PCI_MMC_ADDR_CW 0x10
2448
Corey Minyardb0defcd2006-03-26 01:37:20 -08002449static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002451 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Corey Minyardb0defcd2006-03-26 01:37:20 -08002453 pci_disable_device(pdev);
2454}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002456static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002457{
2458 if (info->si_type == SI_KCS) {
2459 unsigned char status;
2460 int regspacing;
2461
2462 info->io.regsize = DEFAULT_REGSIZE;
2463 info->io.regshift = 0;
2464 info->io_size = 2;
2465 info->handlers = &kcs_smi_handlers;
2466
2467 /* detect 1, 4, 16byte spacing */
2468 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2469 info->io.regspacing = regspacing;
2470 if (info->io_setup(info)) {
2471 dev_err(info->dev,
2472 "Could not setup I/O space\n");
2473 return DEFAULT_REGSPACING;
2474 }
2475 /* write invalid cmd */
2476 info->io.outputb(&info->io, 1, 0x10);
2477 /* read status back */
2478 status = info->io.inputb(&info->io, 1);
2479 info->io_cleanup(info);
2480 if (status)
2481 return regspacing;
2482 regspacing *= 4;
2483 }
2484 }
2485 return DEFAULT_REGSPACING;
2486}
2487
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002488static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002489 const struct pci_device_id *ent)
2490{
2491 int rv;
2492 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2493 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002495 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002496 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002497 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002498
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002499 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002500 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002501
2502 switch (class_type) {
2503 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2504 info->si_type = SI_SMIC;
2505 break;
2506
2507 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2508 info->si_type = SI_KCS;
2509 break;
2510
2511 case PCI_ERMC_CLASSCODE_TYPE_BT:
2512 info->si_type = SI_BT;
2513 break;
2514
2515 default:
2516 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002517 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002518 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Corey Minyardb0defcd2006-03-26 01:37:20 -08002521 rv = pci_enable_device(pdev);
2522 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002523 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002524 kfree(info);
2525 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
2527
Corey Minyardb0defcd2006-03-26 01:37:20 -08002528 info->addr_source_cleanup = ipmi_pci_cleanup;
2529 info->addr_source_data = pdev;
2530
Corey Minyardb0defcd2006-03-26 01:37:20 -08002531 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2532 info->io_setup = port_setup;
2533 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2534 } else {
2535 info->io_setup = mem_setup;
2536 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002538 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Corey Minyarda6c16c22012-10-16 15:53:40 -05002540 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2541 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002542 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Corey Minyardb0defcd2006-03-26 01:37:20 -08002544 info->irq = pdev->irq;
2545 if (info->irq)
2546 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Corey Minyard50c812b2006-03-26 01:37:21 -08002548 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002549 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002550
Myron Stowe279fbd02010-05-26 14:43:52 -07002551 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2552 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2553 info->irq);
2554
Yinghai Lu7faefea2010-08-10 18:03:10 -07002555 if (add_smi(info))
2556 kfree(info);
2557
2558 return 0;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Bill Pemberton39af33f2012-11-19 13:26:26 -05002561static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002562{
Corey Minyardfca3b742007-05-08 00:23:59 -07002563 struct smi_info *info = pci_get_drvdata(pdev);
2564 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002565}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Corey Minyardb0defcd2006-03-26 01:37:20 -08002567static struct pci_device_id ipmi_pci_devices[] = {
2568 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002569 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2570 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002571};
2572MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2573
2574static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002575 .name = DEVICE_NAME,
2576 .id_table = ipmi_pci_devices,
2577 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002578 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002579};
2580#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Grant Likelyb1608d62011-05-18 11:19:24 -06002582static struct of_device_id ipmi_match[];
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002583static int ipmi_probe(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002584{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002585#ifdef CONFIG_OF
Grant Likelyb1608d62011-05-18 11:19:24 -06002586 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002587 struct smi_info *info;
2588 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002589 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002590 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002591 int ret;
2592 int proplen;
2593
Myron Stowe279fbd02010-05-26 14:43:52 -07002594 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002595
Grant Likelyb1608d62011-05-18 11:19:24 -06002596 match = of_match_device(ipmi_match, &dev->dev);
2597 if (!match)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002598 return -EINVAL;
2599
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002600 ret = of_address_to_resource(np, 0, &resource);
2601 if (ret) {
2602 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2603 return ret;
2604 }
2605
Stephen Rothwell9c250992007-08-15 16:42:12 +10002606 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002607 if (regsize && proplen != 4) {
2608 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2609 return -EINVAL;
2610 }
2611
Stephen Rothwell9c250992007-08-15 16:42:12 +10002612 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002613 if (regspacing && proplen != 4) {
2614 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2615 return -EINVAL;
2616 }
2617
Stephen Rothwell9c250992007-08-15 16:42:12 +10002618 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619 if (regshift && proplen != 4) {
2620 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2621 return -EINVAL;
2622 }
2623
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002624 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002625
2626 if (!info) {
2627 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002628 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002629 return -ENOMEM;
2630 }
2631
Grant Likelyb1608d62011-05-18 11:19:24 -06002632 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002633 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002634 info->irq_setup = std_irq_setup;
2635
Nate Case3b7ec112008-05-14 16:05:39 -07002636 if (resource.flags & IORESOURCE_IO) {
2637 info->io_setup = port_setup;
2638 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2639 } else {
2640 info->io_setup = mem_setup;
2641 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2642 }
2643
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002644 info->io.addr_data = resource.start;
2645
Rob Herringda81c3b2010-11-16 14:33:50 -06002646 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2647 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2648 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002649
Grant Likely61c7a082010-04-13 16:12:29 -07002650 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002651 info->dev = &dev->dev;
2652
Myron Stowe279fbd02010-05-26 14:43:52 -07002653 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002654 info->io.addr_data, info->io.regsize, info->io.regspacing,
2655 info->irq);
2656
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002657 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002658
Yinghai Lu7faefea2010-08-10 18:03:10 -07002659 if (add_smi(info)) {
2660 kfree(info);
2661 return -EBUSY;
2662 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002663#endif
Yinghai Lu7faefea2010-08-10 18:03:10 -07002664 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002665}
2666
Bill Pemberton39af33f2012-11-19 13:26:26 -05002667static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002668{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002669#ifdef CONFIG_OF
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002670 cleanup_one_si(dev_get_drvdata(&dev->dev));
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002671#endif
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002672 return 0;
2673}
2674
2675static struct of_device_id ipmi_match[] =
2676{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002677 { .type = "ipmi", .compatible = "ipmi-kcs",
2678 .data = (void *)(unsigned long) SI_KCS },
2679 { .type = "ipmi", .compatible = "ipmi-smic",
2680 .data = (void *)(unsigned long) SI_SMIC },
2681 { .type = "ipmi", .compatible = "ipmi-bt",
2682 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002683 {},
2684};
2685
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002686static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002687 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002688 .name = DEVICE_NAME,
Grant Likely40182942010-04-13 16:13:02 -07002689 .owner = THIS_MODULE,
2690 .of_match_table = ipmi_match,
2691 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002692 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002693 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002694};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002695
Corey Minyard40112ae2009-04-21 12:24:03 -07002696static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Corey Minyard50c812b2006-03-26 01:37:21 -08002698 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002701 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002702 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2703 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002704 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 smi_result = smi_info->handlers->event(
2706 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002707 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 smi_result = smi_info->handlers->event(
2709 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002710 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 break;
2712 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002713 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002714 /*
2715 * We couldn't get the state machine to run, so whatever's at
2716 * the port is probably not an IPMI SMI interface.
2717 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002718 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Corey Minyard40112ae2009-04-21 12:24:03 -07002720 return 0;
2721}
2722
2723static int try_get_dev_id(struct smi_info *smi_info)
2724{
2725 unsigned char msg[2];
2726 unsigned char *resp;
2727 unsigned long resp_len;
2728 int rv = 0;
2729
2730 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2731 if (!resp)
2732 return -ENOMEM;
2733
2734 /*
2735 * Do a Get Device ID command, since it comes back with some
2736 * useful info.
2737 */
2738 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2739 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2740 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2741
2742 rv = wait_for_msg_done(smi_info);
2743 if (rv)
2744 goto out;
2745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2747 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Corey Minyardd8c98612007-10-18 03:07:11 -07002749 /* Check and record info from the get device id, in case we need it. */
2750 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 out:
2753 kfree(resp);
2754 return rv;
2755}
2756
Corey Minyard40112ae2009-04-21 12:24:03 -07002757static int try_enable_event_buffer(struct smi_info *smi_info)
2758{
2759 unsigned char msg[3];
2760 unsigned char *resp;
2761 unsigned long resp_len;
2762 int rv = 0;
2763
2764 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2765 if (!resp)
2766 return -ENOMEM;
2767
2768 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2769 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2770 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2771
2772 rv = wait_for_msg_done(smi_info);
2773 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002774 printk(KERN_WARNING PFX "Error getting response from get"
2775 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002776 " enabled.\n");
2777 goto out;
2778 }
2779
2780 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2781 resp, IPMI_MAX_MSG_LENGTH);
2782
2783 if (resp_len < 4 ||
2784 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2785 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2786 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002787 printk(KERN_WARNING PFX "Invalid return from get global"
2788 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002789 rv = -EINVAL;
2790 goto out;
2791 }
2792
2793 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2794 /* buffer is already enabled, nothing to do. */
2795 goto out;
2796
2797 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2798 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2799 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2800 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2801
2802 rv = wait_for_msg_done(smi_info);
2803 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002804 printk(KERN_WARNING PFX "Error getting response from set"
2805 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002806 " enabled.\n");
2807 goto out;
2808 }
2809
2810 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2811 resp, IPMI_MAX_MSG_LENGTH);
2812
2813 if (resp_len < 3 ||
2814 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2815 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002816 printk(KERN_WARNING PFX "Invalid return from get global,"
2817 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002818 rv = -EINVAL;
2819 goto out;
2820 }
2821
2822 if (resp[2] != 0)
2823 /*
2824 * An error when setting the event buffer bit means
2825 * that the event buffer is not supported.
2826 */
2827 rv = -ENOENT;
2828 out:
2829 kfree(resp);
2830 return rv;
2831}
2832
Alexey Dobriyan07412732011-05-26 16:25:55 -07002833static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
Alexey Dobriyan07412732011-05-26 16:25:55 -07002835 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Alexey Dobriyan07412732011-05-26 16:25:55 -07002837 return seq_printf(m, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
Alexey Dobriyan07412732011-05-26 16:25:55 -07002840static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Alexey Dobriyan07412732011-05-26 16:25:55 -07002842 return single_open(file, smi_type_proc_show, PDE(inode)->data);
2843}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Alexey Dobriyan07412732011-05-26 16:25:55 -07002845static const struct file_operations smi_type_proc_ops = {
2846 .open = smi_type_proc_open,
2847 .read = seq_read,
2848 .llseek = seq_lseek,
2849 .release = single_release,
2850};
2851
2852static int smi_si_stats_proc_show(struct seq_file *m, void *v)
2853{
2854 struct smi_info *smi = m->private;
2855
2856 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002857 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07002858 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002859 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002860 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002861 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002862 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002863 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002864 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002865 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002866 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002867 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002868 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002869 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002870 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002871 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002872 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002873 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002874 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002875 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002876 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002877 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002878 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002879 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002880 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08002881}
2882
Alexey Dobriyan07412732011-05-26 16:25:55 -07002883static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08002884{
Alexey Dobriyan07412732011-05-26 16:25:55 -07002885 return single_open(file, smi_si_stats_proc_show, PDE(inode)->data);
2886}
Corey Minyardb361e272006-12-06 20:41:07 -08002887
Alexey Dobriyan07412732011-05-26 16:25:55 -07002888static const struct file_operations smi_si_stats_proc_ops = {
2889 .open = smi_si_stats_proc_open,
2890 .read = seq_read,
2891 .llseek = seq_lseek,
2892 .release = single_release,
2893};
2894
2895static int smi_params_proc_show(struct seq_file *m, void *v)
2896{
2897 struct smi_info *smi = m->private;
2898
2899 return seq_printf(m,
Corey Minyardb361e272006-12-06 20:41:07 -08002900 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2901 si_to_str[smi->si_type],
2902 addr_space_to_str[smi->io.addr_type],
2903 smi->io.addr_data,
2904 smi->io.regspacing,
2905 smi->io.regsize,
2906 smi->io.regshift,
2907 smi->irq,
2908 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909}
2910
Alexey Dobriyan07412732011-05-26 16:25:55 -07002911static int smi_params_proc_open(struct inode *inode, struct file *file)
2912{
2913 return single_open(file, smi_params_proc_show, PDE(inode)->data);
2914}
2915
2916static const struct file_operations smi_params_proc_ops = {
2917 .open = smi_params_proc_open,
2918 .read = seq_read,
2919 .llseek = seq_lseek,
2920 .release = single_release,
2921};
2922
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002923/*
2924 * oem_data_avail_to_receive_msg_avail
2925 * @info - smi_info structure with msg_flags set
2926 *
2927 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2928 * Returns 1 indicating need to re-run handle_flags().
2929 */
2930static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2931{
Corey Minyarde8b33612005-09-06 15:18:45 -07002932 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002933 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002934 return 1;
2935}
2936
2937/*
2938 * setup_dell_poweredge_oem_data_handler
2939 * @info - smi_info.device_id must be populated
2940 *
2941 * Systems that match, but have firmware version < 1.40 may assert
2942 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2943 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2944 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2945 * as RECEIVE_MSG_AVAIL instead.
2946 *
2947 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2948 * assert the OEM[012] bits, and if it did, the driver would have to
2949 * change to handle that properly, we don't actually check for the
2950 * firmware version.
2951 * Device ID = 0x20 BMC on PowerEdge 8G servers
2952 * Device Revision = 0x80
2953 * Firmware Revision1 = 0x01 BMC version 1.40
2954 * Firmware Revision2 = 0x40 BCD encoded
2955 * IPMI Version = 0x51 IPMI 1.5
2956 * Manufacturer ID = A2 02 00 Dell IANA
2957 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002958 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2959 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2960 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002961 */
2962#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2963#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2964#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002965#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002966static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2967{
2968 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002969 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002970 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2971 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002972 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002973 smi_info->oem_data_avail_handler =
2974 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002975 } else if (ipmi_version_major(id) < 1 ||
2976 (ipmi_version_major(id) == 1 &&
2977 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002978 smi_info->oem_data_avail_handler =
2979 oem_data_avail_to_receive_msg_avail;
2980 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002981 }
2982}
2983
Corey Minyardea940272005-11-07 00:59:59 -08002984#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2985static void return_hosed_msg_badsize(struct smi_info *smi_info)
2986{
2987 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2988
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002989 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08002990 msg->rsp[0] = msg->data[0] | 4;
2991 msg->rsp[1] = msg->data[1];
2992 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2993 msg->rsp_size = 3;
2994 smi_info->curr_msg = NULL;
2995 deliver_recv_msg(smi_info, msg);
2996}
2997
2998/*
2999 * dell_poweredge_bt_xaction_handler
3000 * @info - smi_info.device_id must be populated
3001 *
3002 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3003 * not respond to a Get SDR command if the length of the data
3004 * requested is exactly 0x3A, which leads to command timeouts and no
3005 * data returned. This intercepts such commands, and causes userspace
3006 * callers to try again with a different-sized buffer, which succeeds.
3007 */
3008
3009#define STORAGE_NETFN 0x0A
3010#define STORAGE_CMD_GET_SDR 0x23
3011static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3012 unsigned long unused,
3013 void *in)
3014{
3015 struct smi_info *smi_info = in;
3016 unsigned char *data = smi_info->curr_msg->data;
3017 unsigned int size = smi_info->curr_msg->data_size;
3018 if (size >= 8 &&
3019 (data[0]>>2) == STORAGE_NETFN &&
3020 data[1] == STORAGE_CMD_GET_SDR &&
3021 data[7] == 0x3A) {
3022 return_hosed_msg_badsize(smi_info);
3023 return NOTIFY_STOP;
3024 }
3025 return NOTIFY_DONE;
3026}
3027
3028static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3029 .notifier_call = dell_poweredge_bt_xaction_handler,
3030};
3031
3032/*
3033 * setup_dell_poweredge_bt_xaction_handler
3034 * @info - smi_info.device_id must be filled in already
3035 *
3036 * Fills in smi_info.device_id.start_transaction_pre_hook
3037 * when we know what function to use there.
3038 */
3039static void
3040setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3041{
3042 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003043 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003044 smi_info->si_type == SI_BT)
3045 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3046}
3047
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003048/*
3049 * setup_oem_data_handler
3050 * @info - smi_info.device_id must be filled in already
3051 *
3052 * Fills in smi_info.device_id.oem_data_available_handler
3053 * when we know what function to use there.
3054 */
3055
3056static void setup_oem_data_handler(struct smi_info *smi_info)
3057{
3058 setup_dell_poweredge_oem_data_handler(smi_info);
3059}
3060
Corey Minyardea940272005-11-07 00:59:59 -08003061static void setup_xaction_handlers(struct smi_info *smi_info)
3062{
3063 setup_dell_poweredge_bt_xaction_handler(smi_info);
3064}
3065
Corey Minyarda9a2c442005-11-07 01:00:03 -08003066static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3067{
Corey Minyard453823b2006-03-31 02:30:39 -08003068 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003069 /*
3070 * The timer and thread are only running if the
3071 * interface has been started up and registered.
3072 */
Corey Minyard453823b2006-03-31 02:30:39 -08003073 if (smi_info->thread != NULL)
3074 kthread_stop(smi_info->thread);
3075 del_timer_sync(&smi_info->si_timer);
3076 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08003077}
3078
Bill Pemberton0bbed202012-11-19 13:24:36 -05003079static struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003081 int type;
3082 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003083} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003084{
3085 { .type = SI_KCS, .port = 0xca2 },
3086 { .type = SI_SMIC, .port = 0xca9 },
3087 { .type = SI_BT, .port = 0xe4 },
3088 { .port = 0 }
3089};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003091static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003092{
3093 struct smi_info *info;
3094 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Corey Minyardb0defcd2006-03-26 01:37:20 -08003096 for (i = 0; ; i++) {
3097 if (!ipmi_defaults[i].port)
3098 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003099#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003100 if (check_legacy_ioport(ipmi_defaults[i].port))
3101 continue;
3102#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003103 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003104 if (!info)
3105 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003106
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003107 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003108
3109 info->si_type = ipmi_defaults[i].type;
3110 info->io_setup = port_setup;
3111 info->io.addr_data = ipmi_defaults[i].port;
3112 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3113
3114 info->io.addr = NULL;
3115 info->io.regspacing = DEFAULT_REGSPACING;
3116 info->io.regsize = DEFAULT_REGSPACING;
3117 info->io.regshift = 0;
3118
Matthew Garrett2407d772010-05-26 14:43:46 -07003119 if (add_smi(info) == 0) {
3120 if ((try_smi_init(info)) == 0) {
3121 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003122 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003123 " state machine at %s address 0x%lx\n",
3124 si_to_str[info->si_type],
3125 addr_space_to_str[info->io.addr_type],
3126 info->io.addr_data);
3127 } else
3128 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003129 } else {
3130 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003131 }
3132 }
3133}
3134
3135static int is_new_interface(struct smi_info *info)
3136{
3137 struct smi_info *e;
3138
3139 list_for_each_entry(e, &smi_infos, link) {
3140 if (e->io.addr_type != info->io.addr_type)
3141 continue;
3142 if (e->io.addr_data == info->io.addr_data)
3143 return 0;
3144 }
3145
3146 return 1;
3147}
3148
Matthew Garrett2407d772010-05-26 14:43:46 -07003149static int add_smi(struct smi_info *new_smi)
3150{
3151 int rv = 0;
3152
Myron Stowe279fbd02010-05-26 14:43:52 -07003153 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Matthew Garrett2407d772010-05-26 14:43:46 -07003154 ipmi_addr_src_to_str[new_smi->addr_source],
3155 si_to_str[new_smi->si_type]);
3156 mutex_lock(&smi_infos_lock);
3157 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003158 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003159 rv = -EBUSY;
3160 goto out_err;
3161 }
3162
3163 printk(KERN_CONT "\n");
3164
3165 /* So we know not to free it unless we have allocated one. */
3166 new_smi->intf = NULL;
3167 new_smi->si_sm = NULL;
3168 new_smi->handlers = NULL;
3169
3170 list_add_tail(&new_smi->link, &smi_infos);
3171
3172out_err:
3173 mutex_unlock(&smi_infos_lock);
3174 return rv;
3175}
3176
Corey Minyardb0defcd2006-03-26 01:37:20 -08003177static int try_smi_init(struct smi_info *new_smi)
3178{
Matthew Garrett2407d772010-05-26 14:43:46 -07003179 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003180 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003181
Myron Stowe279fbd02010-05-26 14:43:52 -07003182 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003183 " machine at %s address 0x%lx, slave address 0x%x,"
3184 " irq %d\n",
3185 ipmi_addr_src_to_str[new_smi->addr_source],
3186 si_to_str[new_smi->si_type],
3187 addr_space_to_str[new_smi->io.addr_type],
3188 new_smi->io.addr_data,
3189 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003190
Corey Minyardb0defcd2006-03-26 01:37:20 -08003191 switch (new_smi->si_type) {
3192 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003194 break;
3195
3196 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003198 break;
3199
3200 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003202 break;
3203
3204 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 /* No support for anything else yet. */
3206 rv = -EIO;
3207 goto out_err;
3208 }
3209
3210 /* Allocate the state machine's data and initialize it. */
3211 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003212 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003213 printk(KERN_ERR PFX
3214 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 rv = -ENOMEM;
3216 goto out_err;
3217 }
3218 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3219 &new_smi->io);
3220
3221 /* Now that we know the I/O size, we can set up the I/O. */
3222 rv = new_smi->io_setup(new_smi);
3223 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003224 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 goto out_err;
3226 }
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 /* Do low-level detection first. */
3229 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003230 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003231 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 rv = -ENODEV;
3233 goto out_err;
3234 }
3235
Corey Minyardc305e3d2008-04-29 01:01:10 -07003236 /*
3237 * Attempt a get device id command. If it fails, we probably
3238 * don't have a BMC here.
3239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003241 if (rv) {
3242 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003243 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003244 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003248 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003249 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
3252 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
3253 new_smi->curr_msg = NULL;
3254 atomic_set(&new_smi->req_events, 0);
3255 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003256 for (i = 0; i < SI_NUM_STATS; i++)
3257 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Matthew Garrettea4078c2010-05-26 14:43:48 -07003259 new_smi->interrupt_disabled = 1;
Corey Minyarda9a2c442005-11-07 01:00:03 -08003260 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003261 new_smi->intf_num = smi_num;
3262 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Corey Minyard40112ae2009-04-21 12:24:03 -07003264 rv = try_enable_event_buffer(new_smi);
3265 if (rv == 0)
3266 new_smi->has_event_buffer = 1;
3267
Corey Minyardc305e3d2008-04-29 01:01:10 -07003268 /*
3269 * Start clearing the flags before we enable interrupts or the
3270 * timer to avoid racing with the timer.
3271 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 start_clear_flags(new_smi);
3273 /* IRQ is defined to be set when non-zero. */
3274 if (new_smi->irq)
3275 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3276
Corey Minyard50c812b2006-03-26 01:37:21 -08003277 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003278 /*
3279 * If we don't already have a device from something
3280 * else (like PCI), then register a new one.
3281 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003282 new_smi->pdev = platform_device_alloc("ipmi_si",
3283 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003284 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003285 printk(KERN_ERR PFX
3286 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003287 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003288 }
3289 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003290 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003291
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003292 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003293 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003294 printk(KERN_ERR PFX
3295 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003296 " %d\n",
3297 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003298 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003299 }
3300 new_smi->dev_registered = 1;
3301 }
3302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 rv = ipmi_register_smi(&handlers,
3304 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003305 &new_smi->device_id,
3306 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08003307 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08003308 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003310 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3311 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 goto out_err_stop_timer;
3313 }
3314
3315 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003316 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003317 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003319 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 goto out_err_stop_timer;
3321 }
3322
3323 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003324 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003325 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003327 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 goto out_err_stop_timer;
3329 }
3330
Corey Minyardb361e272006-12-06 20:41:07 -08003331 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003332 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003333 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003334 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003335 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003336 goto out_err_stop_timer;
3337 }
3338
Myron Stowe279fbd02010-05-26 14:43:52 -07003339 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3340 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
3342 return 0;
3343
3344 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003345 atomic_inc(&new_smi->stop_operation);
3346 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348 out_err:
Matthew Garrett2407d772010-05-26 14:43:46 -07003349 new_smi->interrupt_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Matthew Garrett2407d772010-05-26 14:43:46 -07003351 if (new_smi->intf) {
3352 ipmi_unregister_smi(new_smi->intf);
3353 new_smi->intf = NULL;
3354 }
3355
3356 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003357 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003358 new_smi->irq_cleanup = NULL;
3359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Corey Minyardc305e3d2008-04-29 01:01:10 -07003361 /*
3362 * Wait until we know that we are out of any interrupt
3363 * handlers might have been running before we freed the
3364 * interrupt.
3365 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003366 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
3368 if (new_smi->si_sm) {
3369 if (new_smi->handlers)
3370 new_smi->handlers->cleanup(new_smi->si_sm);
3371 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003372 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003374 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003375 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003376 new_smi->addr_source_cleanup = NULL;
3377 }
3378 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003379 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003380 new_smi->io_cleanup = NULL;
3381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Matthew Garrett2407d772010-05-26 14:43:46 -07003383 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003384 platform_device_unregister(new_smi->pdev);
Matthew Garrett2407d772010-05-26 14:43:46 -07003385 new_smi->dev_registered = 0;
3386 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 return rv;
3389}
3390
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003391static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 int i;
3394 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003395 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003396 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003397 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
3399 if (initialized)
3400 return 0;
3401 initialized = 1;
3402
Corey Minyardf2afae42013-02-27 17:05:13 -08003403 if (si_tryplatform) {
3404 rv = platform_driver_register(&ipmi_driver);
3405 if (rv) {
3406 printk(KERN_ERR PFX "Unable to register "
3407 "driver: %d\n", rv);
3408 return rv;
3409 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003410 }
3411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 /* Parse out the si_type string into its components. */
3413 str = si_type_str;
3414 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003415 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 si_type[i] = str;
3417 str = strchr(str, ',');
3418 if (str) {
3419 *str = '\0';
3420 str++;
3421 } else {
3422 break;
3423 }
3424 }
3425 }
3426
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003427 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003429 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003430 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003431 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003432
Corey Minyardb0defcd2006-03-26 01:37:20 -08003433#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003434 if (si_trypci) {
3435 rv = pci_register_driver(&ipmi_pci_driver);
3436 if (rv)
3437 printk(KERN_ERR PFX "Unable to register "
3438 "PCI driver: %d\n", rv);
3439 else
3440 pci_registered = 1;
3441 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003442#endif
3443
Matthew Garrett754d4532010-05-26 14:43:47 -07003444#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003445 if (si_tryacpi) {
3446 pnp_register_driver(&ipmi_pnp_driver);
3447 pnp_registered = 1;
3448 }
Matthew Garrett754d4532010-05-26 14:43:47 -07003449#endif
3450
3451#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003452 if (si_trydmi)
3453 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003454#endif
3455
3456#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003457 if (si_tryacpi)
3458 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003459#endif
3460
Matthew Garrett06ee4592010-05-26 14:43:49 -07003461 /* We prefer devices with interrupts, but in the case of a machine
3462 with multiple BMCs we assume that there will be several instances
3463 of a given type so if we succeed in registering a type then also
3464 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003465
Matthew Garrett2407d772010-05-26 14:43:46 -07003466 mutex_lock(&smi_infos_lock);
3467 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003468 /* Try to register a device if it has an IRQ and we either
3469 haven't successfully registered a device yet or this
3470 device has the same type as one we successfully registered */
3471 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003472 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003473 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003474 }
3475 }
3476 }
3477
Matthew Garrett06ee4592010-05-26 14:43:49 -07003478 /* type will only have been set if we successfully registered an si */
3479 if (type) {
3480 mutex_unlock(&smi_infos_lock);
3481 return 0;
3482 }
3483
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003484 /* Fall back to the preferred device */
3485
3486 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003487 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003488 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003489 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003490 }
3491 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003492 }
3493 mutex_unlock(&smi_infos_lock);
3494
Matthew Garrett06ee4592010-05-26 14:43:49 -07003495 if (type)
3496 return 0;
3497
Corey Minyardb0defcd2006-03-26 01:37:20 -08003498 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003499 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003500 if (list_empty(&smi_infos)) {
3501 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003502 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003503 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003504 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003505 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Corey Minyardd6dfd132006-03-31 02:30:41 -08003508 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003509 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003510 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003511 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003512 printk(KERN_WARNING PFX
3513 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003515 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003516 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519}
3520module_init(init_ipmi_si);
3521
Corey Minyardb361e272006-12-06 20:41:07 -08003522static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
Matthew Garrett2407d772010-05-26 14:43:46 -07003524 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 unsigned long flags;
3526
Corey Minyardb0defcd2006-03-26 01:37:20 -08003527 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 return;
3529
Corey Minyardb0defcd2006-03-26 01:37:20 -08003530 list_del(&to_clean->link);
3531
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003532 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003533 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003534
Corey Minyardc305e3d2008-04-29 01:01:10 -07003535 /*
3536 * Make sure the timer and thread are stopped and will not run
3537 * again.
3538 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003539 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Corey Minyardc305e3d2008-04-29 01:01:10 -07003541 /*
3542 * Timeouts are stopped, now make sure the interrupts are off
3543 * for the device. A little tricky with locks to make sure
3544 * there are no races.
3545 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003546 spin_lock_irqsave(&to_clean->si_lock, flags);
3547 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3548 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3549 poll(to_clean);
3550 schedule_timeout_uninterruptible(1);
3551 spin_lock_irqsave(&to_clean->si_lock, flags);
3552 }
3553 disable_si_irq(to_clean);
3554 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3555 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3556 poll(to_clean);
3557 schedule_timeout_uninterruptible(1);
3558 }
3559
3560 /* Clean up interrupts and make sure that everything is done. */
3561 if (to_clean->irq_cleanup)
3562 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003563 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003565 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 }
3567
Matthew Garrett2407d772010-05-26 14:43:46 -07003568 if (to_clean->intf)
3569 rv = ipmi_unregister_smi(to_clean->intf);
3570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003572 printk(KERN_ERR PFX "Unable to unregister device: errno=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 rv);
3574 }
3575
Matthew Garrett2407d772010-05-26 14:43:46 -07003576 if (to_clean->handlers)
3577 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
3579 kfree(to_clean->si_sm);
3580
Corey Minyardb0defcd2006-03-26 01:37:20 -08003581 if (to_clean->addr_source_cleanup)
3582 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003583 if (to_clean->io_cleanup)
3584 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003585
3586 if (to_clean->dev_registered)
3587 platform_device_unregister(to_clean->pdev);
3588
3589 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590}
3591
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003592static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003594 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Corey Minyardb0defcd2006-03-26 01:37:20 -08003596 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 return;
3598
Corey Minyardb0defcd2006-03-26 01:37:20 -08003599#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003600 if (pci_registered)
3601 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003602#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003603#ifdef CONFIG_ACPI
Yinghai Lu561f8182010-09-22 13:05:15 -07003604 if (pnp_registered)
3605 pnp_unregister_driver(&ipmi_pnp_driver);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003606#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003607
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003608 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003609
Corey Minyardd6dfd132006-03-31 02:30:41 -08003610 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003611 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3612 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003613 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614}
3615module_exit(cleanup_ipmi_si);
3616
3617MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003618MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003619MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3620 " system interfaces.");