blob: 5bd6d5b974cd7807c97a97f17ad78e10321ee8ed [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>
Stephen Rothwell11c675c2008-05-23 16:22:42 +100067#include <linux/of_device.h>
68#include <linux/of_platform.h>
Rob Herring672d8ea2010-11-16 14:33:51 -060069#include <linux/of_address.h>
70#include <linux/of_irq.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070071
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -050072#ifdef CONFIG_PARISC
73#include <asm/hardware.h> /* for register_parisc_driver() stuff */
74#include <asm/parisc-device.h>
75#endif
76
Corey Minyardb361e272006-12-06 20:41:07 -080077#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Measure times between events in the driver. */
80#undef DEBUG_TIMING
81
82/* Call every 10 ms. */
83#define SI_TIMEOUT_TIME_USEC 10000
84#define SI_USEC_PER_JIFFY (1000000/HZ)
85#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
86#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070087 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89enum si_intf_state {
90 SI_NORMAL,
91 SI_GETTING_FLAGS,
92 SI_GETTING_EVENTS,
93 SI_CLEARING_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 SI_GETTING_MESSAGES,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -060095 SI_CHECKING_ENABLES,
96 SI_SETTING_ENABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* FIXME - add watchdog stuff. */
98};
99
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700100/* Some BT-specific defines we need here. */
101#define IPMI_BT_INTMASK_REG 2
102#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
103#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105enum si_type {
106 SI_KCS, SI_SMIC, SI_BT
107};
Corey Minyardb361e272006-12-06 20:41:07 -0800108static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Corey Minyard50c812b2006-03-26 01:37:21 -0800110#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700111
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600112static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700113
114/*
115 * Indexes into stats[] in smi_info below.
116 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700117enum si_stat_indexes {
118 /*
119 * Number of times the driver requested a timer while an operation
120 * was in progress.
121 */
122 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700123
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700124 /*
125 * Number of times the driver requested a timer while nothing was in
126 * progress.
127 */
128 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700129
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700130 /* Number of times the interface was idle while being polled. */
131 SI_STAT_idles,
132
133 /* Number of interrupts the driver handled. */
134 SI_STAT_interrupts,
135
136 /* Number of time the driver got an ATTN from the hardware. */
137 SI_STAT_attentions,
138
139 /* Number of times the driver requested flags from the hardware. */
140 SI_STAT_flag_fetches,
141
142 /* Number of times the hardware didn't follow the state machine. */
143 SI_STAT_hosed_count,
144
145 /* Number of completed messages. */
146 SI_STAT_complete_transactions,
147
148 /* Number of IPMI events received from the hardware. */
149 SI_STAT_events,
150
151 /* Number of watchdog pretimeouts. */
152 SI_STAT_watchdog_pretimeouts,
153
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400154 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700155 SI_STAT_incoming_messages,
156
157
158 /* This *must* remain last, add new values above this. */
159 SI_NUM_STATS
160};
Corey Minyard64959e22008-04-29 01:01:07 -0700161
Corey Minyardc305e3d2008-04-29 01:01:10 -0700162struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800163 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 ipmi_smi_t intf;
165 struct si_sm_data *si_sm;
Corey Minyard81d02b72015-06-13 10:34:25 -0500166 const struct si_sm_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 enum si_type si_type;
168 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600169 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct ipmi_smi_msg *curr_msg;
171 enum si_intf_state si_state;
172
Corey Minyardc305e3d2008-04-29 01:01:10 -0700173 /*
174 * Used to handle the various types of I/O that can occur with
175 * IPMI
176 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct si_sm_io io;
178 int (*io_setup)(struct smi_info *info);
179 void (*io_cleanup)(struct smi_info *info);
180 int (*irq_setup)(struct smi_info *info);
181 void (*irq_cleanup)(struct smi_info *info);
182 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700183 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800184 void (*addr_source_cleanup)(struct smi_info *info);
185 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Corey Minyardc305e3d2008-04-29 01:01:10 -0700187 /*
188 * Per-OEM handler, called from handle_flags(). Returns 1
189 * when handle_flags() needs to be re-run or 0 indicating it
190 * set si_state itself.
191 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700192 int (*oem_data_avail_handler)(struct smi_info *smi_info);
193
Corey Minyardc305e3d2008-04-29 01:01:10 -0700194 /*
195 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
196 * is set to hold the flags until we are done handling everything
197 * from the flags.
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define RECEIVE_MSG_AVAIL 0x01
200#define EVENT_MSG_BUFFER_FULL 0x02
201#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700202#define OEM0_DATA_AVAIL 0x20
203#define OEM1_DATA_AVAIL 0x40
204#define OEM2_DATA_AVAIL 0x80
205#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700206 OEM1_DATA_AVAIL | \
207 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned char msg_flags;
209
Corey Minyard40112ae2009-04-21 12:24:03 -0700210 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500211 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700212
Corey Minyardc305e3d2008-04-29 01:01:10 -0700213 /*
214 * If set to true, this will request events the next time the
215 * state machine is idle.
216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 atomic_t req_events;
218
Corey Minyardc305e3d2008-04-29 01:01:10 -0700219 /*
220 * If true, run the state machine to completion on every send
221 * call. Generally used after a panic to make sure stuff goes
222 * out.
223 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500224 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* The I/O port of an SI interface. */
227 int port;
228
Corey Minyardc305e3d2008-04-29 01:01:10 -0700229 /*
230 * The space between start addresses of the two ports. For
231 * instance, if the first port is 0xca2 and the spacing is 4, then
232 * the second port is 0xca6.
233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 unsigned int spacing;
235
236 /* zero if no irq; */
237 int irq;
238
239 /* The timer for this si. */
240 struct timer_list si_timer;
241
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500242 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
243 bool timer_running;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* The time (in jiffies) the last timeout occurred at. */
246 unsigned long last_timeout_jiffies;
247
Corey Minyard89986492014-04-14 09:46:54 -0500248 /* Are we waiting for the events, pretimeouts, received msgs? */
249 atomic_t need_watch;
250
Corey Minyardc305e3d2008-04-29 01:01:10 -0700251 /*
252 * The driver will disable interrupts when it gets into a
253 * situation where it cannot handle messages due to lack of
254 * memory. Once that situation clears up, it will re-enable
255 * interrupts.
256 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500257 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600259 /*
260 * Does the BMC support events?
261 */
262 bool supports_event_msg_buff;
263
Corey Minyarda8df1502014-11-19 11:47:17 -0600264 /*
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500265 * Can we clear the global enables receive irq bit?
266 */
267 bool cannot_clear_recv_irq_bit;
268
269 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600270 * Did we get an attention that we did not handle?
271 */
272 bool got_attn;
273
Corey Minyard50c812b2006-03-26 01:37:21 -0800274 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700275 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Corey Minyard50c812b2006-03-26 01:37:21 -0800277 /* Driver model stuff. */
278 struct device *dev;
279 struct platform_device *pdev;
280
Corey Minyardc305e3d2008-04-29 01:01:10 -0700281 /*
282 * True if we allocated the device, false if it came from
283 * someplace else (like PCI).
284 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500285 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Slave address, could be reported from DMI. */
288 unsigned char slave_addr;
289
290 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700291 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800292
Corey Minyardc305e3d2008-04-29 01:01:10 -0700293 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800294
295 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800296 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297};
298
Corey Minyard64959e22008-04-29 01:01:07 -0700299#define smi_inc_stat(smi, stat) \
300 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
301#define smi_get_stat(smi, stat) \
302 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
303
Corey Minyarda51f4a82006-10-03 01:13:59 -0700304#define SI_MAX_PARMS 4
305
306static int force_kipmid[SI_MAX_PARMS];
307static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700308#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500309static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700310#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500311#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500312static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500313#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700314
Martin Wilckae74e822010-03-10 15:23:06 -0800315static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
316static int num_max_busy_us;
317
Corey Minyard7aefac22014-04-14 09:46:56 -0500318static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800319
Matthew Garrett2407d772010-05-26 14:43:46 -0700320static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800321static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800322static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600323static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800324
John Stultzf93aae92015-01-07 14:24:28 -0800325#ifdef DEBUG_TIMING
326void debug_timestamp(char *msg)
327{
John Stultz48862ea22015-01-07 14:24:29 -0800328 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800329
John Stultz48862ea22015-01-07 14:24:29 -0800330 getnstimeofday64(&t);
331 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800332}
333#else
334#define debug_timestamp(x)
335#endif
336
Alan Sterne041c682006-03-27 01:16:30 -0800337static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700338static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800339{
Alan Sterne041c682006-03-27 01:16:30 -0800340 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static void deliver_recv_msg(struct smi_info *smi_info,
344 struct ipmi_smi_msg *msg)
345{
Corey Minyard7adf5792012-03-28 14:42:49 -0700346 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600347 if (smi_info->intf)
348 ipmi_smi_msg_received(smi_info->intf, msg);
349 else
350 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800353static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct ipmi_smi_msg *msg = smi_info->curr_msg;
356
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800357 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
358 cCode = IPMI_ERR_UNSPECIFIED;
359 /* else use it as is */
360
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300361 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 msg->rsp[0] = msg->data[0] | 4;
363 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800364 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 msg->rsp_size = 3;
366
367 smi_info->curr_msg = NULL;
368 deliver_recv_msg(smi_info, msg);
369}
370
371static enum si_sm_result start_next_msg(struct smi_info *smi_info)
372{
373 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Corey Minyardb874b982014-11-06 17:01:59 -0600375 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 smi_info->curr_msg = NULL;
377 rv = SI_SM_IDLE;
378 } else {
379 int err;
380
Corey Minyardb874b982014-11-06 17:01:59 -0600381 smi_info->curr_msg = smi_info->waiting_msg;
382 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800383 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800384 err = atomic_notifier_call_chain(&xaction_notifier_list,
385 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800386 if (err & NOTIFY_STOP_MASK) {
387 rv = SI_SM_CALL_WITHOUT_DELAY;
388 goto out;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 err = smi_info->handlers->start_transaction(
391 smi_info->si_sm,
392 smi_info->curr_msg->data,
393 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700394 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800395 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 rv = SI_SM_CALL_WITHOUT_DELAY;
398 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700399 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return rv;
401}
402
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600403static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700404{
405 unsigned char msg[2];
406
407 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
408 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
409
410 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600411 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static void start_clear_flags(struct smi_info *smi_info)
415{
416 unsigned char msg[3];
417
418 /* Make sure the watchdog pre-timeout flag is not set at startup. */
419 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
420 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
421 msg[2] = WDT_PRE_TIMEOUT_INT;
422
423 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
424 smi_info->si_state = SI_CLEARING_FLAGS;
425}
426
Corey Minyard968bf7c2014-11-06 19:06:00 -0600427static void start_getting_msg_queue(struct smi_info *smi_info)
428{
429 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
430 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
431 smi_info->curr_msg->data_size = 2;
432
433 smi_info->handlers->start_transaction(
434 smi_info->si_sm,
435 smi_info->curr_msg->data,
436 smi_info->curr_msg->data_size);
437 smi_info->si_state = SI_GETTING_MESSAGES;
438}
439
440static void start_getting_events(struct smi_info *smi_info)
441{
442 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
443 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
444 smi_info->curr_msg->data_size = 2;
445
446 smi_info->handlers->start_transaction(
447 smi_info->si_sm,
448 smi_info->curr_msg->data,
449 smi_info->curr_msg->data_size);
450 smi_info->si_state = SI_GETTING_EVENTS;
451}
452
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500453static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
454{
455 smi_info->last_timeout_jiffies = jiffies;
456 mod_timer(&smi_info->si_timer, new_val);
457 smi_info->timer_running = true;
458}
459
Corey Minyardc305e3d2008-04-29 01:01:10 -0700460/*
461 * When we have a situtaion where we run out of memory and cannot
462 * allocate messages, we just leave them in the BMC and run the system
463 * polled until we can allocate some memory. Once we have some
464 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500465 *
466 * Note that we cannot just use disable_irq(), since the interrupt may
467 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700468 */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600469static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800471 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500472 smi_info->interrupt_disabled = true;
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Corey Minyard968bf7c2014-11-06 19:06:00 -0600479static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500482 smi_info->interrupt_disabled = false;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600483 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600484 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600486 return false;
487}
488
489/*
490 * Allocate a message. If unable to allocate, start the interrupt
491 * disable process and return NULL. If able to allocate but
492 * interrupts are disabled, free the message and return NULL after
493 * starting the interrupt enable process.
494 */
495static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
496{
497 struct ipmi_smi_msg *msg;
498
499 msg = ipmi_alloc_smi_msg();
500 if (!msg) {
501 if (!disable_si_irq(smi_info))
502 smi_info->si_state = SI_NORMAL;
503 } else if (enable_si_irq(smi_info)) {
504 ipmi_free_smi_msg(msg);
505 msg = NULL;
506 }
507 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510static void handle_flags(struct smi_info *smi_info)
511{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700512 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
514 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700515 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 start_clear_flags(smi_info);
518 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600519 if (smi_info->intf)
520 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
522 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600523 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
524 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Corey Minyard968bf7c2014-11-06 19:06:00 -0600527 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
529 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600530 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
531 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Corey Minyard968bf7c2014-11-06 19:06:00 -0600534 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700535 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700536 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700537 if (smi_info->oem_data_avail_handler(smi_info))
538 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700539 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600543/*
544 * Global enables we care about.
545 */
546#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
547 IPMI_BMC_EVT_MSG_INTR)
548
Corey Minyard95c97b52014-11-20 07:19:44 -0600549static u8 current_global_enables(struct smi_info *smi_info, u8 base,
550 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600551{
552 u8 enables = 0;
553
554 if (smi_info->supports_event_msg_buff)
555 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600556
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500557 if ((smi_info->irq && !smi_info->interrupt_disabled) ||
558 smi_info->cannot_clear_recv_irq_bit)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600559 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600560
561 if (smi_info->supports_event_msg_buff &&
562 smi_info->irq && !smi_info->interrupt_disabled)
563
564 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600565
Corey Minyard95c97b52014-11-20 07:19:44 -0600566 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
567
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600568 return enables;
569}
570
Corey Minyard95c97b52014-11-20 07:19:44 -0600571static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
572{
573 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
574
575 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
576
577 if ((bool)irqstate == irq_on)
578 return;
579
580 if (irq_on)
581 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
582 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
583 else
584 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
585}
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587static void handle_transaction_done(struct smi_info *smi_info)
588{
589 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
John Stultzf93aae92015-01-07 14:24:28 -0800591 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 switch (smi_info->si_state) {
593 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800594 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
596
597 smi_info->curr_msg->rsp_size
598 = smi_info->handlers->get_result(
599 smi_info->si_sm,
600 smi_info->curr_msg->rsp,
601 IPMI_MAX_MSG_LENGTH);
602
Corey Minyardc305e3d2008-04-29 01:01:10 -0700603 /*
604 * Do this here becase deliver_recv_msg() releases the
605 * lock, and a new message can be put in during the
606 * time the lock is released.
607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 msg = smi_info->curr_msg;
609 smi_info->curr_msg = NULL;
610 deliver_recv_msg(smi_info, msg);
611 break;
612
613 case SI_GETTING_FLAGS:
614 {
615 unsigned char msg[4];
616 unsigned int len;
617
618 /* We got the flags from the SMI, now handle them. */
619 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
620 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700621 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 smi_info->si_state = SI_NORMAL;
623 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700624 /*
625 * Hmm, no flags. That's technically illegal, but
626 * don't use uninitialized data.
627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 smi_info->si_state = SI_NORMAL;
629 } else {
630 smi_info->msg_flags = msg[3];
631 handle_flags(smi_info);
632 }
633 break;
634 }
635
636 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 {
638 unsigned char msg[3];
639
640 /* We cleared the flags. */
641 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
642 if (msg[2] != 0) {
643 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700644 dev_warn(smi_info->dev,
645 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600647 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
649 }
650
651 case SI_GETTING_EVENTS:
652 {
653 smi_info->curr_msg->rsp_size
654 = smi_info->handlers->get_result(
655 smi_info->si_sm,
656 smi_info->curr_msg->rsp,
657 IPMI_MAX_MSG_LENGTH);
658
Corey Minyardc305e3d2008-04-29 01:01:10 -0700659 /*
660 * Do this here becase deliver_recv_msg() releases the
661 * lock, and a new message can be put in during the
662 * time the lock is released.
663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 msg = smi_info->curr_msg;
665 smi_info->curr_msg = NULL;
666 if (msg->rsp[2] != 0) {
667 /* Error getting event, probably done. */
668 msg->done(msg);
669
670 /* Take off the event flag. */
671 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
672 handle_flags(smi_info);
673 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700674 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Corey Minyardc305e3d2008-04-29 01:01:10 -0700676 /*
677 * Do this before we deliver the message
678 * because delivering the message releases the
679 * lock and something else can mess with the
680 * state.
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 handle_flags(smi_info);
683
684 deliver_recv_msg(smi_info, msg);
685 }
686 break;
687 }
688
689 case SI_GETTING_MESSAGES:
690 {
691 smi_info->curr_msg->rsp_size
692 = smi_info->handlers->get_result(
693 smi_info->si_sm,
694 smi_info->curr_msg->rsp,
695 IPMI_MAX_MSG_LENGTH);
696
Corey Minyardc305e3d2008-04-29 01:01:10 -0700697 /*
698 * Do this here becase deliver_recv_msg() releases the
699 * lock, and a new message can be put in during the
700 * time the lock is released.
701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 msg = smi_info->curr_msg;
703 smi_info->curr_msg = NULL;
704 if (msg->rsp[2] != 0) {
705 /* Error getting event, probably done. */
706 msg->done(msg);
707
708 /* Take off the msg flag. */
709 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
710 handle_flags(smi_info);
711 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700712 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Corey Minyardc305e3d2008-04-29 01:01:10 -0700714 /*
715 * Do this before we deliver the message
716 * because delivering the message releases the
717 * lock and something else can mess with the
718 * state.
719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 handle_flags(smi_info);
721
722 deliver_recv_msg(smi_info, msg);
723 }
724 break;
725 }
726
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600727 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 {
729 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600730 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600731 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* We got the flags from the SMI, now handle them. */
734 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
735 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500736 dev_warn(smi_info->dev,
737 "Couldn't get irq info: %x.\n", msg[2]);
738 dev_warn(smi_info->dev,
739 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600741 break;
742 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600743 enables = current_global_enables(smi_info, 0, &irq_on);
744 if (smi_info->si_type == SI_BT)
745 /* BT has its own interrupt enable bit. */
746 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600747 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
748 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
750 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600751 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 smi_info->handlers->start_transaction(
753 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600754 smi_info->si_state = SI_SETTING_ENABLES;
755 } else if (smi_info->supports_event_msg_buff) {
756 smi_info->curr_msg = ipmi_alloc_smi_msg();
757 if (!smi_info->curr_msg) {
758 smi_info->si_state = SI_NORMAL;
759 break;
760 }
761 start_getting_msg_queue(smi_info);
762 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700763 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700764 }
765 break;
766 }
767
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600768 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700769 {
770 unsigned char msg[4];
771
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700772 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600773 if (msg[2] != 0)
774 dev_warn(smi_info->dev,
775 "Could not set the global enables: 0x%x.\n",
776 msg[2]);
777
778 if (smi_info->supports_event_msg_buff) {
779 smi_info->curr_msg = ipmi_alloc_smi_msg();
780 if (!smi_info->curr_msg) {
781 smi_info->si_state = SI_NORMAL;
782 break;
783 }
784 start_getting_msg_queue(smi_info);
785 } else {
786 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700787 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700788 break;
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791}
792
Corey Minyardc305e3d2008-04-29 01:01:10 -0700793/*
794 * Called on timeouts and events. Timeouts should pass the elapsed
795 * time, interrupts should pass in zero. Must be called with
796 * si_lock held and interrupts disabled.
797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
799 int time)
800{
801 enum si_sm_result si_sm_result;
802
803 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700804 /*
805 * There used to be a loop here that waited a little while
806 * (around 25us) before giving up. That turned out to be
807 * pointless, the minimum delays I was seeing were in the 300us
808 * range, which is far too long to wait in an interrupt. So
809 * we just run until the state machine tells us something
810 * happened or it needs a delay.
811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
813 time = 0;
814 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Corey Minyardc305e3d2008-04-29 01:01:10 -0700817 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700818 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 handle_transaction_done(smi_info);
821 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700822 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700823 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Corey Minyardc305e3d2008-04-29 01:01:10 -0700825 /*
826 * Do the before return_hosed_msg, because that
827 * releases the lock.
828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 smi_info->si_state = SI_NORMAL;
830 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700831 /*
832 * If we were handling a user message, format
833 * a response to send to the upper layer to
834 * tell it about the error.
835 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800836 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
839 }
840
Corey Minyard4ea18422008-04-29 01:01:01 -0700841 /*
842 * We prefer handling attn over new messages. But don't do
843 * this if there is not yet an upper layer to handle anything.
844 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600845 if (likely(smi_info->intf) &&
846 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 unsigned char msg[2];
848
Corey Minyarda8df1502014-11-19 11:47:17 -0600849 if (smi_info->si_state != SI_NORMAL) {
850 /*
851 * We got an ATTN, but we are doing something else.
852 * Handle the ATTN later.
853 */
854 smi_info->got_attn = true;
855 } else {
856 smi_info->got_attn = false;
857 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Corey Minyarda8df1502014-11-19 11:47:17 -0600859 /*
860 * Got a attn, send down a get message flags to see
861 * what's causing it. It would be better to handle
862 * this in the upper layer, but due to the way
863 * interrupts work with the SMI, that's not really
864 * possible.
865 */
866 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
867 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Corey Minyarda8df1502014-11-19 11:47:17 -0600869 smi_info->handlers->start_transaction(
870 smi_info->si_sm, msg, 2);
871 smi_info->si_state = SI_GETTING_FLAGS;
872 goto restart;
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 /* If we are currently idle, try to start the next message. */
877 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700878 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 si_sm_result = start_next_msg(smi_info);
881 if (si_sm_result != SI_SM_IDLE)
882 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700886 && (atomic_read(&smi_info->req_events))) {
887 /*
888 * We are idle and the upper layer requested that I fetch
889 * events, so do so.
890 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800892
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600893 /*
894 * Take this opportunity to check the interrupt and
895 * message enable state for the BMC. The BMC can be
896 * asynchronously reset, and may thus get interrupts
897 * disable and messages disabled.
898 */
899 if (smi_info->supports_event_msg_buff || smi_info->irq) {
900 start_check_enables(smi_info);
901 } else {
902 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
903 if (!smi_info->curr_msg)
904 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800905
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600906 start_getting_events(smi_info);
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 goto restart;
909 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800910 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return si_sm_result;
912}
913
Corey Minyard89986492014-04-14 09:46:54 -0500914static void check_start_timer_thread(struct smi_info *smi_info)
915{
916 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
917 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
918
919 if (smi_info->thread)
920 wake_up_process(smi_info->thread);
921
922 start_next_msg(smi_info);
923 smi_event_handler(smi_info, 0);
924 }
925}
926
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900927static void flush_messages(struct smi_info *smi_info)
928{
929 enum si_sm_result result;
930
931 /*
932 * Currently, this function is called only in run-to-completion
933 * mode. This means we are single-threaded, no need for locks.
934 */
935 result = smi_event_handler(smi_info, 0);
936 while (result != SI_SM_IDLE) {
937 udelay(SI_SHORT_TIMEOUT_USEC);
938 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
939 }
940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600943 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
John Stultzf93aae92015-01-07 14:24:28 -0800948 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700951 /*
Corey Minyardb874b982014-11-06 17:01:59 -0600952 * If we are running to completion, start it and run
953 * transactions until everything is clear.
Corey Minyardbda4c302008-04-29 01:01:02 -0700954 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900955 smi_info->waiting_msg = msg;
Corey Minyardbda4c302008-04-29 01:01:02 -0700956
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900957 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Corey Minyardf60adf42012-03-28 14:42:50 -0700961 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600962 /*
963 * The following two lines don't need to be under the lock for
964 * the lock's sake, but they do need SMP memory barriers to
965 * avoid getting things out of order. We are already claiming
966 * the lock, anyway, so just do it under the lock to avoid the
967 * ordering problem.
968 */
969 BUG_ON(smi_info->waiting_msg);
970 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -0500971 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700972 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Corey Minyard7aefac22014-04-14 09:46:56 -0500975static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900980 if (i_run_to_completion)
981 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Martin Wilckae74e822010-03-10 15:23:06 -0800984/*
985 * Use -1 in the nsec value of the busy waiting timespec to tell that
986 * we are spinning in kipmid looking for something and not delaying
987 * between checks
988 */
John Stultz48862ea22015-01-07 14:24:29 -0800989static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -0800990{
991 ts->tv_nsec = -1;
992}
John Stultz48862ea22015-01-07 14:24:29 -0800993static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -0800994{
995 return ts->tv_nsec != -1;
996}
997
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -0500998static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
999 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001000 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001001{
1002 unsigned int max_busy_us = 0;
1003
1004 if (smi_info->intf_num < num_max_busy_us)
1005 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1006 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1007 ipmi_si_set_not_busy(busy_until);
1008 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001009 getnstimeofday64(busy_until);
1010 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001011 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001012 struct timespec64 now;
1013
1014 getnstimeofday64(&now);
1015 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001016 ipmi_si_set_not_busy(busy_until);
1017 return 0;
1018 }
1019 }
1020 return 1;
1021}
1022
1023
1024/*
1025 * A busy-waiting loop for speeding up IPMI operation.
1026 *
1027 * Lousy hardware makes this hard. This is only enabled for systems
1028 * that are not BT and do not have interrupts. It starts spinning
1029 * when an operation is complete or until max_busy tells it to stop
1030 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1031 * Documentation/IPMI.txt for details.
1032 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001033static int ipmi_thread(void *data)
1034{
1035 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001036 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001037 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001038 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001039
Martin Wilckae74e822010-03-10 15:23:06 -08001040 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001041 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001042 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001043 int busy_wait;
1044
Corey Minyarda9a2c442005-11-07 01:00:03 -08001045 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001046 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001047
1048 /*
1049 * If the driver is doing something, there is a possible
1050 * race with the timer. If the timer handler see idle,
1051 * and the thread here sees something else, the timer
1052 * handler won't restart the timer even though it is
1053 * required. So start it here if necessary.
1054 */
1055 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1056 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1057
Corey Minyarda9a2c442005-11-07 01:00:03 -08001058 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001059 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1060 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001061 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1062 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001063 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001064 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001065 else if (smi_result == SI_SM_IDLE) {
1066 if (atomic_read(&smi_info->need_watch)) {
1067 schedule_timeout_interruptible(100);
1068 } else {
1069 /* Wait to be woken up when we are needed. */
1070 __set_current_state(TASK_INTERRUPTIBLE);
1071 schedule();
1072 }
1073 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001074 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001075 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001076 return 0;
1077}
1078
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080static void poll(void *send_info)
1081{
1082 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001083 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001084 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Corey Minyard15c62e12006-12-06 20:41:06 -08001086 /*
1087 * Make sure there is some delay in the poll loop so we can
1088 * drive time forward and timeout things.
1089 */
1090 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001091 if (!run_to_completion)
1092 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001093 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001094 if (!run_to_completion)
1095 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098static void request_events(void *send_info)
1099{
1100 struct smi_info *smi_info = send_info;
1101
Corey Minyardb874b982014-11-06 17:01:59 -06001102 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001103 return;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 atomic_set(&smi_info->req_events, 1);
1106}
1107
Corey Minyard7aefac22014-04-14 09:46:56 -05001108static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001109{
1110 struct smi_info *smi_info = send_info;
1111 unsigned long flags;
1112
1113 atomic_set(&smi_info->need_watch, enable);
1114 spin_lock_irqsave(&smi_info->si_lock, flags);
1115 check_start_timer_thread(smi_info);
1116 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1117}
1118
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001119static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121static void smi_timeout(unsigned long data)
1122{
1123 struct smi_info *smi_info = (struct smi_info *) data;
1124 enum si_sm_result smi_result;
1125 unsigned long flags;
1126 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001127 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001128 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001131 debug_timestamp("Timer");
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001134 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * SI_USEC_PER_JIFFY);
1136 smi_result = smi_event_handler(smi_info, time_diff);
1137
Corey Minyardb0defcd2006-03-26 01:37:20 -08001138 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001140 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001141 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001142 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144
Corey Minyardc305e3d2008-04-29 01:01:10 -07001145 /*
1146 * If the state machine asks for a short delay, then shorten
1147 * the timer timeout.
1148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001150 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001151 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001153 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001154 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001157 do_mod_timer:
1158 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001159 smi_mod_timer(smi_info, timeout);
1160 else
1161 smi_info->timer_running = false;
1162 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
David Howells7d12e782006-10-05 14:55:46 +01001165static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 struct smi_info *smi_info = data;
1168 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 spin_lock_irqsave(&(smi_info->si_lock), flags);
1171
Corey Minyard64959e22008-04-29 01:01:07 -07001172 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
John Stultzf93aae92015-01-07 14:24:28 -08001174 debug_timestamp("Interrupt");
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1178 return IRQ_HANDLED;
1179}
1180
David Howells7d12e782006-10-05 14:55:46 +01001181static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001182{
1183 struct smi_info *smi_info = data;
1184 /* We need to clear the IRQ flag for the BT interface. */
1185 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1186 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1187 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001188 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001189}
1190
Corey Minyard453823b2006-03-31 02:30:39 -08001191static int smi_start_processing(void *send_info,
1192 ipmi_smi_t intf)
1193{
1194 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001195 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001196
1197 new_smi->intf = intf;
1198
Corey Minyardc45adc32007-10-18 03:07:08 -07001199 /* Try to claim any interrupts. */
1200 if (new_smi->irq_setup)
1201 new_smi->irq_setup(new_smi);
1202
Corey Minyard453823b2006-03-31 02:30:39 -08001203 /* Set up the timer that drives the interface. */
1204 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001205 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001206
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001207 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001208 * Check if the user forcefully enabled the daemon.
1209 */
1210 if (new_smi->intf_num < num_force_kipmid)
1211 enable = force_kipmid[new_smi->intf_num];
1212 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001213 * The BT interface is efficient enough to not need a thread,
1214 * and there is no need for a thread if we have interrupts.
1215 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001216 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001217 enable = 1;
1218
1219 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001220 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1221 "kipmi%d", new_smi->intf_num);
1222 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001223 dev_notice(new_smi->dev, "Could not start"
1224 " kernel thread due to error %ld, only using"
1225 " timers to drive the interface\n",
1226 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001227 new_smi->thread = NULL;
1228 }
1229 }
1230
1231 return 0;
1232}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001233
Zhao Yakui16f42322010-12-08 10:10:16 +08001234static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1235{
1236 struct smi_info *smi = send_info;
1237
1238 data->addr_src = smi->addr_source;
1239 data->dev = smi->dev;
1240 data->addr_info = smi->addr_info;
1241 get_device(smi->dev);
1242
1243 return 0;
1244}
1245
Corey Minyard7aefac22014-04-14 09:46:56 -05001246static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001247{
1248 struct smi_info *smi_info = send_info;
1249
1250 if (!enable)
1251 atomic_set(&smi_info->req_events, 0);
1252}
1253
Corey Minyard81d02b72015-06-13 10:34:25 -05001254static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001256 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001257 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 .sender = sender,
1259 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001260 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001261 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 .set_run_to_completion = set_run_to_completion,
1263 .poll = poll,
1264};
1265
Corey Minyardc305e3d2008-04-29 01:01:10 -07001266/*
1267 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1268 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Corey Minyardb0defcd2006-03-26 01:37:20 -08001271static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001272static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001273static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001276#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Corey Minyardd941aea2013-02-27 17:05:12 -08001278#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301279static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001280#endif
1281#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301282static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001283#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301284static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001285#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301286static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001287#endif
Corey Minyard0dfe6e72014-04-14 09:46:53 -05001288static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289static char *si_type[SI_MAX_PARMS];
1290#define MAX_SI_TYPE_STR 30
1291static char si_type_str[MAX_SI_TYPE_STR];
1292static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001293static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001295static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001297static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001299static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001301static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001303static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001304static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001305static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Corey Minyardb361e272006-12-06 20:41:07 -08001307#define IPMI_IO_ADDR_SPACE 0
1308#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001309static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001310
1311static int hotmod_handler(const char *val, struct kernel_param *kp);
1312
1313module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1314MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1315 " Documentation/IPMI.txt in the kernel sources for the"
1316 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Corey Minyardd941aea2013-02-27 17:05:12 -08001318#ifdef CONFIG_ACPI
1319module_param_named(tryacpi, si_tryacpi, bool, 0);
1320MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1321 " default scan of the interfaces identified via ACPI");
1322#endif
1323#ifdef CONFIG_DMI
1324module_param_named(trydmi, si_trydmi, bool, 0);
1325MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1326 " default scan of the interfaces identified via DMI");
1327#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001328module_param_named(tryplatform, si_tryplatform, bool, 0);
1329MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1330 " default scan of the interfaces identified via platform"
1331 " interfaces like openfirmware");
1332#ifdef CONFIG_PCI
1333module_param_named(trypci, si_trypci, bool, 0);
1334MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1335 " default scan of the interfaces identified via pci");
1336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337module_param_named(trydefaults, si_trydefaults, bool, 0);
1338MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1339 " default scan of the KCS and SMIC interface at the standard"
1340 " address");
1341module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1342MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1343 " interface separated by commas. The types are 'kcs',"
1344 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1345 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001346module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1348 " addresses separated by commas. Only use if an interface"
1349 " is in memory. Otherwise, set it to zero or leave"
1350 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001351module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1353 " addresses separated by commas. Only use if an interface"
1354 " is a port. Otherwise, set it to zero or leave"
1355 " it blank.");
1356module_param_array(irqs, int, &num_irqs, 0);
1357MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1358 " addresses separated by commas. Only use if an interface"
1359 " has an interrupt. Otherwise, set it to zero or leave"
1360 " it blank.");
1361module_param_array(regspacings, int, &num_regspacings, 0);
1362MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1363 " and each successive register used by the interface. For"
1364 " instance, if the start address is 0xca2 and the spacing"
1365 " is 2, then the second address is at 0xca4. Defaults"
1366 " to 1.");
1367module_param_array(regsizes, int, &num_regsizes, 0);
1368MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1369 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1370 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1371 " the 8-bit IPMI register has to be read from a larger"
1372 " register.");
1373module_param_array(regshifts, int, &num_regshifts, 0);
1374MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1375 " IPMI register, in bits. For instance, if the data"
1376 " is read from a 32-bit word and the IPMI data is in"
1377 " bit 8-15, then the shift would be 8");
1378module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1379MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1380 " the controller. Normally this is 0x20, but can be"
1381 " overridden by this parm. This is an array indexed"
1382 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001383module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1384MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1385 " disabled(0). Normally the IPMI driver auto-detects"
1386 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001387module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001388MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1389 " specified or found, default is 1. Setting to 0"
1390 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001391module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1392MODULE_PARM_DESC(kipmid_max_busy_us,
1393 "Max time (in microseconds) to busy-wait for IPMI data before"
1394 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1395 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397
Corey Minyardb0defcd2006-03-26 01:37:20 -08001398static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001400 if (info->si_type == SI_BT)
1401 /* Disable the interrupt in the BT interface. */
1402 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1403 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406static int std_irq_setup(struct smi_info *info)
1407{
1408 int rv;
1409
Corey Minyardb0defcd2006-03-26 01:37:20 -08001410 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return 0;
1412
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001413 if (info->si_type == SI_BT) {
1414 rv = request_irq(info->irq,
1415 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001416 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001417 DEVICE_NAME,
1418 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001419 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001420 /* Enable the interrupt in the BT interface. */
1421 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1422 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1423 } else
1424 rv = request_irq(info->irq,
1425 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001426 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001427 DEVICE_NAME,
1428 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001430 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1431 " running polled\n",
1432 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 info->irq = 0;
1434 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001435 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001436 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438
1439 return rv;
1440}
1441
Corey Minyard81d02b72015-06-13 10:34:25 -05001442static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001444 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Corey Minyardb0defcd2006-03-26 01:37:20 -08001446 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Corey Minyard81d02b72015-06-13 10:34:25 -05001449static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 unsigned char b)
1451{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001452 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Corey Minyardb0defcd2006-03-26 01:37:20 -08001454 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Corey Minyard81d02b72015-06-13 10:34:25 -05001457static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001459 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Corey Minyardb0defcd2006-03-26 01:37:20 -08001461 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Corey Minyard81d02b72015-06-13 10:34:25 -05001464static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 unsigned char b)
1466{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001467 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Corey Minyardb0defcd2006-03-26 01:37:20 -08001469 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Corey Minyard81d02b72015-06-13 10:34:25 -05001472static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001474 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Corey Minyardb0defcd2006-03-26 01:37:20 -08001476 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
Corey Minyard81d02b72015-06-13 10:34:25 -05001479static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 unsigned char b)
1481{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001482 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Corey Minyardb0defcd2006-03-26 01:37:20 -08001484 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487static void port_cleanup(struct smi_info *info)
1488{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001489 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001490 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Corey Minyardb0defcd2006-03-26 01:37:20 -08001492 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001493 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001494 release_region(addr + idx * info->io.regspacing,
1495 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499static int port_setup(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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return -ENODEV;
1506
1507 info->io_cleanup = port_cleanup;
1508
Corey Minyardc305e3d2008-04-29 01:01:10 -07001509 /*
1510 * Figure out the actual inb/inw/inl/etc routine to use based
1511 * upon the register size.
1512 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 switch (info->io.regsize) {
1514 case 1:
1515 info->io.inputb = port_inb;
1516 info->io.outputb = port_outb;
1517 break;
1518 case 2:
1519 info->io.inputb = port_inw;
1520 info->io.outputb = port_outw;
1521 break;
1522 case 4:
1523 info->io.inputb = port_inl;
1524 info->io.outputb = port_outl;
1525 break;
1526 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001527 dev_warn(info->dev, "Invalid register size: %d\n",
1528 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return -EINVAL;
1530 }
1531
Corey Minyardc305e3d2008-04-29 01:01:10 -07001532 /*
1533 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001534 * tables. This causes problems when trying to register the
1535 * entire I/O region. Therefore we must register each I/O
1536 * port separately.
1537 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001538 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001539 if (request_region(addr + idx * info->io.regspacing,
1540 info->io.regsize, DEVICE_NAME) == NULL) {
1541 /* Undo allocations */
1542 while (idx--) {
1543 release_region(addr + idx * info->io.regspacing,
1544 info->io.regsize);
1545 }
1546 return -EIO;
1547 }
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return 0;
1550}
1551
Corey Minyard81d02b72015-06-13 10:34:25 -05001552static unsigned char intf_mem_inb(const struct si_sm_io *io,
1553 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
1555 return readb((io->addr)+(offset * io->regspacing));
1556}
1557
Corey Minyard81d02b72015-06-13 10:34:25 -05001558static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1559 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 writeb(b, (io->addr)+(offset * io->regspacing));
1562}
1563
Corey Minyard81d02b72015-06-13 10:34:25 -05001564static unsigned char intf_mem_inw(const struct si_sm_io *io,
1565 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001568 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Corey Minyard81d02b72015-06-13 10:34:25 -05001571static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1572 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
1574 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1575}
1576
Corey Minyard81d02b72015-06-13 10:34:25 -05001577static unsigned char intf_mem_inl(const struct si_sm_io *io,
1578 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001581 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Corey Minyard81d02b72015-06-13 10:34:25 -05001584static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1585 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
1587 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1588}
1589
1590#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001591static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001594 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Corey Minyard81d02b72015-06-13 10:34:25 -05001597static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 unsigned char b)
1599{
1600 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1601}
1602#endif
1603
1604static void mem_cleanup(struct smi_info *info)
1605{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001606 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int mapsize;
1608
1609 if (info->io.addr) {
1610 iounmap(info->io.addr);
1611
1612 mapsize = ((info->io_size * info->io.regspacing)
1613 - (info->io.regspacing - info->io.regsize));
1614
Corey Minyardb0defcd2006-03-26 01:37:20 -08001615 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619static int mem_setup(struct smi_info *info)
1620{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001621 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 int mapsize;
1623
Corey Minyardb0defcd2006-03-26 01:37:20 -08001624 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return -ENODEV;
1626
1627 info->io_cleanup = mem_cleanup;
1628
Corey Minyardc305e3d2008-04-29 01:01:10 -07001629 /*
1630 * Figure out the actual readb/readw/readl/etc routine to use based
1631 * upon the register size.
1632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 switch (info->io.regsize) {
1634 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001635 info->io.inputb = intf_mem_inb;
1636 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 break;
1638 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001639 info->io.inputb = intf_mem_inw;
1640 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 break;
1642 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001643 info->io.inputb = intf_mem_inl;
1644 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 break;
1646#ifdef readq
1647 case 8:
1648 info->io.inputb = mem_inq;
1649 info->io.outputb = mem_outq;
1650 break;
1651#endif
1652 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001653 dev_warn(info->dev, "Invalid register size: %d\n",
1654 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return -EINVAL;
1656 }
1657
Corey Minyardc305e3d2008-04-29 01:01:10 -07001658 /*
1659 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 * unusual looking calculation, but it avoids claiming any
1661 * more memory than it has to. It will claim everything
1662 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001663 * register.
1664 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 mapsize = ((info->io_size * info->io.regspacing)
1666 - (info->io.regspacing - info->io.regsize));
1667
Corey Minyardb0defcd2006-03-26 01:37:20 -08001668 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return -EIO;
1670
Corey Minyardb0defcd2006-03-26 01:37:20 -08001671 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001673 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 return -EIO;
1675 }
1676 return 0;
1677}
1678
Corey Minyardb361e272006-12-06 20:41:07 -08001679/*
1680 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1681 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1682 * Options are:
1683 * rsp=<regspacing>
1684 * rsi=<regsize>
1685 * rsh=<regshift>
1686 * irq=<irq>
1687 * ipmb=<ipmb addr>
1688 */
1689enum hotmod_op { HM_ADD, HM_REMOVE };
1690struct hotmod_vals {
1691 char *name;
1692 int val;
1693};
1694static struct hotmod_vals hotmod_ops[] = {
1695 { "add", HM_ADD },
1696 { "remove", HM_REMOVE },
1697 { NULL }
1698};
1699static struct hotmod_vals hotmod_si[] = {
1700 { "kcs", SI_KCS },
1701 { "smic", SI_SMIC },
1702 { "bt", SI_BT },
1703 { NULL }
1704};
1705static struct hotmod_vals hotmod_as[] = {
1706 { "mem", IPMI_MEM_ADDR_SPACE },
1707 { "i/o", IPMI_IO_ADDR_SPACE },
1708 { NULL }
1709};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001710
Corey Minyardb361e272006-12-06 20:41:07 -08001711static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1712{
1713 char *s;
1714 int i;
1715
1716 s = strchr(*curr, ',');
1717 if (!s) {
1718 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1719 return -EINVAL;
1720 }
1721 *s = '\0';
1722 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001723 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001724 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001725 *val = v[i].val;
1726 *curr = s;
1727 return 0;
1728 }
1729 }
1730
1731 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1732 return -EINVAL;
1733}
1734
Corey Minyard1d5636c2006-12-10 02:19:08 -08001735static int check_hotmod_int_op(const char *curr, const char *option,
1736 const char *name, int *val)
1737{
1738 char *n;
1739
1740 if (strcmp(curr, name) == 0) {
1741 if (!option) {
1742 printk(KERN_WARNING PFX
1743 "No option given for '%s'\n",
1744 curr);
1745 return -EINVAL;
1746 }
1747 *val = simple_strtoul(option, &n, 0);
1748 if ((*n != '\0') || (*option == '\0')) {
1749 printk(KERN_WARNING PFX
1750 "Bad option given for '%s'\n",
1751 curr);
1752 return -EINVAL;
1753 }
1754 return 1;
1755 }
1756 return 0;
1757}
1758
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001759static struct smi_info *smi_info_alloc(void)
1760{
1761 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1762
Corey Minyardf60adf42012-03-28 14:42:50 -07001763 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001764 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001765 return info;
1766}
1767
Corey Minyardb361e272006-12-06 20:41:07 -08001768static int hotmod_handler(const char *val, struct kernel_param *kp)
1769{
1770 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001771 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001772 char *next, *curr, *s, *n, *o;
1773 enum hotmod_op op;
1774 enum si_type si_type;
1775 int addr_space;
1776 unsigned long addr;
1777 int regspacing;
1778 int regsize;
1779 int regshift;
1780 int irq;
1781 int ipmb;
1782 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001783 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001784 struct smi_info *info;
1785
1786 if (!str)
1787 return -ENOMEM;
1788
1789 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001790 len = strlen(str);
1791 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001792 while ((ival >= 0) && isspace(str[ival])) {
1793 str[ival] = '\0';
1794 ival--;
1795 }
1796
1797 for (curr = str; curr; curr = next) {
1798 regspacing = 1;
1799 regsize = 1;
1800 regshift = 0;
1801 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001802 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001803
1804 next = strchr(curr, ':');
1805 if (next) {
1806 *next = '\0';
1807 next++;
1808 }
1809
1810 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1811 if (rv)
1812 break;
1813 op = ival;
1814
1815 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1816 if (rv)
1817 break;
1818 si_type = ival;
1819
1820 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1821 if (rv)
1822 break;
1823
1824 s = strchr(curr, ',');
1825 if (s) {
1826 *s = '\0';
1827 s++;
1828 }
1829 addr = simple_strtoul(curr, &n, 0);
1830 if ((*n != '\0') || (*curr == '\0')) {
1831 printk(KERN_WARNING PFX "Invalid hotmod address"
1832 " '%s'\n", curr);
1833 break;
1834 }
1835
1836 while (s) {
1837 curr = s;
1838 s = strchr(curr, ',');
1839 if (s) {
1840 *s = '\0';
1841 s++;
1842 }
1843 o = strchr(curr, '=');
1844 if (o) {
1845 *o = '\0';
1846 o++;
1847 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001848 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1849 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001850 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001851 else if (rv)
1852 continue;
1853 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1854 if (rv < 0)
1855 goto out;
1856 else if (rv)
1857 continue;
1858 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1859 if (rv < 0)
1860 goto out;
1861 else if (rv)
1862 continue;
1863 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1864 if (rv < 0)
1865 goto out;
1866 else if (rv)
1867 continue;
1868 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1869 if (rv < 0)
1870 goto out;
1871 else if (rv)
1872 continue;
1873
1874 rv = -EINVAL;
1875 printk(KERN_WARNING PFX
1876 "Invalid hotmod option '%s'\n",
1877 curr);
1878 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001879 }
1880
1881 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001882 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001883 if (!info) {
1884 rv = -ENOMEM;
1885 goto out;
1886 }
1887
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001888 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001889 info->si_type = si_type;
1890 info->io.addr_data = addr;
1891 info->io.addr_type = addr_space;
1892 if (addr_space == IPMI_MEM_ADDR_SPACE)
1893 info->io_setup = mem_setup;
1894 else
1895 info->io_setup = port_setup;
1896
1897 info->io.addr = NULL;
1898 info->io.regspacing = regspacing;
1899 if (!info->io.regspacing)
1900 info->io.regspacing = DEFAULT_REGSPACING;
1901 info->io.regsize = regsize;
1902 if (!info->io.regsize)
1903 info->io.regsize = DEFAULT_REGSPACING;
1904 info->io.regshift = regshift;
1905 info->irq = irq;
1906 if (info->irq)
1907 info->irq_setup = std_irq_setup;
1908 info->slave_addr = ipmb;
1909
Corey Minyardd02b3702014-01-24 14:00:53 -06001910 rv = add_smi(info);
1911 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001912 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001913 goto out;
1914 }
1915 rv = try_smi_init(info);
1916 if (rv) {
1917 cleanup_one_si(info);
1918 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001919 }
Corey Minyardb361e272006-12-06 20:41:07 -08001920 } else {
1921 /* remove */
1922 struct smi_info *e, *tmp_e;
1923
1924 mutex_lock(&smi_infos_lock);
1925 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1926 if (e->io.addr_type != addr_space)
1927 continue;
1928 if (e->si_type != si_type)
1929 continue;
1930 if (e->io.addr_data == addr)
1931 cleanup_one_si(e);
1932 }
1933 mutex_unlock(&smi_infos_lock);
1934 }
1935 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001936 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001937 out:
1938 kfree(str);
1939 return rv;
1940}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001941
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001942static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001944 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001945 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 struct smi_info *info;
1947
Corey Minyardb0defcd2006-03-26 01:37:20 -08001948 for (i = 0; i < SI_MAX_PARMS; i++) {
1949 if (!ports[i] && !addrs[i])
1950 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001952 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001953 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001954 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001956 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001957 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001958
Corey Minyard1d5636c2006-12-10 02:19:08 -08001959 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001960 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001961 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001962 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001963 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001964 info->si_type = SI_BT;
1965 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001966 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001967 "for interface %d, was invalid: %s\n",
1968 i, si_type[i]);
1969 kfree(info);
1970 continue;
1971 }
1972
1973 if (ports[i]) {
1974 /* An I/O port */
1975 info->io_setup = port_setup;
1976 info->io.addr_data = ports[i];
1977 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1978 } else if (addrs[i]) {
1979 /* A memory port */
1980 info->io_setup = mem_setup;
1981 info->io.addr_data = addrs[i];
1982 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1983 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001984 printk(KERN_WARNING PFX "Interface type specified "
1985 "for interface %d, but port and address were "
1986 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001987 kfree(info);
1988 continue;
1989 }
1990
1991 info->io.addr = NULL;
1992 info->io.regspacing = regspacings[i];
1993 if (!info->io.regspacing)
1994 info->io.regspacing = DEFAULT_REGSPACING;
1995 info->io.regsize = regsizes[i];
1996 if (!info->io.regsize)
1997 info->io.regsize = DEFAULT_REGSPACING;
1998 info->io.regshift = regshifts[i];
1999 info->irq = irqs[i];
2000 if (info->irq)
2001 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002002 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002003
Yinghai Lu7faefea2010-08-10 18:03:10 -07002004 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002005 if (try_smi_init(info))
2006 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002007 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002008 } else {
2009 kfree(info);
2010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002012 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Len Brown84663612005-08-24 12:09:07 -04002015#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017#include <linux/acpi.h>
2018
Corey Minyardc305e3d2008-04-29 01:01:10 -07002019/*
2020 * Once we get an ACPI failure, we don't try any more, because we go
2021 * through the tables sequentially. Once we don't find a table, there
2022 * are no more.
2023 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002024static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002027static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2028 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
2030 struct smi_info *smi_info = context;
2031 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 spin_lock_irqsave(&(smi_info->si_lock), flags);
2034
Corey Minyard64959e22008-04-29 01:01:07 -07002035 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
John Stultzf93aae92015-01-07 14:24:28 -08002037 debug_timestamp("ACPI_GPE");
2038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2041
2042 return ACPI_INTERRUPT_HANDLED;
2043}
2044
Corey Minyardb0defcd2006-03-26 01:37:20 -08002045static void acpi_gpe_irq_cleanup(struct smi_info *info)
2046{
2047 if (!info->irq)
2048 return;
2049
2050 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2051}
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053static int acpi_gpe_irq_setup(struct smi_info *info)
2054{
2055 acpi_status status;
2056
Corey Minyardb0defcd2006-03-26 01:37:20 -08002057 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return 0;
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 status = acpi_install_gpe_handler(NULL,
2061 info->irq,
2062 ACPI_GPE_LEVEL_TRIGGERED,
2063 &ipmi_acpi_gpe,
2064 info);
2065 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002066 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2067 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 info->irq = 0;
2069 return -EINVAL;
2070 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002071 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002072 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074 }
2075}
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077/*
2078 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002079 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 */
2081struct SPMITable {
2082 s8 Signature[4];
2083 u32 Length;
2084 u8 Revision;
2085 u8 Checksum;
2086 s8 OEMID[6];
2087 s8 OEMTableID[8];
2088 s8 OEMRevision[4];
2089 s8 CreatorID[4];
2090 s8 CreatorRevision[4];
2091 u8 InterfaceType;
2092 u8 IPMIlegacy;
2093 s16 SpecificationRevision;
2094
2095 /*
2096 * Bit 0 - SCI interrupt supported
2097 * Bit 1 - I/O APIC/SAPIC
2098 */
2099 u8 InterruptType;
2100
Corey Minyardc305e3d2008-04-29 01:01:10 -07002101 /*
2102 * If bit 0 of InterruptType is set, then this is the SCI
2103 * interrupt in the GPEx_STS register.
2104 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 u8 GPE;
2106
2107 s16 Reserved;
2108
Corey Minyardc305e3d2008-04-29 01:01:10 -07002109 /*
2110 * If bit 1 of InterruptType is set, then this is the I/O
2111 * APIC/SAPIC interrupt.
2112 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 u32 GlobalSystemInterrupt;
2114
2115 /* The actual register address. */
2116 struct acpi_generic_address addr;
2117
2118 u8 UID[4];
2119
2120 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2121};
2122
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002123static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
2125 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002126 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002129 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2130 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 }
2132
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002133 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002134 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002135 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002136 return -ENOMEM;
2137 }
2138
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002139 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002140 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002143 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002145 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002148 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002151 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002153 case 4: /* SSIF, just ignore */
2154 kfree(info);
2155 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002157 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2158 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002159 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return -EIO;
2161 }
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (spmi->InterruptType & 1) {
2164 /* We've got a GPE interrupt. */
2165 info->irq = spmi->GPE;
2166 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 } else if (spmi->InterruptType & 2) {
2168 /* We've got an APIC/SAPIC interrupt. */
2169 info->irq = spmi->GlobalSystemInterrupt;
2170 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else {
2172 /* Use the default interrupt setting. */
2173 info->irq = 0;
2174 info->irq_setup = NULL;
2175 }
2176
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002177 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002178 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002179 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002180 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002181 info->io.regspacing = DEFAULT_REGSPACING;
2182 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002183 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002184 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002186 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002188 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002189 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002191 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 } else {
2193 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002194 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return -EIO;
2196 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002197 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002199 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2200 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2201 info->io.addr_data, info->io.regsize, info->io.regspacing,
2202 info->irq);
2203
Corey Minyardd02b3702014-01-24 14:00:53 -06002204 rv = add_smi(info);
2205 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002206 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Corey Minyardd02b3702014-01-24 14:00:53 -06002208 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002210
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002211static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002212{
2213 acpi_status status;
2214 struct SPMITable *spmi;
2215 int i;
2216
2217 if (acpi_disabled)
2218 return;
2219
2220 if (acpi_failure)
2221 return;
2222
2223 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002224 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2225 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002226 if (status != AE_OK)
2227 return;
2228
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002229 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002230 }
2231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232#endif
2233
Matt Domscha9fad4c2006-01-11 12:17:44 -08002234#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002235struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 u8 type;
2237 u8 addr_space;
2238 unsigned long base_addr;
2239 u8 irq;
2240 u8 offset;
2241 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002242};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002244static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002245 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
Jeff Garzik18552562007-10-03 15:15:40 -04002247 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 unsigned long base_addr;
2249 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002250 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Corey Minyardb0defcd2006-03-26 01:37:20 -08002252 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 memcpy(&base_addr, data+8, sizeof(unsigned long));
2255 if (len >= 0x11) {
2256 if (base_addr & 1) {
2257 /* I/O */
2258 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002259 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002260 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002262 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2265 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002266 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Corey Minyardb0defcd2006-03-26 01:37:20 -08002268 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002271 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002272 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002274 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 break;
2276 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002277 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 break;
2279 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002280 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 break;
2282 default:
2283 /* Some other interface, just ignore it. */
2284 return -EIO;
2285 }
2286 } else {
2287 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002288 /*
2289 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002290 * address should be 1 if the address is I/O and 0 if
2291 * the address is in memory. So many systems get that
2292 * wrong (and all that I have seen are I/O) so we just
2293 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002294 * memory should use the newer spec, anyway.
2295 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002296 dmi->base_addr = base_addr & 0xfffe;
2297 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2298 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
Corey Minyardb0defcd2006-03-26 01:37:20 -08002301 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Corey Minyardb0defcd2006-03-26 01:37:20 -08002303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002306static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Corey Minyarde8b33612005-09-06 15:18:45 -07002308 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002310 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002311 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002312 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002313 return;
2314 }
2315
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002316 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002317 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Corey Minyarde8b33612005-09-06 15:18:45 -07002319 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002320 case 0x01: /* KCS */
2321 info->si_type = SI_KCS;
2322 break;
2323 case 0x02: /* SMIC */
2324 info->si_type = SI_SMIC;
2325 break;
2326 case 0x03: /* BT */
2327 info->si_type = SI_BT;
2328 break;
2329 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002330 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002331 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Corey Minyardb0defcd2006-03-26 01:37:20 -08002334 switch (ipmi_data->addr_space) {
2335 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002337 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Corey Minyardb0defcd2006-03-26 01:37:20 -08002340 case IPMI_IO_ADDR_SPACE:
2341 info->io_setup = port_setup;
2342 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2343 break;
2344
2345 default:
2346 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002347 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002348 ipmi_data->addr_space);
2349 return;
2350 }
2351 info->io.addr_data = ipmi_data->base_addr;
2352
2353 info->io.regspacing = ipmi_data->offset;
2354 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 info->io.regspacing = DEFAULT_REGSPACING;
2356 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002357 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 info->slave_addr = ipmi_data->slave_addr;
2360
Corey Minyardb0defcd2006-03-26 01:37:20 -08002361 info->irq = ipmi_data->irq;
2362 if (info->irq)
2363 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002365 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2366 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2367 info->io.addr_data, info->io.regsize, info->io.regspacing,
2368 info->irq);
2369
Yinghai Lu7faefea2010-08-10 18:03:10 -07002370 if (add_smi(info))
2371 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002374static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002375{
Jeff Garzik18552562007-10-03 15:15:40 -04002376 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002377 struct dmi_ipmi_data data;
2378 int rv;
2379
2380 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002381 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002382 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2383 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002384 if (!rv)
2385 try_init_dmi(&data);
2386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002388#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390#ifdef CONFIG_PCI
2391
Corey Minyardb0defcd2006-03-26 01:37:20 -08002392#define PCI_ERMC_CLASSCODE 0x0C0700
2393#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2394#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2395#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2396#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2397#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399#define PCI_HP_VENDOR_ID 0x103C
2400#define PCI_MMC_DEVICE_ID 0x121A
2401#define PCI_MMC_ADDR_CW 0x10
2402
Corey Minyardb0defcd2006-03-26 01:37:20 -08002403static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002405 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Corey Minyardb0defcd2006-03-26 01:37:20 -08002407 pci_disable_device(pdev);
2408}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002410static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002411{
2412 if (info->si_type == SI_KCS) {
2413 unsigned char status;
2414 int regspacing;
2415
2416 info->io.regsize = DEFAULT_REGSIZE;
2417 info->io.regshift = 0;
2418 info->io_size = 2;
2419 info->handlers = &kcs_smi_handlers;
2420
2421 /* detect 1, 4, 16byte spacing */
2422 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2423 info->io.regspacing = regspacing;
2424 if (info->io_setup(info)) {
2425 dev_err(info->dev,
2426 "Could not setup I/O space\n");
2427 return DEFAULT_REGSPACING;
2428 }
2429 /* write invalid cmd */
2430 info->io.outputb(&info->io, 1, 0x10);
2431 /* read status back */
2432 status = info->io.inputb(&info->io, 1);
2433 info->io_cleanup(info);
2434 if (status)
2435 return regspacing;
2436 regspacing *= 4;
2437 }
2438 }
2439 return DEFAULT_REGSPACING;
2440}
2441
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002442static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002443 const struct pci_device_id *ent)
2444{
2445 int rv;
2446 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2447 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002449 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002450 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002451 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002452
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002453 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002454 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002455
2456 switch (class_type) {
2457 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2458 info->si_type = SI_SMIC;
2459 break;
2460
2461 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2462 info->si_type = SI_KCS;
2463 break;
2464
2465 case PCI_ERMC_CLASSCODE_TYPE_BT:
2466 info->si_type = SI_BT;
2467 break;
2468
2469 default:
2470 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002471 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002472 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Corey Minyardb0defcd2006-03-26 01:37:20 -08002475 rv = pci_enable_device(pdev);
2476 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002477 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002478 kfree(info);
2479 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481
Corey Minyardb0defcd2006-03-26 01:37:20 -08002482 info->addr_source_cleanup = ipmi_pci_cleanup;
2483 info->addr_source_data = pdev;
2484
Corey Minyardb0defcd2006-03-26 01:37:20 -08002485 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2486 info->io_setup = port_setup;
2487 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2488 } else {
2489 info->io_setup = mem_setup;
2490 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002492 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Corey Minyarda6c16c22012-10-16 15:53:40 -05002494 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2495 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002496 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Corey Minyardb0defcd2006-03-26 01:37:20 -08002498 info->irq = pdev->irq;
2499 if (info->irq)
2500 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Corey Minyard50c812b2006-03-26 01:37:21 -08002502 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002503 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002504
Myron Stowe279fbd02010-05-26 14:43:52 -07002505 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2506 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2507 info->irq);
2508
Corey Minyardd02b3702014-01-24 14:00:53 -06002509 rv = add_smi(info);
2510 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002511 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002512 pci_disable_device(pdev);
2513 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002514
Corey Minyardd02b3702014-01-24 14:00:53 -06002515 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002516}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Bill Pemberton39af33f2012-11-19 13:26:26 -05002518static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002519{
Corey Minyardfca3b742007-05-08 00:23:59 -07002520 struct smi_info *info = pci_get_drvdata(pdev);
2521 cleanup_one_si(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002522 pci_disable_device(pdev);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002523}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Corey Minyard81d02b72015-06-13 10:34:25 -05002525static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002526 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002527 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2528 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002529};
2530MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2531
2532static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002533 .name = DEVICE_NAME,
2534 .id_table = ipmi_pci_devices,
2535 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002536 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002537};
2538#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002540#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002541static const struct of_device_id of_ipmi_match[] = {
2542 { .type = "ipmi", .compatible = "ipmi-kcs",
2543 .data = (void *)(unsigned long) SI_KCS },
2544 { .type = "ipmi", .compatible = "ipmi-smic",
2545 .data = (void *)(unsigned long) SI_SMIC },
2546 { .type = "ipmi", .compatible = "ipmi-bt",
2547 .data = (void *)(unsigned long) SI_BT },
2548 {},
2549};
2550
2551static int of_ipmi_probe(struct platform_device *dev)
2552{
Grant Likelyb1608d62011-05-18 11:19:24 -06002553 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002554 struct smi_info *info;
2555 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002556 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002557 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002558 int ret;
2559 int proplen;
2560
Myron Stowe279fbd02010-05-26 14:43:52 -07002561 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002562
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002563 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002564 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002565 return -ENODEV;
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002566
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002567 if (!of_device_is_available(np))
2568 return -EINVAL;
2569
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002570 ret = of_address_to_resource(np, 0, &resource);
2571 if (ret) {
2572 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2573 return ret;
2574 }
2575
Stephen Rothwell9c250992007-08-15 16:42:12 +10002576 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002577 if (regsize && proplen != 4) {
2578 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2579 return -EINVAL;
2580 }
2581
Stephen Rothwell9c250992007-08-15 16:42:12 +10002582 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002583 if (regspacing && proplen != 4) {
2584 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2585 return -EINVAL;
2586 }
2587
Stephen Rothwell9c250992007-08-15 16:42:12 +10002588 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002589 if (regshift && proplen != 4) {
2590 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2591 return -EINVAL;
2592 }
2593
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002594 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002595
2596 if (!info) {
2597 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002598 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002599 return -ENOMEM;
2600 }
2601
Grant Likelyb1608d62011-05-18 11:19:24 -06002602 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002603 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002604 info->irq_setup = std_irq_setup;
2605
Nate Case3b7ec112008-05-14 16:05:39 -07002606 if (resource.flags & IORESOURCE_IO) {
2607 info->io_setup = port_setup;
2608 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2609 } else {
2610 info->io_setup = mem_setup;
2611 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2612 }
2613
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002614 info->io.addr_data = resource.start;
2615
Rob Herringda81c3b2010-11-16 14:33:50 -06002616 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2617 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2618 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619
Grant Likely61c7a082010-04-13 16:12:29 -07002620 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002621 info->dev = &dev->dev;
2622
Myron Stowe279fbd02010-05-26 14:43:52 -07002623 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002624 info->io.addr_data, info->io.regsize, info->io.regspacing,
2625 info->irq);
2626
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002627 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002628
Corey Minyardd02b3702014-01-24 14:00:53 -06002629 ret = add_smi(info);
2630 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002631 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002632 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002633 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002634 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002635}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002636#else
2637#define of_ipmi_match NULL
2638static int of_ipmi_probe(struct platform_device *dev)
2639{
2640 return -ENODEV;
2641}
2642#endif
2643
2644#ifdef CONFIG_ACPI
2645static int acpi_ipmi_probe(struct platform_device *dev)
2646{
2647 struct smi_info *info;
2648 struct resource *res, *res_second;
2649 acpi_handle handle;
2650 acpi_status status;
2651 unsigned long long tmp;
2652 int rv = -EINVAL;
2653
2654 handle = ACPI_HANDLE(&dev->dev);
2655 if (!handle)
2656 return -ENODEV;
2657
2658 info = smi_info_alloc();
2659 if (!info)
2660 return -ENOMEM;
2661
2662 info->addr_source = SI_ACPI;
2663 dev_info(&dev->dev, PFX "probing via ACPI\n");
2664
2665 info->addr_info.acpi_info.acpi_handle = handle;
2666
2667 /* _IFT tells us the interface type: KCS, BT, etc */
2668 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2669 if (ACPI_FAILURE(status)) {
2670 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2671 goto err_free;
2672 }
2673
2674 switch (tmp) {
2675 case 1:
2676 info->si_type = SI_KCS;
2677 break;
2678 case 2:
2679 info->si_type = SI_SMIC;
2680 break;
2681 case 3:
2682 info->si_type = SI_BT;
2683 break;
2684 case 4: /* SSIF, just ignore */
2685 rv = -ENODEV;
2686 goto err_free;
2687 default:
2688 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2689 goto err_free;
2690 }
2691
2692 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2693 if (res) {
2694 info->io_setup = port_setup;
2695 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2696 } else {
2697 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2698 if (res) {
2699 info->io_setup = mem_setup;
2700 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2701 }
2702 }
2703 if (!res) {
2704 dev_err(&dev->dev, "no I/O or memory address\n");
2705 goto err_free;
2706 }
2707 info->io.addr_data = res->start;
2708
2709 info->io.regspacing = DEFAULT_REGSPACING;
2710 res_second = platform_get_resource(dev,
2711 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2712 IORESOURCE_IO : IORESOURCE_MEM,
2713 1);
2714 if (res_second) {
2715 if (res_second->start > info->io.addr_data)
2716 info->io.regspacing =
2717 res_second->start - info->io.addr_data;
2718 }
2719 info->io.regsize = DEFAULT_REGSPACING;
2720 info->io.regshift = 0;
2721
2722 /* If _GPE exists, use it; otherwise use standard interrupts */
2723 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2724 if (ACPI_SUCCESS(status)) {
2725 info->irq = tmp;
2726 info->irq_setup = acpi_gpe_irq_setup;
2727 } else {
2728 int irq = platform_get_irq(dev, 0);
2729
2730 if (irq > 0) {
2731 info->irq = irq;
2732 info->irq_setup = std_irq_setup;
2733 }
2734 }
2735
2736 info->dev = &dev->dev;
2737 platform_set_drvdata(dev, info);
2738
2739 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2740 res, info->io.regsize, info->io.regspacing,
2741 info->irq);
2742
2743 rv = add_smi(info);
2744 if (rv)
2745 kfree(info);
2746
2747 return rv;
2748
2749err_free:
2750 kfree(info);
2751 return rv;
2752}
2753
Corey Minyard81d02b72015-06-13 10:34:25 -05002754static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002755 { "IPI0001", 0 },
2756 { },
2757};
2758MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2759#else
2760static int acpi_ipmi_probe(struct platform_device *dev)
2761{
2762 return -ENODEV;
2763}
2764#endif
2765
2766static int ipmi_probe(struct platform_device *dev)
2767{
2768 if (of_ipmi_probe(dev) == 0)
2769 return 0;
2770
2771 return acpi_ipmi_probe(dev);
2772}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002773
Bill Pemberton39af33f2012-11-19 13:26:26 -05002774static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002775{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002776 struct smi_info *info = dev_get_drvdata(&dev->dev);
2777
Markus Elfringa7930892015-06-27 18:12:14 +02002778 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002779 return 0;
2780}
2781
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002782static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002783 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002784 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002785 .of_match_table = of_ipmi_match,
2786 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002787 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002788 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002789 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002790};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002791
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002792#ifdef CONFIG_PARISC
2793static int ipmi_parisc_probe(struct parisc_device *dev)
2794{
2795 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002796 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002797
2798 info = smi_info_alloc();
2799
2800 if (!info) {
2801 dev_err(&dev->dev,
2802 "could not allocate memory for PARISC probe\n");
2803 return -ENOMEM;
2804 }
2805
2806 info->si_type = SI_KCS;
2807 info->addr_source = SI_DEVICETREE;
2808 info->io_setup = mem_setup;
2809 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2810 info->io.addr_data = dev->hpa.start;
2811 info->io.regsize = 1;
2812 info->io.regspacing = 1;
2813 info->io.regshift = 0;
2814 info->irq = 0; /* no interrupt */
2815 info->irq_setup = NULL;
2816 info->dev = &dev->dev;
2817
2818 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2819
2820 dev_set_drvdata(&dev->dev, info);
2821
Corey Minyardd02b3702014-01-24 14:00:53 -06002822 rv = add_smi(info);
2823 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002824 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002825 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002826 }
2827
2828 return 0;
2829}
2830
2831static int ipmi_parisc_remove(struct parisc_device *dev)
2832{
2833 cleanup_one_si(dev_get_drvdata(&dev->dev));
2834 return 0;
2835}
2836
2837static struct parisc_device_id ipmi_parisc_tbl[] = {
2838 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2839 { 0, }
2840};
2841
2842static struct parisc_driver ipmi_parisc_driver = {
2843 .name = "ipmi",
2844 .id_table = ipmi_parisc_tbl,
2845 .probe = ipmi_parisc_probe,
2846 .remove = ipmi_parisc_remove,
2847};
2848#endif /* CONFIG_PARISC */
2849
Corey Minyard40112ae2009-04-21 12:24:03 -07002850static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Corey Minyard50c812b2006-03-26 01:37:21 -08002852 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
2854 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002855 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002856 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2857 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002858 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002860 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002861 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 smi_result = smi_info->handlers->event(
2863 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002864 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 break;
2866 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002867 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002868 /*
2869 * We couldn't get the state machine to run, so whatever's at
2870 * the port is probably not an IPMI SMI interface.
2871 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002872 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Corey Minyard40112ae2009-04-21 12:24:03 -07002874 return 0;
2875}
2876
2877static int try_get_dev_id(struct smi_info *smi_info)
2878{
2879 unsigned char msg[2];
2880 unsigned char *resp;
2881 unsigned long resp_len;
2882 int rv = 0;
2883
2884 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2885 if (!resp)
2886 return -ENOMEM;
2887
2888 /*
2889 * Do a Get Device ID command, since it comes back with some
2890 * useful info.
2891 */
2892 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2893 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2894 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2895
2896 rv = wait_for_msg_done(smi_info);
2897 if (rv)
2898 goto out;
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2901 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Corey Minyardd8c98612007-10-18 03:07:11 -07002903 /* Check and record info from the get device id, in case we need it. */
2904 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 out:
2907 kfree(resp);
2908 return rv;
2909}
2910
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002911/*
2912 * Some BMCs do not support clearing the receive irq bit in the global
2913 * enables (even if they don't support interrupts on the BMC). Check
2914 * for this and handle it properly.
2915 */
2916static void check_clr_rcv_irq(struct smi_info *smi_info)
2917{
2918 unsigned char msg[3];
2919 unsigned char *resp;
2920 unsigned long resp_len;
2921 int rv;
2922
2923 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2924 if (!resp) {
2925 printk(KERN_WARNING PFX "Out of memory allocating response for"
2926 " global enables command, cannot check recv irq bit"
2927 " handling.\n");
2928 return;
2929 }
2930
2931 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2932 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2933 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2934
2935 rv = wait_for_msg_done(smi_info);
2936 if (rv) {
2937 printk(KERN_WARNING PFX "Error getting response from get"
2938 " global enables command, cannot check recv irq bit"
2939 " handling.\n");
2940 goto out;
2941 }
2942
2943 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2944 resp, IPMI_MAX_MSG_LENGTH);
2945
2946 if (resp_len < 4 ||
2947 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2948 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2949 resp[2] != 0) {
2950 printk(KERN_WARNING PFX "Invalid return from get global"
2951 " enables command, cannot check recv irq bit"
2952 " handling.\n");
2953 rv = -EINVAL;
2954 goto out;
2955 }
2956
2957 if ((resp[3] & IPMI_BMC_RCV_MSG_INTR) == 0)
2958 /* Already clear, should work ok. */
2959 goto out;
2960
2961 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2962 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2963 msg[2] = resp[3] & ~IPMI_BMC_RCV_MSG_INTR;
2964 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2965
2966 rv = wait_for_msg_done(smi_info);
2967 if (rv) {
2968 printk(KERN_WARNING PFX "Error getting response from set"
2969 " global enables command, cannot check recv irq bit"
2970 " handling.\n");
2971 goto out;
2972 }
2973
2974 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2975 resp, IPMI_MAX_MSG_LENGTH);
2976
2977 if (resp_len < 3 ||
2978 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2979 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
2980 printk(KERN_WARNING PFX "Invalid return from get global"
2981 " enables command, cannot check recv irq bit"
2982 " handling.\n");
2983 rv = -EINVAL;
2984 goto out;
2985 }
2986
2987 if (resp[2] != 0) {
2988 /*
2989 * An error when setting the event buffer bit means
2990 * clearing the bit is not supported.
2991 */
2992 printk(KERN_WARNING PFX "The BMC does not support clearing"
2993 " the recv irq bit, compensating, but the BMC needs to"
2994 " be fixed.\n");
2995 smi_info->cannot_clear_recv_irq_bit = true;
2996 }
2997 out:
2998 kfree(resp);
2999}
3000
Corey Minyard40112ae2009-04-21 12:24:03 -07003001static int try_enable_event_buffer(struct smi_info *smi_info)
3002{
3003 unsigned char msg[3];
3004 unsigned char *resp;
3005 unsigned long resp_len;
3006 int rv = 0;
3007
3008 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3009 if (!resp)
3010 return -ENOMEM;
3011
3012 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3013 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3014 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3015
3016 rv = wait_for_msg_done(smi_info);
3017 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003018 printk(KERN_WARNING PFX "Error getting response from get"
3019 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003020 " enabled.\n");
3021 goto out;
3022 }
3023
3024 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3025 resp, IPMI_MAX_MSG_LENGTH);
3026
3027 if (resp_len < 4 ||
3028 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3029 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3030 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003031 printk(KERN_WARNING PFX "Invalid return from get global"
3032 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003033 rv = -EINVAL;
3034 goto out;
3035 }
3036
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003037 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003038 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003039 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003040 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003041 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003042
3043 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3044 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3045 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3046 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3047
3048 rv = wait_for_msg_done(smi_info);
3049 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003050 printk(KERN_WARNING PFX "Error getting response from set"
3051 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003052 " enabled.\n");
3053 goto out;
3054 }
3055
3056 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3057 resp, IPMI_MAX_MSG_LENGTH);
3058
3059 if (resp_len < 3 ||
3060 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3061 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003062 printk(KERN_WARNING PFX "Invalid return from get global,"
3063 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003064 rv = -EINVAL;
3065 goto out;
3066 }
3067
3068 if (resp[2] != 0)
3069 /*
3070 * An error when setting the event buffer bit means
3071 * that the event buffer is not supported.
3072 */
3073 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003074 else
3075 smi_info->supports_event_msg_buff = true;
3076
Corey Minyard40112ae2009-04-21 12:24:03 -07003077 out:
3078 kfree(resp);
3079 return rv;
3080}
3081
Alexey Dobriyan07412732011-05-26 16:25:55 -07003082static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003084 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003086 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3087
Joe Perches5e33cd02015-02-22 10:21:07 -08003088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
Alexey Dobriyan07412732011-05-26 16:25:55 -07003091static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
Al Virod9dda782013-03-31 18:16:14 -04003093 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Alexey Dobriyan07412732011-05-26 16:25:55 -07003096static const struct file_operations smi_type_proc_ops = {
3097 .open = smi_type_proc_open,
3098 .read = seq_read,
3099 .llseek = seq_lseek,
3100 .release = single_release,
3101};
3102
3103static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3104{
3105 struct smi_info *smi = m->private;
3106
3107 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003108 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003109 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003110 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003111 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003112 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003113 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003114 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003115 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003116 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003117 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003118 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003119 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003120 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003121 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003122 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003123 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003124 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003125 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003126 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003127 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003128 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003129 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003130 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003131 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003132}
3133
Alexey Dobriyan07412732011-05-26 16:25:55 -07003134static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003135{
Al Virod9dda782013-03-31 18:16:14 -04003136 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003137}
Corey Minyardb361e272006-12-06 20:41:07 -08003138
Alexey Dobriyan07412732011-05-26 16:25:55 -07003139static const struct file_operations smi_si_stats_proc_ops = {
3140 .open = smi_si_stats_proc_open,
3141 .read = seq_read,
3142 .llseek = seq_lseek,
3143 .release = single_release,
3144};
3145
3146static int smi_params_proc_show(struct seq_file *m, void *v)
3147{
3148 struct smi_info *smi = m->private;
3149
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003150 seq_printf(m,
3151 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3152 si_to_str[smi->si_type],
3153 addr_space_to_str[smi->io.addr_type],
3154 smi->io.addr_data,
3155 smi->io.regspacing,
3156 smi->io.regsize,
3157 smi->io.regshift,
3158 smi->irq,
3159 smi->slave_addr);
3160
Joe Perches5e33cd02015-02-22 10:21:07 -08003161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162}
3163
Alexey Dobriyan07412732011-05-26 16:25:55 -07003164static int smi_params_proc_open(struct inode *inode, struct file *file)
3165{
Al Virod9dda782013-03-31 18:16:14 -04003166 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003167}
3168
3169static const struct file_operations smi_params_proc_ops = {
3170 .open = smi_params_proc_open,
3171 .read = seq_read,
3172 .llseek = seq_lseek,
3173 .release = single_release,
3174};
3175
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003176/*
3177 * oem_data_avail_to_receive_msg_avail
3178 * @info - smi_info structure with msg_flags set
3179 *
3180 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3181 * Returns 1 indicating need to re-run handle_flags().
3182 */
3183static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3184{
Corey Minyarde8b33612005-09-06 15:18:45 -07003185 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003186 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003187 return 1;
3188}
3189
3190/*
3191 * setup_dell_poweredge_oem_data_handler
3192 * @info - smi_info.device_id must be populated
3193 *
3194 * Systems that match, but have firmware version < 1.40 may assert
3195 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3196 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3197 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3198 * as RECEIVE_MSG_AVAIL instead.
3199 *
3200 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3201 * assert the OEM[012] bits, and if it did, the driver would have to
3202 * change to handle that properly, we don't actually check for the
3203 * firmware version.
3204 * Device ID = 0x20 BMC on PowerEdge 8G servers
3205 * Device Revision = 0x80
3206 * Firmware Revision1 = 0x01 BMC version 1.40
3207 * Firmware Revision2 = 0x40 BCD encoded
3208 * IPMI Version = 0x51 IPMI 1.5
3209 * Manufacturer ID = A2 02 00 Dell IANA
3210 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003211 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3212 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3213 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003214 */
3215#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3216#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3217#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003218#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003219static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3220{
3221 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003222 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003223 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3224 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003225 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003226 smi_info->oem_data_avail_handler =
3227 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003228 } else if (ipmi_version_major(id) < 1 ||
3229 (ipmi_version_major(id) == 1 &&
3230 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003231 smi_info->oem_data_avail_handler =
3232 oem_data_avail_to_receive_msg_avail;
3233 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003234 }
3235}
3236
Corey Minyardea940272005-11-07 00:59:59 -08003237#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3238static void return_hosed_msg_badsize(struct smi_info *smi_info)
3239{
3240 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3241
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003242 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003243 msg->rsp[0] = msg->data[0] | 4;
3244 msg->rsp[1] = msg->data[1];
3245 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3246 msg->rsp_size = 3;
3247 smi_info->curr_msg = NULL;
3248 deliver_recv_msg(smi_info, msg);
3249}
3250
3251/*
3252 * dell_poweredge_bt_xaction_handler
3253 * @info - smi_info.device_id must be populated
3254 *
3255 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3256 * not respond to a Get SDR command if the length of the data
3257 * requested is exactly 0x3A, which leads to command timeouts and no
3258 * data returned. This intercepts such commands, and causes userspace
3259 * callers to try again with a different-sized buffer, which succeeds.
3260 */
3261
3262#define STORAGE_NETFN 0x0A
3263#define STORAGE_CMD_GET_SDR 0x23
3264static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3265 unsigned long unused,
3266 void *in)
3267{
3268 struct smi_info *smi_info = in;
3269 unsigned char *data = smi_info->curr_msg->data;
3270 unsigned int size = smi_info->curr_msg->data_size;
3271 if (size >= 8 &&
3272 (data[0]>>2) == STORAGE_NETFN &&
3273 data[1] == STORAGE_CMD_GET_SDR &&
3274 data[7] == 0x3A) {
3275 return_hosed_msg_badsize(smi_info);
3276 return NOTIFY_STOP;
3277 }
3278 return NOTIFY_DONE;
3279}
3280
3281static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3282 .notifier_call = dell_poweredge_bt_xaction_handler,
3283};
3284
3285/*
3286 * setup_dell_poweredge_bt_xaction_handler
3287 * @info - smi_info.device_id must be filled in already
3288 *
3289 * Fills in smi_info.device_id.start_transaction_pre_hook
3290 * when we know what function to use there.
3291 */
3292static void
3293setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3294{
3295 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003296 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003297 smi_info->si_type == SI_BT)
3298 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3299}
3300
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003301/*
3302 * setup_oem_data_handler
3303 * @info - smi_info.device_id must be filled in already
3304 *
3305 * Fills in smi_info.device_id.oem_data_available_handler
3306 * when we know what function to use there.
3307 */
3308
3309static void setup_oem_data_handler(struct smi_info *smi_info)
3310{
3311 setup_dell_poweredge_oem_data_handler(smi_info);
3312}
3313
Corey Minyardea940272005-11-07 00:59:59 -08003314static void setup_xaction_handlers(struct smi_info *smi_info)
3315{
3316 setup_dell_poweredge_bt_xaction_handler(smi_info);
3317}
3318
Corey Minyarda9a2c442005-11-07 01:00:03 -08003319static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3320{
Corey Minyardb874b982014-11-06 17:01:59 -06003321 if (smi_info->thread != NULL)
3322 kthread_stop(smi_info->thread);
3323 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003324 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003325}
3326
Corey Minyard81d02b72015-06-13 10:34:25 -05003327static const struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003329 int type;
3330 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003331} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003332{
3333 { .type = SI_KCS, .port = 0xca2 },
3334 { .type = SI_SMIC, .port = 0xca9 },
3335 { .type = SI_BT, .port = 0xe4 },
3336 { .port = 0 }
3337};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003339static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003340{
3341 struct smi_info *info;
3342 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Corey Minyardb0defcd2006-03-26 01:37:20 -08003344 for (i = 0; ; i++) {
3345 if (!ipmi_defaults[i].port)
3346 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003347#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003348 if (check_legacy_ioport(ipmi_defaults[i].port))
3349 continue;
3350#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003351 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003352 if (!info)
3353 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003354
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003355 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003356
3357 info->si_type = ipmi_defaults[i].type;
3358 info->io_setup = port_setup;
3359 info->io.addr_data = ipmi_defaults[i].port;
3360 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3361
3362 info->io.addr = NULL;
3363 info->io.regspacing = DEFAULT_REGSPACING;
3364 info->io.regsize = DEFAULT_REGSPACING;
3365 info->io.regshift = 0;
3366
Matthew Garrett2407d772010-05-26 14:43:46 -07003367 if (add_smi(info) == 0) {
3368 if ((try_smi_init(info)) == 0) {
3369 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003370 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003371 " state machine at %s address 0x%lx\n",
3372 si_to_str[info->si_type],
3373 addr_space_to_str[info->io.addr_type],
3374 info->io.addr_data);
3375 } else
3376 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003377 } else {
3378 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003379 }
3380 }
3381}
3382
3383static int is_new_interface(struct smi_info *info)
3384{
3385 struct smi_info *e;
3386
3387 list_for_each_entry(e, &smi_infos, link) {
3388 if (e->io.addr_type != info->io.addr_type)
3389 continue;
3390 if (e->io.addr_data == info->io.addr_data)
3391 return 0;
3392 }
3393
3394 return 1;
3395}
3396
Matthew Garrett2407d772010-05-26 14:43:46 -07003397static int add_smi(struct smi_info *new_smi)
3398{
3399 int rv = 0;
3400
Myron Stowe279fbd02010-05-26 14:43:52 -07003401 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003402 ipmi_addr_src_to_str(new_smi->addr_source),
3403 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003404 mutex_lock(&smi_infos_lock);
3405 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003406 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003407 rv = -EBUSY;
3408 goto out_err;
3409 }
3410
3411 printk(KERN_CONT "\n");
3412
3413 /* So we know not to free it unless we have allocated one. */
3414 new_smi->intf = NULL;
3415 new_smi->si_sm = NULL;
3416 new_smi->handlers = NULL;
3417
3418 list_add_tail(&new_smi->link, &smi_infos);
3419
3420out_err:
3421 mutex_unlock(&smi_infos_lock);
3422 return rv;
3423}
3424
Corey Minyardb0defcd2006-03-26 01:37:20 -08003425static int try_smi_init(struct smi_info *new_smi)
3426{
Matthew Garrett2407d772010-05-26 14:43:46 -07003427 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003428 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003429
Myron Stowe279fbd02010-05-26 14:43:52 -07003430 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003431 " machine at %s address 0x%lx, slave address 0x%x,"
3432 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003433 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003434 si_to_str[new_smi->si_type],
3435 addr_space_to_str[new_smi->io.addr_type],
3436 new_smi->io.addr_data,
3437 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003438
Corey Minyardb0defcd2006-03-26 01:37:20 -08003439 switch (new_smi->si_type) {
3440 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003442 break;
3443
3444 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003446 break;
3447
3448 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003450 break;
3451
3452 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 /* No support for anything else yet. */
3454 rv = -EIO;
3455 goto out_err;
3456 }
3457
3458 /* Allocate the state machine's data and initialize it. */
3459 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003460 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003461 printk(KERN_ERR PFX
3462 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 rv = -ENOMEM;
3464 goto out_err;
3465 }
3466 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3467 &new_smi->io);
3468
3469 /* Now that we know the I/O size, we can set up the I/O. */
3470 rv = new_smi->io_setup(new_smi);
3471 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003472 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 goto out_err;
3474 }
3475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 /* Do low-level detection first. */
3477 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003478 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003479 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 rv = -ENODEV;
3481 goto out_err;
3482 }
3483
Corey Minyardc305e3d2008-04-29 01:01:10 -07003484 /*
3485 * Attempt a get device id command. If it fails, we probably
3486 * don't have a BMC here.
3487 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003489 if (rv) {
3490 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003491 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003492 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003496 check_clr_rcv_irq(new_smi);
3497
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003498 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003499 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003500
Corey Minyardb874b982014-11-06 17:01:59 -06003501 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 new_smi->curr_msg = NULL;
3503 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003504 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003505 for (i = 0; i < SI_NUM_STATS; i++)
3506 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Corey Minyard7aefac22014-04-14 09:46:56 -05003508 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003509 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003510 new_smi->intf_num = smi_num;
3511 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Corey Minyard40112ae2009-04-21 12:24:03 -07003513 rv = try_enable_event_buffer(new_smi);
3514 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003515 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003516
Corey Minyardc305e3d2008-04-29 01:01:10 -07003517 /*
3518 * Start clearing the flags before we enable interrupts or the
3519 * timer to avoid racing with the timer.
3520 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003522
3523 /*
3524 * IRQ is defined to be set when non-zero. req_events will
3525 * cause a global flags check that will enable interrupts.
3526 */
3527 if (new_smi->irq) {
3528 new_smi->interrupt_disabled = false;
3529 atomic_set(&new_smi->req_events, 1);
3530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Corey Minyard50c812b2006-03-26 01:37:21 -08003532 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003533 /*
3534 * If we don't already have a device from something
3535 * else (like PCI), then register a new one.
3536 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003537 new_smi->pdev = platform_device_alloc("ipmi_si",
3538 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003539 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003540 printk(KERN_ERR PFX
3541 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003542 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003543 }
3544 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003545 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003546
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003547 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003548 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003549 printk(KERN_ERR PFX
3550 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003551 " %d\n",
3552 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003553 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003554 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003555 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003556 }
3557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 rv = ipmi_register_smi(&handlers,
3559 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003560 &new_smi->device_id,
3561 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003562 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003564 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3565 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 goto out_err_stop_timer;
3567 }
3568
3569 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003570 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003571 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003573 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 goto out_err_stop_timer;
3575 }
3576
3577 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003578 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003579 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003581 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 goto out_err_stop_timer;
3583 }
3584
Corey Minyardb361e272006-12-06 20:41:07 -08003585 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003586 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003587 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003588 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003589 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003590 goto out_err_stop_timer;
3591 }
3592
Myron Stowe279fbd02010-05-26 14:43:52 -07003593 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3594 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
3596 return 0;
3597
3598 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003599 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601 out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003602 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Matthew Garrett2407d772010-05-26 14:43:46 -07003604 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003605 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003606 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003607 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003608 }
3609
3610 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003611 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003612 new_smi->irq_cleanup = NULL;
3613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Corey Minyardc305e3d2008-04-29 01:01:10 -07003615 /*
3616 * Wait until we know that we are out of any interrupt
3617 * handlers might have been running before we freed the
3618 * interrupt.
3619 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003620 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
3622 if (new_smi->si_sm) {
3623 if (new_smi->handlers)
3624 new_smi->handlers->cleanup(new_smi->si_sm);
3625 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003626 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003628 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003629 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003630 new_smi->addr_source_cleanup = NULL;
3631 }
3632 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003633 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003634 new_smi->io_cleanup = NULL;
3635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Matthew Garrett2407d772010-05-26 14:43:46 -07003637 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003638 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003639 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003640 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003641
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 return rv;
3643}
3644
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003645static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 int i;
3648 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003649 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003650 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003651 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
3653 if (initialized)
3654 return 0;
3655 initialized = 1;
3656
Corey Minyardf2afae42013-02-27 17:05:13 -08003657 if (si_tryplatform) {
3658 rv = platform_driver_register(&ipmi_driver);
3659 if (rv) {
3660 printk(KERN_ERR PFX "Unable to register "
3661 "driver: %d\n", rv);
3662 return rv;
3663 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003664 }
3665
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 /* Parse out the si_type string into its components. */
3667 str = si_type_str;
3668 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003669 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 si_type[i] = str;
3671 str = strchr(str, ',');
3672 if (str) {
3673 *str = '\0';
3674 str++;
3675 } else {
3676 break;
3677 }
3678 }
3679 }
3680
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003681 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003683 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003684 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003685 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003686
Corey Minyardb0defcd2006-03-26 01:37:20 -08003687#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003688 if (si_trypci) {
3689 rv = pci_register_driver(&ipmi_pci_driver);
3690 if (rv)
3691 printk(KERN_ERR PFX "Unable to register "
3692 "PCI driver: %d\n", rv);
3693 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003694 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003695 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003696#endif
3697
Matthew Garrett754d4532010-05-26 14:43:47 -07003698#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003699 if (si_trydmi)
3700 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003701#endif
3702
3703#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003704 if (si_tryacpi)
3705 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003706#endif
3707
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003708#ifdef CONFIG_PARISC
3709 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003710 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003711 /* poking PC IO addresses will crash machine, don't do it */
3712 si_trydefaults = 0;
3713#endif
3714
Matthew Garrett06ee4592010-05-26 14:43:49 -07003715 /* We prefer devices with interrupts, but in the case of a machine
3716 with multiple BMCs we assume that there will be several instances
3717 of a given type so if we succeed in registering a type then also
3718 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003719
Matthew Garrett2407d772010-05-26 14:43:46 -07003720 mutex_lock(&smi_infos_lock);
3721 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003722 /* Try to register a device if it has an IRQ and we either
3723 haven't successfully registered a device yet or this
3724 device has the same type as one we successfully registered */
3725 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003726 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003727 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003728 }
3729 }
3730 }
3731
Matthew Garrett06ee4592010-05-26 14:43:49 -07003732 /* type will only have been set if we successfully registered an si */
3733 if (type) {
3734 mutex_unlock(&smi_infos_lock);
3735 return 0;
3736 }
3737
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003738 /* Fall back to the preferred device */
3739
3740 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003741 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003742 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003743 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003744 }
3745 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003746 }
3747 mutex_unlock(&smi_infos_lock);
3748
Matthew Garrett06ee4592010-05-26 14:43:49 -07003749 if (type)
3750 return 0;
3751
Corey Minyardb0defcd2006-03-26 01:37:20 -08003752 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003753 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003754 if (list_empty(&smi_infos)) {
3755 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003756 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003757 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003758 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003759 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Corey Minyardd6dfd132006-03-31 02:30:41 -08003762 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003763 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003764 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003765 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003766 printk(KERN_WARNING PFX
3767 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003769 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003770 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773}
3774module_init(init_ipmi_si);
3775
Corey Minyardb361e272006-12-06 20:41:07 -08003776static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
Matthew Garrett2407d772010-05-26 14:43:46 -07003778 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Corey Minyardb0defcd2006-03-26 01:37:20 -08003780 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 return;
3782
Corey Minyardb874b982014-11-06 17:01:59 -06003783 if (to_clean->intf) {
3784 ipmi_smi_t intf = to_clean->intf;
3785
3786 to_clean->intf = NULL;
3787 rv = ipmi_unregister_smi(intf);
3788 if (rv) {
3789 pr_err(PFX "Unable to unregister device: errno=%d\n",
3790 rv);
3791 }
3792 }
3793
Takao Indoh567eded2014-10-06 14:17:53 -05003794 if (to_clean->dev)
3795 dev_set_drvdata(to_clean->dev, NULL);
3796
Corey Minyardb0defcd2006-03-26 01:37:20 -08003797 list_del(&to_clean->link);
3798
Corey Minyardc305e3d2008-04-29 01:01:10 -07003799 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003800 * Make sure that interrupts, the timer and the thread are
3801 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003802 */
Corey Minyardb874b982014-11-06 17:01:59 -06003803 if (to_clean->irq_cleanup)
3804 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003805 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Corey Minyardc305e3d2008-04-29 01:01:10 -07003807 /*
3808 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003809 * in the BMC. Note that timers and CPU interrupts are off,
3810 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003811 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003812 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003813 poll(to_clean);
3814 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003815 }
3816 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003817 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3818 poll(to_clean);
3819 schedule_timeout_uninterruptible(1);
3820 }
3821
Matthew Garrett2407d772010-05-26 14:43:46 -07003822 if (to_clean->handlers)
3823 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 kfree(to_clean->si_sm);
3826
Corey Minyardb0defcd2006-03-26 01:37:20 -08003827 if (to_clean->addr_source_cleanup)
3828 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003829 if (to_clean->io_cleanup)
3830 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003831
3832 if (to_clean->dev_registered)
3833 platform_device_unregister(to_clean->pdev);
3834
3835 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836}
3837
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003838static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003840 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Corey Minyardb0defcd2006-03-26 01:37:20 -08003842 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 return;
3844
Corey Minyardb0defcd2006-03-26 01:37:20 -08003845#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003846 if (pci_registered)
3847 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003848#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003849#ifdef CONFIG_PARISC
3850 if (parisc_registered)
3851 unregister_parisc_driver(&ipmi_parisc_driver);
3852#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003853
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003854 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003855
Corey Minyardd6dfd132006-03-31 02:30:41 -08003856 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003857 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3858 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003859 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861module_exit(cleanup_ipmi_si);
3862
3863MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003864MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003865MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3866 " system interfaces.");