blob: 945ae4d5d21f0a300f5d4bce366a3a367755fd71 [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>
Corey Minyardb361e272006-12-06 20:41:07 -080069
Corey Minyarddba9b4f2007-05-08 00:23:51 -070070#ifdef CONFIG_PPC_OF
Stephen Rothwell11c675c2008-05-23 16:22:42 +100071#include <linux/of_device.h>
72#include <linux/of_platform.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070073#endif
74
Corey Minyardb361e272006-12-06 20:41:07 -080075#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/* Measure times between events in the driver. */
78#undef DEBUG_TIMING
79
80/* Call every 10 ms. */
81#define SI_TIMEOUT_TIME_USEC 10000
82#define SI_USEC_PER_JIFFY (1000000/HZ)
83#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
84#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070085 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87enum si_intf_state {
88 SI_NORMAL,
89 SI_GETTING_FLAGS,
90 SI_GETTING_EVENTS,
91 SI_CLEARING_FLAGS,
92 SI_CLEARING_FLAGS_THEN_SET_IRQ,
93 SI_GETTING_MESSAGES,
94 SI_ENABLE_INTERRUPTS1,
Corey Minyardee6cd5f2007-05-08 00:23:54 -070095 SI_ENABLE_INTERRUPTS2,
96 SI_DISABLE_INTERRUPTS1,
97 SI_DISABLE_INTERRUPTS2
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* FIXME - add watchdog stuff. */
99};
100
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700101/* Some BT-specific defines we need here. */
102#define IPMI_BT_INTMASK_REG 2
103#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
104#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106enum si_type {
107 SI_KCS, SI_SMIC, SI_BT
108};
Corey Minyardb361e272006-12-06 20:41:07 -0800109static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700111static char *ipmi_addr_src_to_str[] = { NULL, "hotmod", "hardcoded", "SPMI",
112 "ACPI", "SMBIOS", "PCI",
113 "device-tree", "default" };
114
Corey Minyard50c812b2006-03-26 01:37:21 -0800115#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700116
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -0800117static struct platform_driver ipmi_driver = {
118 .driver = {
119 .name = DEVICE_NAME,
120 .bus = &platform_bus_type
121 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800122};
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700123
Corey Minyard64959e22008-04-29 01:01:07 -0700124
125/*
126 * Indexes into stats[] in smi_info below.
127 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700128enum si_stat_indexes {
129 /*
130 * Number of times the driver requested a timer while an operation
131 * was in progress.
132 */
133 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700134
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700135 /*
136 * Number of times the driver requested a timer while nothing was in
137 * progress.
138 */
139 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700140
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700141 /* Number of times the interface was idle while being polled. */
142 SI_STAT_idles,
143
144 /* Number of interrupts the driver handled. */
145 SI_STAT_interrupts,
146
147 /* Number of time the driver got an ATTN from the hardware. */
148 SI_STAT_attentions,
149
150 /* Number of times the driver requested flags from the hardware. */
151 SI_STAT_flag_fetches,
152
153 /* Number of times the hardware didn't follow the state machine. */
154 SI_STAT_hosed_count,
155
156 /* Number of completed messages. */
157 SI_STAT_complete_transactions,
158
159 /* Number of IPMI events received from the hardware. */
160 SI_STAT_events,
161
162 /* Number of watchdog pretimeouts. */
163 SI_STAT_watchdog_pretimeouts,
164
165 /* Number of asyncronous messages received. */
166 SI_STAT_incoming_messages,
167
168
169 /* This *must* remain last, add new values above this. */
170 SI_NUM_STATS
171};
Corey Minyard64959e22008-04-29 01:01:07 -0700172
Corey Minyardc305e3d2008-04-29 01:01:10 -0700173struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800174 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ipmi_smi_t intf;
176 struct si_sm_data *si_sm;
177 struct si_sm_handlers *handlers;
178 enum si_type si_type;
179 spinlock_t si_lock;
180 spinlock_t msg_lock;
181 struct list_head xmit_msgs;
182 struct list_head hp_xmit_msgs;
183 struct ipmi_smi_msg *curr_msg;
184 enum si_intf_state si_state;
185
Corey Minyardc305e3d2008-04-29 01:01:10 -0700186 /*
187 * Used to handle the various types of I/O that can occur with
188 * IPMI
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct si_sm_io io;
191 int (*io_setup)(struct smi_info *info);
192 void (*io_cleanup)(struct smi_info *info);
193 int (*irq_setup)(struct smi_info *info);
194 void (*irq_cleanup)(struct smi_info *info);
195 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700196 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800197 void (*addr_source_cleanup)(struct smi_info *info);
198 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Corey Minyardc305e3d2008-04-29 01:01:10 -0700200 /*
201 * Per-OEM handler, called from handle_flags(). Returns 1
202 * when handle_flags() needs to be re-run or 0 indicating it
203 * set si_state itself.
204 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700205 int (*oem_data_avail_handler)(struct smi_info *smi_info);
206
Corey Minyardc305e3d2008-04-29 01:01:10 -0700207 /*
208 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
209 * is set to hold the flags until we are done handling everything
210 * from the flags.
211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#define RECEIVE_MSG_AVAIL 0x01
213#define EVENT_MSG_BUFFER_FULL 0x02
214#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700215#define OEM0_DATA_AVAIL 0x20
216#define OEM1_DATA_AVAIL 0x40
217#define OEM2_DATA_AVAIL 0x80
218#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700219 OEM1_DATA_AVAIL | \
220 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 unsigned char msg_flags;
222
Corey Minyard40112ae2009-04-21 12:24:03 -0700223 /* Does the BMC have an event buffer? */
224 char has_event_buffer;
225
Corey Minyardc305e3d2008-04-29 01:01:10 -0700226 /*
227 * If set to true, this will request events the next time the
228 * state machine is idle.
229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 atomic_t req_events;
231
Corey Minyardc305e3d2008-04-29 01:01:10 -0700232 /*
233 * If true, run the state machine to completion on every send
234 * call. Generally used after a panic to make sure stuff goes
235 * out.
236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 int run_to_completion;
238
239 /* The I/O port of an SI interface. */
240 int port;
241
Corey Minyardc305e3d2008-04-29 01:01:10 -0700242 /*
243 * The space between start addresses of the two ports. For
244 * instance, if the first port is 0xca2 and the spacing is 4, then
245 * the second port is 0xca6.
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 unsigned int spacing;
248
249 /* zero if no irq; */
250 int irq;
251
252 /* The timer for this si. */
253 struct timer_list si_timer;
254
255 /* The time (in jiffies) the last timeout occurred at. */
256 unsigned long last_timeout_jiffies;
257
258 /* Used to gracefully stop the timer without race conditions. */
Corey Minyarda9a2c442005-11-07 01:00:03 -0800259 atomic_t stop_operation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Corey Minyardc305e3d2008-04-29 01:01:10 -0700261 /*
262 * The driver will disable interrupts when it gets into a
263 * situation where it cannot handle messages due to lack of
264 * memory. Once that situation clears up, it will re-enable
265 * interrupts.
266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int interrupt_disabled;
268
Corey Minyard50c812b2006-03-26 01:37:21 -0800269 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700270 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Corey Minyard50c812b2006-03-26 01:37:21 -0800272 /* Driver model stuff. */
273 struct device *dev;
274 struct platform_device *pdev;
275
Corey Minyardc305e3d2008-04-29 01:01:10 -0700276 /*
277 * True if we allocated the device, false if it came from
278 * someplace else (like PCI).
279 */
Corey Minyard50c812b2006-03-26 01:37:21 -0800280 int dev_registered;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* Slave address, could be reported from DMI. */
283 unsigned char slave_addr;
284
285 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700286 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800287
Corey Minyardc305e3d2008-04-29 01:01:10 -0700288 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800289
290 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800291 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
Corey Minyard64959e22008-04-29 01:01:07 -0700294#define smi_inc_stat(smi, stat) \
295 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
296#define smi_get_stat(smi, stat) \
297 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
298
Corey Minyarda51f4a82006-10-03 01:13:59 -0700299#define SI_MAX_PARMS 4
300
301static int force_kipmid[SI_MAX_PARMS];
302static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700303#ifdef CONFIG_PCI
304static int pci_registered;
305#endif
Yinghai Lu561f8182010-09-22 13:05:15 -0700306#ifdef CONFIG_ACPI
307static int pnp_registered;
308#endif
Matthew Garrett56480282010-06-29 15:05:29 -0700309#ifdef CONFIG_PPC_OF
310static int of_registered;
311#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700312
Martin Wilckae74e822010-03-10 15:23:06 -0800313static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
314static int num_max_busy_us;
315
Corey Minyardb361e272006-12-06 20:41:07 -0800316static int unload_when_empty = 1;
317
Matthew Garrett2407d772010-05-26 14:43:46 -0700318static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800319static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800320static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800321
Alan Sterne041c682006-03-27 01:16:30 -0800322static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700323static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800324{
Alan Sterne041c682006-03-27 01:16:30 -0800325 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static void deliver_recv_msg(struct smi_info *smi_info,
329 struct ipmi_smi_msg *msg)
330{
331 /* Deliver the message to the upper layer with the lock
Corey Minyardc305e3d2008-04-29 01:01:10 -0700332 released. */
Jiri Kosinaa747c5a2010-05-26 14:43:53 -0700333
334 if (smi_info->run_to_completion) {
335 ipmi_smi_msg_received(smi_info->intf, msg);
336 } else {
337 spin_unlock(&(smi_info->si_lock));
338 ipmi_smi_msg_received(smi_info->intf, msg);
339 spin_lock(&(smi_info->si_lock));
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800343static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct ipmi_smi_msg *msg = smi_info->curr_msg;
346
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800347 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
348 cCode = IPMI_ERR_UNSPECIFIED;
349 /* else use it as is */
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Make it a reponse */
352 msg->rsp[0] = msg->data[0] | 4;
353 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800354 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 msg->rsp_size = 3;
356
357 smi_info->curr_msg = NULL;
358 deliver_recv_msg(smi_info, msg);
359}
360
361static enum si_sm_result start_next_msg(struct smi_info *smi_info)
362{
363 int rv;
364 struct list_head *entry = NULL;
365#ifdef DEBUG_TIMING
366 struct timeval t;
367#endif
368
Corey Minyardc305e3d2008-04-29 01:01:10 -0700369 /*
370 * No need to save flags, we aleady have interrupts off and we
371 * already hold the SMI lock.
372 */
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700373 if (!smi_info->run_to_completion)
374 spin_lock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* Pick the high priority queue first. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800377 if (!list_empty(&(smi_info->hp_xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 entry = smi_info->hp_xmit_msgs.next;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800379 } else if (!list_empty(&(smi_info->xmit_msgs))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 entry = smi_info->xmit_msgs.next;
381 }
382
Corey Minyardb0defcd2006-03-26 01:37:20 -0800383 if (!entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 smi_info->curr_msg = NULL;
385 rv = SI_SM_IDLE;
386 } else {
387 int err;
388
389 list_del(entry);
390 smi_info->curr_msg = list_entry(entry,
391 struct ipmi_smi_msg,
392 link);
393#ifdef DEBUG_TIMING
394 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700395 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#endif
Alan Sterne041c682006-03-27 01:16:30 -0800397 err = atomic_notifier_call_chain(&xaction_notifier_list,
398 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800399 if (err & NOTIFY_STOP_MASK) {
400 rv = SI_SM_CALL_WITHOUT_DELAY;
401 goto out;
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 err = smi_info->handlers->start_transaction(
404 smi_info->si_sm,
405 smi_info->curr_msg->data,
406 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700407 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800408 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 rv = SI_SM_CALL_WITHOUT_DELAY;
411 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700412 out:
Konstantin Baydarov5956dce2008-04-29 01:01:03 -0700413 if (!smi_info->run_to_completion)
414 spin_unlock(&(smi_info->msg_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 return rv;
417}
418
419static void start_enable_irq(struct smi_info *smi_info)
420{
421 unsigned char msg[2];
422
Corey Minyardc305e3d2008-04-29 01:01:10 -0700423 /*
424 * If we are enabling interrupts, we have to tell the
425 * BMC to use them.
426 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
428 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
429
430 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
431 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
432}
433
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700434static void start_disable_irq(struct smi_info *smi_info)
435{
436 unsigned char msg[2];
437
438 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
439 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
440
441 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
442 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static void start_clear_flags(struct smi_info *smi_info)
446{
447 unsigned char msg[3];
448
449 /* Make sure the watchdog pre-timeout flag is not set at startup. */
450 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
451 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
452 msg[2] = WDT_PRE_TIMEOUT_INT;
453
454 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
455 smi_info->si_state = SI_CLEARING_FLAGS;
456}
457
Corey Minyardc305e3d2008-04-29 01:01:10 -0700458/*
459 * When we have a situtaion where we run out of memory and cannot
460 * allocate messages, we just leave them in the BMC and run the system
461 * polled until we can allocate some memory. Once we have some
462 * memory, we will re-enable the interrupt.
463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static inline void disable_si_irq(struct smi_info *smi_info)
465{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800466 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700467 start_disable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 smi_info->interrupt_disabled = 1;
Matthew Garrettea4078c2010-05-26 14:43:48 -0700469 if (!atomic_read(&smi_info->stop_operation))
470 mod_timer(&smi_info->si_timer,
471 jiffies + SI_TIMEOUT_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473}
474
475static inline void enable_si_irq(struct smi_info *smi_info)
476{
477 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700478 start_enable_irq(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 smi_info->interrupt_disabled = 0;
480 }
481}
482
483static void handle_flags(struct smi_info *smi_info)
484{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700485 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
487 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700488 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 start_clear_flags(smi_info);
491 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
492 spin_unlock(&(smi_info->si_lock));
493 ipmi_smi_watchdog_pretimeout(smi_info->intf);
494 spin_lock(&(smi_info->si_lock));
495 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
496 /* Messages available. */
497 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800498 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 disable_si_irq(smi_info);
500 smi_info->si_state = SI_NORMAL;
501 return;
502 }
503 enable_si_irq(smi_info);
504
505 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
506 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
507 smi_info->curr_msg->data_size = 2;
508
509 smi_info->handlers->start_transaction(
510 smi_info->si_sm,
511 smi_info->curr_msg->data,
512 smi_info->curr_msg->data_size);
513 smi_info->si_state = SI_GETTING_MESSAGES;
514 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
515 /* Events available. */
516 smi_info->curr_msg = ipmi_alloc_smi_msg();
Corey Minyardb0defcd2006-03-26 01:37:20 -0800517 if (!smi_info->curr_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 disable_si_irq(smi_info);
519 smi_info->si_state = SI_NORMAL;
520 return;
521 }
522 enable_si_irq(smi_info);
523
524 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
525 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
526 smi_info->curr_msg->data_size = 2;
527
528 smi_info->handlers->start_transaction(
529 smi_info->si_sm,
530 smi_info->curr_msg->data,
531 smi_info->curr_msg->data_size);
532 smi_info->si_state = SI_GETTING_EVENTS;
Corey Minyard4064d5e2006-09-16 12:15:41 -0700533 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700534 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700535 if (smi_info->oem_data_avail_handler(smi_info))
536 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700537 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static void handle_transaction_done(struct smi_info *smi_info)
542{
543 struct ipmi_smi_msg *msg;
544#ifdef DEBUG_TIMING
545 struct timeval t;
546
547 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700548 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
550 switch (smi_info->si_state) {
551 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800552 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 break;
554
555 smi_info->curr_msg->rsp_size
556 = smi_info->handlers->get_result(
557 smi_info->si_sm,
558 smi_info->curr_msg->rsp,
559 IPMI_MAX_MSG_LENGTH);
560
Corey Minyardc305e3d2008-04-29 01:01:10 -0700561 /*
562 * Do this here becase deliver_recv_msg() releases the
563 * lock, and a new message can be put in during the
564 * time the lock is released.
565 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 msg = smi_info->curr_msg;
567 smi_info->curr_msg = NULL;
568 deliver_recv_msg(smi_info, msg);
569 break;
570
571 case SI_GETTING_FLAGS:
572 {
573 unsigned char msg[4];
574 unsigned int len;
575
576 /* We got the flags from the SMI, now handle them. */
577 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
578 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700579 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 smi_info->si_state = SI_NORMAL;
581 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700582 /*
583 * Hmm, no flags. That's technically illegal, but
584 * don't use uninitialized data.
585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 smi_info->si_state = SI_NORMAL;
587 } else {
588 smi_info->msg_flags = msg[3];
589 handle_flags(smi_info);
590 }
591 break;
592 }
593
594 case SI_CLEARING_FLAGS:
595 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
596 {
597 unsigned char msg[3];
598
599 /* We cleared the flags. */
600 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
601 if (msg[2] != 0) {
602 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700603 dev_warn(smi_info->dev,
604 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
607 start_enable_irq(smi_info);
608 else
609 smi_info->si_state = SI_NORMAL;
610 break;
611 }
612
613 case SI_GETTING_EVENTS:
614 {
615 smi_info->curr_msg->rsp_size
616 = smi_info->handlers->get_result(
617 smi_info->si_sm,
618 smi_info->curr_msg->rsp,
619 IPMI_MAX_MSG_LENGTH);
620
Corey Minyardc305e3d2008-04-29 01:01:10 -0700621 /*
622 * Do this here becase deliver_recv_msg() releases the
623 * lock, and a new message can be put in during the
624 * time the lock is released.
625 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 msg = smi_info->curr_msg;
627 smi_info->curr_msg = NULL;
628 if (msg->rsp[2] != 0) {
629 /* Error getting event, probably done. */
630 msg->done(msg);
631
632 /* Take off the event flag. */
633 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
634 handle_flags(smi_info);
635 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700636 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Corey Minyardc305e3d2008-04-29 01:01:10 -0700638 /*
639 * Do this before we deliver the message
640 * because delivering the message releases the
641 * lock and something else can mess with the
642 * state.
643 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 handle_flags(smi_info);
645
646 deliver_recv_msg(smi_info, msg);
647 }
648 break;
649 }
650
651 case SI_GETTING_MESSAGES:
652 {
653 smi_info->curr_msg->rsp_size
654 = smi_info->handlers->get_result(
655 smi_info->si_sm,
656 smi_info->curr_msg->rsp,
657 IPMI_MAX_MSG_LENGTH);
658
Corey Minyardc305e3d2008-04-29 01:01:10 -0700659 /*
660 * Do this here becase deliver_recv_msg() releases the
661 * lock, and a new message can be put in during the
662 * time the lock is released.
663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 msg = smi_info->curr_msg;
665 smi_info->curr_msg = NULL;
666 if (msg->rsp[2] != 0) {
667 /* Error getting event, probably done. */
668 msg->done(msg);
669
670 /* Take off the msg flag. */
671 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
672 handle_flags(smi_info);
673 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700674 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Corey Minyardc305e3d2008-04-29 01:01:10 -0700676 /*
677 * Do this before we deliver the message
678 * because delivering the message releases the
679 * lock and something else can mess with the
680 * state.
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 handle_flags(smi_info);
683
684 deliver_recv_msg(smi_info, msg);
685 }
686 break;
687 }
688
689 case SI_ENABLE_INTERRUPTS1:
690 {
691 unsigned char msg[4];
692
693 /* We got the flags from the SMI, now handle them. */
694 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
695 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700696 dev_warn(smi_info->dev, "Could not enable interrupts"
697 ", failed get, using polled mode.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 smi_info->si_state = SI_NORMAL;
699 } else {
700 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
701 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700702 msg[2] = (msg[3] |
703 IPMI_BMC_RCV_MSG_INTR |
704 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 smi_info->handlers->start_transaction(
706 smi_info->si_sm, msg, 3);
707 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
708 }
709 break;
710 }
711
712 case SI_ENABLE_INTERRUPTS2:
713 {
714 unsigned char msg[4];
715
716 /* We got the flags from the SMI, now handle them. */
717 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Myron Stowe279fbd02010-05-26 14:43:52 -0700718 if (msg[2] != 0)
719 dev_warn(smi_info->dev, "Could not enable interrupts"
720 ", failed set, using polled mode.\n");
721 else
Matthew Garrettea4078c2010-05-26 14:43:48 -0700722 smi_info->interrupt_disabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 smi_info->si_state = SI_NORMAL;
724 break;
725 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700726
727 case SI_DISABLE_INTERRUPTS1:
728 {
729 unsigned char msg[4];
730
731 /* We got the flags from the SMI, now handle them. */
732 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
733 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700734 dev_warn(smi_info->dev, "Could not disable interrupts"
735 ", failed get.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700736 smi_info->si_state = SI_NORMAL;
737 } else {
738 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
739 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
740 msg[2] = (msg[3] &
741 ~(IPMI_BMC_RCV_MSG_INTR |
742 IPMI_BMC_EVT_MSG_INTR));
743 smi_info->handlers->start_transaction(
744 smi_info->si_sm, msg, 3);
745 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
746 }
747 break;
748 }
749
750 case SI_DISABLE_INTERRUPTS2:
751 {
752 unsigned char msg[4];
753
754 /* We got the flags from the SMI, now handle them. */
755 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
756 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700757 dev_warn(smi_info->dev, "Could not disable interrupts"
758 ", failed set.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700759 }
760 smi_info->si_state = SI_NORMAL;
761 break;
762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764}
765
Corey Minyardc305e3d2008-04-29 01:01:10 -0700766/*
767 * Called on timeouts and events. Timeouts should pass the elapsed
768 * time, interrupts should pass in zero. Must be called with
769 * si_lock held and interrupts disabled.
770 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
772 int time)
773{
774 enum si_sm_result si_sm_result;
775
776 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700777 /*
778 * There used to be a loop here that waited a little while
779 * (around 25us) before giving up. That turned out to be
780 * pointless, the minimum delays I was seeing were in the 300us
781 * range, which is far too long to wait in an interrupt. So
782 * we just run until the state machine tells us something
783 * happened or it needs a delay.
784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
786 time = 0;
787 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Corey Minyardc305e3d2008-04-29 01:01:10 -0700790 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700791 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 handle_transaction_done(smi_info);
794 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700795 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700796 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Corey Minyardc305e3d2008-04-29 01:01:10 -0700798 /*
799 * Do the before return_hosed_msg, because that
800 * releases the lock.
801 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 smi_info->si_state = SI_NORMAL;
803 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700804 /*
805 * If we were handling a user message, format
806 * a response to send to the upper layer to
807 * tell it about the error.
808 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800809 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
812 }
813
Corey Minyard4ea18422008-04-29 01:01:01 -0700814 /*
815 * We prefer handling attn over new messages. But don't do
816 * this if there is not yet an upper layer to handle anything.
817 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700818 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 unsigned char msg[2];
820
Corey Minyard64959e22008-04-29 01:01:07 -0700821 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Corey Minyardc305e3d2008-04-29 01:01:10 -0700823 /*
824 * Got a attn, send down a get message flags to see
825 * what's causing it. It would be better to handle
826 * this in the upper layer, but due to the way
827 * interrupts work with the SMI, that's not really
828 * possible.
829 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
831 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
832
833 smi_info->handlers->start_transaction(
834 smi_info->si_sm, msg, 2);
835 smi_info->si_state = SI_GETTING_FLAGS;
836 goto restart;
837 }
838
839 /* If we are currently idle, try to start the next message. */
840 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700841 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 si_sm_result = start_next_msg(smi_info);
844 if (si_sm_result != SI_SM_IDLE)
845 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700849 && (atomic_read(&smi_info->req_events))) {
850 /*
851 * We are idle and the upper layer requested that I fetch
852 * events, so do so.
853 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800855
856 smi_info->curr_msg = ipmi_alloc_smi_msg();
857 if (!smi_info->curr_msg)
858 goto out;
859
860 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
861 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
862 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800865 smi_info->si_sm,
866 smi_info->curr_msg->data,
867 smi_info->curr_msg->data_size);
868 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto restart;
870 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800871 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return si_sm_result;
873}
874
875static void sender(void *send_info,
876 struct ipmi_smi_msg *msg,
877 int priority)
878{
879 struct smi_info *smi_info = send_info;
880 enum si_sm_result result;
881 unsigned long flags;
882#ifdef DEBUG_TIMING
883 struct timeval t;
884#endif
885
Corey Minyardb361e272006-12-06 20:41:07 -0800886 if (atomic_read(&smi_info->stop_operation)) {
887 msg->rsp[0] = msg->data[0] | 4;
888 msg->rsp[1] = msg->data[1];
889 msg->rsp[2] = IPMI_ERR_UNSPECIFIED;
890 msg->rsp_size = 3;
891 deliver_recv_msg(smi_info, msg);
892 return;
893 }
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#ifdef DEBUG_TIMING
896 do_gettimeofday(&t);
897 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
898#endif
899
Matthew Garrettea4078c2010-05-26 14:43:48 -0700900 mod_timer(&smi_info->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
901
Matthew Garrett3326f4f2010-05-26 14:43:49 -0700902 if (smi_info->thread)
903 wake_up_process(smi_info->thread);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700906 /*
907 * If we are running to completion, then throw it in
908 * the list and run transactions until everything is
909 * clear. Priority doesn't matter here.
910 */
911
912 /*
913 * Run to completion means we are single-threaded, no
914 * need for locks.
915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 list_add_tail(&(msg->link), &(smi_info->xmit_msgs));
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 result = smi_event_handler(smi_info, 0);
919 while (result != SI_SM_IDLE) {
920 udelay(SI_SHORT_TIMEOUT_USEC);
921 result = smi_event_handler(smi_info,
922 SI_SHORT_TIMEOUT_USEC);
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Corey Minyardbda4c302008-04-29 01:01:02 -0700927 spin_lock_irqsave(&smi_info->msg_lock, flags);
928 if (priority > 0)
929 list_add_tail(&msg->link, &smi_info->hp_xmit_msgs);
930 else
931 list_add_tail(&msg->link, &smi_info->xmit_msgs);
932 spin_unlock_irqrestore(&smi_info->msg_lock, flags);
933
934 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700935 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 start_next_msg(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700937 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940static void set_run_to_completion(void *send_info, int i_run_to_completion)
941{
942 struct smi_info *smi_info = send_info;
943 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 smi_info->run_to_completion = i_run_to_completion;
946 if (i_run_to_completion) {
947 result = smi_event_handler(smi_info, 0);
948 while (result != SI_SM_IDLE) {
949 udelay(SI_SHORT_TIMEOUT_USEC);
950 result = smi_event_handler(smi_info,
951 SI_SHORT_TIMEOUT_USEC);
952 }
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Martin Wilckae74e822010-03-10 15:23:06 -0800956/*
957 * Use -1 in the nsec value of the busy waiting timespec to tell that
958 * we are spinning in kipmid looking for something and not delaying
959 * between checks
960 */
961static inline void ipmi_si_set_not_busy(struct timespec *ts)
962{
963 ts->tv_nsec = -1;
964}
965static inline int ipmi_si_is_busy(struct timespec *ts)
966{
967 return ts->tv_nsec != -1;
968}
969
970static int ipmi_thread_busy_wait(enum si_sm_result smi_result,
971 const struct smi_info *smi_info,
972 struct timespec *busy_until)
973{
974 unsigned int max_busy_us = 0;
975
976 if (smi_info->intf_num < num_max_busy_us)
977 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
978 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
979 ipmi_si_set_not_busy(busy_until);
980 else if (!ipmi_si_is_busy(busy_until)) {
981 getnstimeofday(busy_until);
982 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
983 } else {
984 struct timespec now;
985 getnstimeofday(&now);
986 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
987 ipmi_si_set_not_busy(busy_until);
988 return 0;
989 }
990 }
991 return 1;
992}
993
994
995/*
996 * A busy-waiting loop for speeding up IPMI operation.
997 *
998 * Lousy hardware makes this hard. This is only enabled for systems
999 * that are not BT and do not have interrupts. It starts spinning
1000 * when an operation is complete or until max_busy tells it to stop
1001 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1002 * Documentation/IPMI.txt for details.
1003 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001004static int ipmi_thread(void *data)
1005{
1006 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001007 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001008 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -08001009 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001010
Martin Wilckae74e822010-03-10 15:23:06 -08001011 ipmi_si_set_not_busy(&busy_until);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001012 set_user_nice(current, 19);
Matt Domsche9a705a2005-11-07 01:00:04 -08001013 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001014 int busy_wait;
1015
Corey Minyarda9a2c442005-11-07 01:00:03 -08001016 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001017 smi_result = smi_event_handler(smi_info, 0);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001018 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001019 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1020 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001021 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1022 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001023 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001024 schedule();
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001025 else if (smi_result == SI_SM_IDLE)
1026 schedule_timeout_interruptible(100);
Matt Domsche9a705a2005-11-07 01:00:04 -08001027 else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001028 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001029 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001030 return 0;
1031}
1032
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034static void poll(void *send_info)
1035{
1036 struct smi_info *smi_info = send_info;
Corey Minyardfcfa4722007-10-18 03:07:09 -07001037 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Corey Minyard15c62e12006-12-06 20:41:06 -08001039 /*
1040 * Make sure there is some delay in the poll loop so we can
1041 * drive time forward and timeout things.
1042 */
1043 udelay(10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001044 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001045 smi_event_handler(smi_info, 10);
Corey Minyardfcfa4722007-10-18 03:07:09 -07001046 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049static void request_events(void *send_info)
1050{
1051 struct smi_info *smi_info = send_info;
1052
Corey Minyard40112ae2009-04-21 12:24:03 -07001053 if (atomic_read(&smi_info->stop_operation) ||
1054 !smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001055 return;
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 atomic_set(&smi_info->req_events, 1);
1058}
1059
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001060static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062static void smi_timeout(unsigned long data)
1063{
1064 struct smi_info *smi_info = (struct smi_info *) data;
1065 enum si_sm_result smi_result;
1066 unsigned long flags;
1067 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001068 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001069 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070#ifdef DEBUG_TIMING
1071 struct timeval t;
1072#endif
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 spin_lock_irqsave(&(smi_info->si_lock), flags);
1075#ifdef DEBUG_TIMING
1076 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001077 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078#endif
1079 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001080 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 * SI_USEC_PER_JIFFY);
1082 smi_result = smi_event_handler(smi_info, time_diff);
1083
1084 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1085
1086 smi_info->last_timeout_jiffies = jiffies_now;
1087
Corey Minyardb0defcd2006-03-26 01:37:20 -08001088 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001090 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001091 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001092 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
Corey Minyardc305e3d2008-04-29 01:01:10 -07001095 /*
1096 * If the state machine asks for a short delay, then shorten
1097 * the timer timeout.
1098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001100 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001101 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001103 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001104 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001107 do_mod_timer:
1108 if (smi_result != SI_SM_IDLE)
1109 mod_timer(&(smi_info->si_timer), timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
David Howells7d12e782006-10-05 14:55:46 +01001112static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct smi_info *smi_info = data;
1115 unsigned long flags;
1116#ifdef DEBUG_TIMING
1117 struct timeval t;
1118#endif
1119
1120 spin_lock_irqsave(&(smi_info->si_lock), flags);
1121
Corey Minyard64959e22008-04-29 01:01:07 -07001122 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124#ifdef DEBUG_TIMING
1125 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001126 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#endif
1128 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1130 return IRQ_HANDLED;
1131}
1132
David Howells7d12e782006-10-05 14:55:46 +01001133static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001134{
1135 struct smi_info *smi_info = data;
1136 /* We need to clear the IRQ flag for the BT interface. */
1137 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1138 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1139 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001140 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001141}
1142
Corey Minyard453823b2006-03-31 02:30:39 -08001143static int smi_start_processing(void *send_info,
1144 ipmi_smi_t intf)
1145{
1146 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001147 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001148
1149 new_smi->intf = intf;
1150
Corey Minyardc45adc32007-10-18 03:07:08 -07001151 /* Try to claim any interrupts. */
1152 if (new_smi->irq_setup)
1153 new_smi->irq_setup(new_smi);
1154
Corey Minyard453823b2006-03-31 02:30:39 -08001155 /* Set up the timer that drives the interface. */
1156 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
1157 new_smi->last_timeout_jiffies = jiffies;
1158 mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);
1159
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001160 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001161 * Check if the user forcefully enabled the daemon.
1162 */
1163 if (new_smi->intf_num < num_force_kipmid)
1164 enable = force_kipmid[new_smi->intf_num];
1165 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001166 * The BT interface is efficient enough to not need a thread,
1167 * and there is no need for a thread if we have interrupts.
1168 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001169 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001170 enable = 1;
1171
1172 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001173 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1174 "kipmi%d", new_smi->intf_num);
1175 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001176 dev_notice(new_smi->dev, "Could not start"
1177 " kernel thread due to error %ld, only using"
1178 " timers to drive the interface\n",
1179 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001180 new_smi->thread = NULL;
1181 }
1182 }
1183
1184 return 0;
1185}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001186
Zhao Yakui16f42322010-12-08 10:10:16 +08001187static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1188{
1189 struct smi_info *smi = send_info;
1190
1191 data->addr_src = smi->addr_source;
1192 data->dev = smi->dev;
1193 data->addr_info = smi->addr_info;
1194 get_device(smi->dev);
1195
1196 return 0;
1197}
1198
Corey Minyardb9675132006-12-06 20:41:02 -08001199static void set_maintenance_mode(void *send_info, int enable)
1200{
1201 struct smi_info *smi_info = send_info;
1202
1203 if (!enable)
1204 atomic_set(&smi_info->req_events, 0);
1205}
1206
Corey Minyardc305e3d2008-04-29 01:01:10 -07001207static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001209 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001210 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 .sender = sender,
1212 .request_events = request_events,
Corey Minyardb9675132006-12-06 20:41:02 -08001213 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 .set_run_to_completion = set_run_to_completion,
1215 .poll = poll,
1216};
1217
Corey Minyardc305e3d2008-04-29 01:01:10 -07001218/*
1219 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1220 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Corey Minyardb0defcd2006-03-26 01:37:20 -08001223static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001224static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001225static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001228#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230static int si_trydefaults = 1;
1231static char *si_type[SI_MAX_PARMS];
1232#define MAX_SI_TYPE_STR 30
1233static char si_type_str[MAX_SI_TYPE_STR];
1234static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001235static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001237static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001239static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001241static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001243static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001245static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001246static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001247static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Corey Minyardb361e272006-12-06 20:41:07 -08001249#define IPMI_IO_ADDR_SPACE 0
1250#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001251static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001252
1253static int hotmod_handler(const char *val, struct kernel_param *kp);
1254
1255module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1256MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1257 " Documentation/IPMI.txt in the kernel sources for the"
1258 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260module_param_named(trydefaults, si_trydefaults, bool, 0);
1261MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1262 " default scan of the KCS and SMIC interface at the standard"
1263 " address");
1264module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1265MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1266 " interface separated by commas. The types are 'kcs',"
1267 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1268 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001269module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1271 " addresses separated by commas. Only use if an interface"
1272 " is in memory. Otherwise, set it to zero or leave"
1273 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001274module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1276 " addresses separated by commas. Only use if an interface"
1277 " is a port. Otherwise, set it to zero or leave"
1278 " it blank.");
1279module_param_array(irqs, int, &num_irqs, 0);
1280MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1281 " addresses separated by commas. Only use if an interface"
1282 " has an interrupt. Otherwise, set it to zero or leave"
1283 " it blank.");
1284module_param_array(regspacings, int, &num_regspacings, 0);
1285MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1286 " and each successive register used by the interface. For"
1287 " instance, if the start address is 0xca2 and the spacing"
1288 " is 2, then the second address is at 0xca4. Defaults"
1289 " to 1.");
1290module_param_array(regsizes, int, &num_regsizes, 0);
1291MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1292 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1293 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1294 " the 8-bit IPMI register has to be read from a larger"
1295 " register.");
1296module_param_array(regshifts, int, &num_regshifts, 0);
1297MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1298 " IPMI register, in bits. For instance, if the data"
1299 " is read from a 32-bit word and the IPMI data is in"
1300 " bit 8-15, then the shift would be 8");
1301module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1302MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1303 " the controller. Normally this is 0x20, but can be"
1304 " overridden by this parm. This is an array indexed"
1305 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001306module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1307MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1308 " disabled(0). Normally the IPMI driver auto-detects"
1309 " this, but the value may be overridden by this parm.");
Corey Minyardb361e272006-12-06 20:41:07 -08001310module_param(unload_when_empty, int, 0);
1311MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1312 " specified or found, default is 1. Setting to 0"
1313 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001314module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1315MODULE_PARM_DESC(kipmid_max_busy_us,
1316 "Max time (in microseconds) to busy-wait for IPMI data before"
1317 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1318 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320
Corey Minyardb0defcd2006-03-26 01:37:20 -08001321static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001323 if (info->si_type == SI_BT)
1324 /* Disable the interrupt in the BT interface. */
1325 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1326 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329static int std_irq_setup(struct smi_info *info)
1330{
1331 int rv;
1332
Corey Minyardb0defcd2006-03-26 01:37:20 -08001333 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return 0;
1335
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001336 if (info->si_type == SI_BT) {
1337 rv = request_irq(info->irq,
1338 si_bt_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001339 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001340 DEVICE_NAME,
1341 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001342 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001343 /* Enable the interrupt in the BT interface. */
1344 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1345 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1346 } else
1347 rv = request_irq(info->irq,
1348 si_irq_handler,
Corey Minyardee6cd5f2007-05-08 00:23:54 -07001349 IRQF_SHARED | IRQF_DISABLED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001350 DEVICE_NAME,
1351 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001353 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1354 " running polled\n",
1355 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 info->irq = 0;
1357 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001358 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001359 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361
1362 return rv;
1363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1366{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001367 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Corey Minyardb0defcd2006-03-26 01:37:20 -08001369 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372static void port_outb(struct si_sm_io *io, unsigned int offset,
1373 unsigned char b)
1374{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001375 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Corey Minyardb0defcd2006-03-26 01:37:20 -08001377 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
1380static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1381{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001382 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Corey Minyardb0defcd2006-03-26 01:37:20 -08001384 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
1387static void port_outw(struct si_sm_io *io, unsigned int offset,
1388 unsigned char b)
1389{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001390 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Corey Minyardb0defcd2006-03-26 01:37:20 -08001392 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
1395static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1396{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001397 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Corey Minyardb0defcd2006-03-26 01:37:20 -08001399 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402static void port_outl(struct si_sm_io *io, unsigned int offset,
1403 unsigned char b)
1404{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001405 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Corey Minyardb0defcd2006-03-26 01:37:20 -08001407 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410static void port_cleanup(struct smi_info *info)
1411{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001412 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001413 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Corey Minyardb0defcd2006-03-26 01:37:20 -08001415 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001416 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001417 release_region(addr + idx * info->io.regspacing,
1418 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422static int port_setup(struct smi_info *info)
1423{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001424 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001425 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Corey Minyardb0defcd2006-03-26 01:37:20 -08001427 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -ENODEV;
1429
1430 info->io_cleanup = port_cleanup;
1431
Corey Minyardc305e3d2008-04-29 01:01:10 -07001432 /*
1433 * Figure out the actual inb/inw/inl/etc routine to use based
1434 * upon the register size.
1435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 switch (info->io.regsize) {
1437 case 1:
1438 info->io.inputb = port_inb;
1439 info->io.outputb = port_outb;
1440 break;
1441 case 2:
1442 info->io.inputb = port_inw;
1443 info->io.outputb = port_outw;
1444 break;
1445 case 4:
1446 info->io.inputb = port_inl;
1447 info->io.outputb = port_outl;
1448 break;
1449 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001450 dev_warn(info->dev, "Invalid register size: %d\n",
1451 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return -EINVAL;
1453 }
1454
Corey Minyardc305e3d2008-04-29 01:01:10 -07001455 /*
1456 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001457 * tables. This causes problems when trying to register the
1458 * entire I/O region. Therefore we must register each I/O
1459 * port separately.
1460 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001461 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001462 if (request_region(addr + idx * info->io.regspacing,
1463 info->io.regsize, DEVICE_NAME) == NULL) {
1464 /* Undo allocations */
1465 while (idx--) {
1466 release_region(addr + idx * info->io.regspacing,
1467 info->io.regsize);
1468 }
1469 return -EIO;
1470 }
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return 0;
1473}
1474
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001475static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 return readb((io->addr)+(offset * io->regspacing));
1478}
1479
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001480static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 unsigned char b)
1482{
1483 writeb(b, (io->addr)+(offset * io->regspacing));
1484}
1485
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001486static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001489 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001492static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 unsigned char b)
1494{
1495 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1496}
1497
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001498static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001501 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001504static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 unsigned char b)
1506{
1507 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1508}
1509
1510#ifdef readq
1511static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1512{
1513 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001514 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517static void mem_outq(struct si_sm_io *io, unsigned int offset,
1518 unsigned char b)
1519{
1520 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1521}
1522#endif
1523
1524static void mem_cleanup(struct smi_info *info)
1525{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001526 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 int mapsize;
1528
1529 if (info->io.addr) {
1530 iounmap(info->io.addr);
1531
1532 mapsize = ((info->io_size * info->io.regspacing)
1533 - (info->io.regspacing - info->io.regsize));
1534
Corey Minyardb0defcd2006-03-26 01:37:20 -08001535 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539static int mem_setup(struct smi_info *info)
1540{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001541 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 int mapsize;
1543
Corey Minyardb0defcd2006-03-26 01:37:20 -08001544 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return -ENODEV;
1546
1547 info->io_cleanup = mem_cleanup;
1548
Corey Minyardc305e3d2008-04-29 01:01:10 -07001549 /*
1550 * Figure out the actual readb/readw/readl/etc routine to use based
1551 * upon the register size.
1552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 switch (info->io.regsize) {
1554 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001555 info->io.inputb = intf_mem_inb;
1556 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 break;
1558 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001559 info->io.inputb = intf_mem_inw;
1560 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 break;
1562 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001563 info->io.inputb = intf_mem_inl;
1564 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566#ifdef readq
1567 case 8:
1568 info->io.inputb = mem_inq;
1569 info->io.outputb = mem_outq;
1570 break;
1571#endif
1572 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001573 dev_warn(info->dev, "Invalid register size: %d\n",
1574 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EINVAL;
1576 }
1577
Corey Minyardc305e3d2008-04-29 01:01:10 -07001578 /*
1579 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * unusual looking calculation, but it avoids claiming any
1581 * more memory than it has to. It will claim everything
1582 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001583 * register.
1584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 mapsize = ((info->io_size * info->io.regspacing)
1586 - (info->io.regspacing - info->io.regsize));
1587
Corey Minyardb0defcd2006-03-26 01:37:20 -08001588 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return -EIO;
1590
Corey Minyardb0defcd2006-03-26 01:37:20 -08001591 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001593 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return -EIO;
1595 }
1596 return 0;
1597}
1598
Corey Minyardb361e272006-12-06 20:41:07 -08001599/*
1600 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1601 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1602 * Options are:
1603 * rsp=<regspacing>
1604 * rsi=<regsize>
1605 * rsh=<regshift>
1606 * irq=<irq>
1607 * ipmb=<ipmb addr>
1608 */
1609enum hotmod_op { HM_ADD, HM_REMOVE };
1610struct hotmod_vals {
1611 char *name;
1612 int val;
1613};
1614static struct hotmod_vals hotmod_ops[] = {
1615 { "add", HM_ADD },
1616 { "remove", HM_REMOVE },
1617 { NULL }
1618};
1619static struct hotmod_vals hotmod_si[] = {
1620 { "kcs", SI_KCS },
1621 { "smic", SI_SMIC },
1622 { "bt", SI_BT },
1623 { NULL }
1624};
1625static struct hotmod_vals hotmod_as[] = {
1626 { "mem", IPMI_MEM_ADDR_SPACE },
1627 { "i/o", IPMI_IO_ADDR_SPACE },
1628 { NULL }
1629};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001630
Corey Minyardb361e272006-12-06 20:41:07 -08001631static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1632{
1633 char *s;
1634 int i;
1635
1636 s = strchr(*curr, ',');
1637 if (!s) {
1638 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1639 return -EINVAL;
1640 }
1641 *s = '\0';
1642 s++;
1643 for (i = 0; hotmod_ops[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001644 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001645 *val = v[i].val;
1646 *curr = s;
1647 return 0;
1648 }
1649 }
1650
1651 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1652 return -EINVAL;
1653}
1654
Corey Minyard1d5636c2006-12-10 02:19:08 -08001655static int check_hotmod_int_op(const char *curr, const char *option,
1656 const char *name, int *val)
1657{
1658 char *n;
1659
1660 if (strcmp(curr, name) == 0) {
1661 if (!option) {
1662 printk(KERN_WARNING PFX
1663 "No option given for '%s'\n",
1664 curr);
1665 return -EINVAL;
1666 }
1667 *val = simple_strtoul(option, &n, 0);
1668 if ((*n != '\0') || (*option == '\0')) {
1669 printk(KERN_WARNING PFX
1670 "Bad option given for '%s'\n",
1671 curr);
1672 return -EINVAL;
1673 }
1674 return 1;
1675 }
1676 return 0;
1677}
1678
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001679static struct smi_info *smi_info_alloc(void)
1680{
1681 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1682
1683 if (info) {
1684 spin_lock_init(&info->si_lock);
1685 spin_lock_init(&info->msg_lock);
1686 }
1687 return info;
1688}
1689
Corey Minyardb361e272006-12-06 20:41:07 -08001690static int hotmod_handler(const char *val, struct kernel_param *kp)
1691{
1692 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001693 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001694 char *next, *curr, *s, *n, *o;
1695 enum hotmod_op op;
1696 enum si_type si_type;
1697 int addr_space;
1698 unsigned long addr;
1699 int regspacing;
1700 int regsize;
1701 int regshift;
1702 int irq;
1703 int ipmb;
1704 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001705 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001706 struct smi_info *info;
1707
1708 if (!str)
1709 return -ENOMEM;
1710
1711 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001712 len = strlen(str);
1713 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001714 while ((ival >= 0) && isspace(str[ival])) {
1715 str[ival] = '\0';
1716 ival--;
1717 }
1718
1719 for (curr = str; curr; curr = next) {
1720 regspacing = 1;
1721 regsize = 1;
1722 regshift = 0;
1723 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001724 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001725
1726 next = strchr(curr, ':');
1727 if (next) {
1728 *next = '\0';
1729 next++;
1730 }
1731
1732 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1733 if (rv)
1734 break;
1735 op = ival;
1736
1737 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1738 if (rv)
1739 break;
1740 si_type = ival;
1741
1742 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1743 if (rv)
1744 break;
1745
1746 s = strchr(curr, ',');
1747 if (s) {
1748 *s = '\0';
1749 s++;
1750 }
1751 addr = simple_strtoul(curr, &n, 0);
1752 if ((*n != '\0') || (*curr == '\0')) {
1753 printk(KERN_WARNING PFX "Invalid hotmod address"
1754 " '%s'\n", curr);
1755 break;
1756 }
1757
1758 while (s) {
1759 curr = s;
1760 s = strchr(curr, ',');
1761 if (s) {
1762 *s = '\0';
1763 s++;
1764 }
1765 o = strchr(curr, '=');
1766 if (o) {
1767 *o = '\0';
1768 o++;
1769 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001770 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1771 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001772 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001773 else if (rv)
1774 continue;
1775 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1776 if (rv < 0)
1777 goto out;
1778 else if (rv)
1779 continue;
1780 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1781 if (rv < 0)
1782 goto out;
1783 else if (rv)
1784 continue;
1785 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1786 if (rv < 0)
1787 goto out;
1788 else if (rv)
1789 continue;
1790 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1791 if (rv < 0)
1792 goto out;
1793 else if (rv)
1794 continue;
1795
1796 rv = -EINVAL;
1797 printk(KERN_WARNING PFX
1798 "Invalid hotmod option '%s'\n",
1799 curr);
1800 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001801 }
1802
1803 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001804 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001805 if (!info) {
1806 rv = -ENOMEM;
1807 goto out;
1808 }
1809
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001810 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001811 info->si_type = si_type;
1812 info->io.addr_data = addr;
1813 info->io.addr_type = addr_space;
1814 if (addr_space == IPMI_MEM_ADDR_SPACE)
1815 info->io_setup = mem_setup;
1816 else
1817 info->io_setup = port_setup;
1818
1819 info->io.addr = NULL;
1820 info->io.regspacing = regspacing;
1821 if (!info->io.regspacing)
1822 info->io.regspacing = DEFAULT_REGSPACING;
1823 info->io.regsize = regsize;
1824 if (!info->io.regsize)
1825 info->io.regsize = DEFAULT_REGSPACING;
1826 info->io.regshift = regshift;
1827 info->irq = irq;
1828 if (info->irq)
1829 info->irq_setup = std_irq_setup;
1830 info->slave_addr = ipmb;
1831
Yinghai Lu7faefea2010-08-10 18:03:10 -07001832 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001833 if (try_smi_init(info))
1834 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07001835 } else {
1836 kfree(info);
1837 }
Corey Minyardb361e272006-12-06 20:41:07 -08001838 } else {
1839 /* remove */
1840 struct smi_info *e, *tmp_e;
1841
1842 mutex_lock(&smi_infos_lock);
1843 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1844 if (e->io.addr_type != addr_space)
1845 continue;
1846 if (e->si_type != si_type)
1847 continue;
1848 if (e->io.addr_data == addr)
1849 cleanup_one_si(e);
1850 }
1851 mutex_unlock(&smi_infos_lock);
1852 }
1853 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001854 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001855 out:
1856 kfree(str);
1857 return rv;
1858}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001859
Corey Minyard60ee6d52010-10-27 15:34:18 -07001860static void __devinit hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
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)
1871 return;
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);
Yinghai Lu7faefea2010-08-10 18:03:10 -07001924 } else {
1925 kfree(info);
1926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Len Brown84663612005-08-24 12:09:07 -04001930#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932#include <linux/acpi.h>
1933
Corey Minyardc305e3d2008-04-29 01:01:10 -07001934/*
1935 * Once we get an ACPI failure, we don't try any more, because we go
1936 * through the tables sequentially. Once we don't find a table, there
1937 * are no more.
1938 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001939static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941/* For GPE-type interrupts. */
1942static u32 ipmi_acpi_gpe(void *context)
1943{
1944 struct smi_info *smi_info = context;
1945 unsigned long flags;
1946#ifdef DEBUG_TIMING
1947 struct timeval t;
1948#endif
1949
1950 spin_lock_irqsave(&(smi_info->si_lock), flags);
1951
Corey Minyard64959e22008-04-29 01:01:07 -07001952 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954#ifdef DEBUG_TIMING
1955 do_gettimeofday(&t);
1956 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
1957#endif
1958 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1960
1961 return ACPI_INTERRUPT_HANDLED;
1962}
1963
Corey Minyardb0defcd2006-03-26 01:37:20 -08001964static void acpi_gpe_irq_cleanup(struct smi_info *info)
1965{
1966 if (!info->irq)
1967 return;
1968
1969 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
1970}
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972static int acpi_gpe_irq_setup(struct smi_info *info)
1973{
1974 acpi_status status;
1975
Corey Minyardb0defcd2006-03-26 01:37:20 -08001976 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return 0;
1978
1979 /* FIXME - is level triggered right? */
1980 status = acpi_install_gpe_handler(NULL,
1981 info->irq,
1982 ACPI_GPE_LEVEL_TRIGGERED,
1983 &ipmi_acpi_gpe,
1984 info);
1985 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001986 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
1987 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 info->irq = 0;
1989 return -EINVAL;
1990 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001991 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001992 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return 0;
1994 }
1995}
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997/*
1998 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001999 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 */
2001struct SPMITable {
2002 s8 Signature[4];
2003 u32 Length;
2004 u8 Revision;
2005 u8 Checksum;
2006 s8 OEMID[6];
2007 s8 OEMTableID[8];
2008 s8 OEMRevision[4];
2009 s8 CreatorID[4];
2010 s8 CreatorRevision[4];
2011 u8 InterfaceType;
2012 u8 IPMIlegacy;
2013 s16 SpecificationRevision;
2014
2015 /*
2016 * Bit 0 - SCI interrupt supported
2017 * Bit 1 - I/O APIC/SAPIC
2018 */
2019 u8 InterruptType;
2020
Corey Minyardc305e3d2008-04-29 01:01:10 -07002021 /*
2022 * If bit 0 of InterruptType is set, then this is the SCI
2023 * interrupt in the GPEx_STS register.
2024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 u8 GPE;
2026
2027 s16 Reserved;
2028
Corey Minyardc305e3d2008-04-29 01:01:10 -07002029 /*
2030 * If bit 1 of InterruptType is set, then this is the I/O
2031 * APIC/SAPIC interrupt.
2032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 u32 GlobalSystemInterrupt;
2034
2035 /* The actual register address. */
2036 struct acpi_generic_address addr;
2037
2038 u8 UID[4];
2039
2040 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2041};
2042
Corey Minyard60ee6d52010-10-27 15:34:18 -07002043static int __devinit try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002048 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2049 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002052 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002053 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002054 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002055 return -ENOMEM;
2056 }
2057
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002058 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002059 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002062 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002064 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002067 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002070 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002073 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2074 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002075 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return -EIO;
2077 }
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (spmi->InterruptType & 1) {
2080 /* We've got a GPE interrupt. */
2081 info->irq = spmi->GPE;
2082 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 } else if (spmi->InterruptType & 2) {
2084 /* We've got an APIC/SAPIC interrupt. */
2085 info->irq = spmi->GlobalSystemInterrupt;
2086 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 } else {
2088 /* Use the default interrupt setting. */
2089 info->irq = 0;
2090 info->irq_setup = NULL;
2091 }
2092
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002093 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002094 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002095 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002096 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002097 info->io.regspacing = DEFAULT_REGSPACING;
2098 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002099 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002100 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002102 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002104 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002105 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002107 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 } else {
2109 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002110 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return -EIO;
2112 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002113 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002115 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2116 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2117 info->io.addr_data, info->io.regsize, info->io.regspacing,
2118 info->irq);
2119
Yinghai Lu7faefea2010-08-10 18:03:10 -07002120 if (add_smi(info))
2121 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return 0;
2124}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002125
Corey Minyard60ee6d52010-10-27 15:34:18 -07002126static void __devinit spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002127{
2128 acpi_status status;
2129 struct SPMITable *spmi;
2130 int i;
2131
2132 if (acpi_disabled)
2133 return;
2134
2135 if (acpi_failure)
2136 return;
2137
2138 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002139 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2140 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002141 if (status != AE_OK)
2142 return;
2143
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002144 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002145 }
2146}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002147
2148static int __devinit ipmi_pnp_probe(struct pnp_dev *dev,
2149 const struct pnp_device_id *dev_id)
2150{
2151 struct acpi_device *acpi_dev;
2152 struct smi_info *info;
Yinghai Lua9e31762010-09-22 13:04:53 -07002153 struct resource *res, *res_second;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002154 acpi_handle handle;
2155 acpi_status status;
2156 unsigned long long tmp;
2157
2158 acpi_dev = pnp_acpi_device(dev);
2159 if (!acpi_dev)
2160 return -ENODEV;
2161
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002162 info = smi_info_alloc();
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002163 if (!info)
2164 return -ENOMEM;
2165
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002166 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002167 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002168
2169 handle = acpi_dev->handle;
Zhao Yakui16f42322010-12-08 10:10:16 +08002170 info->addr_info.acpi_info.acpi_handle = handle;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002171
2172 /* _IFT tells us the interface type: KCS, BT, etc */
2173 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2174 if (ACPI_FAILURE(status))
2175 goto err_free;
2176
2177 switch (tmp) {
2178 case 1:
2179 info->si_type = SI_KCS;
2180 break;
2181 case 2:
2182 info->si_type = SI_SMIC;
2183 break;
2184 case 3:
2185 info->si_type = SI_BT;
2186 break;
2187 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002188 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002189 goto err_free;
2190 }
2191
Myron Stowe279fbd02010-05-26 14:43:52 -07002192 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2193 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002194 info->io_setup = port_setup;
2195 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002196 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002197 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2198 if (res) {
2199 info->io_setup = mem_setup;
2200 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2201 }
2202 }
2203 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002204 dev_err(&dev->dev, "no I/O or memory address\n");
2205 goto err_free;
2206 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002207 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002208
2209 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lua9e31762010-09-22 13:04:53 -07002210 res_second = pnp_get_resource(dev,
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002211 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2212 IORESOURCE_IO : IORESOURCE_MEM,
2213 1);
Yinghai Lua9e31762010-09-22 13:04:53 -07002214 if (res_second) {
2215 if (res_second->start > info->io.addr_data)
2216 info->io.regspacing = res_second->start - info->io.addr_data;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002217 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002218 info->io.regsize = DEFAULT_REGSPACING;
2219 info->io.regshift = 0;
2220
2221 /* If _GPE exists, use it; otherwise use standard interrupts */
2222 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2223 if (ACPI_SUCCESS(status)) {
2224 info->irq = tmp;
2225 info->irq_setup = acpi_gpe_irq_setup;
2226 } else if (pnp_irq_valid(dev, 0)) {
2227 info->irq = pnp_irq(dev, 0);
2228 info->irq_setup = std_irq_setup;
2229 }
2230
Myron Stowe8c8eae22010-05-26 14:43:51 -07002231 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002232 pnp_set_drvdata(dev, info);
2233
Myron Stowe279fbd02010-05-26 14:43:52 -07002234 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2235 res, info->io.regsize, info->io.regspacing,
2236 info->irq);
2237
Yinghai Lu7faefea2010-08-10 18:03:10 -07002238 if (add_smi(info))
2239 goto err_free;
2240
2241 return 0;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002242
2243err_free:
2244 kfree(info);
2245 return -EINVAL;
2246}
2247
2248static void __devexit ipmi_pnp_remove(struct pnp_dev *dev)
2249{
2250 struct smi_info *info = pnp_get_drvdata(dev);
2251
2252 cleanup_one_si(info);
2253}
2254
2255static const struct pnp_device_id pnp_dev_table[] = {
2256 {"IPI0001", 0},
2257 {"", 0},
2258};
2259
2260static struct pnp_driver ipmi_pnp_driver = {
2261 .name = DEVICE_NAME,
2262 .probe = ipmi_pnp_probe,
2263 .remove = __devexit_p(ipmi_pnp_remove),
2264 .id_table = pnp_dev_table,
2265};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266#endif
2267
Matt Domscha9fad4c2006-01-11 12:17:44 -08002268#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002269struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 u8 type;
2271 u8 addr_space;
2272 unsigned long base_addr;
2273 u8 irq;
2274 u8 offset;
2275 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002276};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Jeff Garzik18552562007-10-03 15:15:40 -04002278static int __devinit decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002279 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Jeff Garzik18552562007-10-03 15:15:40 -04002281 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 unsigned long base_addr;
2283 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002284 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Corey Minyardb0defcd2006-03-26 01:37:20 -08002286 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 memcpy(&base_addr, data+8, sizeof(unsigned long));
2289 if (len >= 0x11) {
2290 if (base_addr & 1) {
2291 /* I/O */
2292 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002293 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002294 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002296 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2299 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002300 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Corey Minyardb0defcd2006-03-26 01:37:20 -08002302 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002305 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002306 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002308 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 break;
2310 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002311 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
2313 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002314 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 break;
2316 default:
2317 /* Some other interface, just ignore it. */
2318 return -EIO;
2319 }
2320 } else {
2321 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002322 /*
2323 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002324 * address should be 1 if the address is I/O and 0 if
2325 * the address is in memory. So many systems get that
2326 * wrong (and all that I have seen are I/O) so we just
2327 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002328 * memory should use the newer spec, anyway.
2329 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002330 dmi->base_addr = base_addr & 0xfffe;
2331 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2332 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
Corey Minyardb0defcd2006-03-26 01:37:20 -08002335 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Corey Minyardb0defcd2006-03-26 01:37:20 -08002337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
2339
Corey Minyard60ee6d52010-10-27 15:34:18 -07002340static void __devinit try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Corey Minyarde8b33612005-09-06 15:18:45 -07002342 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002344 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002345 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002346 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002347 return;
2348 }
2349
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002350 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002351 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Corey Minyarde8b33612005-09-06 15:18:45 -07002353 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002354 case 0x01: /* KCS */
2355 info->si_type = SI_KCS;
2356 break;
2357 case 0x02: /* SMIC */
2358 info->si_type = SI_SMIC;
2359 break;
2360 case 0x03: /* BT */
2361 info->si_type = SI_BT;
2362 break;
2363 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002364 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002365 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367
Corey Minyardb0defcd2006-03-26 01:37:20 -08002368 switch (ipmi_data->addr_space) {
2369 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002371 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2372 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Corey Minyardb0defcd2006-03-26 01:37:20 -08002374 case IPMI_IO_ADDR_SPACE:
2375 info->io_setup = port_setup;
2376 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2377 break;
2378
2379 default:
2380 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002381 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002382 ipmi_data->addr_space);
2383 return;
2384 }
2385 info->io.addr_data = ipmi_data->base_addr;
2386
2387 info->io.regspacing = ipmi_data->offset;
2388 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 info->io.regspacing = DEFAULT_REGSPACING;
2390 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002391 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393 info->slave_addr = ipmi_data->slave_addr;
2394
Corey Minyardb0defcd2006-03-26 01:37:20 -08002395 info->irq = ipmi_data->irq;
2396 if (info->irq)
2397 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002399 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2400 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2401 info->io.addr_data, info->io.regsize, info->io.regspacing,
2402 info->irq);
2403
Yinghai Lu7faefea2010-08-10 18:03:10 -07002404 if (add_smi(info))
2405 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Corey Minyardb0defcd2006-03-26 01:37:20 -08002408static void __devinit dmi_find_bmc(void)
2409{
Jeff Garzik18552562007-10-03 15:15:40 -04002410 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002411 struct dmi_ipmi_data data;
2412 int rv;
2413
2414 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002415 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002416 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2417 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002418 if (!rv)
2419 try_init_dmi(&data);
2420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002422#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424#ifdef CONFIG_PCI
2425
Corey Minyardb0defcd2006-03-26 01:37:20 -08002426#define PCI_ERMC_CLASSCODE 0x0C0700
2427#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2428#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2429#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2430#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2431#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433#define PCI_HP_VENDOR_ID 0x103C
2434#define PCI_MMC_DEVICE_ID 0x121A
2435#define PCI_MMC_ADDR_CW 0x10
2436
Corey Minyardb0defcd2006-03-26 01:37:20 -08002437static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002439 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Corey Minyardb0defcd2006-03-26 01:37:20 -08002441 pci_disable_device(pdev);
2442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Corey Minyardb0defcd2006-03-26 01:37:20 -08002444static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
2445 const struct pci_device_id *ent)
2446{
2447 int rv;
2448 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2449 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002451 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002452 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002453 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002454
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002455 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002456 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002457
2458 switch (class_type) {
2459 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2460 info->si_type = SI_SMIC;
2461 break;
2462
2463 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2464 info->si_type = SI_KCS;
2465 break;
2466
2467 case PCI_ERMC_CLASSCODE_TYPE_BT:
2468 info->si_type = SI_BT;
2469 break;
2470
2471 default:
2472 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002473 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002474 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Corey Minyardb0defcd2006-03-26 01:37:20 -08002477 rv = pci_enable_device(pdev);
2478 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002479 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002480 kfree(info);
2481 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483
Corey Minyardb0defcd2006-03-26 01:37:20 -08002484 info->addr_source_cleanup = ipmi_pci_cleanup;
2485 info->addr_source_data = pdev;
2486
Corey Minyardb0defcd2006-03-26 01:37:20 -08002487 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2488 info->io_setup = port_setup;
2489 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2490 } else {
2491 info->io_setup = mem_setup;
2492 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002494 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Corey Minyardb0defcd2006-03-26 01:37:20 -08002496 info->io.regspacing = DEFAULT_REGSPACING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002498 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Corey Minyardb0defcd2006-03-26 01:37:20 -08002500 info->irq = pdev->irq;
2501 if (info->irq)
2502 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Corey Minyard50c812b2006-03-26 01:37:21 -08002504 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002505 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002506
Myron Stowe279fbd02010-05-26 14:43:52 -07002507 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2508 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2509 info->irq);
2510
Yinghai Lu7faefea2010-08-10 18:03:10 -07002511 if (add_smi(info))
2512 kfree(info);
2513
2514 return 0;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002515}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Corey Minyardb0defcd2006-03-26 01:37:20 -08002517static void __devexit ipmi_pci_remove(struct pci_dev *pdev)
2518{
Corey Minyardfca3b742007-05-08 00:23:59 -07002519 struct smi_info *info = pci_get_drvdata(pdev);
2520 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002521}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Corey Minyardb0defcd2006-03-26 01:37:20 -08002523#ifdef CONFIG_PM
2524static int ipmi_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2525{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return 0;
2527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Corey Minyardb0defcd2006-03-26 01:37:20 -08002529static int ipmi_pci_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002533#endif
2534
2535static struct pci_device_id ipmi_pci_devices[] = {
2536 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002537 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2538 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002539};
2540MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2541
2542static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002543 .name = DEVICE_NAME,
2544 .id_table = ipmi_pci_devices,
2545 .probe = ipmi_pci_probe,
2546 .remove = __devexit_p(ipmi_pci_remove),
Corey Minyardb0defcd2006-03-26 01:37:20 -08002547#ifdef CONFIG_PM
Corey Minyardc305e3d2008-04-29 01:01:10 -07002548 .suspend = ipmi_pci_suspend,
2549 .resume = ipmi_pci_resume,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002550#endif
2551};
2552#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002555#ifdef CONFIG_PPC_OF
Grant Likely2dc11582010-08-06 09:25:50 -06002556static int __devinit ipmi_of_probe(struct platform_device *dev,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002557 const struct of_device_id *match)
2558{
2559 struct smi_info *info;
2560 struct resource resource;
2561 const int *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002562 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002563 int ret;
2564 int proplen;
2565
Myron Stowe279fbd02010-05-26 14:43:52 -07002566 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002567
2568 ret = of_address_to_resource(np, 0, &resource);
2569 if (ret) {
2570 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2571 return ret;
2572 }
2573
Stephen Rothwell9c250992007-08-15 16:42:12 +10002574 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002575 if (regsize && proplen != 4) {
2576 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2577 return -EINVAL;
2578 }
2579
Stephen Rothwell9c250992007-08-15 16:42:12 +10002580 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002581 if (regspacing && proplen != 4) {
2582 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2583 return -EINVAL;
2584 }
2585
Stephen Rothwell9c250992007-08-15 16:42:12 +10002586 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002587 if (regshift && proplen != 4) {
2588 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2589 return -EINVAL;
2590 }
2591
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002592 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002593
2594 if (!info) {
2595 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002596 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002597 return -ENOMEM;
2598 }
2599
2600 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002601 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002602 info->irq_setup = std_irq_setup;
2603
Nate Case3b7ec112008-05-14 16:05:39 -07002604 if (resource.flags & IORESOURCE_IO) {
2605 info->io_setup = port_setup;
2606 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2607 } else {
2608 info->io_setup = mem_setup;
2609 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2610 }
2611
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002612 info->io.addr_data = resource.start;
2613
2614 info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE;
2615 info->io.regspacing = regspacing ? *regspacing : DEFAULT_REGSPACING;
2616 info->io.regshift = regshift ? *regshift : 0;
2617
Grant Likely61c7a082010-04-13 16:12:29 -07002618 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619 info->dev = &dev->dev;
2620
Myron Stowe279fbd02010-05-26 14:43:52 -07002621 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002622 info->io.addr_data, info->io.regsize, info->io.regspacing,
2623 info->irq);
2624
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002625 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002626
Yinghai Lu7faefea2010-08-10 18:03:10 -07002627 if (add_smi(info)) {
2628 kfree(info);
2629 return -EBUSY;
2630 }
2631
2632 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002633}
2634
Grant Likely2dc11582010-08-06 09:25:50 -06002635static int __devexit ipmi_of_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002636{
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002637 cleanup_one_si(dev_get_drvdata(&dev->dev));
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002638 return 0;
2639}
2640
2641static struct of_device_id ipmi_match[] =
2642{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002643 { .type = "ipmi", .compatible = "ipmi-kcs",
2644 .data = (void *)(unsigned long) SI_KCS },
2645 { .type = "ipmi", .compatible = "ipmi-smic",
2646 .data = (void *)(unsigned long) SI_SMIC },
2647 { .type = "ipmi", .compatible = "ipmi-bt",
2648 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002649 {},
2650};
2651
Corey Minyardc305e3d2008-04-29 01:01:10 -07002652static struct of_platform_driver ipmi_of_platform_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002653 .driver = {
2654 .name = "ipmi",
2655 .owner = THIS_MODULE,
2656 .of_match_table = ipmi_match,
2657 },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002658 .probe = ipmi_of_probe,
2659 .remove = __devexit_p(ipmi_of_remove),
2660};
2661#endif /* CONFIG_PPC_OF */
2662
Corey Minyard40112ae2009-04-21 12:24:03 -07002663static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664{
Corey Minyard50c812b2006-03-26 01:37:21 -08002665 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002668 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002669 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2670 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002671 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 smi_result = smi_info->handlers->event(
2673 smi_info->si_sm, 100);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002674 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 smi_result = smi_info->handlers->event(
2676 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002677 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 break;
2679 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002680 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002681 /*
2682 * We couldn't get the state machine to run, so whatever's at
2683 * the port is probably not an IPMI SMI interface.
2684 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002685 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Corey Minyard40112ae2009-04-21 12:24:03 -07002687 return 0;
2688}
2689
2690static int try_get_dev_id(struct smi_info *smi_info)
2691{
2692 unsigned char msg[2];
2693 unsigned char *resp;
2694 unsigned long resp_len;
2695 int rv = 0;
2696
2697 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2698 if (!resp)
2699 return -ENOMEM;
2700
2701 /*
2702 * Do a Get Device ID command, since it comes back with some
2703 * useful info.
2704 */
2705 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2706 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2707 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2708
2709 rv = wait_for_msg_done(smi_info);
2710 if (rv)
2711 goto out;
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2714 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Corey Minyardd8c98612007-10-18 03:07:11 -07002716 /* Check and record info from the get device id, in case we need it. */
2717 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 out:
2720 kfree(resp);
2721 return rv;
2722}
2723
Corey Minyard40112ae2009-04-21 12:24:03 -07002724static int try_enable_event_buffer(struct smi_info *smi_info)
2725{
2726 unsigned char msg[3];
2727 unsigned char *resp;
2728 unsigned long resp_len;
2729 int rv = 0;
2730
2731 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2732 if (!resp)
2733 return -ENOMEM;
2734
2735 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2736 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2737 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2738
2739 rv = wait_for_msg_done(smi_info);
2740 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002741 printk(KERN_WARNING PFX "Error getting response from get"
2742 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002743 " enabled.\n");
2744 goto out;
2745 }
2746
2747 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2748 resp, IPMI_MAX_MSG_LENGTH);
2749
2750 if (resp_len < 4 ||
2751 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2752 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2753 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002754 printk(KERN_WARNING PFX "Invalid return from get global"
2755 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002756 rv = -EINVAL;
2757 goto out;
2758 }
2759
2760 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2761 /* buffer is already enabled, nothing to do. */
2762 goto out;
2763
2764 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2765 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2766 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2767 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2768
2769 rv = wait_for_msg_done(smi_info);
2770 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002771 printk(KERN_WARNING PFX "Error getting response from set"
2772 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002773 " enabled.\n");
2774 goto out;
2775 }
2776
2777 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2778 resp, IPMI_MAX_MSG_LENGTH);
2779
2780 if (resp_len < 3 ||
2781 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2782 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002783 printk(KERN_WARNING PFX "Invalid return from get global,"
2784 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002785 rv = -EINVAL;
2786 goto out;
2787 }
2788
2789 if (resp[2] != 0)
2790 /*
2791 * An error when setting the event buffer bit means
2792 * that the event buffer is not supported.
2793 */
2794 rv = -ENOENT;
2795 out:
2796 kfree(resp);
2797 return rv;
2798}
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800static int type_file_read_proc(char *page, char **start, off_t off,
2801 int count, int *eof, void *data)
2802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 struct smi_info *smi = data;
2804
Corey Minyardb361e272006-12-06 20:41:07 -08002805 return sprintf(page, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806}
2807
2808static int stat_file_read_proc(char *page, char **start, off_t off,
2809 int count, int *eof, void *data)
2810{
2811 char *out = (char *) page;
2812 struct smi_info *smi = data;
2813
2814 out += sprintf(out, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002815 smi->irq && !smi->interrupt_disabled);
Corey Minyard64959e22008-04-29 01:01:07 -07002816 out += sprintf(out, "short_timeouts: %u\n",
2817 smi_get_stat(smi, short_timeouts));
2818 out += sprintf(out, "long_timeouts: %u\n",
2819 smi_get_stat(smi, long_timeouts));
Corey Minyard64959e22008-04-29 01:01:07 -07002820 out += sprintf(out, "idles: %u\n",
2821 smi_get_stat(smi, idles));
2822 out += sprintf(out, "interrupts: %u\n",
2823 smi_get_stat(smi, interrupts));
2824 out += sprintf(out, "attentions: %u\n",
2825 smi_get_stat(smi, attentions));
2826 out += sprintf(out, "flag_fetches: %u\n",
2827 smi_get_stat(smi, flag_fetches));
2828 out += sprintf(out, "hosed_count: %u\n",
2829 smi_get_stat(smi, hosed_count));
2830 out += sprintf(out, "complete_transactions: %u\n",
2831 smi_get_stat(smi, complete_transactions));
2832 out += sprintf(out, "events: %u\n",
2833 smi_get_stat(smi, events));
2834 out += sprintf(out, "watchdog_pretimeouts: %u\n",
2835 smi_get_stat(smi, watchdog_pretimeouts));
2836 out += sprintf(out, "incoming_messages: %u\n",
2837 smi_get_stat(smi, incoming_messages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Corey Minyardb361e272006-12-06 20:41:07 -08002839 return out - page;
2840}
2841
2842static int param_read_proc(char *page, char **start, off_t off,
2843 int count, int *eof, void *data)
2844{
2845 struct smi_info *smi = data;
2846
2847 return sprintf(page,
2848 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
2849 si_to_str[smi->si_type],
2850 addr_space_to_str[smi->io.addr_type],
2851 smi->io.addr_data,
2852 smi->io.regspacing,
2853 smi->io.regsize,
2854 smi->io.regshift,
2855 smi->irq,
2856 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857}
2858
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002859/*
2860 * oem_data_avail_to_receive_msg_avail
2861 * @info - smi_info structure with msg_flags set
2862 *
2863 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
2864 * Returns 1 indicating need to re-run handle_flags().
2865 */
2866static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
2867{
Corey Minyarde8b33612005-09-06 15:18:45 -07002868 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07002869 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002870 return 1;
2871}
2872
2873/*
2874 * setup_dell_poweredge_oem_data_handler
2875 * @info - smi_info.device_id must be populated
2876 *
2877 * Systems that match, but have firmware version < 1.40 may assert
2878 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
2879 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
2880 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
2881 * as RECEIVE_MSG_AVAIL instead.
2882 *
2883 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
2884 * assert the OEM[012] bits, and if it did, the driver would have to
2885 * change to handle that properly, we don't actually check for the
2886 * firmware version.
2887 * Device ID = 0x20 BMC on PowerEdge 8G servers
2888 * Device Revision = 0x80
2889 * Firmware Revision1 = 0x01 BMC version 1.40
2890 * Firmware Revision2 = 0x40 BCD encoded
2891 * IPMI Version = 0x51 IPMI 1.5
2892 * Manufacturer ID = A2 02 00 Dell IANA
2893 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08002894 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
2895 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
2896 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002897 */
2898#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
2899#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
2900#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08002901#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002902static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
2903{
2904 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002905 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002906 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
2907 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08002908 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002909 smi_info->oem_data_avail_handler =
2910 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002911 } else if (ipmi_version_major(id) < 1 ||
2912 (ipmi_version_major(id) == 1 &&
2913 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08002914 smi_info->oem_data_avail_handler =
2915 oem_data_avail_to_receive_msg_avail;
2916 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002917 }
2918}
2919
Corey Minyardea940272005-11-07 00:59:59 -08002920#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
2921static void return_hosed_msg_badsize(struct smi_info *smi_info)
2922{
2923 struct ipmi_smi_msg *msg = smi_info->curr_msg;
2924
2925 /* Make it a reponse */
2926 msg->rsp[0] = msg->data[0] | 4;
2927 msg->rsp[1] = msg->data[1];
2928 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
2929 msg->rsp_size = 3;
2930 smi_info->curr_msg = NULL;
2931 deliver_recv_msg(smi_info, msg);
2932}
2933
2934/*
2935 * dell_poweredge_bt_xaction_handler
2936 * @info - smi_info.device_id must be populated
2937 *
2938 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
2939 * not respond to a Get SDR command if the length of the data
2940 * requested is exactly 0x3A, which leads to command timeouts and no
2941 * data returned. This intercepts such commands, and causes userspace
2942 * callers to try again with a different-sized buffer, which succeeds.
2943 */
2944
2945#define STORAGE_NETFN 0x0A
2946#define STORAGE_CMD_GET_SDR 0x23
2947static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
2948 unsigned long unused,
2949 void *in)
2950{
2951 struct smi_info *smi_info = in;
2952 unsigned char *data = smi_info->curr_msg->data;
2953 unsigned int size = smi_info->curr_msg->data_size;
2954 if (size >= 8 &&
2955 (data[0]>>2) == STORAGE_NETFN &&
2956 data[1] == STORAGE_CMD_GET_SDR &&
2957 data[7] == 0x3A) {
2958 return_hosed_msg_badsize(smi_info);
2959 return NOTIFY_STOP;
2960 }
2961 return NOTIFY_DONE;
2962}
2963
2964static struct notifier_block dell_poweredge_bt_xaction_notifier = {
2965 .notifier_call = dell_poweredge_bt_xaction_handler,
2966};
2967
2968/*
2969 * setup_dell_poweredge_bt_xaction_handler
2970 * @info - smi_info.device_id must be filled in already
2971 *
2972 * Fills in smi_info.device_id.start_transaction_pre_hook
2973 * when we know what function to use there.
2974 */
2975static void
2976setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
2977{
2978 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08002979 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08002980 smi_info->si_type == SI_BT)
2981 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
2982}
2983
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002984/*
2985 * setup_oem_data_handler
2986 * @info - smi_info.device_id must be filled in already
2987 *
2988 * Fills in smi_info.device_id.oem_data_available_handler
2989 * when we know what function to use there.
2990 */
2991
2992static void setup_oem_data_handler(struct smi_info *smi_info)
2993{
2994 setup_dell_poweredge_oem_data_handler(smi_info);
2995}
2996
Corey Minyardea940272005-11-07 00:59:59 -08002997static void setup_xaction_handlers(struct smi_info *smi_info)
2998{
2999 setup_dell_poweredge_bt_xaction_handler(smi_info);
3000}
3001
Corey Minyarda9a2c442005-11-07 01:00:03 -08003002static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3003{
Corey Minyard453823b2006-03-31 02:30:39 -08003004 if (smi_info->intf) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003005 /*
3006 * The timer and thread are only running if the
3007 * interface has been started up and registered.
3008 */
Corey Minyard453823b2006-03-31 02:30:39 -08003009 if (smi_info->thread != NULL)
3010 kthread_stop(smi_info->thread);
3011 del_timer_sync(&smi_info->si_timer);
3012 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08003013}
3014
Randy Dunlap74208842006-04-18 22:21:52 -07003015static __devinitdata struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003017 int type;
3018 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003019} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003020{
3021 { .type = SI_KCS, .port = 0xca2 },
3022 { .type = SI_SMIC, .port = 0xca9 },
3023 { .type = SI_BT, .port = 0xe4 },
3024 { .port = 0 }
3025};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Corey Minyard60ee6d52010-10-27 15:34:18 -07003027static void __devinit default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003028{
3029 struct smi_info *info;
3030 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Corey Minyardb0defcd2006-03-26 01:37:20 -08003032 for (i = 0; ; i++) {
3033 if (!ipmi_defaults[i].port)
3034 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003035#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003036 if (check_legacy_ioport(ipmi_defaults[i].port))
3037 continue;
3038#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003039 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003040 if (!info)
3041 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003042
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003043 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003044
3045 info->si_type = ipmi_defaults[i].type;
3046 info->io_setup = port_setup;
3047 info->io.addr_data = ipmi_defaults[i].port;
3048 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3049
3050 info->io.addr = NULL;
3051 info->io.regspacing = DEFAULT_REGSPACING;
3052 info->io.regsize = DEFAULT_REGSPACING;
3053 info->io.regshift = 0;
3054
Matthew Garrett2407d772010-05-26 14:43:46 -07003055 if (add_smi(info) == 0) {
3056 if ((try_smi_init(info)) == 0) {
3057 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003058 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003059 " state machine at %s address 0x%lx\n",
3060 si_to_str[info->si_type],
3061 addr_space_to_str[info->io.addr_type],
3062 info->io.addr_data);
3063 } else
3064 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003065 } else {
3066 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003067 }
3068 }
3069}
3070
3071static int is_new_interface(struct smi_info *info)
3072{
3073 struct smi_info *e;
3074
3075 list_for_each_entry(e, &smi_infos, link) {
3076 if (e->io.addr_type != info->io.addr_type)
3077 continue;
3078 if (e->io.addr_data == info->io.addr_data)
3079 return 0;
3080 }
3081
3082 return 1;
3083}
3084
Matthew Garrett2407d772010-05-26 14:43:46 -07003085static int add_smi(struct smi_info *new_smi)
3086{
3087 int rv = 0;
3088
Myron Stowe279fbd02010-05-26 14:43:52 -07003089 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Matthew Garrett2407d772010-05-26 14:43:46 -07003090 ipmi_addr_src_to_str[new_smi->addr_source],
3091 si_to_str[new_smi->si_type]);
3092 mutex_lock(&smi_infos_lock);
3093 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003094 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003095 rv = -EBUSY;
3096 goto out_err;
3097 }
3098
3099 printk(KERN_CONT "\n");
3100
3101 /* So we know not to free it unless we have allocated one. */
3102 new_smi->intf = NULL;
3103 new_smi->si_sm = NULL;
3104 new_smi->handlers = NULL;
3105
3106 list_add_tail(&new_smi->link, &smi_infos);
3107
3108out_err:
3109 mutex_unlock(&smi_infos_lock);
3110 return rv;
3111}
3112
Corey Minyardb0defcd2006-03-26 01:37:20 -08003113static int try_smi_init(struct smi_info *new_smi)
3114{
Matthew Garrett2407d772010-05-26 14:43:46 -07003115 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003116 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003117
Myron Stowe279fbd02010-05-26 14:43:52 -07003118 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003119 " machine at %s address 0x%lx, slave address 0x%x,"
3120 " irq %d\n",
3121 ipmi_addr_src_to_str[new_smi->addr_source],
3122 si_to_str[new_smi->si_type],
3123 addr_space_to_str[new_smi->io.addr_type],
3124 new_smi->io.addr_data,
3125 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003126
Corey Minyardb0defcd2006-03-26 01:37:20 -08003127 switch (new_smi->si_type) {
3128 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003130 break;
3131
3132 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003134 break;
3135
3136 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003138 break;
3139
3140 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 /* No support for anything else yet. */
3142 rv = -EIO;
3143 goto out_err;
3144 }
3145
3146 /* Allocate the state machine's data and initialize it. */
3147 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003148 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003149 printk(KERN_ERR PFX
3150 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 rv = -ENOMEM;
3152 goto out_err;
3153 }
3154 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3155 &new_smi->io);
3156
3157 /* Now that we know the I/O size, we can set up the I/O. */
3158 rv = new_smi->io_setup(new_smi);
3159 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003160 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 goto out_err;
3162 }
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 /* Do low-level detection first. */
3165 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003166 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003167 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 rv = -ENODEV;
3169 goto out_err;
3170 }
3171
Corey Minyardc305e3d2008-04-29 01:01:10 -07003172 /*
3173 * Attempt a get device id command. If it fails, we probably
3174 * don't have a BMC here.
3175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003177 if (rv) {
3178 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003179 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003180 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003184 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003185 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 INIT_LIST_HEAD(&(new_smi->xmit_msgs));
3188 INIT_LIST_HEAD(&(new_smi->hp_xmit_msgs));
3189 new_smi->curr_msg = NULL;
3190 atomic_set(&new_smi->req_events, 0);
3191 new_smi->run_to_completion = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003192 for (i = 0; i < SI_NUM_STATS; i++)
3193 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Matthew Garrettea4078c2010-05-26 14:43:48 -07003195 new_smi->interrupt_disabled = 1;
Corey Minyarda9a2c442005-11-07 01:00:03 -08003196 atomic_set(&new_smi->stop_operation, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003197 new_smi->intf_num = smi_num;
3198 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Corey Minyard40112ae2009-04-21 12:24:03 -07003200 rv = try_enable_event_buffer(new_smi);
3201 if (rv == 0)
3202 new_smi->has_event_buffer = 1;
3203
Corey Minyardc305e3d2008-04-29 01:01:10 -07003204 /*
3205 * Start clearing the flags before we enable interrupts or the
3206 * timer to avoid racing with the timer.
3207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 start_clear_flags(new_smi);
3209 /* IRQ is defined to be set when non-zero. */
3210 if (new_smi->irq)
3211 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3212
Corey Minyard50c812b2006-03-26 01:37:21 -08003213 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003214 /*
3215 * If we don't already have a device from something
3216 * else (like PCI), then register a new one.
3217 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003218 new_smi->pdev = platform_device_alloc("ipmi_si",
3219 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003220 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003221 printk(KERN_ERR PFX
3222 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003223 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003224 }
3225 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003226 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003227
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003228 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003229 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003230 printk(KERN_ERR PFX
3231 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003232 " %d\n",
3233 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003234 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003235 }
3236 new_smi->dev_registered = 1;
3237 }
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 rv = ipmi_register_smi(&handlers,
3240 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003241 &new_smi->device_id,
3242 new_smi->dev,
Corey Minyard759643b2006-12-06 20:40:59 -08003243 "bmc",
Corey Minyard453823b2006-03-31 02:30:39 -08003244 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003246 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3247 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 goto out_err_stop_timer;
3249 }
3250
3251 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003252 type_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003253 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003255 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 goto out_err_stop_timer;
3257 }
3258
3259 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003260 stat_file_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003261 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003263 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 goto out_err_stop_timer;
3265 }
3266
Corey Minyardb361e272006-12-06 20:41:07 -08003267 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyanfa68be02008-04-29 01:01:13 -07003268 param_read_proc,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003269 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003270 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003271 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003272 goto out_err_stop_timer;
3273 }
3274
Myron Stowe279fbd02010-05-26 14:43:52 -07003275 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3276 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 return 0;
3279
3280 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003281 atomic_inc(&new_smi->stop_operation);
3282 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
3284 out_err:
Matthew Garrett2407d772010-05-26 14:43:46 -07003285 new_smi->interrupt_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Matthew Garrett2407d772010-05-26 14:43:46 -07003287 if (new_smi->intf) {
3288 ipmi_unregister_smi(new_smi->intf);
3289 new_smi->intf = NULL;
3290 }
3291
3292 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003293 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003294 new_smi->irq_cleanup = NULL;
3295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Corey Minyardc305e3d2008-04-29 01:01:10 -07003297 /*
3298 * Wait until we know that we are out of any interrupt
3299 * handlers might have been running before we freed the
3300 * interrupt.
3301 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003302 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
3304 if (new_smi->si_sm) {
3305 if (new_smi->handlers)
3306 new_smi->handlers->cleanup(new_smi->si_sm);
3307 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003308 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003310 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003311 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003312 new_smi->addr_source_cleanup = NULL;
3313 }
3314 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003315 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003316 new_smi->io_cleanup = NULL;
3317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Matthew Garrett2407d772010-05-26 14:43:46 -07003319 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003320 platform_device_unregister(new_smi->pdev);
Matthew Garrett2407d772010-05-26 14:43:46 -07003321 new_smi->dev_registered = 0;
3322 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 return rv;
3325}
3326
Corey Minyard60ee6d52010-10-27 15:34:18 -07003327static int __devinit init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 int i;
3330 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003331 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003332 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003333 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 if (initialized)
3336 return 0;
3337 initialized = 1;
3338
Corey Minyard50c812b2006-03-26 01:37:21 -08003339 /* Register the device drivers. */
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003340 rv = driver_register(&ipmi_driver.driver);
Corey Minyard50c812b2006-03-26 01:37:21 -08003341 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003342 printk(KERN_ERR PFX "Unable to register driver: %d\n", rv);
Corey Minyard50c812b2006-03-26 01:37:21 -08003343 return rv;
3344 }
3345
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 /* Parse out the si_type string into its components. */
3348 str = si_type_str;
3349 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003350 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 si_type[i] = str;
3352 str = strchr(str, ',');
3353 if (str) {
3354 *str = '\0';
3355 str++;
3356 } else {
3357 break;
3358 }
3359 }
3360 }
3361
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003362 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
Corey Minyardb0defcd2006-03-26 01:37:20 -08003364 hardcode_find_bmc();
3365
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003366 /* If the user gave us a device, they presumably want us to use it */
3367 mutex_lock(&smi_infos_lock);
3368 if (!list_empty(&smi_infos)) {
3369 mutex_unlock(&smi_infos_lock);
3370 return 0;
3371 }
3372 mutex_unlock(&smi_infos_lock);
3373
Corey Minyardb0defcd2006-03-26 01:37:20 -08003374#ifdef CONFIG_PCI
Corey Minyard168b35a2006-12-06 20:41:11 -08003375 rv = pci_register_driver(&ipmi_pci_driver);
Corey Minyardc305e3d2008-04-29 01:01:10 -07003376 if (rv)
Myron Stowe279fbd02010-05-26 14:43:52 -07003377 printk(KERN_ERR PFX "Unable to register PCI driver: %d\n", rv);
Matthew Garrett56480282010-06-29 15:05:29 -07003378 else
3379 pci_registered = 1;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003380#endif
3381
Matthew Garrett754d4532010-05-26 14:43:47 -07003382#ifdef CONFIG_ACPI
3383 pnp_register_driver(&ipmi_pnp_driver);
Yinghai Lu561f8182010-09-22 13:05:15 -07003384 pnp_registered = 1;
Matthew Garrett754d4532010-05-26 14:43:47 -07003385#endif
3386
3387#ifdef CONFIG_DMI
3388 dmi_find_bmc();
3389#endif
3390
3391#ifdef CONFIG_ACPI
3392 spmi_find_bmc();
3393#endif
3394
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003395#ifdef CONFIG_PPC_OF
3396 of_register_platform_driver(&ipmi_of_platform_driver);
Matthew Garrett56480282010-06-29 15:05:29 -07003397 of_registered = 1;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003398#endif
3399
Matthew Garrett06ee4592010-05-26 14:43:49 -07003400 /* We prefer devices with interrupts, but in the case of a machine
3401 with multiple BMCs we assume that there will be several instances
3402 of a given type so if we succeed in registering a type then also
3403 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003404
Matthew Garrett2407d772010-05-26 14:43:46 -07003405 mutex_lock(&smi_infos_lock);
3406 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003407 /* Try to register a device if it has an IRQ and we either
3408 haven't successfully registered a device yet or this
3409 device has the same type as one we successfully registered */
3410 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003411 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003412 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003413 }
3414 }
3415 }
3416
Matthew Garrett06ee4592010-05-26 14:43:49 -07003417 /* type will only have been set if we successfully registered an si */
3418 if (type) {
3419 mutex_unlock(&smi_infos_lock);
3420 return 0;
3421 }
3422
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003423 /* Fall back to the preferred device */
3424
3425 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003426 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003427 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003428 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003429 }
3430 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003431 }
3432 mutex_unlock(&smi_infos_lock);
3433
Matthew Garrett06ee4592010-05-26 14:43:49 -07003434 if (type)
3435 return 0;
3436
Corey Minyardb0defcd2006-03-26 01:37:20 -08003437 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003438 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003439 if (list_empty(&smi_infos)) {
3440 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003441 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003442 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003443 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003444 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Corey Minyardd6dfd132006-03-31 02:30:41 -08003447 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003448 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003449 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003450#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003451 if (pci_registered)
3452 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003453#endif
Christian Krafft10fb62e2007-05-12 10:37:01 -07003454
3455#ifdef CONFIG_PPC_OF
Matthew Garrett56480282010-06-29 15:05:29 -07003456 if (of_registered)
3457 of_unregister_platform_driver(&ipmi_of_platform_driver);
Christian Krafft10fb62e2007-05-12 10:37:01 -07003458#endif
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003459 driver_unregister(&ipmi_driver.driver);
Myron Stowe279fbd02010-05-26 14:43:52 -07003460 printk(KERN_WARNING PFX
3461 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003463 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003464 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467}
3468module_init(init_ipmi_si);
3469
Corey Minyardb361e272006-12-06 20:41:07 -08003470static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Matthew Garrett2407d772010-05-26 14:43:46 -07003472 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 unsigned long flags;
3474
Corey Minyardb0defcd2006-03-26 01:37:20 -08003475 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 return;
3477
Corey Minyardb0defcd2006-03-26 01:37:20 -08003478 list_del(&to_clean->link);
3479
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003480 /* Tell the driver that we are shutting down. */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003481 atomic_inc(&to_clean->stop_operation);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003482
Corey Minyardc305e3d2008-04-29 01:01:10 -07003483 /*
3484 * Make sure the timer and thread are stopped and will not run
3485 * again.
3486 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08003487 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Corey Minyardc305e3d2008-04-29 01:01:10 -07003489 /*
3490 * Timeouts are stopped, now make sure the interrupts are off
3491 * for the device. A little tricky with locks to make sure
3492 * there are no races.
3493 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003494 spin_lock_irqsave(&to_clean->si_lock, flags);
3495 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3496 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3497 poll(to_clean);
3498 schedule_timeout_uninterruptible(1);
3499 spin_lock_irqsave(&to_clean->si_lock, flags);
3500 }
3501 disable_si_irq(to_clean);
3502 spin_unlock_irqrestore(&to_clean->si_lock, flags);
3503 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3504 poll(to_clean);
3505 schedule_timeout_uninterruptible(1);
3506 }
3507
3508 /* Clean up interrupts and make sure that everything is done. */
3509 if (to_clean->irq_cleanup)
3510 to_clean->irq_cleanup(to_clean);
Corey Minyarde8b33612005-09-06 15:18:45 -07003511 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 poll(to_clean);
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07003513 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 }
3515
Matthew Garrett2407d772010-05-26 14:43:46 -07003516 if (to_clean->intf)
3517 rv = ipmi_unregister_smi(to_clean->intf);
3518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003520 printk(KERN_ERR PFX "Unable to unregister device: errno=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 rv);
3522 }
3523
Matthew Garrett2407d772010-05-26 14:43:46 -07003524 if (to_clean->handlers)
3525 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
3527 kfree(to_clean->si_sm);
3528
Corey Minyardb0defcd2006-03-26 01:37:20 -08003529 if (to_clean->addr_source_cleanup)
3530 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003531 if (to_clean->io_cleanup)
3532 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003533
3534 if (to_clean->dev_registered)
3535 platform_device_unregister(to_clean->pdev);
3536
3537 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538}
3539
Corey Minyard60ee6d52010-10-27 15:34:18 -07003540static void __exit cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003542 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Corey Minyardb0defcd2006-03-26 01:37:20 -08003544 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 return;
3546
Corey Minyardb0defcd2006-03-26 01:37:20 -08003547#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003548 if (pci_registered)
3549 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003550#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003551#ifdef CONFIG_ACPI
Yinghai Lu561f8182010-09-22 13:05:15 -07003552 if (pnp_registered)
3553 pnp_unregister_driver(&ipmi_pnp_driver);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003554#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003555
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003556#ifdef CONFIG_PPC_OF
Matthew Garrett56480282010-06-29 15:05:29 -07003557 if (of_registered)
3558 of_unregister_platform_driver(&ipmi_of_platform_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003559#endif
3560
Corey Minyardd6dfd132006-03-31 02:30:41 -08003561 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003562 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3563 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003564 mutex_unlock(&smi_infos_lock);
Corey Minyard50c812b2006-03-26 01:37:21 -08003565
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003566 driver_unregister(&ipmi_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567}
3568module_exit(cleanup_ipmi_si);
3569
3570MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003571MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003572MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3573 " system interfaces.");