blob: 90c7fdf95419a65ed8a30b346c59b5d0368d3c31 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipmi_si.c
3 *
4 * The interface to the IPMI driver for the system interfaces (KCS, SMIC,
5 * BT).
6 *
7 * Author: MontaVista Software, Inc.
8 * Corey Minyard <minyard@mvista.com>
9 * source@mvista.com
10 *
11 * Copyright 2002 MontaVista Software Inc.
Corey Minyarddba9b4f2007-05-08 00:23:51 -070012 * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 *
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
28 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
29 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * You should have received a copy of the GNU General Public License along
32 * with this program; if not, write to the Free Software Foundation, Inc.,
33 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 */
35
36/*
37 * This file holds the "policy" for the interface to the SMI state
38 * machine. It does the configuration, handles timers and interrupts,
39 * and drives the real SMI state machine.
40 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/module.h>
43#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/sched.h>
Alexey Dobriyan07412732011-05-26 16:25:55 -070045#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/timer.h>
47#include <linux/errno.h>
48#include <linux/spinlock.h>
49#include <linux/slab.h>
50#include <linux/delay.h>
51#include <linux/list.h>
52#include <linux/pci.h>
53#include <linux/ioport.h>
Corey Minyardea940272005-11-07 00:59:59 -080054#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080055#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080056#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/interrupt.h>
59#include <linux/rcupdate.h>
Zhao Yakui16f42322010-12-08 10:10:16 +080060#include <linux/ipmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ipmi_smi.h>
62#include <asm/io.h>
63#include "ipmi_si_sm.h"
Andrey Paninb224cd32005-09-06 15:18:37 -070064#include <linux/dmi.h>
Corey Minyardb361e272006-12-06 20:41:07 -080065#include <linux/string.h>
66#include <linux/ctype.h>
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -070067#include <linux/pnp.h>
Stephen Rothwell11c675c2008-05-23 16:22:42 +100068#include <linux/of_device.h>
69#include <linux/of_platform.h>
Rob Herring672d8ea2010-11-16 14:33:51 -060070#include <linux/of_address.h>
71#include <linux/of_irq.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070072
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -050073#ifdef CONFIG_PARISC
74#include <asm/hardware.h> /* for register_parisc_driver() stuff */
75#include <asm/parisc-device.h>
76#endif
77
Corey Minyardb361e272006-12-06 20:41:07 -080078#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* Measure times between events in the driver. */
81#undef DEBUG_TIMING
82
83/* Call every 10 ms. */
84#define SI_TIMEOUT_TIME_USEC 10000
85#define SI_USEC_PER_JIFFY (1000000/HZ)
86#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
87#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070088 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90enum si_intf_state {
91 SI_NORMAL,
92 SI_GETTING_FLAGS,
93 SI_GETTING_EVENTS,
94 SI_CLEARING_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 SI_GETTING_MESSAGES,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -060096 SI_CHECKING_ENABLES,
97 SI_SETTING_ENABLES
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
Corey Minyard50c812b2006-03-26 01:37:21 -0800111#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700112
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600113static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700114
115/*
116 * Indexes into stats[] in smi_info below.
117 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700118enum si_stat_indexes {
119 /*
120 * Number of times the driver requested a timer while an operation
121 * was in progress.
122 */
123 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700124
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700125 /*
126 * Number of times the driver requested a timer while nothing was in
127 * progress.
128 */
129 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700130
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700131 /* Number of times the interface was idle while being polled. */
132 SI_STAT_idles,
133
134 /* Number of interrupts the driver handled. */
135 SI_STAT_interrupts,
136
137 /* Number of time the driver got an ATTN from the hardware. */
138 SI_STAT_attentions,
139
140 /* Number of times the driver requested flags from the hardware. */
141 SI_STAT_flag_fetches,
142
143 /* Number of times the hardware didn't follow the state machine. */
144 SI_STAT_hosed_count,
145
146 /* Number of completed messages. */
147 SI_STAT_complete_transactions,
148
149 /* Number of IPMI events received from the hardware. */
150 SI_STAT_events,
151
152 /* Number of watchdog pretimeouts. */
153 SI_STAT_watchdog_pretimeouts,
154
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400155 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700156 SI_STAT_incoming_messages,
157
158
159 /* This *must* remain last, add new values above this. */
160 SI_NUM_STATS
161};
Corey Minyard64959e22008-04-29 01:01:07 -0700162
Corey Minyardc305e3d2008-04-29 01:01:10 -0700163struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800164 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ipmi_smi_t intf;
166 struct si_sm_data *si_sm;
167 struct si_sm_handlers *handlers;
168 enum si_type si_type;
169 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600170 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct ipmi_smi_msg *curr_msg;
172 enum si_intf_state si_state;
173
Corey Minyardc305e3d2008-04-29 01:01:10 -0700174 /*
175 * Used to handle the various types of I/O that can occur with
176 * IPMI
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct si_sm_io io;
179 int (*io_setup)(struct smi_info *info);
180 void (*io_cleanup)(struct smi_info *info);
181 int (*irq_setup)(struct smi_info *info);
182 void (*irq_cleanup)(struct smi_info *info);
183 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700184 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800185 void (*addr_source_cleanup)(struct smi_info *info);
186 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Corey Minyardc305e3d2008-04-29 01:01:10 -0700188 /*
189 * Per-OEM handler, called from handle_flags(). Returns 1
190 * when handle_flags() needs to be re-run or 0 indicating it
191 * set si_state itself.
192 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700193 int (*oem_data_avail_handler)(struct smi_info *smi_info);
194
Corey Minyardc305e3d2008-04-29 01:01:10 -0700195 /*
196 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
197 * is set to hold the flags until we are done handling everything
198 * from the flags.
199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#define RECEIVE_MSG_AVAIL 0x01
201#define EVENT_MSG_BUFFER_FULL 0x02
202#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700203#define OEM0_DATA_AVAIL 0x20
204#define OEM1_DATA_AVAIL 0x40
205#define OEM2_DATA_AVAIL 0x80
206#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700207 OEM1_DATA_AVAIL | \
208 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 unsigned char msg_flags;
210
Corey Minyard40112ae2009-04-21 12:24:03 -0700211 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500212 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700213
Corey Minyardc305e3d2008-04-29 01:01:10 -0700214 /*
215 * If set to true, this will request events the next time the
216 * state machine is idle.
217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 atomic_t req_events;
219
Corey Minyardc305e3d2008-04-29 01:01:10 -0700220 /*
221 * If true, run the state machine to completion on every send
222 * call. Generally used after a panic to make sure stuff goes
223 * out.
224 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500225 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* The I/O port of an SI interface. */
228 int port;
229
Corey Minyardc305e3d2008-04-29 01:01:10 -0700230 /*
231 * The space between start addresses of the two ports. For
232 * instance, if the first port is 0xca2 and the spacing is 4, then
233 * the second port is 0xca6.
234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 unsigned int spacing;
236
237 /* zero if no irq; */
238 int irq;
239
240 /* The timer for this si. */
241 struct timer_list si_timer;
242
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500243 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
244 bool timer_running;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* The time (in jiffies) the last timeout occurred at. */
247 unsigned long last_timeout_jiffies;
248
Corey Minyard89986492014-04-14 09:46:54 -0500249 /* Are we waiting for the events, pretimeouts, received msgs? */
250 atomic_t need_watch;
251
Corey Minyardc305e3d2008-04-29 01:01:10 -0700252 /*
253 * The driver will disable interrupts when it gets into a
254 * situation where it cannot handle messages due to lack of
255 * memory. Once that situation clears up, it will re-enable
256 * interrupts.
257 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500258 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600260 /*
261 * Does the BMC support events?
262 */
263 bool supports_event_msg_buff;
264
Corey Minyarda8df1502014-11-19 11:47:17 -0600265 /*
266 * Did we get an attention that we did not handle?
267 */
268 bool got_attn;
269
Corey Minyard50c812b2006-03-26 01:37:21 -0800270 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700271 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Corey Minyard50c812b2006-03-26 01:37:21 -0800273 /* Driver model stuff. */
274 struct device *dev;
275 struct platform_device *pdev;
276
Corey Minyardc305e3d2008-04-29 01:01:10 -0700277 /*
278 * True if we allocated the device, false if it came from
279 * someplace else (like PCI).
280 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500281 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* Slave address, could be reported from DMI. */
284 unsigned char slave_addr;
285
286 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700287 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800288
Corey Minyardc305e3d2008-04-29 01:01:10 -0700289 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800290
291 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800292 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
Corey Minyard64959e22008-04-29 01:01:07 -0700295#define smi_inc_stat(smi, stat) \
296 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
297#define smi_get_stat(smi, stat) \
298 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
299
Corey Minyarda51f4a82006-10-03 01:13:59 -0700300#define SI_MAX_PARMS 4
301
302static int force_kipmid[SI_MAX_PARMS];
303static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700304#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500305static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700306#endif
Yinghai Lu561f8182010-09-22 13:05:15 -0700307#ifdef CONFIG_ACPI
Corey Minyard7aefac22014-04-14 09:46:56 -0500308static bool pnp_registered;
Yinghai Lu561f8182010-09-22 13:05:15 -0700309#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500310#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500311static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500312#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700313
Martin Wilckae74e822010-03-10 15:23:06 -0800314static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
315static int num_max_busy_us;
316
Corey Minyard7aefac22014-04-14 09:46:56 -0500317static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800318
Matthew Garrett2407d772010-05-26 14:43:46 -0700319static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800320static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800321static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600322static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800323
Alan Sterne041c682006-03-27 01:16:30 -0800324static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700325static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800326{
Alan Sterne041c682006-03-27 01:16:30 -0800327 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void deliver_recv_msg(struct smi_info *smi_info,
331 struct ipmi_smi_msg *msg)
332{
Corey Minyard7adf5792012-03-28 14:42:49 -0700333 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600334 if (smi_info->intf)
335 ipmi_smi_msg_received(smi_info->intf, msg);
336 else
337 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800340static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 struct ipmi_smi_msg *msg = smi_info->curr_msg;
343
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800344 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
345 cCode = IPMI_ERR_UNSPECIFIED;
346 /* else use it as is */
347
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300348 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 msg->rsp[0] = msg->data[0] | 4;
350 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800351 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 msg->rsp_size = 3;
353
354 smi_info->curr_msg = NULL;
355 deliver_recv_msg(smi_info, msg);
356}
357
358static enum si_sm_result start_next_msg(struct smi_info *smi_info)
359{
360 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#ifdef DEBUG_TIMING
362 struct timeval t;
363#endif
364
Corey Minyardb874b982014-11-06 17:01:59 -0600365 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 smi_info->curr_msg = NULL;
367 rv = SI_SM_IDLE;
368 } else {
369 int err;
370
Corey Minyardb874b982014-11-06 17:01:59 -0600371 smi_info->curr_msg = smi_info->waiting_msg;
372 smi_info->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#ifdef DEBUG_TIMING
374 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700375 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#endif
Alan Sterne041c682006-03-27 01:16:30 -0800377 err = atomic_notifier_call_chain(&xaction_notifier_list,
378 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800379 if (err & NOTIFY_STOP_MASK) {
380 rv = SI_SM_CALL_WITHOUT_DELAY;
381 goto out;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 err = smi_info->handlers->start_transaction(
384 smi_info->si_sm,
385 smi_info->curr_msg->data,
386 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700387 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800388 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 rv = SI_SM_CALL_WITHOUT_DELAY;
391 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700392 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return rv;
394}
395
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600396static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700397{
398 unsigned char msg[2];
399
400 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
401 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
402
403 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600404 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static void start_clear_flags(struct smi_info *smi_info)
408{
409 unsigned char msg[3];
410
411 /* Make sure the watchdog pre-timeout flag is not set at startup. */
412 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
413 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
414 msg[2] = WDT_PRE_TIMEOUT_INT;
415
416 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
417 smi_info->si_state = SI_CLEARING_FLAGS;
418}
419
Corey Minyard968bf7c2014-11-06 19:06:00 -0600420static void start_getting_msg_queue(struct smi_info *smi_info)
421{
422 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
423 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
424 smi_info->curr_msg->data_size = 2;
425
426 smi_info->handlers->start_transaction(
427 smi_info->si_sm,
428 smi_info->curr_msg->data,
429 smi_info->curr_msg->data_size);
430 smi_info->si_state = SI_GETTING_MESSAGES;
431}
432
433static void start_getting_events(struct smi_info *smi_info)
434{
435 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
436 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
437 smi_info->curr_msg->data_size = 2;
438
439 smi_info->handlers->start_transaction(
440 smi_info->si_sm,
441 smi_info->curr_msg->data,
442 smi_info->curr_msg->data_size);
443 smi_info->si_state = SI_GETTING_EVENTS;
444}
445
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500446static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
447{
448 smi_info->last_timeout_jiffies = jiffies;
449 mod_timer(&smi_info->si_timer, new_val);
450 smi_info->timer_running = true;
451}
452
Corey Minyardc305e3d2008-04-29 01:01:10 -0700453/*
454 * When we have a situtaion where we run out of memory and cannot
455 * allocate messages, we just leave them in the BMC and run the system
456 * polled until we can allocate some memory. Once we have some
457 * memory, we will re-enable the interrupt.
458 */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600459static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800461 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500462 smi_info->interrupt_disabled = true;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600463 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600464 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600466 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Corey Minyard968bf7c2014-11-06 19:06:00 -0600469static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500472 smi_info->interrupt_disabled = false;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600473 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600474 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600476 return false;
477}
478
479/*
480 * Allocate a message. If unable to allocate, start the interrupt
481 * disable process and return NULL. If able to allocate but
482 * interrupts are disabled, free the message and return NULL after
483 * starting the interrupt enable process.
484 */
485static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
486{
487 struct ipmi_smi_msg *msg;
488
489 msg = ipmi_alloc_smi_msg();
490 if (!msg) {
491 if (!disable_si_irq(smi_info))
492 smi_info->si_state = SI_NORMAL;
493 } else if (enable_si_irq(smi_info)) {
494 ipmi_free_smi_msg(msg);
495 msg = NULL;
496 }
497 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static void handle_flags(struct smi_info *smi_info)
501{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700502 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
504 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700505 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 start_clear_flags(smi_info);
508 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600509 if (smi_info->intf)
510 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
512 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600513 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
514 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Corey Minyard968bf7c2014-11-06 19:06:00 -0600517 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
519 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600520 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
521 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Corey Minyard968bf7c2014-11-06 19:06:00 -0600524 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700525 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700526 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700527 if (smi_info->oem_data_avail_handler(smi_info))
528 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700529 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600533/*
534 * Global enables we care about.
535 */
536#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
537 IPMI_BMC_EVT_MSG_INTR)
538
Corey Minyard95c97b52014-11-20 07:19:44 -0600539static u8 current_global_enables(struct smi_info *smi_info, u8 base,
540 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600541{
542 u8 enables = 0;
543
544 if (smi_info->supports_event_msg_buff)
545 enables |= IPMI_BMC_EVT_MSG_BUFF;
546 else
547 enables &= ~IPMI_BMC_EVT_MSG_BUFF;
548
549 if (smi_info->irq && !smi_info->interrupt_disabled)
550 enables |= IPMI_BMC_RCV_MSG_INTR;
551 else
552 enables &= ~IPMI_BMC_RCV_MSG_INTR;
553
554 if (smi_info->supports_event_msg_buff &&
555 smi_info->irq && !smi_info->interrupt_disabled)
556
557 enables |= IPMI_BMC_EVT_MSG_INTR;
558 else
559 enables &= ~IPMI_BMC_EVT_MSG_INTR;
560
Corey Minyard95c97b52014-11-20 07:19:44 -0600561 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
562
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600563 return enables;
564}
565
Corey Minyard95c97b52014-11-20 07:19:44 -0600566static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
567{
568 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
569
570 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
571
572 if ((bool)irqstate == irq_on)
573 return;
574
575 if (irq_on)
576 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
577 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
578 else
579 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static void handle_transaction_done(struct smi_info *smi_info)
583{
584 struct ipmi_smi_msg *msg;
585#ifdef DEBUG_TIMING
586 struct timeval t;
587
588 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700589 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#endif
591 switch (smi_info->si_state) {
592 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800593 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595
596 smi_info->curr_msg->rsp_size
597 = smi_info->handlers->get_result(
598 smi_info->si_sm,
599 smi_info->curr_msg->rsp,
600 IPMI_MAX_MSG_LENGTH);
601
Corey Minyardc305e3d2008-04-29 01:01:10 -0700602 /*
603 * Do this here becase deliver_recv_msg() releases the
604 * lock, and a new message can be put in during the
605 * time the lock is released.
606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 msg = smi_info->curr_msg;
608 smi_info->curr_msg = NULL;
609 deliver_recv_msg(smi_info, msg);
610 break;
611
612 case SI_GETTING_FLAGS:
613 {
614 unsigned char msg[4];
615 unsigned int len;
616
617 /* We got the flags from the SMI, now handle them. */
618 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
619 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700620 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 smi_info->si_state = SI_NORMAL;
622 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700623 /*
624 * Hmm, no flags. That's technically illegal, but
625 * don't use uninitialized data.
626 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 smi_info->si_state = SI_NORMAL;
628 } else {
629 smi_info->msg_flags = msg[3];
630 handle_flags(smi_info);
631 }
632 break;
633 }
634
635 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 {
637 unsigned char msg[3];
638
639 /* We cleared the flags. */
640 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
641 if (msg[2] != 0) {
642 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700643 dev_warn(smi_info->dev,
644 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600646 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648 }
649
650 case SI_GETTING_EVENTS:
651 {
652 smi_info->curr_msg->rsp_size
653 = smi_info->handlers->get_result(
654 smi_info->si_sm,
655 smi_info->curr_msg->rsp,
656 IPMI_MAX_MSG_LENGTH);
657
Corey Minyardc305e3d2008-04-29 01:01:10 -0700658 /*
659 * Do this here becase deliver_recv_msg() releases the
660 * lock, and a new message can be put in during the
661 * time the lock is released.
662 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 msg = smi_info->curr_msg;
664 smi_info->curr_msg = NULL;
665 if (msg->rsp[2] != 0) {
666 /* Error getting event, probably done. */
667 msg->done(msg);
668
669 /* Take off the event flag. */
670 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
671 handle_flags(smi_info);
672 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700673 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Corey Minyardc305e3d2008-04-29 01:01:10 -0700675 /*
676 * Do this before we deliver the message
677 * because delivering the message releases the
678 * lock and something else can mess with the
679 * state.
680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 handle_flags(smi_info);
682
683 deliver_recv_msg(smi_info, msg);
684 }
685 break;
686 }
687
688 case SI_GETTING_MESSAGES:
689 {
690 smi_info->curr_msg->rsp_size
691 = smi_info->handlers->get_result(
692 smi_info->si_sm,
693 smi_info->curr_msg->rsp,
694 IPMI_MAX_MSG_LENGTH);
695
Corey Minyardc305e3d2008-04-29 01:01:10 -0700696 /*
697 * Do this here becase deliver_recv_msg() releases the
698 * lock, and a new message can be put in during the
699 * time the lock is released.
700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 msg = smi_info->curr_msg;
702 smi_info->curr_msg = NULL;
703 if (msg->rsp[2] != 0) {
704 /* Error getting event, probably done. */
705 msg->done(msg);
706
707 /* Take off the msg flag. */
708 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
709 handle_flags(smi_info);
710 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700711 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Corey Minyardc305e3d2008-04-29 01:01:10 -0700713 /*
714 * Do this before we deliver the message
715 * because delivering the message releases the
716 * lock and something else can mess with the
717 * state.
718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 handle_flags(smi_info);
720
721 deliver_recv_msg(smi_info, msg);
722 }
723 break;
724 }
725
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600726 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 {
728 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600729 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600730 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* We got the flags from the SMI, now handle them. */
733 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
734 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500735 dev_warn(smi_info->dev,
736 "Couldn't get irq info: %x.\n", msg[2]);
737 dev_warn(smi_info->dev,
738 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600740 break;
741 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600742 enables = current_global_enables(smi_info, 0, &irq_on);
743 if (smi_info->si_type == SI_BT)
744 /* BT has its own interrupt enable bit. */
745 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600746 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
747 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
749 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600750 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 smi_info->handlers->start_transaction(
752 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600753 smi_info->si_state = SI_SETTING_ENABLES;
754 } else if (smi_info->supports_event_msg_buff) {
755 smi_info->curr_msg = ipmi_alloc_smi_msg();
756 if (!smi_info->curr_msg) {
757 smi_info->si_state = SI_NORMAL;
758 break;
759 }
760 start_getting_msg_queue(smi_info);
761 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700762 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700763 }
764 break;
765 }
766
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600767 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700768 {
769 unsigned char msg[4];
770
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700771 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600772 if (msg[2] != 0)
773 dev_warn(smi_info->dev,
774 "Could not set the global enables: 0x%x.\n",
775 msg[2]);
776
777 if (smi_info->supports_event_msg_buff) {
778 smi_info->curr_msg = ipmi_alloc_smi_msg();
779 if (!smi_info->curr_msg) {
780 smi_info->si_state = SI_NORMAL;
781 break;
782 }
783 start_getting_msg_queue(smi_info);
784 } else {
785 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700786 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700787 break;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790}
791
Corey Minyardc305e3d2008-04-29 01:01:10 -0700792/*
793 * Called on timeouts and events. Timeouts should pass the elapsed
794 * time, interrupts should pass in zero. Must be called with
795 * si_lock held and interrupts disabled.
796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
798 int time)
799{
800 enum si_sm_result si_sm_result;
801
802 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700803 /*
804 * There used to be a loop here that waited a little while
805 * (around 25us) before giving up. That turned out to be
806 * pointless, the minimum delays I was seeing were in the 300us
807 * range, which is far too long to wait in an interrupt. So
808 * we just run until the state machine tells us something
809 * happened or it needs a delay.
810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
812 time = 0;
813 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Corey Minyardc305e3d2008-04-29 01:01:10 -0700816 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700817 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 handle_transaction_done(smi_info);
820 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700821 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700822 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Corey Minyardc305e3d2008-04-29 01:01:10 -0700824 /*
825 * Do the before return_hosed_msg, because that
826 * releases the lock.
827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 smi_info->si_state = SI_NORMAL;
829 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700830 /*
831 * If we were handling a user message, format
832 * a response to send to the upper layer to
833 * tell it about the error.
834 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800835 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
838 }
839
Corey Minyard4ea18422008-04-29 01:01:01 -0700840 /*
841 * We prefer handling attn over new messages. But don't do
842 * this if there is not yet an upper layer to handle anything.
843 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600844 if (likely(smi_info->intf) &&
845 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 unsigned char msg[2];
847
Corey Minyarda8df1502014-11-19 11:47:17 -0600848 if (smi_info->si_state != SI_NORMAL) {
849 /*
850 * We got an ATTN, but we are doing something else.
851 * Handle the ATTN later.
852 */
853 smi_info->got_attn = true;
854 } else {
855 smi_info->got_attn = false;
856 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Corey Minyarda8df1502014-11-19 11:47:17 -0600858 /*
859 * Got a attn, send down a get message flags to see
860 * what's causing it. It would be better to handle
861 * this in the upper layer, but due to the way
862 * interrupts work with the SMI, that's not really
863 * possible.
864 */
865 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
866 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Corey Minyarda8df1502014-11-19 11:47:17 -0600868 smi_info->handlers->start_transaction(
869 smi_info->si_sm, msg, 2);
870 smi_info->si_state = SI_GETTING_FLAGS;
871 goto restart;
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
875 /* If we are currently idle, try to start the next message. */
876 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700877 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 si_sm_result = start_next_msg(smi_info);
880 if (si_sm_result != SI_SM_IDLE)
881 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700885 && (atomic_read(&smi_info->req_events))) {
886 /*
887 * We are idle and the upper layer requested that I fetch
888 * events, so do so.
889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800891
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600892 /*
893 * Take this opportunity to check the interrupt and
894 * message enable state for the BMC. The BMC can be
895 * asynchronously reset, and may thus get interrupts
896 * disable and messages disabled.
897 */
898 if (smi_info->supports_event_msg_buff || smi_info->irq) {
899 start_check_enables(smi_info);
900 } else {
901 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
902 if (!smi_info->curr_msg)
903 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800904
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600905 start_getting_events(smi_info);
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 goto restart;
908 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800909 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return si_sm_result;
911}
912
Corey Minyard89986492014-04-14 09:46:54 -0500913static void check_start_timer_thread(struct smi_info *smi_info)
914{
915 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
916 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
917
918 if (smi_info->thread)
919 wake_up_process(smi_info->thread);
920
921 start_next_msg(smi_info);
922 smi_event_handler(smi_info, 0);
923 }
924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600927 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct smi_info *smi_info = send_info;
930 enum si_sm_result result;
931 unsigned long flags;
932#ifdef DEBUG_TIMING
933 struct timeval t;
934#endif
935
Corey Minyardb874b982014-11-06 17:01:59 -0600936 BUG_ON(smi_info->waiting_msg);
937 smi_info->waiting_msg = msg;
Corey Minyardb361e272006-12-06 20:41:07 -0800938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#ifdef DEBUG_TIMING
940 do_gettimeofday(&t);
941 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
942#endif
943
944 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700945 /*
Corey Minyardb874b982014-11-06 17:01:59 -0600946 * If we are running to completion, start it and run
947 * transactions until everything is clear.
Corey Minyardbda4c302008-04-29 01:01:02 -0700948 */
Corey Minyardb874b982014-11-06 17:01:59 -0600949 smi_info->curr_msg = smi_info->waiting_msg;
950 smi_info->waiting_msg = NULL;
Corey Minyardbda4c302008-04-29 01:01:02 -0700951
952 /*
953 * Run to completion means we are single-threaded, no
954 * need for locks.
955 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 result = smi_event_handler(smi_info, 0);
958 while (result != SI_SM_IDLE) {
959 udelay(SI_SHORT_TIMEOUT_USEC);
960 result = smi_event_handler(smi_info,
961 SI_SHORT_TIMEOUT_USEC);
962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Corey Minyardf60adf42012-03-28 14:42:50 -0700966 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard89986492014-04-14 09:46:54 -0500967 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700968 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Corey Minyard7aefac22014-04-14 09:46:56 -0500971static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct smi_info *smi_info = send_info;
974 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 smi_info->run_to_completion = i_run_to_completion;
977 if (i_run_to_completion) {
978 result = smi_event_handler(smi_info, 0);
979 while (result != SI_SM_IDLE) {
980 udelay(SI_SHORT_TIMEOUT_USEC);
981 result = smi_event_handler(smi_info,
982 SI_SHORT_TIMEOUT_USEC);
983 }
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Martin Wilckae74e822010-03-10 15:23:06 -0800987/*
988 * Use -1 in the nsec value of the busy waiting timespec to tell that
989 * we are spinning in kipmid looking for something and not delaying
990 * between checks
991 */
992static inline void ipmi_si_set_not_busy(struct timespec *ts)
993{
994 ts->tv_nsec = -1;
995}
996static inline int ipmi_si_is_busy(struct timespec *ts)
997{
998 return ts->tv_nsec != -1;
999}
1000
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001001static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1002 const struct smi_info *smi_info,
1003 struct timespec *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001004{
1005 unsigned int max_busy_us = 0;
1006
1007 if (smi_info->intf_num < num_max_busy_us)
1008 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1009 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1010 ipmi_si_set_not_busy(busy_until);
1011 else if (!ipmi_si_is_busy(busy_until)) {
1012 getnstimeofday(busy_until);
1013 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
1014 } else {
1015 struct timespec now;
1016 getnstimeofday(&now);
1017 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
1018 ipmi_si_set_not_busy(busy_until);
1019 return 0;
1020 }
1021 }
1022 return 1;
1023}
1024
1025
1026/*
1027 * A busy-waiting loop for speeding up IPMI operation.
1028 *
1029 * Lousy hardware makes this hard. This is only enabled for systems
1030 * that are not BT and do not have interrupts. It starts spinning
1031 * when an operation is complete or until max_busy tells it to stop
1032 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1033 * Documentation/IPMI.txt for details.
1034 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001035static int ipmi_thread(void *data)
1036{
1037 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001038 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001039 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -08001040 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001041
Martin Wilckae74e822010-03-10 15:23:06 -08001042 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001043 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001044 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001045 int busy_wait;
1046
Corey Minyarda9a2c442005-11-07 01:00:03 -08001047 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001048 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001049
1050 /*
1051 * If the driver is doing something, there is a possible
1052 * race with the timer. If the timer handler see idle,
1053 * and the thread here sees something else, the timer
1054 * handler won't restart the timer even though it is
1055 * required. So start it here if necessary.
1056 */
1057 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1058 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1059
Corey Minyarda9a2c442005-11-07 01:00:03 -08001060 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001061 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1062 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001063 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1064 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001065 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001066 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001067 else if (smi_result == SI_SM_IDLE) {
1068 if (atomic_read(&smi_info->need_watch)) {
1069 schedule_timeout_interruptible(100);
1070 } else {
1071 /* Wait to be woken up when we are needed. */
1072 __set_current_state(TASK_INTERRUPTIBLE);
1073 schedule();
1074 }
1075 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001076 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001077 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001078 return 0;
1079}
1080
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082static void poll(void *send_info)
1083{
1084 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001085 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001086 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Corey Minyard15c62e12006-12-06 20:41:06 -08001088 /*
1089 * Make sure there is some delay in the poll loop so we can
1090 * drive time forward and timeout things.
1091 */
1092 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001093 if (!run_to_completion)
1094 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001095 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001096 if (!run_to_completion)
1097 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100static void request_events(void *send_info)
1101{
1102 struct smi_info *smi_info = send_info;
1103
Corey Minyardb874b982014-11-06 17:01:59 -06001104 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001105 return;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 atomic_set(&smi_info->req_events, 1);
1108}
1109
Corey Minyard7aefac22014-04-14 09:46:56 -05001110static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001111{
1112 struct smi_info *smi_info = send_info;
1113 unsigned long flags;
1114
1115 atomic_set(&smi_info->need_watch, enable);
1116 spin_lock_irqsave(&smi_info->si_lock, flags);
1117 check_start_timer_thread(smi_info);
1118 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1119}
1120
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001121static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123static void smi_timeout(unsigned long data)
1124{
1125 struct smi_info *smi_info = (struct smi_info *) data;
1126 enum si_sm_result smi_result;
1127 unsigned long flags;
1128 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001129 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001130 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131#ifdef DEBUG_TIMING
1132 struct timeval t;
1133#endif
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 spin_lock_irqsave(&(smi_info->si_lock), flags);
1136#ifdef DEBUG_TIMING
1137 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001138 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139#endif
1140 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001141 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * SI_USEC_PER_JIFFY);
1143 smi_result = smi_event_handler(smi_info, time_diff);
1144
Corey Minyardb0defcd2006-03-26 01:37:20 -08001145 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001147 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001148 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001149 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151
Corey Minyardc305e3d2008-04-29 01:01:10 -07001152 /*
1153 * If the state machine asks for a short delay, then shorten
1154 * the timer timeout.
1155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001157 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001158 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001160 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001161 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001164 do_mod_timer:
1165 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001166 smi_mod_timer(smi_info, timeout);
1167 else
1168 smi_info->timer_running = false;
1169 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
David Howells7d12e782006-10-05 14:55:46 +01001172static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct smi_info *smi_info = data;
1175 unsigned long flags;
1176#ifdef DEBUG_TIMING
1177 struct timeval t;
1178#endif
1179
1180 spin_lock_irqsave(&(smi_info->si_lock), flags);
1181
Corey Minyard64959e22008-04-29 01:01:07 -07001182 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184#ifdef DEBUG_TIMING
1185 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001186 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187#endif
1188 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1190 return IRQ_HANDLED;
1191}
1192
David Howells7d12e782006-10-05 14:55:46 +01001193static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001194{
1195 struct smi_info *smi_info = data;
1196 /* We need to clear the IRQ flag for the BT interface. */
1197 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1198 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1199 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001200 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001201}
1202
Corey Minyard453823b2006-03-31 02:30:39 -08001203static int smi_start_processing(void *send_info,
1204 ipmi_smi_t intf)
1205{
1206 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001207 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001208
1209 new_smi->intf = intf;
1210
Corey Minyardc45adc32007-10-18 03:07:08 -07001211 /* Try to claim any interrupts. */
1212 if (new_smi->irq_setup)
1213 new_smi->irq_setup(new_smi);
1214
Corey Minyard453823b2006-03-31 02:30:39 -08001215 /* Set up the timer that drives the interface. */
1216 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001217 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001218
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001219 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001220 * Check if the user forcefully enabled the daemon.
1221 */
1222 if (new_smi->intf_num < num_force_kipmid)
1223 enable = force_kipmid[new_smi->intf_num];
1224 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001225 * The BT interface is efficient enough to not need a thread,
1226 * and there is no need for a thread if we have interrupts.
1227 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001228 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001229 enable = 1;
1230
1231 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001232 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1233 "kipmi%d", new_smi->intf_num);
1234 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001235 dev_notice(new_smi->dev, "Could not start"
1236 " kernel thread due to error %ld, only using"
1237 " timers to drive the interface\n",
1238 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001239 new_smi->thread = NULL;
1240 }
1241 }
1242
1243 return 0;
1244}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001245
Zhao Yakui16f42322010-12-08 10:10:16 +08001246static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1247{
1248 struct smi_info *smi = send_info;
1249
1250 data->addr_src = smi->addr_source;
1251 data->dev = smi->dev;
1252 data->addr_info = smi->addr_info;
1253 get_device(smi->dev);
1254
1255 return 0;
1256}
1257
Corey Minyard7aefac22014-04-14 09:46:56 -05001258static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001259{
1260 struct smi_info *smi_info = send_info;
1261
1262 if (!enable)
1263 atomic_set(&smi_info->req_events, 0);
1264}
1265
Corey Minyardc305e3d2008-04-29 01:01:10 -07001266static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001268 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001269 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .sender = sender,
1271 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001272 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001273 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 .set_run_to_completion = set_run_to_completion,
1275 .poll = poll,
1276};
1277
Corey Minyardc305e3d2008-04-29 01:01:10 -07001278/*
1279 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1280 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Corey Minyardb0defcd2006-03-26 01:37:20 -08001283static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001284static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001285static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001288#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Corey Minyardd941aea2013-02-27 17:05:12 -08001290#ifdef CONFIG_ACPI
1291static bool si_tryacpi = 1;
1292#endif
1293#ifdef CONFIG_DMI
1294static bool si_trydmi = 1;
1295#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001296static bool si_tryplatform = 1;
1297#ifdef CONFIG_PCI
1298static bool si_trypci = 1;
1299#endif
Corey Minyard0dfe6e72014-04-14 09:46:53 -05001300static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301static char *si_type[SI_MAX_PARMS];
1302#define MAX_SI_TYPE_STR 30
1303static char si_type_str[MAX_SI_TYPE_STR];
1304static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001305static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001307static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001309static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001311static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001313static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001315static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001316static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001317static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Corey Minyardb361e272006-12-06 20:41:07 -08001319#define IPMI_IO_ADDR_SPACE 0
1320#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001321static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001322
1323static int hotmod_handler(const char *val, struct kernel_param *kp);
1324
1325module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1326MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1327 " Documentation/IPMI.txt in the kernel sources for the"
1328 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Corey Minyardd941aea2013-02-27 17:05:12 -08001330#ifdef CONFIG_ACPI
1331module_param_named(tryacpi, si_tryacpi, bool, 0);
1332MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1333 " default scan of the interfaces identified via ACPI");
1334#endif
1335#ifdef CONFIG_DMI
1336module_param_named(trydmi, si_trydmi, bool, 0);
1337MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1338 " default scan of the interfaces identified via DMI");
1339#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001340module_param_named(tryplatform, si_tryplatform, bool, 0);
1341MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1342 " default scan of the interfaces identified via platform"
1343 " interfaces like openfirmware");
1344#ifdef CONFIG_PCI
1345module_param_named(trypci, si_trypci, bool, 0);
1346MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1347 " default scan of the interfaces identified via pci");
1348#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349module_param_named(trydefaults, si_trydefaults, bool, 0);
1350MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1351 " default scan of the KCS and SMIC interface at the standard"
1352 " address");
1353module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1354MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1355 " interface separated by commas. The types are 'kcs',"
1356 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1357 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001358module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1360 " addresses separated by commas. Only use if an interface"
1361 " is in memory. Otherwise, set it to zero or leave"
1362 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001363module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1365 " addresses separated by commas. Only use if an interface"
1366 " is a port. Otherwise, set it to zero or leave"
1367 " it blank.");
1368module_param_array(irqs, int, &num_irqs, 0);
1369MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1370 " addresses separated by commas. Only use if an interface"
1371 " has an interrupt. Otherwise, set it to zero or leave"
1372 " it blank.");
1373module_param_array(regspacings, int, &num_regspacings, 0);
1374MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1375 " and each successive register used by the interface. For"
1376 " instance, if the start address is 0xca2 and the spacing"
1377 " is 2, then the second address is at 0xca4. Defaults"
1378 " to 1.");
1379module_param_array(regsizes, int, &num_regsizes, 0);
1380MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1381 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1382 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1383 " the 8-bit IPMI register has to be read from a larger"
1384 " register.");
1385module_param_array(regshifts, int, &num_regshifts, 0);
1386MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1387 " IPMI register, in bits. For instance, if the data"
1388 " is read from a 32-bit word and the IPMI data is in"
1389 " bit 8-15, then the shift would be 8");
1390module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1391MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1392 " the controller. Normally this is 0x20, but can be"
1393 " overridden by this parm. This is an array indexed"
1394 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001395module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1396MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1397 " disabled(0). Normally the IPMI driver auto-detects"
1398 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001399module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001400MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1401 " specified or found, default is 1. Setting to 0"
1402 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001403module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1404MODULE_PARM_DESC(kipmid_max_busy_us,
1405 "Max time (in microseconds) to busy-wait for IPMI data before"
1406 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1407 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409
Corey Minyardb0defcd2006-03-26 01:37:20 -08001410static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001412 if (info->si_type == SI_BT)
1413 /* Disable the interrupt in the BT interface. */
1414 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1415 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418static int std_irq_setup(struct smi_info *info)
1419{
1420 int rv;
1421
Corey Minyardb0defcd2006-03-26 01:37:20 -08001422 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return 0;
1424
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001425 if (info->si_type == SI_BT) {
1426 rv = request_irq(info->irq,
1427 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001428 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001429 DEVICE_NAME,
1430 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001431 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001432 /* Enable the interrupt in the BT interface. */
1433 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1434 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1435 } else
1436 rv = request_irq(info->irq,
1437 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001438 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001439 DEVICE_NAME,
1440 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001442 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1443 " running polled\n",
1444 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 info->irq = 0;
1446 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001447 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001448 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
1451 return rv;
1452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1455{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001456 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Corey Minyardb0defcd2006-03-26 01:37:20 -08001458 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
1461static void port_outb(struct si_sm_io *io, unsigned int offset,
1462 unsigned char b)
1463{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001464 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Corey Minyardb0defcd2006-03-26 01:37:20 -08001466 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1470{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001471 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Corey Minyardb0defcd2006-03-26 01:37:20 -08001473 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
1476static void port_outw(struct si_sm_io *io, unsigned int offset,
1477 unsigned char b)
1478{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001479 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Corey Minyardb0defcd2006-03-26 01:37:20 -08001481 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
1484static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1485{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001486 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Corey Minyardb0defcd2006-03-26 01:37:20 -08001488 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491static void port_outl(struct si_sm_io *io, unsigned int offset,
1492 unsigned char b)
1493{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001494 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Corey Minyardb0defcd2006-03-26 01:37:20 -08001496 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499static void port_cleanup(struct smi_info *info)
1500{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001501 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001502 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Corey Minyardb0defcd2006-03-26 01:37:20 -08001504 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001505 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001506 release_region(addr + idx * info->io.regspacing,
1507 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511static int port_setup(struct smi_info *info)
1512{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001513 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001514 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Corey Minyardb0defcd2006-03-26 01:37:20 -08001516 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return -ENODEV;
1518
1519 info->io_cleanup = port_cleanup;
1520
Corey Minyardc305e3d2008-04-29 01:01:10 -07001521 /*
1522 * Figure out the actual inb/inw/inl/etc routine to use based
1523 * upon the register size.
1524 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 switch (info->io.regsize) {
1526 case 1:
1527 info->io.inputb = port_inb;
1528 info->io.outputb = port_outb;
1529 break;
1530 case 2:
1531 info->io.inputb = port_inw;
1532 info->io.outputb = port_outw;
1533 break;
1534 case 4:
1535 info->io.inputb = port_inl;
1536 info->io.outputb = port_outl;
1537 break;
1538 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001539 dev_warn(info->dev, "Invalid register size: %d\n",
1540 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return -EINVAL;
1542 }
1543
Corey Minyardc305e3d2008-04-29 01:01:10 -07001544 /*
1545 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001546 * tables. This causes problems when trying to register the
1547 * entire I/O region. Therefore we must register each I/O
1548 * port separately.
1549 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001550 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001551 if (request_region(addr + idx * info->io.regspacing,
1552 info->io.regsize, DEVICE_NAME) == NULL) {
1553 /* Undo allocations */
1554 while (idx--) {
1555 release_region(addr + idx * info->io.regspacing,
1556 info->io.regsize);
1557 }
1558 return -EIO;
1559 }
1560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return 0;
1562}
1563
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001564static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 return readb((io->addr)+(offset * io->regspacing));
1567}
1568
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001569static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 unsigned char b)
1571{
1572 writeb(b, (io->addr)+(offset * io->regspacing));
1573}
1574
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001575static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001578 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001581static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 unsigned char b)
1583{
1584 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1585}
1586
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001587static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001590 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001593static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 unsigned char b)
1595{
1596 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1597}
1598
1599#ifdef readq
1600static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1601{
1602 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001603 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606static void mem_outq(struct si_sm_io *io, unsigned int offset,
1607 unsigned char b)
1608{
1609 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1610}
1611#endif
1612
1613static void mem_cleanup(struct smi_info *info)
1614{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001615 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 int mapsize;
1617
1618 if (info->io.addr) {
1619 iounmap(info->io.addr);
1620
1621 mapsize = ((info->io_size * info->io.regspacing)
1622 - (info->io.regspacing - info->io.regsize));
1623
Corey Minyardb0defcd2006-03-26 01:37:20 -08001624 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628static int mem_setup(struct smi_info *info)
1629{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001630 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 int mapsize;
1632
Corey Minyardb0defcd2006-03-26 01:37:20 -08001633 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return -ENODEV;
1635
1636 info->io_cleanup = mem_cleanup;
1637
Corey Minyardc305e3d2008-04-29 01:01:10 -07001638 /*
1639 * Figure out the actual readb/readw/readl/etc routine to use based
1640 * upon the register size.
1641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 switch (info->io.regsize) {
1643 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001644 info->io.inputb = intf_mem_inb;
1645 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 break;
1647 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001648 info->io.inputb = intf_mem_inw;
1649 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 break;
1651 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001652 info->io.inputb = intf_mem_inl;
1653 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 break;
1655#ifdef readq
1656 case 8:
1657 info->io.inputb = mem_inq;
1658 info->io.outputb = mem_outq;
1659 break;
1660#endif
1661 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001662 dev_warn(info->dev, "Invalid register size: %d\n",
1663 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return -EINVAL;
1665 }
1666
Corey Minyardc305e3d2008-04-29 01:01:10 -07001667 /*
1668 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * unusual looking calculation, but it avoids claiming any
1670 * more memory than it has to. It will claim everything
1671 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001672 * register.
1673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 mapsize = ((info->io_size * info->io.regspacing)
1675 - (info->io.regspacing - info->io.regsize));
1676
Corey Minyardb0defcd2006-03-26 01:37:20 -08001677 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return -EIO;
1679
Corey Minyardb0defcd2006-03-26 01:37:20 -08001680 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001682 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -EIO;
1684 }
1685 return 0;
1686}
1687
Corey Minyardb361e272006-12-06 20:41:07 -08001688/*
1689 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1690 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1691 * Options are:
1692 * rsp=<regspacing>
1693 * rsi=<regsize>
1694 * rsh=<regshift>
1695 * irq=<irq>
1696 * ipmb=<ipmb addr>
1697 */
1698enum hotmod_op { HM_ADD, HM_REMOVE };
1699struct hotmod_vals {
1700 char *name;
1701 int val;
1702};
1703static struct hotmod_vals hotmod_ops[] = {
1704 { "add", HM_ADD },
1705 { "remove", HM_REMOVE },
1706 { NULL }
1707};
1708static struct hotmod_vals hotmod_si[] = {
1709 { "kcs", SI_KCS },
1710 { "smic", SI_SMIC },
1711 { "bt", SI_BT },
1712 { NULL }
1713};
1714static struct hotmod_vals hotmod_as[] = {
1715 { "mem", IPMI_MEM_ADDR_SPACE },
1716 { "i/o", IPMI_IO_ADDR_SPACE },
1717 { NULL }
1718};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001719
Corey Minyardb361e272006-12-06 20:41:07 -08001720static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1721{
1722 char *s;
1723 int i;
1724
1725 s = strchr(*curr, ',');
1726 if (!s) {
1727 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1728 return -EINVAL;
1729 }
1730 *s = '\0';
1731 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001732 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001733 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001734 *val = v[i].val;
1735 *curr = s;
1736 return 0;
1737 }
1738 }
1739
1740 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1741 return -EINVAL;
1742}
1743
Corey Minyard1d5636c2006-12-10 02:19:08 -08001744static int check_hotmod_int_op(const char *curr, const char *option,
1745 const char *name, int *val)
1746{
1747 char *n;
1748
1749 if (strcmp(curr, name) == 0) {
1750 if (!option) {
1751 printk(KERN_WARNING PFX
1752 "No option given for '%s'\n",
1753 curr);
1754 return -EINVAL;
1755 }
1756 *val = simple_strtoul(option, &n, 0);
1757 if ((*n != '\0') || (*option == '\0')) {
1758 printk(KERN_WARNING PFX
1759 "Bad option given for '%s'\n",
1760 curr);
1761 return -EINVAL;
1762 }
1763 return 1;
1764 }
1765 return 0;
1766}
1767
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001768static struct smi_info *smi_info_alloc(void)
1769{
1770 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1771
Corey Minyardf60adf42012-03-28 14:42:50 -07001772 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001773 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001774 return info;
1775}
1776
Corey Minyardb361e272006-12-06 20:41:07 -08001777static int hotmod_handler(const char *val, struct kernel_param *kp)
1778{
1779 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001780 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001781 char *next, *curr, *s, *n, *o;
1782 enum hotmod_op op;
1783 enum si_type si_type;
1784 int addr_space;
1785 unsigned long addr;
1786 int regspacing;
1787 int regsize;
1788 int regshift;
1789 int irq;
1790 int ipmb;
1791 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001792 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001793 struct smi_info *info;
1794
1795 if (!str)
1796 return -ENOMEM;
1797
1798 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001799 len = strlen(str);
1800 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001801 while ((ival >= 0) && isspace(str[ival])) {
1802 str[ival] = '\0';
1803 ival--;
1804 }
1805
1806 for (curr = str; curr; curr = next) {
1807 regspacing = 1;
1808 regsize = 1;
1809 regshift = 0;
1810 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001811 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001812
1813 next = strchr(curr, ':');
1814 if (next) {
1815 *next = '\0';
1816 next++;
1817 }
1818
1819 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1820 if (rv)
1821 break;
1822 op = ival;
1823
1824 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1825 if (rv)
1826 break;
1827 si_type = ival;
1828
1829 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1830 if (rv)
1831 break;
1832
1833 s = strchr(curr, ',');
1834 if (s) {
1835 *s = '\0';
1836 s++;
1837 }
1838 addr = simple_strtoul(curr, &n, 0);
1839 if ((*n != '\0') || (*curr == '\0')) {
1840 printk(KERN_WARNING PFX "Invalid hotmod address"
1841 " '%s'\n", curr);
1842 break;
1843 }
1844
1845 while (s) {
1846 curr = s;
1847 s = strchr(curr, ',');
1848 if (s) {
1849 *s = '\0';
1850 s++;
1851 }
1852 o = strchr(curr, '=');
1853 if (o) {
1854 *o = '\0';
1855 o++;
1856 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001857 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1858 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001859 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001860 else if (rv)
1861 continue;
1862 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1863 if (rv < 0)
1864 goto out;
1865 else if (rv)
1866 continue;
1867 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1868 if (rv < 0)
1869 goto out;
1870 else if (rv)
1871 continue;
1872 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1873 if (rv < 0)
1874 goto out;
1875 else if (rv)
1876 continue;
1877 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1878 if (rv < 0)
1879 goto out;
1880 else if (rv)
1881 continue;
1882
1883 rv = -EINVAL;
1884 printk(KERN_WARNING PFX
1885 "Invalid hotmod option '%s'\n",
1886 curr);
1887 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001888 }
1889
1890 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001891 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001892 if (!info) {
1893 rv = -ENOMEM;
1894 goto out;
1895 }
1896
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001897 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001898 info->si_type = si_type;
1899 info->io.addr_data = addr;
1900 info->io.addr_type = addr_space;
1901 if (addr_space == IPMI_MEM_ADDR_SPACE)
1902 info->io_setup = mem_setup;
1903 else
1904 info->io_setup = port_setup;
1905
1906 info->io.addr = NULL;
1907 info->io.regspacing = regspacing;
1908 if (!info->io.regspacing)
1909 info->io.regspacing = DEFAULT_REGSPACING;
1910 info->io.regsize = regsize;
1911 if (!info->io.regsize)
1912 info->io.regsize = DEFAULT_REGSPACING;
1913 info->io.regshift = regshift;
1914 info->irq = irq;
1915 if (info->irq)
1916 info->irq_setup = std_irq_setup;
1917 info->slave_addr = ipmb;
1918
Corey Minyardd02b3702014-01-24 14:00:53 -06001919 rv = add_smi(info);
1920 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001921 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001922 goto out;
1923 }
1924 rv = try_smi_init(info);
1925 if (rv) {
1926 cleanup_one_si(info);
1927 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001928 }
Corey Minyardb361e272006-12-06 20:41:07 -08001929 } else {
1930 /* remove */
1931 struct smi_info *e, *tmp_e;
1932
1933 mutex_lock(&smi_infos_lock);
1934 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1935 if (e->io.addr_type != addr_space)
1936 continue;
1937 if (e->si_type != si_type)
1938 continue;
1939 if (e->io.addr_data == addr)
1940 cleanup_one_si(e);
1941 }
1942 mutex_unlock(&smi_infos_lock);
1943 }
1944 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001945 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001946 out:
1947 kfree(str);
1948 return rv;
1949}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001950
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001951static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001953 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001954 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 struct smi_info *info;
1956
Corey Minyardb0defcd2006-03-26 01:37:20 -08001957 for (i = 0; i < SI_MAX_PARMS; i++) {
1958 if (!ports[i] && !addrs[i])
1959 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001961 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001962 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001963 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001965 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001966 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001967
Corey Minyard1d5636c2006-12-10 02:19:08 -08001968 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001969 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001970 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001971 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001972 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001973 info->si_type = SI_BT;
1974 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001975 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001976 "for interface %d, was invalid: %s\n",
1977 i, si_type[i]);
1978 kfree(info);
1979 continue;
1980 }
1981
1982 if (ports[i]) {
1983 /* An I/O port */
1984 info->io_setup = port_setup;
1985 info->io.addr_data = ports[i];
1986 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1987 } else if (addrs[i]) {
1988 /* A memory port */
1989 info->io_setup = mem_setup;
1990 info->io.addr_data = addrs[i];
1991 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1992 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001993 printk(KERN_WARNING PFX "Interface type specified "
1994 "for interface %d, but port and address were "
1995 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001996 kfree(info);
1997 continue;
1998 }
1999
2000 info->io.addr = NULL;
2001 info->io.regspacing = regspacings[i];
2002 if (!info->io.regspacing)
2003 info->io.regspacing = DEFAULT_REGSPACING;
2004 info->io.regsize = regsizes[i];
2005 if (!info->io.regsize)
2006 info->io.regsize = DEFAULT_REGSPACING;
2007 info->io.regshift = regshifts[i];
2008 info->irq = irqs[i];
2009 if (info->irq)
2010 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002011 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002012
Yinghai Lu7faefea2010-08-10 18:03:10 -07002013 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002014 if (try_smi_init(info))
2015 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002016 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002017 } else {
2018 kfree(info);
2019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002021 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Len Brown84663612005-08-24 12:09:07 -04002024#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026#include <linux/acpi.h>
2027
Corey Minyardc305e3d2008-04-29 01:01:10 -07002028/*
2029 * Once we get an ACPI failure, we don't try any more, because we go
2030 * through the tables sequentially. Once we don't find a table, there
2031 * are no more.
2032 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002033static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002036static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2037 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 struct smi_info *smi_info = context;
2040 unsigned long flags;
2041#ifdef DEBUG_TIMING
2042 struct timeval t;
2043#endif
2044
2045 spin_lock_irqsave(&(smi_info->si_lock), flags);
2046
Corey Minyard64959e22008-04-29 01:01:07 -07002047 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#ifdef DEBUG_TIMING
2050 do_gettimeofday(&t);
2051 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
2052#endif
2053 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2055
2056 return ACPI_INTERRUPT_HANDLED;
2057}
2058
Corey Minyardb0defcd2006-03-26 01:37:20 -08002059static void acpi_gpe_irq_cleanup(struct smi_info *info)
2060{
2061 if (!info->irq)
2062 return;
2063
2064 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2065}
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067static int acpi_gpe_irq_setup(struct smi_info *info)
2068{
2069 acpi_status status;
2070
Corey Minyardb0defcd2006-03-26 01:37:20 -08002071 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 return 0;
2073
2074 /* FIXME - is level triggered right? */
2075 status = acpi_install_gpe_handler(NULL,
2076 info->irq,
2077 ACPI_GPE_LEVEL_TRIGGERED,
2078 &ipmi_acpi_gpe,
2079 info);
2080 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002081 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2082 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 info->irq = 0;
2084 return -EINVAL;
2085 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002086 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002087 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return 0;
2089 }
2090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/*
2093 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002094 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 */
2096struct SPMITable {
2097 s8 Signature[4];
2098 u32 Length;
2099 u8 Revision;
2100 u8 Checksum;
2101 s8 OEMID[6];
2102 s8 OEMTableID[8];
2103 s8 OEMRevision[4];
2104 s8 CreatorID[4];
2105 s8 CreatorRevision[4];
2106 u8 InterfaceType;
2107 u8 IPMIlegacy;
2108 s16 SpecificationRevision;
2109
2110 /*
2111 * Bit 0 - SCI interrupt supported
2112 * Bit 1 - I/O APIC/SAPIC
2113 */
2114 u8 InterruptType;
2115
Corey Minyardc305e3d2008-04-29 01:01:10 -07002116 /*
2117 * If bit 0 of InterruptType is set, then this is the SCI
2118 * interrupt in the GPEx_STS register.
2119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 u8 GPE;
2121
2122 s16 Reserved;
2123
Corey Minyardc305e3d2008-04-29 01:01:10 -07002124 /*
2125 * If bit 1 of InterruptType is set, then this is the I/O
2126 * APIC/SAPIC interrupt.
2127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 u32 GlobalSystemInterrupt;
2129
2130 /* The actual register address. */
2131 struct acpi_generic_address addr;
2132
2133 u8 UID[4];
2134
2135 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2136};
2137
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002138static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002141 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002144 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2145 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
2147
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002148 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002149 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002150 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002151 return -ENOMEM;
2152 }
2153
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002154 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002155 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002158 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002160 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002163 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002166 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002168 case 4: /* SSIF, just ignore */
2169 kfree(info);
2170 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002172 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2173 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002174 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return -EIO;
2176 }
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (spmi->InterruptType & 1) {
2179 /* We've got a GPE interrupt. */
2180 info->irq = spmi->GPE;
2181 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 } else if (spmi->InterruptType & 2) {
2183 /* We've got an APIC/SAPIC interrupt. */
2184 info->irq = spmi->GlobalSystemInterrupt;
2185 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 } else {
2187 /* Use the default interrupt setting. */
2188 info->irq = 0;
2189 info->irq_setup = NULL;
2190 }
2191
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002192 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002193 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002194 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002195 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002196 info->io.regspacing = DEFAULT_REGSPACING;
2197 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002198 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002199 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002201 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002203 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002204 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002206 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 } else {
2208 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002209 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return -EIO;
2211 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002212 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002214 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2215 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2216 info->io.addr_data, info->io.regsize, info->io.regspacing,
2217 info->irq);
2218
Corey Minyardd02b3702014-01-24 14:00:53 -06002219 rv = add_smi(info);
2220 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002221 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Corey Minyardd02b3702014-01-24 14:00:53 -06002223 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002225
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002226static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002227{
2228 acpi_status status;
2229 struct SPMITable *spmi;
2230 int i;
2231
2232 if (acpi_disabled)
2233 return;
2234
2235 if (acpi_failure)
2236 return;
2237
2238 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002239 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2240 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002241 if (status != AE_OK)
2242 return;
2243
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002244 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002245 }
2246}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002247
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002248static int ipmi_pnp_probe(struct pnp_dev *dev,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002249 const struct pnp_device_id *dev_id)
2250{
2251 struct acpi_device *acpi_dev;
2252 struct smi_info *info;
Yinghai Lua9e31762010-09-22 13:04:53 -07002253 struct resource *res, *res_second;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002254 acpi_handle handle;
2255 acpi_status status;
2256 unsigned long long tmp;
Corey Minyardd02b3702014-01-24 14:00:53 -06002257 int rv;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002258
2259 acpi_dev = pnp_acpi_device(dev);
2260 if (!acpi_dev)
2261 return -ENODEV;
2262
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002263 info = smi_info_alloc();
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002264 if (!info)
2265 return -ENOMEM;
2266
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002267 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002268 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002269
2270 handle = acpi_dev->handle;
Zhao Yakui16f42322010-12-08 10:10:16 +08002271 info->addr_info.acpi_info.acpi_handle = handle;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002272
2273 /* _IFT tells us the interface type: KCS, BT, etc */
2274 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2275 if (ACPI_FAILURE(status))
2276 goto err_free;
2277
2278 switch (tmp) {
2279 case 1:
2280 info->si_type = SI_KCS;
2281 break;
2282 case 2:
2283 info->si_type = SI_SMIC;
2284 break;
2285 case 3:
2286 info->si_type = SI_BT;
2287 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002288 case 4: /* SSIF, just ignore */
2289 goto err_free;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002290 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002291 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002292 goto err_free;
2293 }
2294
Myron Stowe279fbd02010-05-26 14:43:52 -07002295 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2296 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002297 info->io_setup = port_setup;
2298 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002299 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002300 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2301 if (res) {
2302 info->io_setup = mem_setup;
2303 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2304 }
2305 }
2306 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002307 dev_err(&dev->dev, "no I/O or memory address\n");
2308 goto err_free;
2309 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002310 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002311
2312 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lua9e31762010-09-22 13:04:53 -07002313 res_second = pnp_get_resource(dev,
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002314 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2315 IORESOURCE_IO : IORESOURCE_MEM,
2316 1);
Yinghai Lua9e31762010-09-22 13:04:53 -07002317 if (res_second) {
2318 if (res_second->start > info->io.addr_data)
2319 info->io.regspacing = res_second->start - info->io.addr_data;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002320 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002321 info->io.regsize = DEFAULT_REGSPACING;
2322 info->io.regshift = 0;
2323
2324 /* If _GPE exists, use it; otherwise use standard interrupts */
2325 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2326 if (ACPI_SUCCESS(status)) {
2327 info->irq = tmp;
2328 info->irq_setup = acpi_gpe_irq_setup;
2329 } else if (pnp_irq_valid(dev, 0)) {
2330 info->irq = pnp_irq(dev, 0);
2331 info->irq_setup = std_irq_setup;
2332 }
2333
Myron Stowe8c8eae22010-05-26 14:43:51 -07002334 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002335 pnp_set_drvdata(dev, info);
2336
Myron Stowe279fbd02010-05-26 14:43:52 -07002337 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2338 res, info->io.regsize, info->io.regspacing,
2339 info->irq);
2340
Corey Minyardd02b3702014-01-24 14:00:53 -06002341 rv = add_smi(info);
2342 if (rv)
2343 kfree(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07002344
Corey Minyardd02b3702014-01-24 14:00:53 -06002345 return rv;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002346
2347err_free:
2348 kfree(info);
2349 return -EINVAL;
2350}
2351
Bill Pemberton39af33f2012-11-19 13:26:26 -05002352static void ipmi_pnp_remove(struct pnp_dev *dev)
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002353{
2354 struct smi_info *info = pnp_get_drvdata(dev);
2355
2356 cleanup_one_si(info);
2357}
2358
2359static const struct pnp_device_id pnp_dev_table[] = {
2360 {"IPI0001", 0},
2361 {"", 0},
2362};
2363
2364static struct pnp_driver ipmi_pnp_driver = {
2365 .name = DEVICE_NAME,
2366 .probe = ipmi_pnp_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002367 .remove = ipmi_pnp_remove,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002368 .id_table = pnp_dev_table,
2369};
Jordan_Hargrave@Dell.coma798e2d2013-09-05 06:36:35 -05002370
2371MODULE_DEVICE_TABLE(pnp, pnp_dev_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372#endif
2373
Matt Domscha9fad4c2006-01-11 12:17:44 -08002374#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002375struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 u8 type;
2377 u8 addr_space;
2378 unsigned long base_addr;
2379 u8 irq;
2380 u8 offset;
2381 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002382};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002384static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002385 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Jeff Garzik18552562007-10-03 15:15:40 -04002387 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 unsigned long base_addr;
2389 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002390 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Corey Minyardb0defcd2006-03-26 01:37:20 -08002392 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 memcpy(&base_addr, data+8, sizeof(unsigned long));
2395 if (len >= 0x11) {
2396 if (base_addr & 1) {
2397 /* I/O */
2398 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002399 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002400 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002402 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2405 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002406 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Corey Minyardb0defcd2006-03-26 01:37:20 -08002408 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002411 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002412 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002414 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 break;
2416 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002417 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 break;
2419 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002420 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 break;
2422 default:
2423 /* Some other interface, just ignore it. */
2424 return -EIO;
2425 }
2426 } else {
2427 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002428 /*
2429 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002430 * address should be 1 if the address is I/O and 0 if
2431 * the address is in memory. So many systems get that
2432 * wrong (and all that I have seen are I/O) so we just
2433 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002434 * memory should use the newer spec, anyway.
2435 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002436 dmi->base_addr = base_addr & 0xfffe;
2437 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2438 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440
Corey Minyardb0defcd2006-03-26 01:37:20 -08002441 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Corey Minyardb0defcd2006-03-26 01:37:20 -08002443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002446static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Corey Minyarde8b33612005-09-06 15:18:45 -07002448 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002450 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002451 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002452 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002453 return;
2454 }
2455
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002456 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002457 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Corey Minyarde8b33612005-09-06 15:18:45 -07002459 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002460 case 0x01: /* KCS */
2461 info->si_type = SI_KCS;
2462 break;
2463 case 0x02: /* SMIC */
2464 info->si_type = SI_SMIC;
2465 break;
2466 case 0x03: /* BT */
2467 info->si_type = SI_BT;
2468 break;
2469 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002470 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002471 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473
Corey Minyardb0defcd2006-03-26 01:37:20 -08002474 switch (ipmi_data->addr_space) {
2475 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002477 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2478 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Corey Minyardb0defcd2006-03-26 01:37:20 -08002480 case IPMI_IO_ADDR_SPACE:
2481 info->io_setup = port_setup;
2482 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2483 break;
2484
2485 default:
2486 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002487 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002488 ipmi_data->addr_space);
2489 return;
2490 }
2491 info->io.addr_data = ipmi_data->base_addr;
2492
2493 info->io.regspacing = ipmi_data->offset;
2494 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 info->io.regspacing = DEFAULT_REGSPACING;
2496 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002497 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 info->slave_addr = ipmi_data->slave_addr;
2500
Corey Minyardb0defcd2006-03-26 01:37:20 -08002501 info->irq = ipmi_data->irq;
2502 if (info->irq)
2503 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002505 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2506 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2507 info->io.addr_data, info->io.regsize, info->io.regspacing,
2508 info->irq);
2509
Yinghai Lu7faefea2010-08-10 18:03:10 -07002510 if (add_smi(info))
2511 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002512}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002514static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002515{
Jeff Garzik18552562007-10-03 15:15:40 -04002516 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002517 struct dmi_ipmi_data data;
2518 int rv;
2519
2520 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002521 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002522 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2523 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002524 if (!rv)
2525 try_init_dmi(&data);
2526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002528#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530#ifdef CONFIG_PCI
2531
Corey Minyardb0defcd2006-03-26 01:37:20 -08002532#define PCI_ERMC_CLASSCODE 0x0C0700
2533#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2534#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2535#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2536#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2537#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539#define PCI_HP_VENDOR_ID 0x103C
2540#define PCI_MMC_DEVICE_ID 0x121A
2541#define PCI_MMC_ADDR_CW 0x10
2542
Corey Minyardb0defcd2006-03-26 01:37:20 -08002543static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002545 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Corey Minyardb0defcd2006-03-26 01:37:20 -08002547 pci_disable_device(pdev);
2548}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002550static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002551{
2552 if (info->si_type == SI_KCS) {
2553 unsigned char status;
2554 int regspacing;
2555
2556 info->io.regsize = DEFAULT_REGSIZE;
2557 info->io.regshift = 0;
2558 info->io_size = 2;
2559 info->handlers = &kcs_smi_handlers;
2560
2561 /* detect 1, 4, 16byte spacing */
2562 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2563 info->io.regspacing = regspacing;
2564 if (info->io_setup(info)) {
2565 dev_err(info->dev,
2566 "Could not setup I/O space\n");
2567 return DEFAULT_REGSPACING;
2568 }
2569 /* write invalid cmd */
2570 info->io.outputb(&info->io, 1, 0x10);
2571 /* read status back */
2572 status = info->io.inputb(&info->io, 1);
2573 info->io_cleanup(info);
2574 if (status)
2575 return regspacing;
2576 regspacing *= 4;
2577 }
2578 }
2579 return DEFAULT_REGSPACING;
2580}
2581
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002582static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002583 const struct pci_device_id *ent)
2584{
2585 int rv;
2586 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2587 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002589 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002590 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002591 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002592
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002593 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002594 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002595
2596 switch (class_type) {
2597 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2598 info->si_type = SI_SMIC;
2599 break;
2600
2601 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2602 info->si_type = SI_KCS;
2603 break;
2604
2605 case PCI_ERMC_CLASSCODE_TYPE_BT:
2606 info->si_type = SI_BT;
2607 break;
2608
2609 default:
2610 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002611 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002612 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Corey Minyardb0defcd2006-03-26 01:37:20 -08002615 rv = pci_enable_device(pdev);
2616 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002617 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002618 kfree(info);
2619 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
2621
Corey Minyardb0defcd2006-03-26 01:37:20 -08002622 info->addr_source_cleanup = ipmi_pci_cleanup;
2623 info->addr_source_data = pdev;
2624
Corey Minyardb0defcd2006-03-26 01:37:20 -08002625 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2626 info->io_setup = port_setup;
2627 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2628 } else {
2629 info->io_setup = mem_setup;
2630 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002632 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Corey Minyarda6c16c22012-10-16 15:53:40 -05002634 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2635 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002636 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Corey Minyardb0defcd2006-03-26 01:37:20 -08002638 info->irq = pdev->irq;
2639 if (info->irq)
2640 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Corey Minyard50c812b2006-03-26 01:37:21 -08002642 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002643 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002644
Myron Stowe279fbd02010-05-26 14:43:52 -07002645 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2646 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2647 info->irq);
2648
Corey Minyardd02b3702014-01-24 14:00:53 -06002649 rv = add_smi(info);
2650 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002651 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002652 pci_disable_device(pdev);
2653 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002654
Corey Minyardd02b3702014-01-24 14:00:53 -06002655 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002656}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Bill Pemberton39af33f2012-11-19 13:26:26 -05002658static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002659{
Corey Minyardfca3b742007-05-08 00:23:59 -07002660 struct smi_info *info = pci_get_drvdata(pdev);
2661 cleanup_one_si(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002662 pci_disable_device(pdev);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Corey Minyardb0defcd2006-03-26 01:37:20 -08002665static struct pci_device_id ipmi_pci_devices[] = {
2666 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002667 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2668 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002669};
2670MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2671
2672static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002673 .name = DEVICE_NAME,
2674 .id_table = ipmi_pci_devices,
2675 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002676 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002677};
2678#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Grant Likelyb1608d62011-05-18 11:19:24 -06002680static struct of_device_id ipmi_match[];
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002681static int ipmi_probe(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002682{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002683#ifdef CONFIG_OF
Grant Likelyb1608d62011-05-18 11:19:24 -06002684 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002685 struct smi_info *info;
2686 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002687 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002688 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002689 int ret;
2690 int proplen;
2691
Myron Stowe279fbd02010-05-26 14:43:52 -07002692 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002693
Grant Likelyb1608d62011-05-18 11:19:24 -06002694 match = of_match_device(ipmi_match, &dev->dev);
2695 if (!match)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002696 return -EINVAL;
2697
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002698 if (!of_device_is_available(np))
2699 return -EINVAL;
2700
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002701 ret = of_address_to_resource(np, 0, &resource);
2702 if (ret) {
2703 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2704 return ret;
2705 }
2706
Stephen Rothwell9c250992007-08-15 16:42:12 +10002707 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002708 if (regsize && proplen != 4) {
2709 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2710 return -EINVAL;
2711 }
2712
Stephen Rothwell9c250992007-08-15 16:42:12 +10002713 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002714 if (regspacing && proplen != 4) {
2715 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2716 return -EINVAL;
2717 }
2718
Stephen Rothwell9c250992007-08-15 16:42:12 +10002719 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002720 if (regshift && proplen != 4) {
2721 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2722 return -EINVAL;
2723 }
2724
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002725 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002726
2727 if (!info) {
2728 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002729 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002730 return -ENOMEM;
2731 }
2732
Grant Likelyb1608d62011-05-18 11:19:24 -06002733 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002734 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002735 info->irq_setup = std_irq_setup;
2736
Nate Case3b7ec112008-05-14 16:05:39 -07002737 if (resource.flags & IORESOURCE_IO) {
2738 info->io_setup = port_setup;
2739 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2740 } else {
2741 info->io_setup = mem_setup;
2742 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2743 }
2744
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002745 info->io.addr_data = resource.start;
2746
Rob Herringda81c3b2010-11-16 14:33:50 -06002747 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2748 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2749 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002750
Grant Likely61c7a082010-04-13 16:12:29 -07002751 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002752 info->dev = &dev->dev;
2753
Myron Stowe279fbd02010-05-26 14:43:52 -07002754 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002755 info->io.addr_data, info->io.regsize, info->io.regspacing,
2756 info->irq);
2757
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002758 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002759
Corey Minyardd02b3702014-01-24 14:00:53 -06002760 ret = add_smi(info);
2761 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002762 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002763 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002764 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002765#endif
Yinghai Lu7faefea2010-08-10 18:03:10 -07002766 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002767}
2768
Bill Pemberton39af33f2012-11-19 13:26:26 -05002769static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002770{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002771#ifdef CONFIG_OF
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002772 cleanup_one_si(dev_get_drvdata(&dev->dev));
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002773#endif
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002774 return 0;
2775}
2776
2777static struct of_device_id ipmi_match[] =
2778{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002779 { .type = "ipmi", .compatible = "ipmi-kcs",
2780 .data = (void *)(unsigned long) SI_KCS },
2781 { .type = "ipmi", .compatible = "ipmi-smic",
2782 .data = (void *)(unsigned long) SI_SMIC },
2783 { .type = "ipmi", .compatible = "ipmi-bt",
2784 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002785 {},
2786};
2787
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002788static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002789 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002790 .name = DEVICE_NAME,
Grant Likely40182942010-04-13 16:13:02 -07002791 .owner = THIS_MODULE,
2792 .of_match_table = ipmi_match,
2793 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002794 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002795 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002796};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002797
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002798#ifdef CONFIG_PARISC
2799static int ipmi_parisc_probe(struct parisc_device *dev)
2800{
2801 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002802 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002803
2804 info = smi_info_alloc();
2805
2806 if (!info) {
2807 dev_err(&dev->dev,
2808 "could not allocate memory for PARISC probe\n");
2809 return -ENOMEM;
2810 }
2811
2812 info->si_type = SI_KCS;
2813 info->addr_source = SI_DEVICETREE;
2814 info->io_setup = mem_setup;
2815 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2816 info->io.addr_data = dev->hpa.start;
2817 info->io.regsize = 1;
2818 info->io.regspacing = 1;
2819 info->io.regshift = 0;
2820 info->irq = 0; /* no interrupt */
2821 info->irq_setup = NULL;
2822 info->dev = &dev->dev;
2823
2824 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2825
2826 dev_set_drvdata(&dev->dev, info);
2827
Corey Minyardd02b3702014-01-24 14:00:53 -06002828 rv = add_smi(info);
2829 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002830 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002831 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002832 }
2833
2834 return 0;
2835}
2836
2837static int ipmi_parisc_remove(struct parisc_device *dev)
2838{
2839 cleanup_one_si(dev_get_drvdata(&dev->dev));
2840 return 0;
2841}
2842
2843static struct parisc_device_id ipmi_parisc_tbl[] = {
2844 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2845 { 0, }
2846};
2847
2848static struct parisc_driver ipmi_parisc_driver = {
2849 .name = "ipmi",
2850 .id_table = ipmi_parisc_tbl,
2851 .probe = ipmi_parisc_probe,
2852 .remove = ipmi_parisc_remove,
2853};
2854#endif /* CONFIG_PARISC */
2855
Corey Minyard40112ae2009-04-21 12:24:03 -07002856static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Corey Minyard50c812b2006-03-26 01:37:21 -08002858 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002861 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002862 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2863 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002864 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002866 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002867 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 smi_result = smi_info->handlers->event(
2869 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002870 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 break;
2872 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002873 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002874 /*
2875 * We couldn't get the state machine to run, so whatever's at
2876 * the port is probably not an IPMI SMI interface.
2877 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002878 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Corey Minyard40112ae2009-04-21 12:24:03 -07002880 return 0;
2881}
2882
2883static int try_get_dev_id(struct smi_info *smi_info)
2884{
2885 unsigned char msg[2];
2886 unsigned char *resp;
2887 unsigned long resp_len;
2888 int rv = 0;
2889
2890 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2891 if (!resp)
2892 return -ENOMEM;
2893
2894 /*
2895 * Do a Get Device ID command, since it comes back with some
2896 * useful info.
2897 */
2898 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2899 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2900 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2901
2902 rv = wait_for_msg_done(smi_info);
2903 if (rv)
2904 goto out;
2905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2907 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Corey Minyardd8c98612007-10-18 03:07:11 -07002909 /* Check and record info from the get device id, in case we need it. */
2910 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 out:
2913 kfree(resp);
2914 return rv;
2915}
2916
Corey Minyard40112ae2009-04-21 12:24:03 -07002917static int try_enable_event_buffer(struct smi_info *smi_info)
2918{
2919 unsigned char msg[3];
2920 unsigned char *resp;
2921 unsigned long resp_len;
2922 int rv = 0;
2923
2924 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2925 if (!resp)
2926 return -ENOMEM;
2927
2928 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2929 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2930 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2931
2932 rv = wait_for_msg_done(smi_info);
2933 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002934 printk(KERN_WARNING PFX "Error getting response from get"
2935 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002936 " enabled.\n");
2937 goto out;
2938 }
2939
2940 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2941 resp, IPMI_MAX_MSG_LENGTH);
2942
2943 if (resp_len < 4 ||
2944 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2945 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2946 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002947 printk(KERN_WARNING PFX "Invalid return from get global"
2948 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002949 rv = -EINVAL;
2950 goto out;
2951 }
2952
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002953 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07002954 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002955 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07002956 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002957 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002958
2959 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2960 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2961 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2962 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2963
2964 rv = wait_for_msg_done(smi_info);
2965 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002966 printk(KERN_WARNING PFX "Error getting response from set"
2967 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002968 " enabled.\n");
2969 goto out;
2970 }
2971
2972 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2973 resp, IPMI_MAX_MSG_LENGTH);
2974
2975 if (resp_len < 3 ||
2976 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2977 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002978 printk(KERN_WARNING PFX "Invalid return from get global,"
2979 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002980 rv = -EINVAL;
2981 goto out;
2982 }
2983
2984 if (resp[2] != 0)
2985 /*
2986 * An error when setting the event buffer bit means
2987 * that the event buffer is not supported.
2988 */
2989 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002990 else
2991 smi_info->supports_event_msg_buff = true;
2992
Corey Minyard40112ae2009-04-21 12:24:03 -07002993 out:
2994 kfree(resp);
2995 return rv;
2996}
2997
Alexey Dobriyan07412732011-05-26 16:25:55 -07002998static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003000 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Alexey Dobriyan07412732011-05-26 16:25:55 -07003002 return seq_printf(m, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
3004
Alexey Dobriyan07412732011-05-26 16:25:55 -07003005static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Al Virod9dda782013-03-31 18:16:14 -04003007 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Alexey Dobriyan07412732011-05-26 16:25:55 -07003010static const struct file_operations smi_type_proc_ops = {
3011 .open = smi_type_proc_open,
3012 .read = seq_read,
3013 .llseek = seq_lseek,
3014 .release = single_release,
3015};
3016
3017static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3018{
3019 struct smi_info *smi = m->private;
3020
3021 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003022 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003023 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003024 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003025 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003026 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003027 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003028 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003029 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003030 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003031 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003032 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003033 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003034 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003035 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003036 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003037 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003038 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003039 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003040 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003041 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003042 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003043 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003044 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003045 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003046}
3047
Alexey Dobriyan07412732011-05-26 16:25:55 -07003048static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003049{
Al Virod9dda782013-03-31 18:16:14 -04003050 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003051}
Corey Minyardb361e272006-12-06 20:41:07 -08003052
Alexey Dobriyan07412732011-05-26 16:25:55 -07003053static const struct file_operations smi_si_stats_proc_ops = {
3054 .open = smi_si_stats_proc_open,
3055 .read = seq_read,
3056 .llseek = seq_lseek,
3057 .release = single_release,
3058};
3059
3060static int smi_params_proc_show(struct seq_file *m, void *v)
3061{
3062 struct smi_info *smi = m->private;
3063
3064 return seq_printf(m,
Corey Minyardb361e272006-12-06 20:41:07 -08003065 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3066 si_to_str[smi->si_type],
3067 addr_space_to_str[smi->io.addr_type],
3068 smi->io.addr_data,
3069 smi->io.regspacing,
3070 smi->io.regsize,
3071 smi->io.regshift,
3072 smi->irq,
3073 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
Alexey Dobriyan07412732011-05-26 16:25:55 -07003076static int smi_params_proc_open(struct inode *inode, struct file *file)
3077{
Al Virod9dda782013-03-31 18:16:14 -04003078 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003079}
3080
3081static const struct file_operations smi_params_proc_ops = {
3082 .open = smi_params_proc_open,
3083 .read = seq_read,
3084 .llseek = seq_lseek,
3085 .release = single_release,
3086};
3087
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003088/*
3089 * oem_data_avail_to_receive_msg_avail
3090 * @info - smi_info structure with msg_flags set
3091 *
3092 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3093 * Returns 1 indicating need to re-run handle_flags().
3094 */
3095static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3096{
Corey Minyarde8b33612005-09-06 15:18:45 -07003097 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003098 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003099 return 1;
3100}
3101
3102/*
3103 * setup_dell_poweredge_oem_data_handler
3104 * @info - smi_info.device_id must be populated
3105 *
3106 * Systems that match, but have firmware version < 1.40 may assert
3107 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3108 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3109 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3110 * as RECEIVE_MSG_AVAIL instead.
3111 *
3112 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3113 * assert the OEM[012] bits, and if it did, the driver would have to
3114 * change to handle that properly, we don't actually check for the
3115 * firmware version.
3116 * Device ID = 0x20 BMC on PowerEdge 8G servers
3117 * Device Revision = 0x80
3118 * Firmware Revision1 = 0x01 BMC version 1.40
3119 * Firmware Revision2 = 0x40 BCD encoded
3120 * IPMI Version = 0x51 IPMI 1.5
3121 * Manufacturer ID = A2 02 00 Dell IANA
3122 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003123 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3124 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3125 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003126 */
3127#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3128#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3129#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003130#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003131static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3132{
3133 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003134 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003135 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3136 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003137 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003138 smi_info->oem_data_avail_handler =
3139 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003140 } else if (ipmi_version_major(id) < 1 ||
3141 (ipmi_version_major(id) == 1 &&
3142 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003143 smi_info->oem_data_avail_handler =
3144 oem_data_avail_to_receive_msg_avail;
3145 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003146 }
3147}
3148
Corey Minyardea940272005-11-07 00:59:59 -08003149#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3150static void return_hosed_msg_badsize(struct smi_info *smi_info)
3151{
3152 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3153
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003154 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003155 msg->rsp[0] = msg->data[0] | 4;
3156 msg->rsp[1] = msg->data[1];
3157 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3158 msg->rsp_size = 3;
3159 smi_info->curr_msg = NULL;
3160 deliver_recv_msg(smi_info, msg);
3161}
3162
3163/*
3164 * dell_poweredge_bt_xaction_handler
3165 * @info - smi_info.device_id must be populated
3166 *
3167 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3168 * not respond to a Get SDR command if the length of the data
3169 * requested is exactly 0x3A, which leads to command timeouts and no
3170 * data returned. This intercepts such commands, and causes userspace
3171 * callers to try again with a different-sized buffer, which succeeds.
3172 */
3173
3174#define STORAGE_NETFN 0x0A
3175#define STORAGE_CMD_GET_SDR 0x23
3176static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3177 unsigned long unused,
3178 void *in)
3179{
3180 struct smi_info *smi_info = in;
3181 unsigned char *data = smi_info->curr_msg->data;
3182 unsigned int size = smi_info->curr_msg->data_size;
3183 if (size >= 8 &&
3184 (data[0]>>2) == STORAGE_NETFN &&
3185 data[1] == STORAGE_CMD_GET_SDR &&
3186 data[7] == 0x3A) {
3187 return_hosed_msg_badsize(smi_info);
3188 return NOTIFY_STOP;
3189 }
3190 return NOTIFY_DONE;
3191}
3192
3193static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3194 .notifier_call = dell_poweredge_bt_xaction_handler,
3195};
3196
3197/*
3198 * setup_dell_poweredge_bt_xaction_handler
3199 * @info - smi_info.device_id must be filled in already
3200 *
3201 * Fills in smi_info.device_id.start_transaction_pre_hook
3202 * when we know what function to use there.
3203 */
3204static void
3205setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3206{
3207 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003208 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003209 smi_info->si_type == SI_BT)
3210 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3211}
3212
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003213/*
3214 * setup_oem_data_handler
3215 * @info - smi_info.device_id must be filled in already
3216 *
3217 * Fills in smi_info.device_id.oem_data_available_handler
3218 * when we know what function to use there.
3219 */
3220
3221static void setup_oem_data_handler(struct smi_info *smi_info)
3222{
3223 setup_dell_poweredge_oem_data_handler(smi_info);
3224}
3225
Corey Minyardea940272005-11-07 00:59:59 -08003226static void setup_xaction_handlers(struct smi_info *smi_info)
3227{
3228 setup_dell_poweredge_bt_xaction_handler(smi_info);
3229}
3230
Corey Minyarda9a2c442005-11-07 01:00:03 -08003231static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3232{
Corey Minyardb874b982014-11-06 17:01:59 -06003233 if (smi_info->thread != NULL)
3234 kthread_stop(smi_info->thread);
3235 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003236 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003237}
3238
Bill Pemberton0bbed202012-11-19 13:24:36 -05003239static struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003241 int type;
3242 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003243} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003244{
3245 { .type = SI_KCS, .port = 0xca2 },
3246 { .type = SI_SMIC, .port = 0xca9 },
3247 { .type = SI_BT, .port = 0xe4 },
3248 { .port = 0 }
3249};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003251static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003252{
3253 struct smi_info *info;
3254 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Corey Minyardb0defcd2006-03-26 01:37:20 -08003256 for (i = 0; ; i++) {
3257 if (!ipmi_defaults[i].port)
3258 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003259#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003260 if (check_legacy_ioport(ipmi_defaults[i].port))
3261 continue;
3262#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003263 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003264 if (!info)
3265 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003266
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003267 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003268
3269 info->si_type = ipmi_defaults[i].type;
3270 info->io_setup = port_setup;
3271 info->io.addr_data = ipmi_defaults[i].port;
3272 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3273
3274 info->io.addr = NULL;
3275 info->io.regspacing = DEFAULT_REGSPACING;
3276 info->io.regsize = DEFAULT_REGSPACING;
3277 info->io.regshift = 0;
3278
Matthew Garrett2407d772010-05-26 14:43:46 -07003279 if (add_smi(info) == 0) {
3280 if ((try_smi_init(info)) == 0) {
3281 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003282 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003283 " state machine at %s address 0x%lx\n",
3284 si_to_str[info->si_type],
3285 addr_space_to_str[info->io.addr_type],
3286 info->io.addr_data);
3287 } else
3288 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003289 } else {
3290 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003291 }
3292 }
3293}
3294
3295static int is_new_interface(struct smi_info *info)
3296{
3297 struct smi_info *e;
3298
3299 list_for_each_entry(e, &smi_infos, link) {
3300 if (e->io.addr_type != info->io.addr_type)
3301 continue;
3302 if (e->io.addr_data == info->io.addr_data)
3303 return 0;
3304 }
3305
3306 return 1;
3307}
3308
Matthew Garrett2407d772010-05-26 14:43:46 -07003309static int add_smi(struct smi_info *new_smi)
3310{
3311 int rv = 0;
3312
Myron Stowe279fbd02010-05-26 14:43:52 -07003313 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003314 ipmi_addr_src_to_str(new_smi->addr_source),
3315 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003316 mutex_lock(&smi_infos_lock);
3317 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003318 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003319 rv = -EBUSY;
3320 goto out_err;
3321 }
3322
3323 printk(KERN_CONT "\n");
3324
3325 /* So we know not to free it unless we have allocated one. */
3326 new_smi->intf = NULL;
3327 new_smi->si_sm = NULL;
3328 new_smi->handlers = NULL;
3329
3330 list_add_tail(&new_smi->link, &smi_infos);
3331
3332out_err:
3333 mutex_unlock(&smi_infos_lock);
3334 return rv;
3335}
3336
Corey Minyardb0defcd2006-03-26 01:37:20 -08003337static int try_smi_init(struct smi_info *new_smi)
3338{
Matthew Garrett2407d772010-05-26 14:43:46 -07003339 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003340 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003341
Myron Stowe279fbd02010-05-26 14:43:52 -07003342 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003343 " machine at %s address 0x%lx, slave address 0x%x,"
3344 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003345 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003346 si_to_str[new_smi->si_type],
3347 addr_space_to_str[new_smi->io.addr_type],
3348 new_smi->io.addr_data,
3349 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003350
Corey Minyardb0defcd2006-03-26 01:37:20 -08003351 switch (new_smi->si_type) {
3352 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003354 break;
3355
3356 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003358 break;
3359
3360 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003362 break;
3363
3364 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 /* No support for anything else yet. */
3366 rv = -EIO;
3367 goto out_err;
3368 }
3369
3370 /* Allocate the state machine's data and initialize it. */
3371 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003372 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003373 printk(KERN_ERR PFX
3374 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 rv = -ENOMEM;
3376 goto out_err;
3377 }
3378 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3379 &new_smi->io);
3380
3381 /* Now that we know the I/O size, we can set up the I/O. */
3382 rv = new_smi->io_setup(new_smi);
3383 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003384 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 goto out_err;
3386 }
3387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 /* Do low-level detection first. */
3389 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003390 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003391 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 rv = -ENODEV;
3393 goto out_err;
3394 }
3395
Corey Minyardc305e3d2008-04-29 01:01:10 -07003396 /*
3397 * Attempt a get device id command. If it fails, we probably
3398 * don't have a BMC here.
3399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003401 if (rv) {
3402 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003403 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003404 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003408 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003409 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003410
Corey Minyardb874b982014-11-06 17:01:59 -06003411 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 new_smi->curr_msg = NULL;
3413 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003414 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003415 for (i = 0; i < SI_NUM_STATS; i++)
3416 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Corey Minyard7aefac22014-04-14 09:46:56 -05003418 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003419 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003420 new_smi->intf_num = smi_num;
3421 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
Corey Minyard40112ae2009-04-21 12:24:03 -07003423 rv = try_enable_event_buffer(new_smi);
3424 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003425 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003426
Corey Minyardc305e3d2008-04-29 01:01:10 -07003427 /*
3428 * Start clearing the flags before we enable interrupts or the
3429 * timer to avoid racing with the timer.
3430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003432
3433 /*
3434 * IRQ is defined to be set when non-zero. req_events will
3435 * cause a global flags check that will enable interrupts.
3436 */
3437 if (new_smi->irq) {
3438 new_smi->interrupt_disabled = false;
3439 atomic_set(&new_smi->req_events, 1);
3440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Corey Minyard50c812b2006-03-26 01:37:21 -08003442 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003443 /*
3444 * If we don't already have a device from something
3445 * else (like PCI), then register a new one.
3446 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003447 new_smi->pdev = platform_device_alloc("ipmi_si",
3448 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003449 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003450 printk(KERN_ERR PFX
3451 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003452 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003453 }
3454 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003455 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003456
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003457 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003458 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003459 printk(KERN_ERR PFX
3460 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003461 " %d\n",
3462 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003463 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003464 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003465 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003466 }
3467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 rv = ipmi_register_smi(&handlers,
3469 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003470 &new_smi->device_id,
3471 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003472 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003474 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3475 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 goto out_err_stop_timer;
3477 }
3478
3479 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003480 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003481 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003483 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 goto out_err_stop_timer;
3485 }
3486
3487 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003488 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003489 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003491 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 goto out_err_stop_timer;
3493 }
3494
Corey Minyardb361e272006-12-06 20:41:07 -08003495 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003496 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003497 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003498 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003499 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003500 goto out_err_stop_timer;
3501 }
3502
Myron Stowe279fbd02010-05-26 14:43:52 -07003503 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3504 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506 return 0;
3507
3508 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003509 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511 out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003512 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Matthew Garrett2407d772010-05-26 14:43:46 -07003514 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003515 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003516 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003517 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003518 }
3519
3520 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003521 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003522 new_smi->irq_cleanup = NULL;
3523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Corey Minyardc305e3d2008-04-29 01:01:10 -07003525 /*
3526 * Wait until we know that we are out of any interrupt
3527 * handlers might have been running before we freed the
3528 * interrupt.
3529 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003530 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
3532 if (new_smi->si_sm) {
3533 if (new_smi->handlers)
3534 new_smi->handlers->cleanup(new_smi->si_sm);
3535 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003536 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003538 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003539 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003540 new_smi->addr_source_cleanup = NULL;
3541 }
3542 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003543 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003544 new_smi->io_cleanup = NULL;
3545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
Matthew Garrett2407d772010-05-26 14:43:46 -07003547 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003548 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003549 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003550 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 return rv;
3553}
3554
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003555static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 int i;
3558 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003559 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003560 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003561 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
3563 if (initialized)
3564 return 0;
3565 initialized = 1;
3566
Corey Minyardf2afae42013-02-27 17:05:13 -08003567 if (si_tryplatform) {
3568 rv = platform_driver_register(&ipmi_driver);
3569 if (rv) {
3570 printk(KERN_ERR PFX "Unable to register "
3571 "driver: %d\n", rv);
3572 return rv;
3573 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003574 }
3575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 /* Parse out the si_type string into its components. */
3577 str = si_type_str;
3578 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003579 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 si_type[i] = str;
3581 str = strchr(str, ',');
3582 if (str) {
3583 *str = '\0';
3584 str++;
3585 } else {
3586 break;
3587 }
3588 }
3589 }
3590
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003591 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003593 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003594 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003595 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003596
Corey Minyardb0defcd2006-03-26 01:37:20 -08003597#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003598 if (si_trypci) {
3599 rv = pci_register_driver(&ipmi_pci_driver);
3600 if (rv)
3601 printk(KERN_ERR PFX "Unable to register "
3602 "PCI driver: %d\n", rv);
3603 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003604 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003605 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003606#endif
3607
Matthew Garrett754d4532010-05-26 14:43:47 -07003608#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003609 if (si_tryacpi) {
3610 pnp_register_driver(&ipmi_pnp_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003611 pnp_registered = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08003612 }
Matthew Garrett754d4532010-05-26 14:43:47 -07003613#endif
3614
3615#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003616 if (si_trydmi)
3617 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003618#endif
3619
3620#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003621 if (si_tryacpi)
3622 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003623#endif
3624
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003625#ifdef CONFIG_PARISC
3626 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003627 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003628 /* poking PC IO addresses will crash machine, don't do it */
3629 si_trydefaults = 0;
3630#endif
3631
Matthew Garrett06ee4592010-05-26 14:43:49 -07003632 /* We prefer devices with interrupts, but in the case of a machine
3633 with multiple BMCs we assume that there will be several instances
3634 of a given type so if we succeed in registering a type then also
3635 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003636
Matthew Garrett2407d772010-05-26 14:43:46 -07003637 mutex_lock(&smi_infos_lock);
3638 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003639 /* Try to register a device if it has an IRQ and we either
3640 haven't successfully registered a device yet or this
3641 device has the same type as one we successfully registered */
3642 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003643 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003644 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003645 }
3646 }
3647 }
3648
Matthew Garrett06ee4592010-05-26 14:43:49 -07003649 /* type will only have been set if we successfully registered an si */
3650 if (type) {
3651 mutex_unlock(&smi_infos_lock);
3652 return 0;
3653 }
3654
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003655 /* Fall back to the preferred device */
3656
3657 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003658 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003659 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003660 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003661 }
3662 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003663 }
3664 mutex_unlock(&smi_infos_lock);
3665
Matthew Garrett06ee4592010-05-26 14:43:49 -07003666 if (type)
3667 return 0;
3668
Corey Minyardb0defcd2006-03-26 01:37:20 -08003669 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003670 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003671 if (list_empty(&smi_infos)) {
3672 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003673 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003674 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003675 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003676 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Corey Minyardd6dfd132006-03-31 02:30:41 -08003679 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003680 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003681 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003682 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003683 printk(KERN_WARNING PFX
3684 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003686 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003687 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690}
3691module_init(init_ipmi_si);
3692
Corey Minyardb361e272006-12-06 20:41:07 -08003693static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694{
Matthew Garrett2407d772010-05-26 14:43:46 -07003695 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Corey Minyardb0defcd2006-03-26 01:37:20 -08003697 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 return;
3699
Corey Minyardb874b982014-11-06 17:01:59 -06003700 if (to_clean->intf) {
3701 ipmi_smi_t intf = to_clean->intf;
3702
3703 to_clean->intf = NULL;
3704 rv = ipmi_unregister_smi(intf);
3705 if (rv) {
3706 pr_err(PFX "Unable to unregister device: errno=%d\n",
3707 rv);
3708 }
3709 }
3710
Takao Indoh567eded2014-10-06 14:17:53 -05003711 if (to_clean->dev)
3712 dev_set_drvdata(to_clean->dev, NULL);
3713
Corey Minyardb0defcd2006-03-26 01:37:20 -08003714 list_del(&to_clean->link);
3715
Corey Minyardc305e3d2008-04-29 01:01:10 -07003716 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003717 * Make sure that interrupts, the timer and the thread are
3718 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003719 */
Corey Minyardb874b982014-11-06 17:01:59 -06003720 if (to_clean->irq_cleanup)
3721 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003722 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Corey Minyardc305e3d2008-04-29 01:01:10 -07003724 /*
3725 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003726 * in the BMC. Note that timers and CPU interrupts are off,
3727 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003728 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003729 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003730 poll(to_clean);
3731 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003732 }
3733 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003734 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3735 poll(to_clean);
3736 schedule_timeout_uninterruptible(1);
3737 }
3738
Matthew Garrett2407d772010-05-26 14:43:46 -07003739 if (to_clean->handlers)
3740 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
3742 kfree(to_clean->si_sm);
3743
Corey Minyardb0defcd2006-03-26 01:37:20 -08003744 if (to_clean->addr_source_cleanup)
3745 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003746 if (to_clean->io_cleanup)
3747 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003748
3749 if (to_clean->dev_registered)
3750 platform_device_unregister(to_clean->pdev);
3751
3752 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753}
3754
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003755static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003757 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Corey Minyardb0defcd2006-03-26 01:37:20 -08003759 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 return;
3761
Corey Minyardb0defcd2006-03-26 01:37:20 -08003762#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003763 if (pci_registered)
3764 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003765#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003766#ifdef CONFIG_ACPI
Yinghai Lu561f8182010-09-22 13:05:15 -07003767 if (pnp_registered)
3768 pnp_unregister_driver(&ipmi_pnp_driver);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003769#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003770#ifdef CONFIG_PARISC
3771 if (parisc_registered)
3772 unregister_parisc_driver(&ipmi_parisc_driver);
3773#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003774
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003775 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003776
Corey Minyardd6dfd132006-03-31 02:30:41 -08003777 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003778 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3779 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003780 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782module_exit(cleanup_ipmi_si);
3783
3784MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003785MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003786MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3787 " system interfaces.");