blob: cc6c9b2546a30eed5dad30ac8a928e19514bc1c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipmi_si.c
3 *
4 * The interface to the IPMI driver for the system interfaces (KCS, SMIC,
5 * BT).
6 *
7 * Author: MontaVista Software, Inc.
8 * Corey Minyard <minyard@mvista.com>
9 * source@mvista.com
10 *
11 * Copyright 2002 MontaVista Software Inc.
Corey Minyarddba9b4f2007-05-08 00:23:51 -070012 * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 *
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
28 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
29 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * You should have received a copy of the GNU General Public License along
32 * with this program; if not, write to the Free Software Foundation, Inc.,
33 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 */
35
36/*
37 * This file holds the "policy" for the interface to the SMI state
38 * machine. It does the configuration, handles timers and interrupts,
39 * and drives the real SMI state machine.
40 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/module.h>
43#include <linux/moduleparam.h>
44#include <asm/system.h>
45#include <linux/sched.h>
46#include <linux/timer.h>
47#include <linux/errno.h>
48#include <linux/spinlock.h>
49#include <linux/slab.h>
50#include <linux/delay.h>
51#include <linux/list.h>
52#include <linux/pci.h>
53#include <linux/ioport.h>
Corey Minyardea940272005-11-07 00:59:59 -080054#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080055#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080056#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/interrupt.h>
59#include <linux/rcupdate.h>
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
158 /* Number of asyncronous messages received. */
159 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;
173 spinlock_t msg_lock;
174 struct list_head xmit_msgs;
175 struct list_head hp_xmit_msgs;
176 struct ipmi_smi_msg *curr_msg;
177 enum si_intf_state si_state;
178
Corey Minyardc305e3d2008-04-29 01:01:10 -0700179 /*
180 * Used to handle the various types of I/O that can occur with
181 * IPMI
182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct si_sm_io io;
184 int (*io_setup)(struct smi_info *info);
185 void (*io_cleanup)(struct smi_info *info);
186 int (*irq_setup)(struct smi_info *info);
187 void (*irq_cleanup)(struct smi_info *info);
188 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700189 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800190 void (*addr_source_cleanup)(struct smi_info *info);
191 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Corey Minyardc305e3d2008-04-29 01:01:10 -0700193 /*
194 * Per-OEM handler, called from handle_flags(). Returns 1
195 * when handle_flags() needs to be re-run or 0 indicating it
196 * set si_state itself.
197 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700198 int (*oem_data_avail_handler)(struct smi_info *smi_info);
199
Corey Minyardc305e3d2008-04-29 01:01:10 -0700200 /*
201 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
202 * is set to hold the flags until we are done handling everything
203 * from the flags.
204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define RECEIVE_MSG_AVAIL 0x01
206#define EVENT_MSG_BUFFER_FULL 0x02
207#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700208#define OEM0_DATA_AVAIL 0x20
209#define OEM1_DATA_AVAIL 0x40
210#define OEM2_DATA_AVAIL 0x80
211#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700212 OEM1_DATA_AVAIL | \
213 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 unsigned char msg_flags;
215
Corey Minyard40112ae2009-04-21 12:24:03 -0700216 /* Does the BMC have an event buffer? */
217 char has_event_buffer;
218
Corey Minyardc305e3d2008-04-29 01:01:10 -0700219 /*
220 * If set to true, this will request events the next time the
221 * state machine is idle.
222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 atomic_t req_events;
224
Corey Minyardc305e3d2008-04-29 01:01:10 -0700225 /*
226 * If true, run the state machine to completion on every send
227 * call. Generally used after a panic to make sure stuff goes
228 * out.
229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int run_to_completion;
231
232 /* The I/O port of an SI interface. */
233 int port;
234
Corey Minyardc305e3d2008-04-29 01:01:10 -0700235 /*
236 * The space between start addresses of the two ports. For
237 * instance, if the first port is 0xca2 and the spacing is 4, then
238 * the second port is 0xca6.
239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 unsigned int spacing;
241
242 /* zero if no irq; */
243 int irq;
244
245 /* The timer for this si. */
246 struct timer_list si_timer;
247
248 /* The time (in jiffies) the last timeout occurred at. */
249 unsigned long last_timeout_jiffies;
250
251 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800252 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Corey Minyardc305e3d2008-04-29 01:01:10 -0700254 /*
255 * The driver will disable interrupts when it gets into a
256 * situation where it cannot handle messages due to lack of
257 * memory. Once that situation clears up, it will re-enable
258 * interrupts.
259 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 int interrupt_disabled;
261
Corey Minyard50c812b2006-03-26 01:37:21 -0800262 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700263 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Corey Minyard50c812b2006-03-26 01:37:21 -0800265 /* Driver model stuff. */
266 struct device *dev;
267 struct platform_device *pdev;
268
Corey Minyardc305e3d2008-04-29 01:01:10 -0700269 /*
270 * True if we allocated the device, false if it came from
271 * someplace else (like PCI).
272 */
Corey Minyard50c812b2006-03-26 01:37:21 -0800273 int dev_registered;
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Slave address, could be reported from DMI. */
276 unsigned char slave_addr;
277
278 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700279 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800280
Corey Minyardc305e3d2008-04-29 01:01:10 -0700281 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800282
283 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800284 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Corey Minyard64959e22008-04-29 01:01:07 -0700287#define smi_inc_stat(smi, stat) \
288 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
289#define smi_get_stat(smi, stat) \
290 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
291
Corey Minyarda51f4a82006-10-03 01:13:59 -0700292#define SI_MAX_PARMS 4
293
294static int force_kipmid[SI_MAX_PARMS];
295static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700296#ifdef CONFIG_PCI
297static int pci_registered;
298#endif
Yinghai Lu561f8182010-09-22 13:05:15 -0700299#ifdef CONFIG_ACPI
300static int pnp_registered;
301#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700302
Martin Wilckae74e822010-03-10 15:23:06 -0800303static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
304static int num_max_busy_us;
305
Corey Minyardb361e272006-12-06 20:41:07 -0800306static int unload_when_empty = 1;
307
Matthew Garrett2407d772010-05-26 14:43:46 -0700308static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800309static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800310static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600311static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800312
Alan Sterne041c682006-03-27 01:16:30 -0800313static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700314static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800315{
Alan Sterne041c682006-03-27 01:16:30 -0800316 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static void deliver_recv_msg(struct smi_info *smi_info,
320 struct ipmi_smi_msg *msg)
321{
322 /* Deliver the message to the upper layer with the lock
Corey Minyardc305e3d2008-04-29 01:01:10 -0700323 released. */
Jiri Kosinaa747c5a2010-05-26 14:43:53 -0700324
325 if (smi_info->run_to_completion) {
326 ipmi_smi_msg_received(smi_info->intf, msg);
327 } else {
328 spin_unlock(&(smi_info->si_lock));
329 ipmi_smi_msg_received(smi_info->intf, msg);
330 spin_lock(&(smi_info->si_lock));
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800334static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct ipmi_smi_msg *msg = smi_info->curr_msg;
337
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800338 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
339 cCode = IPMI_ERR_UNSPECIFIED;
340 /* else use it as is */
341
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300342 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 msg->rsp[0] = msg->data[0] | 4;
344 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800345 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 msg->rsp_size = 3;
347
348 smi_info->curr_msg = NULL;
349 deliver_recv_msg(smi_info, msg);
350}
351
352static enum si_sm_result start_next_msg(struct smi_info *smi_info)
353{
354 int rv;
355 struct list_head *entry = NULL;
356#ifdef DEBUG_TIMING
357 struct timeval t;
358#endif
359
Corey Minyardc305e3d2008-04-29 01:01:10 -0700360 /*
361 * No need to save flags, we aleady have interrupts off and we
362 * already hold the SMI lock.
363 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700364 if (!smi_info->run_to_completion)
365 spin_lock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800368 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800370 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 entry = smi_info->xmit_msgs.next;
372 }
373
Corey Minyardb0defcd2006-03-26 01:37:20 -0800374 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 smi_info->curr_msg = NULL;
376 rv = SI_SM_IDLE;
377 } else {
378 int err;
379
380 list_del(entry);
381 smi_info->curr_msg = list_entry(entry,
382 struct ipmi_smi_msg,
383 link);
384#ifdef DEBUG_TIMING
385 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700386 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#endif
Alan Sterne041c682006-03-27 01:16:30 -0800388 err = atomic_notifier_call_chain(&xaction_notifier_list,
389 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800390 if (err & NOTIFY_STOP_MASK) {
391 rv = SI_SM_CALL_WITHOUT_DELAY;
392 goto out;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 err = smi_info->handlers->start_transaction(
395 smi_info->si_sm,
396 smi_info->curr_msg->data,
397 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700398 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800399 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 rv = SI_SM_CALL_WITHOUT_DELAY;
402 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700403 out:
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700404 if (!smi_info->run_to_completion)
405 spin_unlock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 return rv;
408}
409
410static void start_enable_irq(struct smi_info *smi_info)
411{
412 unsigned char msg[2];
413
Corey Minyardc305e3d2008-04-29 01:01:10 -0700414 /*
415 * If we are enabling interrupts, we have to tell the
416 * BMC to use them.
417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
419 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
420
421 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
422 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
423}
424
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700425static void start_disable_irq(struct smi_info *smi_info)
426{
427 unsigned char msg[2];
428
429 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
430 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
431
432 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
433 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void start_clear_flags(struct smi_info *smi_info)
437{
438 unsigned char msg[3];
439
440 /* Make sure the watchdog pre-timeout flag is not set at startup. */
441 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
442 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
443 msg[2] = WDT_PRE_TIMEOUT_INT;
444
445 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
446 smi_info->si_state = SI_CLEARING_FLAGS;
447}
448
Corey Minyardc305e3d2008-04-29 01:01:10 -0700449/*
450 * When we have a situtaion where we run out of memory and cannot
451 * allocate messages, we just leave them in the BMC and run the system
452 * polled until we can allocate some memory. Once we have some
453 * memory, we will re-enable the interrupt.
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static inline void disable_si_irq(struct smi_info *smi_info)
456{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800457 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700458 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 smi_info->interrupt_disabled = 1;
Matthew Garrettea4078c2010-05-26 14:43:48 -0700460 if (!atomic_read(&smi_info->stop_operation))
461 mod_timer(&smi_info->si_timer,
462 jiffies + SI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464}
465
466static inline void enable_si_irq(struct smi_info *smi_info)
467{
468 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700469 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 smi_info->interrupt_disabled = 0;
471 }
472}
473
474static void handle_flags(struct smi_info *smi_info)
475{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700476 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
478 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700479 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 start_clear_flags(smi_info);
482 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
483 spin_unlock(&(smi_info->si_lock));
484 ipmi_smi_watchdog_pretimeout(smi_info->intf);
485 spin_lock(&(smi_info->si_lock));
486 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
487 /* Messages available. */
488 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800489 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 disable_si_irq(smi_info);
491 smi_info->si_state = SI_NORMAL;
492 return;
493 }
494 enable_si_irq(smi_info);
495
496 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
497 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
498 smi_info->curr_msg->data_size = 2;
499
500 smi_info->handlers->start_transaction(
501 smi_info->si_sm,
502 smi_info->curr_msg->data,
503 smi_info->curr_msg->data_size);
504 smi_info->si_state = SI_GETTING_MESSAGES;
505 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
506 /* Events available. */
507 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800508 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 disable_si_irq(smi_info);
510 smi_info->si_state = SI_NORMAL;
511 return;
512 }
513 enable_si_irq(smi_info);
514
515 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
516 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
517 smi_info->curr_msg->data_size = 2;
518
519 smi_info->handlers->start_transaction(
520 smi_info->si_sm,
521 smi_info->curr_msg->data,
522 smi_info->curr_msg->data_size);
523 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700524 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700525 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700526 if (smi_info->oem_data_avail_handler(smi_info))
527 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700528 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532static void handle_transaction_done(struct smi_info *smi_info)
533{
534 struct ipmi_smi_msg *msg;
535#ifdef DEBUG_TIMING
536 struct timeval t;
537
538 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700539 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540#endif
541 switch (smi_info->si_state) {
542 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800543 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 break;
545
546 smi_info->curr_msg->rsp_size
547 = smi_info->handlers->get_result(
548 smi_info->si_sm,
549 smi_info->curr_msg->rsp,
550 IPMI_MAX_MSG_LENGTH);
551
Corey Minyardc305e3d2008-04-29 01:01:10 -0700552 /*
553 * Do this here becase deliver_recv_msg() releases the
554 * lock, and a new message can be put in during the
555 * time the lock is released.
556 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 msg = smi_info->curr_msg;
558 smi_info->curr_msg = NULL;
559 deliver_recv_msg(smi_info, msg);
560 break;
561
562 case SI_GETTING_FLAGS:
563 {
564 unsigned char msg[4];
565 unsigned int len;
566
567 /* We got the flags from the SMI, now handle them. */
568 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
569 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700570 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 smi_info->si_state = SI_NORMAL;
572 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700573 /*
574 * Hmm, no flags. That's technically illegal, but
575 * don't use uninitialized data.
576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 smi_info->si_state = SI_NORMAL;
578 } else {
579 smi_info->msg_flags = msg[3];
580 handle_flags(smi_info);
581 }
582 break;
583 }
584
585 case SI_CLEARING_FLAGS:
586 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
587 {
588 unsigned char msg[3];
589
590 /* We cleared the flags. */
591 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
592 if (msg[2] != 0) {
593 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700594 dev_warn(smi_info->dev,
595 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
598 start_enable_irq(smi_info);
599 else
600 smi_info->si_state = SI_NORMAL;
601 break;
602 }
603
604 case SI_GETTING_EVENTS:
605 {
606 smi_info->curr_msg->rsp_size
607 = smi_info->handlers->get_result(
608 smi_info->si_sm,
609 smi_info->curr_msg->rsp,
610 IPMI_MAX_MSG_LENGTH);
611
Corey Minyardc305e3d2008-04-29 01:01:10 -0700612 /*
613 * Do this here becase deliver_recv_msg() releases the
614 * lock, and a new message can be put in during the
615 * time the lock is released.
616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 msg = smi_info->curr_msg;
618 smi_info->curr_msg = NULL;
619 if (msg->rsp[2] != 0) {
620 /* Error getting event, probably done. */
621 msg->done(msg);
622
623 /* Take off the event flag. */
624 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
625 handle_flags(smi_info);
626 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700627 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Corey Minyardc305e3d2008-04-29 01:01:10 -0700629 /*
630 * Do this before we deliver the message
631 * because delivering the message releases the
632 * lock and something else can mess with the
633 * state.
634 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 handle_flags(smi_info);
636
637 deliver_recv_msg(smi_info, msg);
638 }
639 break;
640 }
641
642 case SI_GETTING_MESSAGES:
643 {
644 smi_info->curr_msg->rsp_size
645 = smi_info->handlers->get_result(
646 smi_info->si_sm,
647 smi_info->curr_msg->rsp,
648 IPMI_MAX_MSG_LENGTH);
649
Corey Minyardc305e3d2008-04-29 01:01:10 -0700650 /*
651 * Do this here becase deliver_recv_msg() releases the
652 * lock, and a new message can be put in during the
653 * time the lock is released.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 msg = smi_info->curr_msg;
656 smi_info->curr_msg = NULL;
657 if (msg->rsp[2] != 0) {
658 /* Error getting event, probably done. */
659 msg->done(msg);
660
661 /* Take off the msg flag. */
662 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
663 handle_flags(smi_info);
664 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700665 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Corey Minyardc305e3d2008-04-29 01:01:10 -0700667 /*
668 * Do this before we deliver the message
669 * because delivering the message releases the
670 * lock and something else can mess with the
671 * state.
672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 handle_flags(smi_info);
674
675 deliver_recv_msg(smi_info, msg);
676 }
677 break;
678 }
679
680 case SI_ENABLE_INTERRUPTS1:
681 {
682 unsigned char msg[4];
683
684 /* We got the flags from the SMI, now handle them. */
685 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
686 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700687 dev_warn(smi_info->dev, "Could not enable interrupts"
688 ", failed get, using polled mode.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 smi_info->si_state = SI_NORMAL;
690 } else {
691 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
692 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700693 msg[2] = (msg[3] |
694 IPMI_BMC_RCV_MSG_INTR |
695 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 smi_info->handlers->start_transaction(
697 smi_info->si_sm, msg, 3);
698 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
699 }
700 break;
701 }
702
703 case SI_ENABLE_INTERRUPTS2:
704 {
705 unsigned char msg[4];
706
707 /* We got the flags from the SMI, now handle them. */
708 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Myron Stowe279fbd02010-05-26 14:43:52 -0700709 if (msg[2] != 0)
710 dev_warn(smi_info->dev, "Could not enable interrupts"
711 ", failed set, using polled mode.\n");
712 else
Matthew Garrettea4078c2010-05-26 14:43:48 -0700713 smi_info->interrupt_disabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 smi_info->si_state = SI_NORMAL;
715 break;
716 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700717
718 case SI_DISABLE_INTERRUPTS1:
719 {
720 unsigned char msg[4];
721
722 /* We got the flags from the SMI, now handle them. */
723 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
724 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700725 dev_warn(smi_info->dev, "Could not disable interrupts"
726 ", failed get.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700727 smi_info->si_state = SI_NORMAL;
728 } else {
729 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
730 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
731 msg[2] = (msg[3] &
732 ~(IPMI_BMC_RCV_MSG_INTR |
733 IPMI_BMC_EVT_MSG_INTR));
734 smi_info->handlers->start_transaction(
735 smi_info->si_sm, msg, 3);
736 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
737 }
738 break;
739 }
740
741 case SI_DISABLE_INTERRUPTS2:
742 {
743 unsigned char msg[4];
744
745 /* We got the flags from the SMI, now handle them. */
746 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
747 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700748 dev_warn(smi_info->dev, "Could not disable interrupts"
749 ", failed set.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700750 }
751 smi_info->si_state = SI_NORMAL;
752 break;
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755}
756
Corey Minyardc305e3d2008-04-29 01:01:10 -0700757/*
758 * Called on timeouts and events. Timeouts should pass the elapsed
759 * time, interrupts should pass in zero. Must be called with
760 * si_lock held and interrupts disabled.
761 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
763 int time)
764{
765 enum si_sm_result si_sm_result;
766
767 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700768 /*
769 * There used to be a loop here that waited a little while
770 * (around 25us) before giving up. That turned out to be
771 * pointless, the minimum delays I was seeing were in the 300us
772 * range, which is far too long to wait in an interrupt. So
773 * we just run until the state machine tells us something
774 * happened or it needs a delay.
775 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
777 time = 0;
778 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Corey Minyardc305e3d2008-04-29 01:01:10 -0700781 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700782 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 handle_transaction_done(smi_info);
785 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700786 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700787 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Corey Minyardc305e3d2008-04-29 01:01:10 -0700789 /*
790 * Do the before return_hosed_msg, because that
791 * releases the lock.
792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 smi_info->si_state = SI_NORMAL;
794 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700795 /*
796 * If we were handling a user message, format
797 * a response to send to the upper layer to
798 * tell it about the error.
799 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800800 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
803 }
804
Corey Minyard4ea18422008-04-29 01:01:01 -0700805 /*
806 * We prefer handling attn over new messages. But don't do
807 * this if there is not yet an upper layer to handle anything.
808 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700809 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 unsigned char msg[2];
811
Corey Minyard64959e22008-04-29 01:01:07 -0700812 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Corey Minyardc305e3d2008-04-29 01:01:10 -0700814 /*
815 * Got a attn, send down a get message flags to see
816 * what's causing it. It would be better to handle
817 * this in the upper layer, but due to the way
818 * interrupts work with the SMI, that's not really
819 * possible.
820 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
822 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
823
824 smi_info->handlers->start_transaction(
825 smi_info->si_sm, msg, 2);
826 smi_info->si_state = SI_GETTING_FLAGS;
827 goto restart;
828 }
829
830 /* If we are currently idle, try to start the next message. */
831 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700832 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 si_sm_result = start_next_msg(smi_info);
835 if (si_sm_result != SI_SM_IDLE)
836 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700840 && (atomic_read(&smi_info->req_events))) {
841 /*
842 * We are idle and the upper layer requested that I fetch
843 * events, so do so.
844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800846
847 smi_info->curr_msg = ipmi_alloc_smi_msg();
848 if (!smi_info->curr_msg)
849 goto out;
850
851 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
852 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
853 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800856 smi_info->si_sm,
857 smi_info->curr_msg->data,
858 smi_info->curr_msg->data_size);
859 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto restart;
861 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800862 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return si_sm_result;
864}
865
866static void sender(void *send_info,
867 struct ipmi_smi_msg *msg,
868 int priority)
869{
870 struct smi_info *smi_info = send_info;
871 enum si_sm_result result;
872 unsigned long flags;
873#ifdef DEBUG_TIMING
874 struct timeval t;
875#endif
876
Corey Minyardb361e272006-12-06 20:41:07 -0800877 if (atomic_read(&smi_info->stop_operation)) {
878 msg->rsp[0] = msg->data[0] | 4;
879 msg->rsp[1] = msg->data[1];
880 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
881 msg->rsp_size = 3;
882 deliver_recv_msg(smi_info, msg);
883 return;
884 }
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886#ifdef DEBUG_TIMING
887 do_gettimeofday(&t);
888 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
889#endif
890
Doe, YiCheng4c418ba2011-03-10 14:00:21 -0600891 /*
892 * last_timeout_jiffies is updated here to avoid
893 * smi_timeout() handler passing very large time_diff
894 * value to smi_event_handler() that causes
895 * the send command to abort.
896 */
897 smi_info->last_timeout_jiffies = jiffies;
898
Matthew Garrettea4078c2010-05-26 14:43:48 -0700899 mod_timer(&smi_info->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
900
Matthew Garrett3326f4f2010-05-26 14:43:49 -0700901 if (smi_info->thread)
902 wake_up_process(smi_info->thread);
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700905 /*
906 * If we are running to completion, then throw it in
907 * the list and run transactions until everything is
908 * clear. Priority doesn't matter here.
909 */
910
911 /*
912 * Run to completion means we are single-threaded, no
913 * need for locks.
914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 result = smi_event_handler(smi_info, 0);
918 while (result != SI_SM_IDLE) {
919 udelay(SI_SHORT_TIMEOUT_USEC);
920 result = smi_event_handler(smi_info,
921 SI_SHORT_TIMEOUT_USEC);
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Corey Minyardbda4c302008-04-29 01:01:02 -0700926 spin_lock_irqsave(&smi_info->msg_lock, flags);
927 if (priority > 0)
928 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
929 else
930 list_add_tail(&msg->link, &smi_info->xmit_msgs);
931 spin_unlock_irqrestore(&smi_info->msg_lock, flags);
932
933 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700934 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 start_next_msg(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700936 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939static void set_run_to_completion(void *send_info, int i_run_to_completion)
940{
941 struct smi_info *smi_info = send_info;
942 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 smi_info->run_to_completion = i_run_to_completion;
945 if (i_run_to_completion) {
946 result = smi_event_handler(smi_info, 0);
947 while (result != SI_SM_IDLE) {
948 udelay(SI_SHORT_TIMEOUT_USEC);
949 result = smi_event_handler(smi_info,
950 SI_SHORT_TIMEOUT_USEC);
951 }
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Martin Wilckae74e822010-03-10 15:23:06 -0800955/*
956 * Use -1 in the nsec value of the busy waiting timespec to tell that
957 * we are spinning in kipmid looking for something and not delaying
958 * between checks
959 */
960static inline void ipmi_si_set_not_busy(struct timespec *ts)
961{
962 ts->tv_nsec = -1;
963}
964static inline int ipmi_si_is_busy(struct timespec *ts)
965{
966 return ts->tv_nsec != -1;
967}
968
969static int ipmi_thread_busy_wait(enum si_sm_result smi_result,
970 const struct smi_info *smi_info,
971 struct timespec *busy_until)
972{
973 unsigned int max_busy_us = 0;
974
975 if (smi_info->intf_num < num_max_busy_us)
976 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
977 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
978 ipmi_si_set_not_busy(busy_until);
979 else if (!ipmi_si_is_busy(busy_until)) {
980 getnstimeofday(busy_until);
981 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
982 } else {
983 struct timespec now;
984 getnstimeofday(&now);
985 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
986 ipmi_si_set_not_busy(busy_until);
987 return 0;
988 }
989 }
990 return 1;
991}
992
993
994/*
995 * A busy-waiting loop for speeding up IPMI operation.
996 *
997 * Lousy hardware makes this hard. This is only enabled for systems
998 * that are not BT and do not have interrupts. It starts spinning
999 * when an operation is complete or until max_busy tells it to stop
1000 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1001 * Documentation/IPMI.txt for details.
1002 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001003static int ipmi_thread(void *data)
1004{
1005 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001006 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001007 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -08001008 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001009
Martin Wilckae74e822010-03-10 15:23:06 -08001010 ipmi_si_set_not_busy(&busy_until);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001011 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -08001012 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001013 int busy_wait;
1014
Corey Minyarda9a2c442005-11-07 01:00:03 -08001015 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001016 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001017 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001018 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1019 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001020 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1021 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001022 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001023 schedule();
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001024 else if (smi_result == SI_SM_IDLE)
1025 schedule_timeout_interruptible(100);
Matt Domsche9a705a2005-11-07 01:00:04 -08001026 else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001027 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001028 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001029 return 0;
1030}
1031
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033static void poll(void *send_info)
1034{
1035 struct smi_info *smi_info = send_info;
Corey Minyardfcfa4722007-10-18 03:07:09 -07001036 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Corey Minyard15c62e12006-12-06 20:41:06 -08001038 /*
1039 * Make sure there is some delay in the poll loop so we can
1040 * drive time forward and timeout things.
1041 */
1042 udelay(10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001043 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001044 smi_event_handler(smi_info, 10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001045 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static void request_events(void *send_info)
1049{
1050 struct smi_info *smi_info = send_info;
1051
Corey Minyard40112ae2009-04-21 12:24:03 -07001052 if (atomic_read(&smi_info->stop_operation) ||
1053 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001054 return;
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 atomic_set(&smi_info->req_events, 1);
1057}
1058
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001059static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061static void smi_timeout(unsigned long data)
1062{
1063 struct smi_info *smi_info = (struct smi_info *) data;
1064 enum si_sm_result smi_result;
1065 unsigned long flags;
1066 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001067 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001068 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef DEBUG_TIMING
1070 struct timeval t;
1071#endif
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 spin_lock_irqsave(&(smi_info->si_lock), flags);
1074#ifdef DEBUG_TIMING
1075 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001076 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077#endif
1078 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001079 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * SI_USEC_PER_JIFFY);
1081 smi_result = smi_event_handler(smi_info, time_diff);
1082
1083 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1084
1085 smi_info->last_timeout_jiffies = jiffies_now;
1086
Corey Minyardb0defcd2006-03-26 01:37:20 -08001087 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001089 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001090 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001091 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093
Corey Minyardc305e3d2008-04-29 01:01:10 -07001094 /*
1095 * If the state machine asks for a short delay, then shorten
1096 * the timer timeout.
1097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001099 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001100 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001102 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001103 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001106 do_mod_timer:
1107 if (smi_result != SI_SM_IDLE)
1108 mod_timer(&(smi_info->si_timer), timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
David Howells7d12e782006-10-05 14:55:46 +01001111static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 struct smi_info *smi_info = data;
1114 unsigned long flags;
1115#ifdef DEBUG_TIMING
1116 struct timeval t;
1117#endif
1118
1119 spin_lock_irqsave(&(smi_info->si_lock), flags);
1120
Corey Minyard64959e22008-04-29 01:01:07 -07001121 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123#ifdef DEBUG_TIMING
1124 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001125 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126#endif
1127 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1129 return IRQ_HANDLED;
1130}
1131
David Howells7d12e782006-10-05 14:55:46 +01001132static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001133{
1134 struct smi_info *smi_info = data;
1135 /* We need to clear the IRQ flag for the BT interface. */
1136 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1137 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1138 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001139 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001140}
1141
Corey Minyard453823b2006-03-31 02:30:39 -08001142static int smi_start_processing(void *send_info,
1143 ipmi_smi_t intf)
1144{
1145 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001146 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001147
1148 new_smi->intf = intf;
1149
Corey Minyardc45adc32007-10-18 03:07:08 -07001150 /* Try to claim any interrupts. */
1151 if (new_smi->irq_setup)
1152 new_smi->irq_setup(new_smi);
1153
Corey Minyard453823b2006-03-31 02:30:39 -08001154 /* Set up the timer that drives the interface. */
1155 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1156 new_smi->last_timeout_jiffies = jiffies;
1157 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1158
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001159 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001160 * Check if the user forcefully enabled the daemon.
1161 */
1162 if (new_smi->intf_num < num_force_kipmid)
1163 enable = force_kipmid[new_smi->intf_num];
1164 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001165 * The BT interface is efficient enough to not need a thread,
1166 * and there is no need for a thread if we have interrupts.
1167 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001168 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001169 enable = 1;
1170
1171 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001172 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1173 "kipmi%d", new_smi->intf_num);
1174 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001175 dev_notice(new_smi->dev, "Could not start"
1176 " kernel thread due to error %ld, only using"
1177 " timers to drive the interface\n",
1178 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001179 new_smi->thread = NULL;
1180 }
1181 }
1182
1183 return 0;
1184}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001185
Zhao Yakui16f42322010-12-08 10:10:16 +08001186static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1187{
1188 struct smi_info *smi = send_info;
1189
1190 data->addr_src = smi->addr_source;
1191 data->dev = smi->dev;
1192 data->addr_info = smi->addr_info;
1193 get_device(smi->dev);
1194
1195 return 0;
1196}
1197
Corey Minyardb9675132006-12-06 20:41:02 -08001198static void set_maintenance_mode(void *send_info, int enable)
1199{
1200 struct smi_info *smi_info = send_info;
1201
1202 if (!enable)
1203 atomic_set(&smi_info->req_events, 0);
1204}
1205
Corey Minyardc305e3d2008-04-29 01:01:10 -07001206static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001208 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001209 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 .sender = sender,
1211 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001212 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 .set_run_to_completion = set_run_to_completion,
1214 .poll = poll,
1215};
1216
Corey Minyardc305e3d2008-04-29 01:01:10 -07001217/*
1218 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1219 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1220 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Corey Minyardb0defcd2006-03-26 01:37:20 -08001222static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001223static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001224static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001227#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229static int si_trydefaults = 1;
1230static char *si_type[SI_MAX_PARMS];
1231#define MAX_SI_TYPE_STR 30
1232static char si_type_str[MAX_SI_TYPE_STR];
1233static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001234static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001236static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001238static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001240static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001242static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001244static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001245static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001246static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Corey Minyardb361e272006-12-06 20:41:07 -08001248#define IPMI_IO_ADDR_SPACE 0
1249#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001250static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001251
1252static int hotmod_handler(const char *val, struct kernel_param *kp);
1253
1254module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1255MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1256 " Documentation/IPMI.txt in the kernel sources for the"
1257 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259module_param_named(trydefaults, si_trydefaults, bool, 0);
1260MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1261 " default scan of the KCS and SMIC interface at the standard"
1262 " address");
1263module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1264MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1265 " interface separated by commas. The types are 'kcs',"
1266 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1267 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001268module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1270 " addresses separated by commas. Only use if an interface"
1271 " is in memory. Otherwise, set it to zero or leave"
1272 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001273module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1275 " addresses separated by commas. Only use if an interface"
1276 " is a port. Otherwise, set it to zero or leave"
1277 " it blank.");
1278module_param_array(irqs, int, &num_irqs, 0);
1279MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1280 " addresses separated by commas. Only use if an interface"
1281 " has an interrupt. Otherwise, set it to zero or leave"
1282 " it blank.");
1283module_param_array(regspacings, int, &num_regspacings, 0);
1284MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1285 " and each successive register used by the interface. For"
1286 " instance, if the start address is 0xca2 and the spacing"
1287 " is 2, then the second address is at 0xca4. Defaults"
1288 " to 1.");
1289module_param_array(regsizes, int, &num_regsizes, 0);
1290MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1291 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1292 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1293 " the 8-bit IPMI register has to be read from a larger"
1294 " register.");
1295module_param_array(regshifts, int, &num_regshifts, 0);
1296MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1297 " IPMI register, in bits. For instance, if the data"
1298 " is read from a 32-bit word and the IPMI data is in"
1299 " bit 8-15, then the shift would be 8");
1300module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1301MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1302 " the controller. Normally this is 0x20, but can be"
1303 " overridden by this parm. This is an array indexed"
1304 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001305module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1306MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1307 " disabled(0). Normally the IPMI driver auto-detects"
1308 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001309module_param(unload_when_empty, int, 0);
1310MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1311 " specified or found, default is 1. Setting to 0"
1312 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001313module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1314MODULE_PARM_DESC(kipmid_max_busy_us,
1315 "Max time (in microseconds) to busy-wait for IPMI data before"
1316 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1317 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319
Corey Minyardb0defcd2006-03-26 01:37:20 -08001320static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001322 if (info->si_type == SI_BT)
1323 /* Disable the interrupt in the BT interface. */
1324 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1325 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328static int std_irq_setup(struct smi_info *info)
1329{
1330 int rv;
1331
Corey Minyardb0defcd2006-03-26 01:37:20 -08001332 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return 0;
1334
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001335 if (info->si_type == SI_BT) {
1336 rv = request_irq(info->irq,
1337 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001338 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001339 DEVICE_NAME,
1340 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001341 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001342 /* Enable the interrupt in the BT interface. */
1343 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1344 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1345 } else
1346 rv = request_irq(info->irq,
1347 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001348 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001349 DEVICE_NAME,
1350 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001352 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1353 " running polled\n",
1354 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 info->irq = 0;
1356 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001357 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001358 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
1361 return rv;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1365{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001366 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Corey Minyardb0defcd2006-03-26 01:37:20 -08001368 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
1371static void port_outb(struct si_sm_io *io, unsigned int offset,
1372 unsigned char b)
1373{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001374 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Corey Minyardb0defcd2006-03-26 01:37:20 -08001376 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
1379static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1380{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001381 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Corey Minyardb0defcd2006-03-26 01:37:20 -08001383 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386static void port_outw(struct si_sm_io *io, unsigned int offset,
1387 unsigned char b)
1388{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001389 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Corey Minyardb0defcd2006-03-26 01:37:20 -08001391 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
1394static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1395{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001396 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Corey Minyardb0defcd2006-03-26 01:37:20 -08001398 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
1401static void port_outl(struct si_sm_io *io, unsigned int offset,
1402 unsigned char b)
1403{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001404 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Corey Minyardb0defcd2006-03-26 01:37:20 -08001406 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409static void port_cleanup(struct smi_info *info)
1410{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001411 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001412 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Corey Minyardb0defcd2006-03-26 01:37:20 -08001414 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001415 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001416 release_region(addr + idx * info->io.regspacing,
1417 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421static int port_setup(struct smi_info *info)
1422{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001423 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001424 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Corey Minyardb0defcd2006-03-26 01:37:20 -08001426 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return -ENODEV;
1428
1429 info->io_cleanup = port_cleanup;
1430
Corey Minyardc305e3d2008-04-29 01:01:10 -07001431 /*
1432 * Figure out the actual inb/inw/inl/etc routine to use based
1433 * upon the register size.
1434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 switch (info->io.regsize) {
1436 case 1:
1437 info->io.inputb = port_inb;
1438 info->io.outputb = port_outb;
1439 break;
1440 case 2:
1441 info->io.inputb = port_inw;
1442 info->io.outputb = port_outw;
1443 break;
1444 case 4:
1445 info->io.inputb = port_inl;
1446 info->io.outputb = port_outl;
1447 break;
1448 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001449 dev_warn(info->dev, "Invalid register size: %d\n",
1450 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return -EINVAL;
1452 }
1453
Corey Minyardc305e3d2008-04-29 01:01:10 -07001454 /*
1455 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001456 * tables. This causes problems when trying to register the
1457 * entire I/O region. Therefore we must register each I/O
1458 * port separately.
1459 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001460 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001461 if (request_region(addr + idx * info->io.regspacing,
1462 info->io.regsize, DEVICE_NAME) == NULL) {
1463 /* Undo allocations */
1464 while (idx--) {
1465 release_region(addr + idx * info->io.regspacing,
1466 info->io.regsize);
1467 }
1468 return -EIO;
1469 }
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return 0;
1472}
1473
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001474static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 return readb((io->addr)+(offset * io->regspacing));
1477}
1478
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001479static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 unsigned char b)
1481{
1482 writeb(b, (io->addr)+(offset * io->regspacing));
1483}
1484
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001485static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001488 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001491static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 unsigned char b)
1493{
1494 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1495}
1496
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001497static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001500 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001503static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 unsigned char b)
1505{
1506 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1507}
1508
1509#ifdef readq
1510static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1511{
1512 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001513 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516static void mem_outq(struct si_sm_io *io, unsigned int offset,
1517 unsigned char b)
1518{
1519 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1520}
1521#endif
1522
1523static void mem_cleanup(struct smi_info *info)
1524{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001525 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 int mapsize;
1527
1528 if (info->io.addr) {
1529 iounmap(info->io.addr);
1530
1531 mapsize = ((info->io_size * info->io.regspacing)
1532 - (info->io.regspacing - info->io.regsize));
1533
Corey Minyardb0defcd2006-03-26 01:37:20 -08001534 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
1538static int mem_setup(struct smi_info *info)
1539{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001540 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 int mapsize;
1542
Corey Minyardb0defcd2006-03-26 01:37:20 -08001543 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return -ENODEV;
1545
1546 info->io_cleanup = mem_cleanup;
1547
Corey Minyardc305e3d2008-04-29 01:01:10 -07001548 /*
1549 * Figure out the actual readb/readw/readl/etc routine to use based
1550 * upon the register size.
1551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 switch (info->io.regsize) {
1553 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001554 info->io.inputb = intf_mem_inb;
1555 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 break;
1557 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001558 info->io.inputb = intf_mem_inw;
1559 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 break;
1561 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001562 info->io.inputb = intf_mem_inl;
1563 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 break;
1565#ifdef readq
1566 case 8:
1567 info->io.inputb = mem_inq;
1568 info->io.outputb = mem_outq;
1569 break;
1570#endif
1571 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001572 dev_warn(info->dev, "Invalid register size: %d\n",
1573 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return -EINVAL;
1575 }
1576
Corey Minyardc305e3d2008-04-29 01:01:10 -07001577 /*
1578 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 * unusual looking calculation, but it avoids claiming any
1580 * more memory than it has to. It will claim everything
1581 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001582 * register.
1583 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 mapsize = ((info->io_size * info->io.regspacing)
1585 - (info->io.regspacing - info->io.regsize));
1586
Corey Minyardb0defcd2006-03-26 01:37:20 -08001587 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return -EIO;
1589
Corey Minyardb0defcd2006-03-26 01:37:20 -08001590 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001592 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 return -EIO;
1594 }
1595 return 0;
1596}
1597
Corey Minyardb361e272006-12-06 20:41:07 -08001598/*
1599 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1600 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1601 * Options are:
1602 * rsp=<regspacing>
1603 * rsi=<regsize>
1604 * rsh=<regshift>
1605 * irq=<irq>
1606 * ipmb=<ipmb addr>
1607 */
1608enum hotmod_op { HM_ADD, HM_REMOVE };
1609struct hotmod_vals {
1610 char *name;
1611 int val;
1612};
1613static struct hotmod_vals hotmod_ops[] = {
1614 { "add", HM_ADD },
1615 { "remove", HM_REMOVE },
1616 { NULL }
1617};
1618static struct hotmod_vals hotmod_si[] = {
1619 { "kcs", SI_KCS },
1620 { "smic", SI_SMIC },
1621 { "bt", SI_BT },
1622 { NULL }
1623};
1624static struct hotmod_vals hotmod_as[] = {
1625 { "mem", IPMI_MEM_ADDR_SPACE },
1626 { "i/o", IPMI_IO_ADDR_SPACE },
1627 { NULL }
1628};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001629
Corey Minyardb361e272006-12-06 20:41:07 -08001630static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1631{
1632 char *s;
1633 int i;
1634
1635 s = strchr(*curr, ',');
1636 if (!s) {
1637 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1638 return -EINVAL;
1639 }
1640 *s = '\0';
1641 s++;
1642 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001643 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001644 *val = v[i].val;
1645 *curr = s;
1646 return 0;
1647 }
1648 }
1649
1650 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1651 return -EINVAL;
1652}
1653
Corey Minyard1d5636c2006-12-10 02:19:08 -08001654static int check_hotmod_int_op(const char *curr, const char *option,
1655 const char *name, int *val)
1656{
1657 char *n;
1658
1659 if (strcmp(curr, name) == 0) {
1660 if (!option) {
1661 printk(KERN_WARNING PFX
1662 "No option given for '%s'\n",
1663 curr);
1664 return -EINVAL;
1665 }
1666 *val = simple_strtoul(option, &n, 0);
1667 if ((*n != '\0') || (*option == '\0')) {
1668 printk(KERN_WARNING PFX
1669 "Bad option given for '%s'\n",
1670 curr);
1671 return -EINVAL;
1672 }
1673 return 1;
1674 }
1675 return 0;
1676}
1677
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001678static struct smi_info *smi_info_alloc(void)
1679{
1680 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1681
1682 if (info) {
1683 spin_lock_init(&info->si_lock);
1684 spin_lock_init(&info->msg_lock);
1685 }
1686 return info;
1687}
1688
Corey Minyardb361e272006-12-06 20:41:07 -08001689static int hotmod_handler(const char *val, struct kernel_param *kp)
1690{
1691 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001692 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001693 char *next, *curr, *s, *n, *o;
1694 enum hotmod_op op;
1695 enum si_type si_type;
1696 int addr_space;
1697 unsigned long addr;
1698 int regspacing;
1699 int regsize;
1700 int regshift;
1701 int irq;
1702 int ipmb;
1703 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001704 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001705 struct smi_info *info;
1706
1707 if (!str)
1708 return -ENOMEM;
1709
1710 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001711 len = strlen(str);
1712 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001713 while ((ival >= 0) && isspace(str[ival])) {
1714 str[ival] = '\0';
1715 ival--;
1716 }
1717
1718 for (curr = str; curr; curr = next) {
1719 regspacing = 1;
1720 regsize = 1;
1721 regshift = 0;
1722 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001723 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001724
1725 next = strchr(curr, ':');
1726 if (next) {
1727 *next = '\0';
1728 next++;
1729 }
1730
1731 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1732 if (rv)
1733 break;
1734 op = ival;
1735
1736 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1737 if (rv)
1738 break;
1739 si_type = ival;
1740
1741 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1742 if (rv)
1743 break;
1744
1745 s = strchr(curr, ',');
1746 if (s) {
1747 *s = '\0';
1748 s++;
1749 }
1750 addr = simple_strtoul(curr, &n, 0);
1751 if ((*n != '\0') || (*curr == '\0')) {
1752 printk(KERN_WARNING PFX "Invalid hotmod address"
1753 " '%s'\n", curr);
1754 break;
1755 }
1756
1757 while (s) {
1758 curr = s;
1759 s = strchr(curr, ',');
1760 if (s) {
1761 *s = '\0';
1762 s++;
1763 }
1764 o = strchr(curr, '=');
1765 if (o) {
1766 *o = '\0';
1767 o++;
1768 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001769 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1770 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001771 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001772 else if (rv)
1773 continue;
1774 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1775 if (rv < 0)
1776 goto out;
1777 else if (rv)
1778 continue;
1779 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1780 if (rv < 0)
1781 goto out;
1782 else if (rv)
1783 continue;
1784 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1785 if (rv < 0)
1786 goto out;
1787 else if (rv)
1788 continue;
1789 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1790 if (rv < 0)
1791 goto out;
1792 else if (rv)
1793 continue;
1794
1795 rv = -EINVAL;
1796 printk(KERN_WARNING PFX
1797 "Invalid hotmod option '%s'\n",
1798 curr);
1799 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001800 }
1801
1802 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001803 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001804 if (!info) {
1805 rv = -ENOMEM;
1806 goto out;
1807 }
1808
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001809 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001810 info->si_type = si_type;
1811 info->io.addr_data = addr;
1812 info->io.addr_type = addr_space;
1813 if (addr_space == IPMI_MEM_ADDR_SPACE)
1814 info->io_setup = mem_setup;
1815 else
1816 info->io_setup = port_setup;
1817
1818 info->io.addr = NULL;
1819 info->io.regspacing = regspacing;
1820 if (!info->io.regspacing)
1821 info->io.regspacing = DEFAULT_REGSPACING;
1822 info->io.regsize = regsize;
1823 if (!info->io.regsize)
1824 info->io.regsize = DEFAULT_REGSPACING;
1825 info->io.regshift = regshift;
1826 info->irq = irq;
1827 if (info->irq)
1828 info->irq_setup = std_irq_setup;
1829 info->slave_addr = ipmb;
1830
Yinghai Lu7faefea2010-08-10 18:03:10 -07001831 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001832 if (try_smi_init(info))
1833 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07001834 } else {
1835 kfree(info);
1836 }
Corey Minyardb361e272006-12-06 20:41:07 -08001837 } else {
1838 /* remove */
1839 struct smi_info *e, *tmp_e;
1840
1841 mutex_lock(&smi_infos_lock);
1842 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1843 if (e->io.addr_type != addr_space)
1844 continue;
1845 if (e->si_type != si_type)
1846 continue;
1847 if (e->io.addr_data == addr)
1848 cleanup_one_si(e);
1849 }
1850 mutex_unlock(&smi_infos_lock);
1851 }
1852 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001853 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001854 out:
1855 kfree(str);
1856 return rv;
1857}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001858
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001859static int __devinit hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001861 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001862 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 struct smi_info *info;
1864
Corey Minyardb0defcd2006-03-26 01:37:20 -08001865 for (i = 0; i < SI_MAX_PARMS; i++) {
1866 if (!ports[i] && !addrs[i])
1867 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001869 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001870 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001871 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001873 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001874 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001875
Corey Minyard1d5636c2006-12-10 02:19:08 -08001876 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001877 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001878 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001879 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001880 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001881 info->si_type = SI_BT;
1882 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001883 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001884 "for interface %d, was invalid: %s\n",
1885 i, si_type[i]);
1886 kfree(info);
1887 continue;
1888 }
1889
1890 if (ports[i]) {
1891 /* An I/O port */
1892 info->io_setup = port_setup;
1893 info->io.addr_data = ports[i];
1894 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1895 } else if (addrs[i]) {
1896 /* A memory port */
1897 info->io_setup = mem_setup;
1898 info->io.addr_data = addrs[i];
1899 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1900 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001901 printk(KERN_WARNING PFX "Interface type specified "
1902 "for interface %d, but port and address were "
1903 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001904 kfree(info);
1905 continue;
1906 }
1907
1908 info->io.addr = NULL;
1909 info->io.regspacing = regspacings[i];
1910 if (!info->io.regspacing)
1911 info->io.regspacing = DEFAULT_REGSPACING;
1912 info->io.regsize = regsizes[i];
1913 if (!info->io.regsize)
1914 info->io.regsize = DEFAULT_REGSPACING;
1915 info->io.regshift = regshifts[i];
1916 info->irq = irqs[i];
1917 if (info->irq)
1918 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001919 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08001920
Yinghai Lu7faefea2010-08-10 18:03:10 -07001921 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001922 if (try_smi_init(info))
1923 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001924 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001925 } else {
1926 kfree(info);
1927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001929 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
Len Brown84663612005-08-24 12:09:07 -04001932#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934#include <linux/acpi.h>
1935
Corey Minyardc305e3d2008-04-29 01:01:10 -07001936/*
1937 * Once we get an ACPI failure, we don't try any more, because we go
1938 * through the tables sequentially. Once we don't find a table, there
1939 * are no more.
1940 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001941static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08001944static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
1945 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
1947 struct smi_info *smi_info = context;
1948 unsigned long flags;
1949#ifdef DEBUG_TIMING
1950 struct timeval t;
1951#endif
1952
1953 spin_lock_irqsave(&(smi_info->si_lock), flags);
1954
Corey Minyard64959e22008-04-29 01:01:07 -07001955 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#ifdef DEBUG_TIMING
1958 do_gettimeofday(&t);
1959 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1960#endif
1961 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1963
1964 return ACPI_INTERRUPT_HANDLED;
1965}
1966
Corey Minyardb0defcd2006-03-26 01:37:20 -08001967static void acpi_gpe_irq_cleanup(struct smi_info *info)
1968{
1969 if (!info->irq)
1970 return;
1971
1972 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1973}
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975static int acpi_gpe_irq_setup(struct smi_info *info)
1976{
1977 acpi_status status;
1978
Corey Minyardb0defcd2006-03-26 01:37:20 -08001979 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return 0;
1981
1982 /* FIXME - is level triggered right? */
1983 status = acpi_install_gpe_handler(NULL,
1984 info->irq,
1985 ACPI_GPE_LEVEL_TRIGGERED,
1986 &ipmi_acpi_gpe,
1987 info);
1988 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001989 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
1990 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 info->irq = 0;
1992 return -EINVAL;
1993 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001994 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001995 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return 0;
1997 }
1998}
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000/*
2001 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002002 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 */
2004struct SPMITable {
2005 s8 Signature[4];
2006 u32 Length;
2007 u8 Revision;
2008 u8 Checksum;
2009 s8 OEMID[6];
2010 s8 OEMTableID[8];
2011 s8 OEMRevision[4];
2012 s8 CreatorID[4];
2013 s8 CreatorRevision[4];
2014 u8 InterfaceType;
2015 u8 IPMIlegacy;
2016 s16 SpecificationRevision;
2017
2018 /*
2019 * Bit 0 - SCI interrupt supported
2020 * Bit 1 - I/O APIC/SAPIC
2021 */
2022 u8 InterruptType;
2023
Corey Minyardc305e3d2008-04-29 01:01:10 -07002024 /*
2025 * If bit 0 of InterruptType is set, then this is the SCI
2026 * interrupt in the GPEx_STS register.
2027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 u8 GPE;
2029
2030 s16 Reserved;
2031
Corey Minyardc305e3d2008-04-29 01:01:10 -07002032 /*
2033 * If bit 1 of InterruptType is set, then this is the I/O
2034 * APIC/SAPIC interrupt.
2035 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 u32 GlobalSystemInterrupt;
2037
2038 /* The actual register address. */
2039 struct acpi_generic_address addr;
2040
2041 u8 UID[4];
2042
2043 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2044};
2045
Corey Minyard60ee6d52010-10-27 15:34:18 -07002046static int __devinit try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002051 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2052 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002055 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002056 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002057 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002058 return -ENOMEM;
2059 }
2060
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002061 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002062 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002065 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002067 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002070 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002073 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002076 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2077 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002078 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return -EIO;
2080 }
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (spmi->InterruptType & 1) {
2083 /* We've got a GPE interrupt. */
2084 info->irq = spmi->GPE;
2085 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 } else if (spmi->InterruptType & 2) {
2087 /* We've got an APIC/SAPIC interrupt. */
2088 info->irq = spmi->GlobalSystemInterrupt;
2089 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else {
2091 /* Use the default interrupt setting. */
2092 info->irq = 0;
2093 info->irq_setup = NULL;
2094 }
2095
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002096 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002097 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002098 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002099 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002100 info->io.regspacing = DEFAULT_REGSPACING;
2101 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002102 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002103 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002105 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002107 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002108 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002110 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 } else {
2112 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002113 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return -EIO;
2115 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002116 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002118 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2119 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2120 info->io.addr_data, info->io.regsize, info->io.regspacing,
2121 info->irq);
2122
Yinghai Lu7faefea2010-08-10 18:03:10 -07002123 if (add_smi(info))
2124 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return 0;
2127}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002128
Corey Minyard60ee6d52010-10-27 15:34:18 -07002129static void __devinit spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002130{
2131 acpi_status status;
2132 struct SPMITable *spmi;
2133 int i;
2134
2135 if (acpi_disabled)
2136 return;
2137
2138 if (acpi_failure)
2139 return;
2140
2141 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002142 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2143 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002144 if (status != AE_OK)
2145 return;
2146
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002147 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002148 }
2149}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002150
2151static int __devinit ipmi_pnp_probe(struct pnp_dev *dev,
2152 const struct pnp_device_id *dev_id)
2153{
2154 struct acpi_device *acpi_dev;
2155 struct smi_info *info;
Yinghai Lua9e31762010-09-22 13:04:53 -07002156 struct resource *res, *res_second;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002157 acpi_handle handle;
2158 acpi_status status;
2159 unsigned long long tmp;
2160
2161 acpi_dev = pnp_acpi_device(dev);
2162 if (!acpi_dev)
2163 return -ENODEV;
2164
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002165 info = smi_info_alloc();
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002166 if (!info)
2167 return -ENOMEM;
2168
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002169 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002170 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002171
2172 handle = acpi_dev->handle;
Zhao Yakui16f42322010-12-08 10:10:16 +08002173 info->addr_info.acpi_info.acpi_handle = handle;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002174
2175 /* _IFT tells us the interface type: KCS, BT, etc */
2176 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2177 if (ACPI_FAILURE(status))
2178 goto err_free;
2179
2180 switch (tmp) {
2181 case 1:
2182 info->si_type = SI_KCS;
2183 break;
2184 case 2:
2185 info->si_type = SI_SMIC;
2186 break;
2187 case 3:
2188 info->si_type = SI_BT;
2189 break;
2190 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002191 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002192 goto err_free;
2193 }
2194
Myron Stowe279fbd02010-05-26 14:43:52 -07002195 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2196 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002197 info->io_setup = port_setup;
2198 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002199 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002200 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2201 if (res) {
2202 info->io_setup = mem_setup;
2203 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2204 }
2205 }
2206 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002207 dev_err(&dev->dev, "no I/O or memory address\n");
2208 goto err_free;
2209 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002210 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002211
2212 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lua9e31762010-09-22 13:04:53 -07002213 res_second = pnp_get_resource(dev,
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002214 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2215 IORESOURCE_IO : IORESOURCE_MEM,
2216 1);
Yinghai Lua9e31762010-09-22 13:04:53 -07002217 if (res_second) {
2218 if (res_second->start > info->io.addr_data)
2219 info->io.regspacing = res_second->start - info->io.addr_data;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002220 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002221 info->io.regsize = DEFAULT_REGSPACING;
2222 info->io.regshift = 0;
2223
2224 /* If _GPE exists, use it; otherwise use standard interrupts */
2225 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2226 if (ACPI_SUCCESS(status)) {
2227 info->irq = tmp;
2228 info->irq_setup = acpi_gpe_irq_setup;
2229 } else if (pnp_irq_valid(dev, 0)) {
2230 info->irq = pnp_irq(dev, 0);
2231 info->irq_setup = std_irq_setup;
2232 }
2233
Myron Stowe8c8eae22010-05-26 14:43:51 -07002234 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002235 pnp_set_drvdata(dev, info);
2236
Myron Stowe279fbd02010-05-26 14:43:52 -07002237 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2238 res, info->io.regsize, info->io.regspacing,
2239 info->irq);
2240
Yinghai Lu7faefea2010-08-10 18:03:10 -07002241 if (add_smi(info))
2242 goto err_free;
2243
2244 return 0;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002245
2246err_free:
2247 kfree(info);
2248 return -EINVAL;
2249}
2250
2251static void __devexit ipmi_pnp_remove(struct pnp_dev *dev)
2252{
2253 struct smi_info *info = pnp_get_drvdata(dev);
2254
2255 cleanup_one_si(info);
2256}
2257
2258static const struct pnp_device_id pnp_dev_table[] = {
2259 {"IPI0001", 0},
2260 {"", 0},
2261};
2262
2263static struct pnp_driver ipmi_pnp_driver = {
2264 .name = DEVICE_NAME,
2265 .probe = ipmi_pnp_probe,
2266 .remove = __devexit_p(ipmi_pnp_remove),
2267 .id_table = pnp_dev_table,
2268};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269#endif
2270
Matt Domscha9fad4c2006-01-11 12:17:44 -08002271#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002272struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 u8 type;
2274 u8 addr_space;
2275 unsigned long base_addr;
2276 u8 irq;
2277 u8 offset;
2278 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002279};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Jeff Garzik18552562007-10-03 15:15:40 -04002281static int __devinit decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002282 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
Jeff Garzik18552562007-10-03 15:15:40 -04002284 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 unsigned long base_addr;
2286 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002287 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Corey Minyardb0defcd2006-03-26 01:37:20 -08002289 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291 memcpy(&base_addr, data+8, sizeof(unsigned long));
2292 if (len >= 0x11) {
2293 if (base_addr & 1) {
2294 /* I/O */
2295 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002296 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002297 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002299 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2302 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002303 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Corey Minyardb0defcd2006-03-26 01:37:20 -08002305 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002308 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002309 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002311 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
2313 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002314 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 break;
2316 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002317 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
2319 default:
2320 /* Some other interface, just ignore it. */
2321 return -EIO;
2322 }
2323 } else {
2324 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002325 /*
2326 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002327 * address should be 1 if the address is I/O and 0 if
2328 * the address is in memory. So many systems get that
2329 * wrong (and all that I have seen are I/O) so we just
2330 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002331 * memory should use the newer spec, anyway.
2332 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002333 dmi->base_addr = base_addr & 0xfffe;
2334 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2335 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
2337
Corey Minyardb0defcd2006-03-26 01:37:20 -08002338 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Corey Minyardb0defcd2006-03-26 01:37:20 -08002340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
Corey Minyard60ee6d52010-10-27 15:34:18 -07002343static void __devinit try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Corey Minyarde8b33612005-09-06 15:18:45 -07002345 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002347 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002348 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002349 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002350 return;
2351 }
2352
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002353 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002354 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Corey Minyarde8b33612005-09-06 15:18:45 -07002356 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002357 case 0x01: /* KCS */
2358 info->si_type = SI_KCS;
2359 break;
2360 case 0x02: /* SMIC */
2361 info->si_type = SI_SMIC;
2362 break;
2363 case 0x03: /* BT */
2364 info->si_type = SI_BT;
2365 break;
2366 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002367 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002368 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
2370
Corey Minyardb0defcd2006-03-26 01:37:20 -08002371 switch (ipmi_data->addr_space) {
2372 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002374 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2375 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Corey Minyardb0defcd2006-03-26 01:37:20 -08002377 case IPMI_IO_ADDR_SPACE:
2378 info->io_setup = port_setup;
2379 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2380 break;
2381
2382 default:
2383 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002384 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002385 ipmi_data->addr_space);
2386 return;
2387 }
2388 info->io.addr_data = ipmi_data->base_addr;
2389
2390 info->io.regspacing = ipmi_data->offset;
2391 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 info->io.regspacing = DEFAULT_REGSPACING;
2393 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002394 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 info->slave_addr = ipmi_data->slave_addr;
2397
Corey Minyardb0defcd2006-03-26 01:37:20 -08002398 info->irq = ipmi_data->irq;
2399 if (info->irq)
2400 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002402 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2403 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2404 info->io.addr_data, info->io.regsize, info->io.regspacing,
2405 info->irq);
2406
Yinghai Lu7faefea2010-08-10 18:03:10 -07002407 if (add_smi(info))
2408 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002409}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Corey Minyardb0defcd2006-03-26 01:37:20 -08002411static void __devinit dmi_find_bmc(void)
2412{
Jeff Garzik18552562007-10-03 15:15:40 -04002413 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002414 struct dmi_ipmi_data data;
2415 int rv;
2416
2417 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002418 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002419 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2420 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002421 if (!rv)
2422 try_init_dmi(&data);
2423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002425#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427#ifdef CONFIG_PCI
2428
Corey Minyardb0defcd2006-03-26 01:37:20 -08002429#define PCI_ERMC_CLASSCODE 0x0C0700
2430#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2431#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2432#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2433#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2434#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436#define PCI_HP_VENDOR_ID 0x103C
2437#define PCI_MMC_DEVICE_ID 0x121A
2438#define PCI_MMC_ADDR_CW 0x10
2439
Corey Minyardb0defcd2006-03-26 01:37:20 -08002440static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002442 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Corey Minyardb0defcd2006-03-26 01:37:20 -08002444 pci_disable_device(pdev);
2445}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Corey Minyardb0defcd2006-03-26 01:37:20 -08002447static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
2448 const struct pci_device_id *ent)
2449{
2450 int rv;
2451 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2452 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002454 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002455 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002456 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002457
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002458 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002459 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002460
2461 switch (class_type) {
2462 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2463 info->si_type = SI_SMIC;
2464 break;
2465
2466 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2467 info->si_type = SI_KCS;
2468 break;
2469
2470 case PCI_ERMC_CLASSCODE_TYPE_BT:
2471 info->si_type = SI_BT;
2472 break;
2473
2474 default:
2475 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002476 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002477 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Corey Minyardb0defcd2006-03-26 01:37:20 -08002480 rv = pci_enable_device(pdev);
2481 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002482 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002483 kfree(info);
2484 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486
Corey Minyardb0defcd2006-03-26 01:37:20 -08002487 info->addr_source_cleanup = ipmi_pci_cleanup;
2488 info->addr_source_data = pdev;
2489
Corey Minyardb0defcd2006-03-26 01:37:20 -08002490 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2491 info->io_setup = port_setup;
2492 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2493 } else {
2494 info->io_setup = mem_setup;
2495 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002497 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Corey Minyardb0defcd2006-03-26 01:37:20 -08002499 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002501 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Corey Minyardb0defcd2006-03-26 01:37:20 -08002503 info->irq = pdev->irq;
2504 if (info->irq)
2505 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Corey Minyard50c812b2006-03-26 01:37:21 -08002507 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002508 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002509
Myron Stowe279fbd02010-05-26 14:43:52 -07002510 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2511 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2512 info->irq);
2513
Yinghai Lu7faefea2010-08-10 18:03:10 -07002514 if (add_smi(info))
2515 kfree(info);
2516
2517 return 0;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002518}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Corey Minyardb0defcd2006-03-26 01:37:20 -08002520static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
2521{
Corey Minyardfca3b742007-05-08 00:23:59 -07002522 struct smi_info *info = pci_get_drvdata(pdev);
2523 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Corey Minyardb0defcd2006-03-26 01:37:20 -08002526#ifdef CONFIG_PM
2527static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2528{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return 0;
2530}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Corey Minyardb0defcd2006-03-26 01:37:20 -08002532static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002536#endif
2537
2538static struct pci_device_id ipmi_pci_devices[] = {
2539 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002540 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2541 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002542};
2543MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2544
2545static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002546 .name = DEVICE_NAME,
2547 .id_table = ipmi_pci_devices,
2548 .probe = ipmi_pci_probe,
2549 .remove = __devexit_p(ipmi_pci_remove),
Corey Minyardb0defcd2006-03-26 01:37:20 -08002550#ifdef CONFIG_PM
Corey Minyardc305e3d2008-04-29 01:01:10 -07002551 .suspend = ipmi_pci_suspend,
2552 .resume = ipmi_pci_resume,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002553#endif
2554};
2555#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002557static int __devinit ipmi_probe(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002558{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002559#ifdef CONFIG_OF
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002560 struct smi_info *info;
2561 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002562 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002563 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002564 int ret;
2565 int proplen;
2566
Myron Stowe279fbd02010-05-26 14:43:52 -07002567 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002568
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002569 if (!dev->dev.of_match)
2570 return -EINVAL;
2571
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002572 ret = of_address_to_resource(np, 0, &resource);
2573 if (ret) {
2574 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2575 return ret;
2576 }
2577
Stephen Rothwell9c250992007-08-15 16:42:12 +10002578 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002579 if (regsize && proplen != 4) {
2580 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2581 return -EINVAL;
2582 }
2583
Stephen Rothwell9c250992007-08-15 16:42:12 +10002584 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002585 if (regspacing && proplen != 4) {
2586 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2587 return -EINVAL;
2588 }
2589
Stephen Rothwell9c250992007-08-15 16:42:12 +10002590 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002591 if (regshift && proplen != 4) {
2592 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2593 return -EINVAL;
2594 }
2595
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002596 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002597
2598 if (!info) {
2599 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002600 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002601 return -ENOMEM;
2602 }
2603
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002604 info->si_type = (enum si_type) dev->dev.of_match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002605 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002606 info->irq_setup = std_irq_setup;
2607
Nate Case3b7ec112008-05-14 16:05:39 -07002608 if (resource.flags & IORESOURCE_IO) {
2609 info->io_setup = port_setup;
2610 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2611 } else {
2612 info->io_setup = mem_setup;
2613 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2614 }
2615
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002616 info->io.addr_data = resource.start;
2617
Rob Herringda81c3b2010-11-16 14:33:50 -06002618 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2619 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2620 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002621
Grant Likely61c7a082010-04-13 16:12:29 -07002622 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002623 info->dev = &dev->dev;
2624
Myron Stowe279fbd02010-05-26 14:43:52 -07002625 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002626 info->io.addr_data, info->io.regsize, info->io.regspacing,
2627 info->irq);
2628
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002629 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002630
Yinghai Lu7faefea2010-08-10 18:03:10 -07002631 if (add_smi(info)) {
2632 kfree(info);
2633 return -EBUSY;
2634 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002635#endif
Yinghai Lu7faefea2010-08-10 18:03:10 -07002636 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002637}
2638
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002639static int __devexit ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002640{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002641#ifdef CONFIG_OF
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002642 cleanup_one_si(dev_get_drvdata(&dev->dev));
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002643#endif
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002644 return 0;
2645}
2646
2647static struct of_device_id ipmi_match[] =
2648{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002649 { .type = "ipmi", .compatible = "ipmi-kcs",
2650 .data = (void *)(unsigned long) SI_KCS },
2651 { .type = "ipmi", .compatible = "ipmi-smic",
2652 .data = (void *)(unsigned long) SI_SMIC },
2653 { .type = "ipmi", .compatible = "ipmi-bt",
2654 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002655 {},
2656};
2657
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002658static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002659 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002660 .name = DEVICE_NAME,
Grant Likely40182942010-04-13 16:13:02 -07002661 .owner = THIS_MODULE,
2662 .of_match_table = ipmi_match,
2663 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002664 .probe = ipmi_probe,
2665 .remove = __devexit_p(ipmi_remove),
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002666};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002667
Corey Minyard40112ae2009-04-21 12:24:03 -07002668static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
Corey Minyard50c812b2006-03-26 01:37:21 -08002670 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002673 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002674 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2675 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002676 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 smi_result = smi_info->handlers->event(
2678 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002679 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 smi_result = smi_info->handlers->event(
2681 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002682 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 break;
2684 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002685 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002686 /*
2687 * We couldn't get the state machine to run, so whatever's at
2688 * the port is probably not an IPMI SMI interface.
2689 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002690 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Corey Minyard40112ae2009-04-21 12:24:03 -07002692 return 0;
2693}
2694
2695static int try_get_dev_id(struct smi_info *smi_info)
2696{
2697 unsigned char msg[2];
2698 unsigned char *resp;
2699 unsigned long resp_len;
2700 int rv = 0;
2701
2702 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2703 if (!resp)
2704 return -ENOMEM;
2705
2706 /*
2707 * Do a Get Device ID command, since it comes back with some
2708 * useful info.
2709 */
2710 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2711 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2712 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2713
2714 rv = wait_for_msg_done(smi_info);
2715 if (rv)
2716 goto out;
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2719 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Corey Minyardd8c98612007-10-18 03:07:11 -07002721 /* Check and record info from the get device id, in case we need it. */
2722 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 out:
2725 kfree(resp);
2726 return rv;
2727}
2728
Corey Minyard40112ae2009-04-21 12:24:03 -07002729static int try_enable_event_buffer(struct smi_info *smi_info)
2730{
2731 unsigned char msg[3];
2732 unsigned char *resp;
2733 unsigned long resp_len;
2734 int rv = 0;
2735
2736 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2737 if (!resp)
2738 return -ENOMEM;
2739
2740 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2741 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2742 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2743
2744 rv = wait_for_msg_done(smi_info);
2745 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002746 printk(KERN_WARNING PFX "Error getting response from get"
2747 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002748 " enabled.\n");
2749 goto out;
2750 }
2751
2752 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2753 resp, IPMI_MAX_MSG_LENGTH);
2754
2755 if (resp_len < 4 ||
2756 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2757 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2758 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002759 printk(KERN_WARNING PFX "Invalid return from get global"
2760 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002761 rv = -EINVAL;
2762 goto out;
2763 }
2764
2765 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2766 /* buffer is already enabled, nothing to do. */
2767 goto out;
2768
2769 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2770 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2771 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2772 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2773
2774 rv = wait_for_msg_done(smi_info);
2775 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002776 printk(KERN_WARNING PFX "Error getting response from set"
2777 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002778 " enabled.\n");
2779 goto out;
2780 }
2781
2782 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2783 resp, IPMI_MAX_MSG_LENGTH);
2784
2785 if (resp_len < 3 ||
2786 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2787 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002788 printk(KERN_WARNING PFX "Invalid return from get global,"
2789 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002790 rv = -EINVAL;
2791 goto out;
2792 }
2793
2794 if (resp[2] != 0)
2795 /*
2796 * An error when setting the event buffer bit means
2797 * that the event buffer is not supported.
2798 */
2799 rv = -ENOENT;
2800 out:
2801 kfree(resp);
2802 return rv;
2803}
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805static int type_file_read_proc(char *page, char **start, off_t off,
2806 int count, int *eof, void *data)
2807{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 struct smi_info *smi = data;
2809
Corey Minyardb361e272006-12-06 20:41:07 -08002810 return sprintf(page, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811}
2812
2813static int stat_file_read_proc(char *page, char **start, off_t off,
2814 int count, int *eof, void *data)
2815{
2816 char *out = (char *) page;
2817 struct smi_info *smi = data;
2818
2819 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002820 smi->irq && !smi->interrupt_disabled);
Corey Minyard64959e22008-04-29 01:01:07 -07002821 out += sprintf(out, "short_timeouts: %u\n",
2822 smi_get_stat(smi, short_timeouts));
2823 out += sprintf(out, "long_timeouts: %u\n",
2824 smi_get_stat(smi, long_timeouts));
Corey Minyard64959e22008-04-29 01:01:07 -07002825 out += sprintf(out, "idles: %u\n",
2826 smi_get_stat(smi, idles));
2827 out += sprintf(out, "interrupts: %u\n",
2828 smi_get_stat(smi, interrupts));
2829 out += sprintf(out, "attentions: %u\n",
2830 smi_get_stat(smi, attentions));
2831 out += sprintf(out, "flag_fetches: %u\n",
2832 smi_get_stat(smi, flag_fetches));
2833 out += sprintf(out, "hosed_count: %u\n",
2834 smi_get_stat(smi, hosed_count));
2835 out += sprintf(out, "complete_transactions: %u\n",
2836 smi_get_stat(smi, complete_transactions));
2837 out += sprintf(out, "events: %u\n",
2838 smi_get_stat(smi, events));
2839 out += sprintf(out, "watchdog_pretimeouts: %u\n",
2840 smi_get_stat(smi, watchdog_pretimeouts));
2841 out += sprintf(out, "incoming_messages: %u\n",
2842 smi_get_stat(smi, incoming_messages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Corey Minyardb361e272006-12-06 20:41:07 -08002844 return out - page;
2845}
2846
2847static int param_read_proc(char *page, char **start, off_t off,
2848 int count, int *eof, void *data)
2849{
2850 struct smi_info *smi = data;
2851
2852 return sprintf(page,
2853 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2854 si_to_str[smi->si_type],
2855 addr_space_to_str[smi->io.addr_type],
2856 smi->io.addr_data,
2857 smi->io.regspacing,
2858 smi->io.regsize,
2859 smi->io.regshift,
2860 smi->irq,
2861 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002864/*
2865 * oem_data_avail_to_receive_msg_avail
2866 * @info - smi_info structure with msg_flags set
2867 *
2868 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2869 * Returns 1 indicating need to re-run handle_flags().
2870 */
2871static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2872{
Corey Minyarde8b33612005-09-06 15:18:45 -07002873 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002874 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002875 return 1;
2876}
2877
2878/*
2879 * setup_dell_poweredge_oem_data_handler
2880 * @info - smi_info.device_id must be populated
2881 *
2882 * Systems that match, but have firmware version < 1.40 may assert
2883 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2884 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2885 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2886 * as RECEIVE_MSG_AVAIL instead.
2887 *
2888 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2889 * assert the OEM[012] bits, and if it did, the driver would have to
2890 * change to handle that properly, we don't actually check for the
2891 * firmware version.
2892 * Device ID = 0x20 BMC on PowerEdge 8G servers
2893 * Device Revision = 0x80
2894 * Firmware Revision1 = 0x01 BMC version 1.40
2895 * Firmware Revision2 = 0x40 BCD encoded
2896 * IPMI Version = 0x51 IPMI 1.5
2897 * Manufacturer ID = A2 02 00 Dell IANA
2898 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002899 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2900 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2901 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002902 */
2903#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2904#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2905#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002906#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002907static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2908{
2909 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002910 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002911 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2912 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002913 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002914 smi_info->oem_data_avail_handler =
2915 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002916 } else if (ipmi_version_major(id) < 1 ||
2917 (ipmi_version_major(id) == 1 &&
2918 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002919 smi_info->oem_data_avail_handler =
2920 oem_data_avail_to_receive_msg_avail;
2921 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002922 }
2923}
2924
Corey Minyardea940272005-11-07 00:59:59 -08002925#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2926static void return_hosed_msg_badsize(struct smi_info *smi_info)
2927{
2928 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2929
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002930 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08002931 msg->rsp[0] = msg->data[0] | 4;
2932 msg->rsp[1] = msg->data[1];
2933 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2934 msg->rsp_size = 3;
2935 smi_info->curr_msg = NULL;
2936 deliver_recv_msg(smi_info, msg);
2937}
2938
2939/*
2940 * dell_poweredge_bt_xaction_handler
2941 * @info - smi_info.device_id must be populated
2942 *
2943 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2944 * not respond to a Get SDR command if the length of the data
2945 * requested is exactly 0x3A, which leads to command timeouts and no
2946 * data returned. This intercepts such commands, and causes userspace
2947 * callers to try again with a different-sized buffer, which succeeds.
2948 */
2949
2950#define STORAGE_NETFN 0x0A
2951#define STORAGE_CMD_GET_SDR 0x23
2952static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2953 unsigned long unused,
2954 void *in)
2955{
2956 struct smi_info *smi_info = in;
2957 unsigned char *data = smi_info->curr_msg->data;
2958 unsigned int size = smi_info->curr_msg->data_size;
2959 if (size >= 8 &&
2960 (data[0]>>2) == STORAGE_NETFN &&
2961 data[1] == STORAGE_CMD_GET_SDR &&
2962 data[7] == 0x3A) {
2963 return_hosed_msg_badsize(smi_info);
2964 return NOTIFY_STOP;
2965 }
2966 return NOTIFY_DONE;
2967}
2968
2969static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2970 .notifier_call = dell_poweredge_bt_xaction_handler,
2971};
2972
2973/*
2974 * setup_dell_poweredge_bt_xaction_handler
2975 * @info - smi_info.device_id must be filled in already
2976 *
2977 * Fills in smi_info.device_id.start_transaction_pre_hook
2978 * when we know what function to use there.
2979 */
2980static void
2981setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2982{
2983 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002984 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002985 smi_info->si_type == SI_BT)
2986 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2987}
2988
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002989/*
2990 * setup_oem_data_handler
2991 * @info - smi_info.device_id must be filled in already
2992 *
2993 * Fills in smi_info.device_id.oem_data_available_handler
2994 * when we know what function to use there.
2995 */
2996
2997static void setup_oem_data_handler(struct smi_info *smi_info)
2998{
2999 setup_dell_poweredge_oem_data_handler(smi_info);
3000}
3001
Corey Minyardea940272005-11-07 00:59:59 -08003002static void setup_xaction_handlers(struct smi_info *smi_info)
3003{
3004 setup_dell_poweredge_bt_xaction_handler(smi_info);
3005}
3006
Corey Minyarda9a2c442005-11-07 01:00:03 -08003007static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3008{
Corey Minyard453823b2006-03-31 02:30:39 -08003009 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003010 /*
3011 * The timer and thread are only running if the
3012 * interface has been started up and registered.
3013 */
Corey Minyard453823b2006-03-31 02:30:39 -08003014 if (smi_info->thread != NULL)
3015 kthread_stop(smi_info->thread);
3016 del_timer_sync(&smi_info->si_timer);
3017 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08003018}
3019
Randy Dunlap74208842006-04-18 22:21:52 -07003020static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003022 int type;
3023 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003024} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003025{
3026 { .type = SI_KCS, .port = 0xca2 },
3027 { .type = SI_SMIC, .port = 0xca9 },
3028 { .type = SI_BT, .port = 0xe4 },
3029 { .port = 0 }
3030};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Corey Minyard60ee6d52010-10-27 15:34:18 -07003032static void __devinit default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003033{
3034 struct smi_info *info;
3035 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Corey Minyardb0defcd2006-03-26 01:37:20 -08003037 for (i = 0; ; i++) {
3038 if (!ipmi_defaults[i].port)
3039 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003040#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003041 if (check_legacy_ioport(ipmi_defaults[i].port))
3042 continue;
3043#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003044 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003045 if (!info)
3046 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003047
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003048 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003049
3050 info->si_type = ipmi_defaults[i].type;
3051 info->io_setup = port_setup;
3052 info->io.addr_data = ipmi_defaults[i].port;
3053 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3054
3055 info->io.addr = NULL;
3056 info->io.regspacing = DEFAULT_REGSPACING;
3057 info->io.regsize = DEFAULT_REGSPACING;
3058 info->io.regshift = 0;
3059
Matthew Garrett2407d772010-05-26 14:43:46 -07003060 if (add_smi(info) == 0) {
3061 if ((try_smi_init(info)) == 0) {
3062 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003063 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003064 " state machine at %s address 0x%lx\n",
3065 si_to_str[info->si_type],
3066 addr_space_to_str[info->io.addr_type],
3067 info->io.addr_data);
3068 } else
3069 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003070 } else {
3071 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003072 }
3073 }
3074}
3075
3076static int is_new_interface(struct smi_info *info)
3077{
3078 struct smi_info *e;
3079
3080 list_for_each_entry(e, &smi_infos, link) {
3081 if (e->io.addr_type != info->io.addr_type)
3082 continue;
3083 if (e->io.addr_data == info->io.addr_data)
3084 return 0;
3085 }
3086
3087 return 1;
3088}
3089
Matthew Garrett2407d772010-05-26 14:43:46 -07003090static int add_smi(struct smi_info *new_smi)
3091{
3092 int rv = 0;
3093
Myron Stowe279fbd02010-05-26 14:43:52 -07003094 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Matthew Garrett2407d772010-05-26 14:43:46 -07003095 ipmi_addr_src_to_str[new_smi->addr_source],
3096 si_to_str[new_smi->si_type]);
3097 mutex_lock(&smi_infos_lock);
3098 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003099 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003100 rv = -EBUSY;
3101 goto out_err;
3102 }
3103
3104 printk(KERN_CONT "\n");
3105
3106 /* So we know not to free it unless we have allocated one. */
3107 new_smi->intf = NULL;
3108 new_smi->si_sm = NULL;
3109 new_smi->handlers = NULL;
3110
3111 list_add_tail(&new_smi->link, &smi_infos);
3112
3113out_err:
3114 mutex_unlock(&smi_infos_lock);
3115 return rv;
3116}
3117
Corey Minyardb0defcd2006-03-26 01:37:20 -08003118static int try_smi_init(struct smi_info *new_smi)
3119{
Matthew Garrett2407d772010-05-26 14:43:46 -07003120 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003121 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003122
Myron Stowe279fbd02010-05-26 14:43:52 -07003123 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003124 " machine at %s address 0x%lx, slave address 0x%x,"
3125 " irq %d\n",
3126 ipmi_addr_src_to_str[new_smi->addr_source],
3127 si_to_str[new_smi->si_type],
3128 addr_space_to_str[new_smi->io.addr_type],
3129 new_smi->io.addr_data,
3130 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003131
Corey Minyardb0defcd2006-03-26 01:37:20 -08003132 switch (new_smi->si_type) {
3133 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003135 break;
3136
3137 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003139 break;
3140
3141 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003143 break;
3144
3145 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 /* No support for anything else yet. */
3147 rv = -EIO;
3148 goto out_err;
3149 }
3150
3151 /* Allocate the state machine's data and initialize it. */
3152 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003153 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003154 printk(KERN_ERR PFX
3155 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 rv = -ENOMEM;
3157 goto out_err;
3158 }
3159 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3160 &new_smi->io);
3161
3162 /* Now that we know the I/O size, we can set up the I/O. */
3163 rv = new_smi->io_setup(new_smi);
3164 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003165 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 goto out_err;
3167 }
3168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 /* Do low-level detection first. */
3170 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003171 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003172 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 rv = -ENODEV;
3174 goto out_err;
3175 }
3176
Corey Minyardc305e3d2008-04-29 01:01:10 -07003177 /*
3178 * Attempt a get device id command. If it fails, we probably
3179 * don't have a BMC here.
3180 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003182 if (rv) {
3183 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003184 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003185 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003189 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003190 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
3193 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
3194 new_smi->curr_msg = NULL;
3195 atomic_set(&new_smi->req_events, 0);
3196 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003197 for (i = 0; i < SI_NUM_STATS; i++)
3198 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Matthew Garrettea4078c2010-05-26 14:43:48 -07003200 new_smi->interrupt_disabled = 1;
Corey Minyarda9a2c442005-11-07 01:00:03 -08003201 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003202 new_smi->intf_num = smi_num;
3203 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Corey Minyard40112ae2009-04-21 12:24:03 -07003205 rv = try_enable_event_buffer(new_smi);
3206 if (rv == 0)
3207 new_smi->has_event_buffer = 1;
3208
Corey Minyardc305e3d2008-04-29 01:01:10 -07003209 /*
3210 * Start clearing the flags before we enable interrupts or the
3211 * timer to avoid racing with the timer.
3212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 start_clear_flags(new_smi);
3214 /* IRQ is defined to be set when non-zero. */
3215 if (new_smi->irq)
3216 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3217
Corey Minyard50c812b2006-03-26 01:37:21 -08003218 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003219 /*
3220 * If we don't already have a device from something
3221 * else (like PCI), then register a new one.
3222 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003223 new_smi->pdev = platform_device_alloc("ipmi_si",
3224 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003225 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003226 printk(KERN_ERR PFX
3227 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003228 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003229 }
3230 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003231 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003232
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003233 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003234 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003235 printk(KERN_ERR PFX
3236 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003237 " %d\n",
3238 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003239 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003240 }
3241 new_smi->dev_registered = 1;
3242 }
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 rv = ipmi_register_smi(&handlers,
3245 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003246 &new_smi->device_id,
3247 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08003248 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08003249 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003251 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3252 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 goto out_err_stop_timer;
3254 }
3255
3256 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003257 type_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003258 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003260 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 goto out_err_stop_timer;
3262 }
3263
3264 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003265 stat_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003266 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003268 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 goto out_err_stop_timer;
3270 }
3271
Corey Minyardb361e272006-12-06 20:41:07 -08003272 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003273 param_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003274 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003275 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003276 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003277 goto out_err_stop_timer;
3278 }
3279
Myron Stowe279fbd02010-05-26 14:43:52 -07003280 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3281 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
3283 return 0;
3284
3285 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003286 atomic_inc(&new_smi->stop_operation);
3287 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289 out_err:
Matthew Garrett2407d772010-05-26 14:43:46 -07003290 new_smi->interrupt_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Matthew Garrett2407d772010-05-26 14:43:46 -07003292 if (new_smi->intf) {
3293 ipmi_unregister_smi(new_smi->intf);
3294 new_smi->intf = NULL;
3295 }
3296
3297 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003298 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003299 new_smi->irq_cleanup = NULL;
3300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Corey Minyardc305e3d2008-04-29 01:01:10 -07003302 /*
3303 * Wait until we know that we are out of any interrupt
3304 * handlers might have been running before we freed the
3305 * interrupt.
3306 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003307 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309 if (new_smi->si_sm) {
3310 if (new_smi->handlers)
3311 new_smi->handlers->cleanup(new_smi->si_sm);
3312 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003313 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003315 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003316 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003317 new_smi->addr_source_cleanup = NULL;
3318 }
3319 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003320 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003321 new_smi->io_cleanup = NULL;
3322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Matthew Garrett2407d772010-05-26 14:43:46 -07003324 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003325 platform_device_unregister(new_smi->pdev);
Matthew Garrett2407d772010-05-26 14:43:46 -07003326 new_smi->dev_registered = 0;
3327 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 return rv;
3330}
3331
Corey Minyard60ee6d52010-10-27 15:34:18 -07003332static int __devinit init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 int i;
3335 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003336 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003337 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003338 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340 if (initialized)
3341 return 0;
3342 initialized = 1;
3343
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003344 rv = platform_driver_register(&ipmi_driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08003345 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003346 printk(KERN_ERR PFX "Unable to register driver: %d\n", rv);
Corey Minyard50c812b2006-03-26 01:37:21 -08003347 return rv;
3348 }
3349
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 /* Parse out the si_type string into its components. */
3352 str = si_type_str;
3353 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003354 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 si_type[i] = str;
3356 str = strchr(str, ',');
3357 if (str) {
3358 *str = '\0';
3359 str++;
3360 } else {
3361 break;
3362 }
3363 }
3364 }
3365
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003366 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003368 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003369 if (!hardcode_find_bmc())
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003370 return 0;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003371
Corey Minyardb0defcd2006-03-26 01:37:20 -08003372#ifdef CONFIG_PCI
Corey Minyard168b35a2006-12-06 20:41:11 -08003373 rv = pci_register_driver(&ipmi_pci_driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003374 if (rv)
Myron Stowe279fbd02010-05-26 14:43:52 -07003375 printk(KERN_ERR PFX "Unable to register PCI driver: %d\n", rv);
Matthew Garrett56480282010-06-29 15:05:29 -07003376 else
3377 pci_registered = 1;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003378#endif
3379
Matthew Garrett754d4532010-05-26 14:43:47 -07003380#ifdef CONFIG_ACPI
3381 pnp_register_driver(&ipmi_pnp_driver);
Yinghai Lu561f8182010-09-22 13:05:15 -07003382 pnp_registered = 1;
Matthew Garrett754d4532010-05-26 14:43:47 -07003383#endif
3384
3385#ifdef CONFIG_DMI
3386 dmi_find_bmc();
3387#endif
3388
3389#ifdef CONFIG_ACPI
3390 spmi_find_bmc();
3391#endif
3392
Matthew Garrett06ee4592010-05-26 14:43:49 -07003393 /* We prefer devices with interrupts, but in the case of a machine
3394 with multiple BMCs we assume that there will be several instances
3395 of a given type so if we succeed in registering a type then also
3396 try to register everything else of the same type */
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003397
Matthew Garrett2407d772010-05-26 14:43:46 -07003398 mutex_lock(&smi_infos_lock);
3399 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003400 /* Try to register a device if it has an IRQ and we either
3401 haven't successfully registered a device yet or this
3402 device has the same type as one we successfully registered */
3403 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003404 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003405 type = e->addr_source;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003406 }
3407 }
3408 }
3409
Matthew Garrett06ee4592010-05-26 14:43:49 -07003410 /* type will only have been set if we successfully registered an si */
3411 if (type) {
3412 mutex_unlock(&smi_infos_lock);
3413 return 0;
3414 }
3415
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003416 /* Fall back to the preferred device */
3417
3418 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003419 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003420 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003421 type = e->addr_source;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003422 }
3423 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003424 }
3425 mutex_unlock(&smi_infos_lock);
3426
Matthew Garrett06ee4592010-05-26 14:43:49 -07003427 if (type)
3428 return 0;
3429
Corey Minyardb0defcd2006-03-26 01:37:20 -08003430 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003431 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003432 if (list_empty(&smi_infos)) {
3433 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003434 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003435 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003436 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003437 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Corey Minyardd6dfd132006-03-31 02:30:41 -08003440 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003441 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003442 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003443 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003444 printk(KERN_WARNING PFX
3445 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003447 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003448 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451}
3452module_init(init_ipmi_si);
3453
Corey Minyardb361e272006-12-06 20:41:07 -08003454static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455{
Matthew Garrett2407d772010-05-26 14:43:46 -07003456 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 unsigned long flags;
3458
Corey Minyardb0defcd2006-03-26 01:37:20 -08003459 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 return;
3461
Corey Minyardb0defcd2006-03-26 01:37:20 -08003462 list_del(&to_clean->link);
3463
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003464 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003465 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003466
Corey Minyardc305e3d2008-04-29 01:01:10 -07003467 /*
3468 * Make sure the timer and thread are stopped and will not run
3469 * again.
3470 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003471 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Corey Minyardc305e3d2008-04-29 01:01:10 -07003473 /*
3474 * Timeouts are stopped, now make sure the interrupts are off
3475 * for the device. A little tricky with locks to make sure
3476 * there are no races.
3477 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003478 spin_lock_irqsave(&to_clean->si_lock, flags);
3479 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3480 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3481 poll(to_clean);
3482 schedule_timeout_uninterruptible(1);
3483 spin_lock_irqsave(&to_clean->si_lock, flags);
3484 }
3485 disable_si_irq(to_clean);
3486 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3487 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3488 poll(to_clean);
3489 schedule_timeout_uninterruptible(1);
3490 }
3491
3492 /* Clean up interrupts and make sure that everything is done. */
3493 if (to_clean->irq_cleanup)
3494 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003495 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003497 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
Matthew Garrett2407d772010-05-26 14:43:46 -07003500 if (to_clean->intf)
3501 rv = ipmi_unregister_smi(to_clean->intf);
3502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003504 printk(KERN_ERR PFX "Unable to unregister device: errno=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 rv);
3506 }
3507
Matthew Garrett2407d772010-05-26 14:43:46 -07003508 if (to_clean->handlers)
3509 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511 kfree(to_clean->si_sm);
3512
Corey Minyardb0defcd2006-03-26 01:37:20 -08003513 if (to_clean->addr_source_cleanup)
3514 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003515 if (to_clean->io_cleanup)
3516 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003517
3518 if (to_clean->dev_registered)
3519 platform_device_unregister(to_clean->pdev);
3520
3521 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003524static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003526 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Corey Minyardb0defcd2006-03-26 01:37:20 -08003528 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 return;
3530
Corey Minyardb0defcd2006-03-26 01:37:20 -08003531#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003532 if (pci_registered)
3533 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003534#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003535#ifdef CONFIG_ACPI
Yinghai Lu561f8182010-09-22 13:05:15 -07003536 if (pnp_registered)
3537 pnp_unregister_driver(&ipmi_pnp_driver);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003538#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003539
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003540 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003541
Corey Minyardd6dfd132006-03-31 02:30:41 -08003542 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003543 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3544 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003545 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546}
3547module_exit(cleanup_ipmi_si);
3548
3549MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003550MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003551MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3552 " system interfaces.");