blob: 89adeb4905f1c16307c89fda25f1c315eeae44c6 [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>
Tony Camuso58c9d612016-02-02 13:57:24 -050071#include <linux/acpi.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070072
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -050073#ifdef CONFIG_PARISC
74#include <asm/hardware.h> /* for register_parisc_driver() stuff */
75#include <asm/parisc-device.h>
76#endif
77
Corey Minyardb361e272006-12-06 20:41:07 -080078#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* Measure times between events in the driver. */
81#undef DEBUG_TIMING
82
83/* Call every 10 ms. */
84#define SI_TIMEOUT_TIME_USEC 10000
85#define SI_USEC_PER_JIFFY (1000000/HZ)
86#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
87#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070088 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90enum si_intf_state {
91 SI_NORMAL,
92 SI_GETTING_FLAGS,
93 SI_GETTING_EVENTS,
94 SI_CLEARING_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 SI_GETTING_MESSAGES,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -060096 SI_CHECKING_ENABLES,
97 SI_SETTING_ENABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* FIXME - add watchdog stuff. */
99};
100
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700101/* Some BT-specific defines we need here. */
102#define IPMI_BT_INTMASK_REG 2
103#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
104#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106enum si_type {
Corey Minyard76824852016-04-26 22:40:15 -0500107 SI_KCS, SI_SMIC, SI_BT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
LABBE Corentin99ee6732015-11-13 13:31:51 +0100109
110static const char * const si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Corey Minyard50c812b2006-03-26 01:37:21 -0800112#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700113
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600114static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700115
116/*
117 * Indexes into stats[] in smi_info below.
118 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700119enum si_stat_indexes {
120 /*
121 * Number of times the driver requested a timer while an operation
122 * was in progress.
123 */
124 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700125
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700126 /*
127 * Number of times the driver requested a timer while nothing was in
128 * progress.
129 */
130 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700131
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700132 /* Number of times the interface was idle while being polled. */
133 SI_STAT_idles,
134
135 /* Number of interrupts the driver handled. */
136 SI_STAT_interrupts,
137
138 /* Number of time the driver got an ATTN from the hardware. */
139 SI_STAT_attentions,
140
141 /* Number of times the driver requested flags from the hardware. */
142 SI_STAT_flag_fetches,
143
144 /* Number of times the hardware didn't follow the state machine. */
145 SI_STAT_hosed_count,
146
147 /* Number of completed messages. */
148 SI_STAT_complete_transactions,
149
150 /* Number of IPMI events received from the hardware. */
151 SI_STAT_events,
152
153 /* Number of watchdog pretimeouts. */
154 SI_STAT_watchdog_pretimeouts,
155
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400156 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700157 SI_STAT_incoming_messages,
158
159
160 /* This *must* remain last, add new values above this. */
161 SI_NUM_STATS
162};
Corey Minyard64959e22008-04-29 01:01:07 -0700163
Corey Minyardc305e3d2008-04-29 01:01:10 -0700164struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800165 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 ipmi_smi_t intf;
167 struct si_sm_data *si_sm;
Corey Minyard81d02b72015-06-13 10:34:25 -0500168 const struct si_sm_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 enum si_type si_type;
170 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600171 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct ipmi_smi_msg *curr_msg;
173 enum si_intf_state si_state;
174
Corey Minyardc305e3d2008-04-29 01:01:10 -0700175 /*
176 * Used to handle the various types of I/O that can occur with
177 * IPMI
178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct si_sm_io io;
180 int (*io_setup)(struct smi_info *info);
181 void (*io_cleanup)(struct smi_info *info);
182 int (*irq_setup)(struct smi_info *info);
183 void (*irq_cleanup)(struct smi_info *info);
184 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700185 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800186 void (*addr_source_cleanup)(struct smi_info *info);
187 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Corey Minyardc305e3d2008-04-29 01:01:10 -0700189 /*
190 * Per-OEM handler, called from handle_flags(). Returns 1
191 * when handle_flags() needs to be re-run or 0 indicating it
192 * set si_state itself.
193 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700194 int (*oem_data_avail_handler)(struct smi_info *smi_info);
195
Corey Minyardc305e3d2008-04-29 01:01:10 -0700196 /*
197 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
198 * is set to hold the flags until we are done handling everything
199 * from the flags.
200 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define RECEIVE_MSG_AVAIL 0x01
202#define EVENT_MSG_BUFFER_FULL 0x02
203#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700204#define OEM0_DATA_AVAIL 0x20
205#define OEM1_DATA_AVAIL 0x40
206#define OEM2_DATA_AVAIL 0x80
207#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700208 OEM1_DATA_AVAIL | \
209 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 unsigned char msg_flags;
211
Corey Minyard40112ae2009-04-21 12:24:03 -0700212 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500213 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700214
Corey Minyardc305e3d2008-04-29 01:01:10 -0700215 /*
216 * If set to true, this will request events the next time the
217 * state machine is idle.
218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 atomic_t req_events;
220
Corey Minyardc305e3d2008-04-29 01:01:10 -0700221 /*
222 * If true, run the state machine to completion on every send
223 * call. Generally used after a panic to make sure stuff goes
224 * out.
225 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500226 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* The I/O port of an SI interface. */
229 int port;
230
Corey Minyardc305e3d2008-04-29 01:01:10 -0700231 /*
232 * The space between start addresses of the two ports. For
233 * instance, if the first port is 0xca2 and the spacing is 4, then
234 * the second port is 0xca6.
235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned int spacing;
237
238 /* zero if no irq; */
239 int irq;
240
241 /* The timer for this si. */
242 struct timer_list si_timer;
243
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000244 /* This flag is set, if the timer can be set */
245 bool timer_can_start;
246
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500247 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
248 bool timer_running;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* The time (in jiffies) the last timeout occurred at. */
251 unsigned long last_timeout_jiffies;
252
Corey Minyard89986492014-04-14 09:46:54 -0500253 /* Are we waiting for the events, pretimeouts, received msgs? */
254 atomic_t need_watch;
255
Corey Minyardc305e3d2008-04-29 01:01:10 -0700256 /*
257 * The driver will disable interrupts when it gets into a
258 * situation where it cannot handle messages due to lack of
259 * memory. Once that situation clears up, it will re-enable
260 * interrupts.
261 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500262 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600264 /*
265 * Does the BMC support events?
266 */
267 bool supports_event_msg_buff;
268
Corey Minyarda8df1502014-11-19 11:47:17 -0600269 /*
Corey Minyardd0882892015-08-18 14:29:10 -0500270 * Can we disable interrupts the global enables receive irq
271 * bit? There are currently two forms of brokenness, some
272 * systems cannot disable the bit (which is technically within
273 * the spec but a bad idea) and some systems have the bit
274 * forced to zero even though interrupts work (which is
275 * clearly outside the spec). The next bool tells which form
276 * of brokenness is present.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500277 */
Corey Minyardd0882892015-08-18 14:29:10 -0500278 bool cannot_disable_irq;
279
280 /*
281 * Some systems are broken and cannot set the irq enable
282 * bit, even if they support interrupts.
283 */
284 bool irq_enable_broken;
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500285
286 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600287 * Did we get an attention that we did not handle?
288 */
289 bool got_attn;
290
Corey Minyard50c812b2006-03-26 01:37:21 -0800291 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700292 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Corey Minyard50c812b2006-03-26 01:37:21 -0800294 /* Driver model stuff. */
295 struct device *dev;
296 struct platform_device *pdev;
297
Corey Minyardc305e3d2008-04-29 01:01:10 -0700298 /*
299 * True if we allocated the device, false if it came from
300 * someplace else (like PCI).
301 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500302 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Slave address, could be reported from DMI. */
305 unsigned char slave_addr;
306
307 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700308 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800309
Corey Minyardc305e3d2008-04-29 01:01:10 -0700310 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800311
312 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800313 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314};
315
Corey Minyard64959e22008-04-29 01:01:07 -0700316#define smi_inc_stat(smi, stat) \
317 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
318#define smi_get_stat(smi, stat) \
319 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
320
Corey Minyarda51f4a82006-10-03 01:13:59 -0700321#define SI_MAX_PARMS 4
322
323static int force_kipmid[SI_MAX_PARMS];
324static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700325#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500326static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700327#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500328#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500329static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500330#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700331
Martin Wilckae74e822010-03-10 15:23:06 -0800332static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
333static int num_max_busy_us;
334
Corey Minyard7aefac22014-04-14 09:46:56 -0500335static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800336
Matthew Garrett2407d772010-05-26 14:43:46 -0700337static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800338static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800339static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600340static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800341
John Stultzf93aae92015-01-07 14:24:28 -0800342#ifdef DEBUG_TIMING
343void debug_timestamp(char *msg)
344{
John Stultz48862ea22015-01-07 14:24:29 -0800345 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800346
John Stultz48862ea22015-01-07 14:24:29 -0800347 getnstimeofday64(&t);
348 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800349}
350#else
351#define debug_timestamp(x)
352#endif
353
Alan Sterne041c682006-03-27 01:16:30 -0800354static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700355static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800356{
Alan Sterne041c682006-03-27 01:16:30 -0800357 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static void deliver_recv_msg(struct smi_info *smi_info,
361 struct ipmi_smi_msg *msg)
362{
Corey Minyard7adf5792012-03-28 14:42:49 -0700363 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600364 if (smi_info->intf)
365 ipmi_smi_msg_received(smi_info->intf, msg);
366 else
367 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800370static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct ipmi_smi_msg *msg = smi_info->curr_msg;
373
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800374 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
375 cCode = IPMI_ERR_UNSPECIFIED;
376 /* else use it as is */
377
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300378 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 msg->rsp[0] = msg->data[0] | 4;
380 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800381 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 msg->rsp_size = 3;
383
384 smi_info->curr_msg = NULL;
385 deliver_recv_msg(smi_info, msg);
386}
387
388static enum si_sm_result start_next_msg(struct smi_info *smi_info)
389{
390 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Corey Minyardb874b982014-11-06 17:01:59 -0600392 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 smi_info->curr_msg = NULL;
394 rv = SI_SM_IDLE;
395 } else {
396 int err;
397
Corey Minyardb874b982014-11-06 17:01:59 -0600398 smi_info->curr_msg = smi_info->waiting_msg;
399 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800400 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800401 err = atomic_notifier_call_chain(&xaction_notifier_list,
402 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800403 if (err & NOTIFY_STOP_MASK) {
404 rv = SI_SM_CALL_WITHOUT_DELAY;
405 goto out;
406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 err = smi_info->handlers->start_transaction(
408 smi_info->si_sm,
409 smi_info->curr_msg->data,
410 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700411 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800412 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 rv = SI_SM_CALL_WITHOUT_DELAY;
415 }
Corey Minyard76824852016-04-26 22:40:15 -0500416out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return rv;
418}
419
Corey Minyard0cfec912015-09-05 17:44:13 -0500420static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
421{
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000422 if (!smi_info->timer_can_start)
423 return;
Corey Minyard0cfec912015-09-05 17:44:13 -0500424 smi_info->last_timeout_jiffies = jiffies;
425 mod_timer(&smi_info->si_timer, new_val);
426 smi_info->timer_running = true;
427}
428
429/*
430 * Start a new message and (re)start the timer and thread.
431 */
432static void start_new_msg(struct smi_info *smi_info, unsigned char *msg,
433 unsigned int size)
434{
435 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
436
437 if (smi_info->thread)
438 wake_up_process(smi_info->thread);
439
440 smi_info->handlers->start_transaction(smi_info->si_sm, msg, size);
441}
442
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000443static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700444{
445 unsigned char msg[2];
446
447 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
448 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
449
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000450 start_new_msg(smi_info, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600451 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700452}
453
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000454static void start_clear_flags(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 unsigned char msg[3];
457
458 /* Make sure the watchdog pre-timeout flag is not set at startup. */
459 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
460 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
461 msg[2] = WDT_PRE_TIMEOUT_INT;
462
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000463 start_new_msg(smi_info, msg, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 smi_info->si_state = SI_CLEARING_FLAGS;
465}
466
Corey Minyard968bf7c2014-11-06 19:06:00 -0600467static void start_getting_msg_queue(struct smi_info *smi_info)
468{
469 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
470 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
471 smi_info->curr_msg->data_size = 2;
472
Corey Minyard0cfec912015-09-05 17:44:13 -0500473 start_new_msg(smi_info, smi_info->curr_msg->data,
474 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600475 smi_info->si_state = SI_GETTING_MESSAGES;
476}
477
478static void start_getting_events(struct smi_info *smi_info)
479{
480 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
481 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
482 smi_info->curr_msg->data_size = 2;
483
Corey Minyard0cfec912015-09-05 17:44:13 -0500484 start_new_msg(smi_info, smi_info->curr_msg->data,
485 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600486 smi_info->si_state = SI_GETTING_EVENTS;
487}
488
Corey Minyardc305e3d2008-04-29 01:01:10 -0700489/*
490 * When we have a situtaion where we run out of memory and cannot
491 * allocate messages, we just leave them in the BMC and run the system
492 * polled until we can allocate some memory. Once we have some
493 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500494 *
495 * Note that we cannot just use disable_irq(), since the interrupt may
496 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700497 */
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000498static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800500 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500501 smi_info->interrupt_disabled = true;
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000502 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600503 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600505 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Corey Minyard968bf7c2014-11-06 19:06:00 -0600508static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500511 smi_info->interrupt_disabled = false;
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000512 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600513 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600515 return false;
516}
517
518/*
519 * Allocate a message. If unable to allocate, start the interrupt
520 * disable process and return NULL. If able to allocate but
521 * interrupts are disabled, free the message and return NULL after
522 * starting the interrupt enable process.
523 */
524static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
525{
526 struct ipmi_smi_msg *msg;
527
528 msg = ipmi_alloc_smi_msg();
529 if (!msg) {
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000530 if (!disable_si_irq(smi_info))
Corey Minyard968bf7c2014-11-06 19:06:00 -0600531 smi_info->si_state = SI_NORMAL;
532 } else if (enable_si_irq(smi_info)) {
533 ipmi_free_smi_msg(msg);
534 msg = NULL;
535 }
536 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539static void handle_flags(struct smi_info *smi_info)
540{
Corey Minyard76824852016-04-26 22:40:15 -0500541retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
543 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700544 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000546 start_clear_flags(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600548 if (smi_info->intf)
549 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
551 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600552 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
553 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Corey Minyard968bf7c2014-11-06 19:06:00 -0600556 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
558 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600559 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
560 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Corey Minyard968bf7c2014-11-06 19:06:00 -0600563 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700564 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700565 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700566 if (smi_info->oem_data_avail_handler(smi_info))
567 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700568 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600572/*
573 * Global enables we care about.
574 */
575#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
576 IPMI_BMC_EVT_MSG_INTR)
577
Corey Minyard95c97b52014-11-20 07:19:44 -0600578static u8 current_global_enables(struct smi_info *smi_info, u8 base,
579 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600580{
581 u8 enables = 0;
582
583 if (smi_info->supports_event_msg_buff)
584 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600585
Corey Minyardd0882892015-08-18 14:29:10 -0500586 if (((smi_info->irq && !smi_info->interrupt_disabled) ||
587 smi_info->cannot_disable_irq) &&
588 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600589 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600590
591 if (smi_info->supports_event_msg_buff &&
Corey Minyardd0882892015-08-18 14:29:10 -0500592 smi_info->irq && !smi_info->interrupt_disabled &&
593 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600594 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600595
Corey Minyard95c97b52014-11-20 07:19:44 -0600596 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
597
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600598 return enables;
599}
600
Corey Minyard95c97b52014-11-20 07:19:44 -0600601static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
602{
603 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
604
605 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
606
607 if ((bool)irqstate == irq_on)
608 return;
609
610 if (irq_on)
611 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
612 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
613 else
614 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static void handle_transaction_done(struct smi_info *smi_info)
618{
619 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
John Stultzf93aae92015-01-07 14:24:28 -0800621 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 switch (smi_info->si_state) {
623 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800624 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626
627 smi_info->curr_msg->rsp_size
628 = smi_info->handlers->get_result(
629 smi_info->si_sm,
630 smi_info->curr_msg->rsp,
631 IPMI_MAX_MSG_LENGTH);
632
Corey Minyardc305e3d2008-04-29 01:01:10 -0700633 /*
634 * Do this here becase deliver_recv_msg() releases the
635 * lock, and a new message can be put in during the
636 * time the lock is released.
637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 msg = smi_info->curr_msg;
639 smi_info->curr_msg = NULL;
640 deliver_recv_msg(smi_info, msg);
641 break;
642
643 case SI_GETTING_FLAGS:
644 {
645 unsigned char msg[4];
646 unsigned int len;
647
648 /* We got the flags from the SMI, now handle them. */
649 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
650 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700651 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 smi_info->si_state = SI_NORMAL;
653 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700654 /*
655 * Hmm, no flags. That's technically illegal, but
656 * don't use uninitialized data.
657 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 smi_info->si_state = SI_NORMAL;
659 } else {
660 smi_info->msg_flags = msg[3];
661 handle_flags(smi_info);
662 }
663 break;
664 }
665
666 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 {
668 unsigned char msg[3];
669
670 /* We cleared the flags. */
671 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
672 if (msg[2] != 0) {
673 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700674 dev_warn(smi_info->dev,
675 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600677 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 break;
679 }
680
681 case SI_GETTING_EVENTS:
682 {
683 smi_info->curr_msg->rsp_size
684 = smi_info->handlers->get_result(
685 smi_info->si_sm,
686 smi_info->curr_msg->rsp,
687 IPMI_MAX_MSG_LENGTH);
688
Corey Minyardc305e3d2008-04-29 01:01:10 -0700689 /*
690 * Do this here becase deliver_recv_msg() releases the
691 * lock, and a new message can be put in during the
692 * time the lock is released.
693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 msg = smi_info->curr_msg;
695 smi_info->curr_msg = NULL;
696 if (msg->rsp[2] != 0) {
697 /* Error getting event, probably done. */
698 msg->done(msg);
699
700 /* Take off the event flag. */
701 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
702 handle_flags(smi_info);
703 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700704 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Corey Minyardc305e3d2008-04-29 01:01:10 -0700706 /*
707 * Do this before we deliver the message
708 * because delivering the message releases the
709 * lock and something else can mess with the
710 * state.
711 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 handle_flags(smi_info);
713
714 deliver_recv_msg(smi_info, msg);
715 }
716 break;
717 }
718
719 case SI_GETTING_MESSAGES:
720 {
721 smi_info->curr_msg->rsp_size
722 = smi_info->handlers->get_result(
723 smi_info->si_sm,
724 smi_info->curr_msg->rsp,
725 IPMI_MAX_MSG_LENGTH);
726
Corey Minyardc305e3d2008-04-29 01:01:10 -0700727 /*
728 * Do this here becase deliver_recv_msg() releases the
729 * lock, and a new message can be put in during the
730 * time the lock is released.
731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 msg = smi_info->curr_msg;
733 smi_info->curr_msg = NULL;
734 if (msg->rsp[2] != 0) {
735 /* Error getting event, probably done. */
736 msg->done(msg);
737
738 /* Take off the msg flag. */
739 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
740 handle_flags(smi_info);
741 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700742 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Corey Minyardc305e3d2008-04-29 01:01:10 -0700744 /*
745 * Do this before we deliver the message
746 * because delivering the message releases the
747 * lock and something else can mess with the
748 * state.
749 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 handle_flags(smi_info);
751
752 deliver_recv_msg(smi_info, msg);
753 }
754 break;
755 }
756
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600757 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 {
759 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600760 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600761 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /* We got the flags from the SMI, now handle them. */
764 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
765 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500766 dev_warn(smi_info->dev,
767 "Couldn't get irq info: %x.\n", msg[2]);
768 dev_warn(smi_info->dev,
769 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600771 break;
772 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600773 enables = current_global_enables(smi_info, 0, &irq_on);
774 if (smi_info->si_type == SI_BT)
775 /* BT has its own interrupt enable bit. */
776 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600777 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
778 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
780 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600781 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 smi_info->handlers->start_transaction(
783 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600784 smi_info->si_state = SI_SETTING_ENABLES;
785 } else if (smi_info->supports_event_msg_buff) {
786 smi_info->curr_msg = ipmi_alloc_smi_msg();
787 if (!smi_info->curr_msg) {
788 smi_info->si_state = SI_NORMAL;
789 break;
790 }
791 start_getting_msg_queue(smi_info);
792 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700793 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700794 }
795 break;
796 }
797
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600798 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700799 {
800 unsigned char msg[4];
801
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700802 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600803 if (msg[2] != 0)
804 dev_warn(smi_info->dev,
805 "Could not set the global enables: 0x%x.\n",
806 msg[2]);
807
808 if (smi_info->supports_event_msg_buff) {
809 smi_info->curr_msg = ipmi_alloc_smi_msg();
810 if (!smi_info->curr_msg) {
811 smi_info->si_state = SI_NORMAL;
812 break;
813 }
814 start_getting_msg_queue(smi_info);
815 } else {
816 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700817 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700818 break;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821}
822
Corey Minyardc305e3d2008-04-29 01:01:10 -0700823/*
824 * Called on timeouts and events. Timeouts should pass the elapsed
825 * time, interrupts should pass in zero. Must be called with
826 * si_lock held and interrupts disabled.
827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
829 int time)
830{
831 enum si_sm_result si_sm_result;
832
Corey Minyard76824852016-04-26 22:40:15 -0500833restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700834 /*
835 * There used to be a loop here that waited a little while
836 * (around 25us) before giving up. That turned out to be
837 * pointless, the minimum delays I was seeing were in the 300us
838 * range, which is far too long to wait in an interrupt. So
839 * we just run until the state machine tells us something
840 * happened or it needs a delay.
841 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
843 time = 0;
844 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Corey Minyardc305e3d2008-04-29 01:01:10 -0700847 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700848 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 handle_transaction_done(smi_info);
Corey Minyardd9dffd22016-01-25 16:11:20 -0600851 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700852 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700853 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Corey Minyardc305e3d2008-04-29 01:01:10 -0700855 /*
856 * Do the before return_hosed_msg, because that
857 * releases the lock.
858 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 smi_info->si_state = SI_NORMAL;
860 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700861 /*
862 * If we were handling a user message, format
863 * a response to send to the upper layer to
864 * tell it about the error.
865 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800866 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
Corey Minyardd9dffd22016-01-25 16:11:20 -0600868 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870
Corey Minyard4ea18422008-04-29 01:01:01 -0700871 /*
872 * We prefer handling attn over new messages. But don't do
873 * this if there is not yet an upper layer to handle anything.
874 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600875 if (likely(smi_info->intf) &&
876 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 unsigned char msg[2];
878
Corey Minyarda8df1502014-11-19 11:47:17 -0600879 if (smi_info->si_state != SI_NORMAL) {
880 /*
881 * We got an ATTN, but we are doing something else.
882 * Handle the ATTN later.
883 */
884 smi_info->got_attn = true;
885 } else {
886 smi_info->got_attn = false;
887 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Corey Minyarda8df1502014-11-19 11:47:17 -0600889 /*
890 * Got a attn, send down a get message flags to see
891 * what's causing it. It would be better to handle
892 * this in the upper layer, but due to the way
893 * interrupts work with the SMI, that's not really
894 * possible.
895 */
896 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
897 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Corey Minyard0cfec912015-09-05 17:44:13 -0500899 start_new_msg(smi_info, msg, 2);
Corey Minyarda8df1502014-11-19 11:47:17 -0600900 smi_info->si_state = SI_GETTING_FLAGS;
901 goto restart;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
905 /* If we are currently idle, try to start the next message. */
906 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700907 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 si_sm_result = start_next_msg(smi_info);
910 if (si_sm_result != SI_SM_IDLE)
911 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700915 && (atomic_read(&smi_info->req_events))) {
916 /*
917 * We are idle and the upper layer requested that I fetch
918 * events, so do so.
919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800921
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600922 /*
923 * Take this opportunity to check the interrupt and
924 * message enable state for the BMC. The BMC can be
925 * asynchronously reset, and may thus get interrupts
926 * disable and messages disabled.
927 */
928 if (smi_info->supports_event_msg_buff || smi_info->irq) {
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000929 start_check_enables(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600930 } else {
931 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
932 if (!smi_info->curr_msg)
933 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800934
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600935 start_getting_events(smi_info);
936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto restart;
938 }
Corey Minyard314ef522015-09-05 17:58:13 -0500939
940 if (si_sm_result == SI_SM_IDLE && smi_info->timer_running) {
941 /* Ok it if fails, the timer will just go off. */
942 if (del_timer(&smi_info->si_timer))
943 smi_info->timer_running = false;
944 }
945
Corey Minyard76824852016-04-26 22:40:15 -0500946out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return si_sm_result;
948}
949
Corey Minyard89986492014-04-14 09:46:54 -0500950static void check_start_timer_thread(struct smi_info *smi_info)
951{
952 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
953 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
954
955 if (smi_info->thread)
956 wake_up_process(smi_info->thread);
957
958 start_next_msg(smi_info);
959 smi_event_handler(smi_info, 0);
960 }
961}
962
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900963static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900964{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900965 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900966 enum si_sm_result result;
967
968 /*
969 * Currently, this function is called only in run-to-completion
970 * mode. This means we are single-threaded, no need for locks.
971 */
972 result = smi_event_handler(smi_info, 0);
973 while (result != SI_SM_IDLE) {
974 udelay(SI_SHORT_TIMEOUT_USEC);
975 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
976 }
977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600980 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
John Stultzf93aae92015-01-07 14:24:28 -0800985 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700988 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900989 * If we are running to completion, start it. Upper
990 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700991 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900992 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Corey Minyardf60adf42012-03-28 14:42:50 -0700996 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600997 /*
998 * The following two lines don't need to be under the lock for
999 * the lock's sake, but they do need SMP memory barriers to
1000 * avoid getting things out of order. We are already claiming
1001 * the lock, anyway, so just do it under the lock to avoid the
1002 * ordering problem.
1003 */
1004 BUG_ON(smi_info->waiting_msg);
1005 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -05001006 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -07001007 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Corey Minyard7aefac22014-04-14 09:46:56 -05001010static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +09001015 if (i_run_to_completion)
1016 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Martin Wilckae74e822010-03-10 15:23:06 -08001019/*
1020 * Use -1 in the nsec value of the busy waiting timespec to tell that
1021 * we are spinning in kipmid looking for something and not delaying
1022 * between checks
1023 */
John Stultz48862ea22015-01-07 14:24:29 -08001024static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001025{
1026 ts->tv_nsec = -1;
1027}
John Stultz48862ea22015-01-07 14:24:29 -08001028static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001029{
1030 return ts->tv_nsec != -1;
1031}
1032
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001033static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1034 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001035 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001036{
1037 unsigned int max_busy_us = 0;
1038
1039 if (smi_info->intf_num < num_max_busy_us)
1040 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1041 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1042 ipmi_si_set_not_busy(busy_until);
1043 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001044 getnstimeofday64(busy_until);
1045 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001046 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001047 struct timespec64 now;
1048
1049 getnstimeofday64(&now);
1050 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001051 ipmi_si_set_not_busy(busy_until);
1052 return 0;
1053 }
1054 }
1055 return 1;
1056}
1057
1058
1059/*
1060 * A busy-waiting loop for speeding up IPMI operation.
1061 *
1062 * Lousy hardware makes this hard. This is only enabled for systems
1063 * that are not BT and do not have interrupts. It starts spinning
1064 * when an operation is complete or until max_busy tells it to stop
1065 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1066 * Documentation/IPMI.txt for details.
1067 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001068static int ipmi_thread(void *data)
1069{
1070 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001071 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001072 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001073 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001074
Martin Wilckae74e822010-03-10 15:23:06 -08001075 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001076 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001077 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001078 int busy_wait;
1079
Corey Minyarda9a2c442005-11-07 01:00:03 -08001080 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001081 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001082
1083 /*
1084 * If the driver is doing something, there is a possible
1085 * race with the timer. If the timer handler see idle,
1086 * and the thread here sees something else, the timer
1087 * handler won't restart the timer even though it is
1088 * required. So start it here if necessary.
1089 */
1090 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1091 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1092
Corey Minyarda9a2c442005-11-07 01:00:03 -08001093 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001094 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1095 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001096 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1097 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001098 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001099 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001100 else if (smi_result == SI_SM_IDLE) {
1101 if (atomic_read(&smi_info->need_watch)) {
1102 schedule_timeout_interruptible(100);
1103 } else {
1104 /* Wait to be woken up when we are needed. */
1105 __set_current_state(TASK_INTERRUPTIBLE);
1106 schedule();
1107 }
1108 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001109 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001110 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001111 return 0;
1112}
1113
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115static void poll(void *send_info)
1116{
1117 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001118 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001119 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Corey Minyard15c62e12006-12-06 20:41:06 -08001121 /*
1122 * Make sure there is some delay in the poll loop so we can
1123 * drive time forward and timeout things.
1124 */
1125 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001126 if (!run_to_completion)
1127 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001128 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001129 if (!run_to_completion)
1130 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133static void request_events(void *send_info)
1134{
1135 struct smi_info *smi_info = send_info;
1136
Corey Minyardb874b982014-11-06 17:01:59 -06001137 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001138 return;
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 atomic_set(&smi_info->req_events, 1);
1141}
1142
Corey Minyard7aefac22014-04-14 09:46:56 -05001143static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001144{
1145 struct smi_info *smi_info = send_info;
1146 unsigned long flags;
1147
1148 atomic_set(&smi_info->need_watch, enable);
1149 spin_lock_irqsave(&smi_info->si_lock, flags);
1150 check_start_timer_thread(smi_info);
1151 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1152}
1153
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001154static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156static void smi_timeout(unsigned long data)
1157{
1158 struct smi_info *smi_info = (struct smi_info *) data;
1159 enum si_sm_result smi_result;
1160 unsigned long flags;
1161 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001162 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001163 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001166 debug_timestamp("Timer");
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001169 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * SI_USEC_PER_JIFFY);
1171 smi_result = smi_event_handler(smi_info, time_diff);
1172
Corey Minyardb0defcd2006-03-26 01:37:20 -08001173 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001175 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001176 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001177 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179
Corey Minyardc305e3d2008-04-29 01:01:10 -07001180 /*
1181 * If the state machine asks for a short delay, then shorten
1182 * the timer timeout.
1183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001185 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001186 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001188 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001189 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191
Corey Minyard76824852016-04-26 22:40:15 -05001192do_mod_timer:
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001193 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001194 smi_mod_timer(smi_info, timeout);
1195 else
1196 smi_info->timer_running = false;
1197 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
David Howells7d12e782006-10-05 14:55:46 +01001200static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 struct smi_info *smi_info = data;
1203 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 spin_lock_irqsave(&(smi_info->si_lock), flags);
1206
Corey Minyard64959e22008-04-29 01:01:07 -07001207 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
John Stultzf93aae92015-01-07 14:24:28 -08001209 debug_timestamp("Interrupt");
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1213 return IRQ_HANDLED;
1214}
1215
David Howells7d12e782006-10-05 14:55:46 +01001216static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001217{
1218 struct smi_info *smi_info = data;
1219 /* We need to clear the IRQ flag for the BT interface. */
1220 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1221 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1222 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001223 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001224}
1225
Corey Minyard453823b2006-03-31 02:30:39 -08001226static int smi_start_processing(void *send_info,
1227 ipmi_smi_t intf)
1228{
1229 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001230 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001231
1232 new_smi->intf = intf;
1233
1234 /* Set up the timer that drives the interface. */
1235 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00001236 new_smi->timer_can_start = true;
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001237 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001238
Jan Stancek27f972d2015-12-08 13:57:51 -05001239 /* Try to claim any interrupts. */
1240 if (new_smi->irq_setup)
1241 new_smi->irq_setup(new_smi);
1242
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001243 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001244 * Check if the user forcefully enabled the daemon.
1245 */
1246 if (new_smi->intf_num < num_force_kipmid)
1247 enable = force_kipmid[new_smi->intf_num];
1248 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001249 * The BT interface is efficient enough to not need a thread,
1250 * and there is no need for a thread if we have interrupts.
1251 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001252 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001253 enable = 1;
1254
1255 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001256 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1257 "kipmi%d", new_smi->intf_num);
1258 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001259 dev_notice(new_smi->dev, "Could not start"
1260 " kernel thread due to error %ld, only using"
1261 " timers to drive the interface\n",
1262 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001263 new_smi->thread = NULL;
1264 }
1265 }
1266
1267 return 0;
1268}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001269
Zhao Yakui16f42322010-12-08 10:10:16 +08001270static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1271{
1272 struct smi_info *smi = send_info;
1273
1274 data->addr_src = smi->addr_source;
1275 data->dev = smi->dev;
1276 data->addr_info = smi->addr_info;
1277 get_device(smi->dev);
1278
1279 return 0;
1280}
1281
Corey Minyard7aefac22014-04-14 09:46:56 -05001282static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001283{
1284 struct smi_info *smi_info = send_info;
1285
1286 if (!enable)
1287 atomic_set(&smi_info->req_events, 0);
1288}
1289
Corey Minyard81d02b72015-06-13 10:34:25 -05001290static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001292 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001293 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 .sender = sender,
1295 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001296 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001297 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001299 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 .poll = poll,
1301};
1302
Corey Minyardc305e3d2008-04-29 01:01:10 -07001303/*
1304 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1305 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Corey Minyardb0defcd2006-03-26 01:37:20 -08001308static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001309static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001310static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001313#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Corey Minyardd941aea2013-02-27 17:05:12 -08001315#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301316static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001317#endif
1318#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301319static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001320#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301321static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001322#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301323static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001324#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325static char *si_type[SI_MAX_PARMS];
1326#define MAX_SI_TYPE_STR 30
1327static char si_type_str[MAX_SI_TYPE_STR];
1328static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001329static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001331static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001333static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001335static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001337static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001339static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001340static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001341static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Corey Minyardb361e272006-12-06 20:41:07 -08001343#define IPMI_IO_ADDR_SPACE 0
1344#define IPMI_MEM_ADDR_SPACE 1
LABBE Corentin99ee6732015-11-13 13:31:51 +01001345static const char * const addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001346
Kees Cook24da2c82017-10-17 19:04:42 -07001347static int hotmod_handler(const char *val, const struct kernel_param *kp);
Corey Minyardb361e272006-12-06 20:41:07 -08001348
1349module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1350MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1351 " Documentation/IPMI.txt in the kernel sources for the"
1352 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Corey Minyardd941aea2013-02-27 17:05:12 -08001354#ifdef CONFIG_ACPI
1355module_param_named(tryacpi, si_tryacpi, bool, 0);
1356MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1357 " default scan of the interfaces identified via ACPI");
1358#endif
1359#ifdef CONFIG_DMI
1360module_param_named(trydmi, si_trydmi, bool, 0);
1361MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1362 " default scan of the interfaces identified via DMI");
1363#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001364module_param_named(tryplatform, si_tryplatform, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001365MODULE_PARM_DESC(tryplatform, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001366 " default scan of the interfaces identified via platform"
1367 " interfaces like openfirmware");
1368#ifdef CONFIG_PCI
1369module_param_named(trypci, si_trypci, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001370MODULE_PARM_DESC(trypci, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001371 " default scan of the interfaces identified via pci");
1372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1374MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1375 " interface separated by commas. The types are 'kcs',"
1376 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1377 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001378module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1380 " addresses separated by commas. Only use if an interface"
1381 " is in memory. Otherwise, set it to zero or leave"
1382 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001383module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1385 " addresses separated by commas. Only use if an interface"
1386 " is a port. Otherwise, set it to zero or leave"
1387 " it blank.");
1388module_param_array(irqs, int, &num_irqs, 0);
1389MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1390 " addresses separated by commas. Only use if an interface"
1391 " has an interrupt. Otherwise, set it to zero or leave"
1392 " it blank.");
1393module_param_array(regspacings, int, &num_regspacings, 0);
1394MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1395 " and each successive register used by the interface. For"
1396 " instance, if the start address is 0xca2 and the spacing"
1397 " is 2, then the second address is at 0xca4. Defaults"
1398 " to 1.");
1399module_param_array(regsizes, int, &num_regsizes, 0);
1400MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1401 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1402 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1403 " the 8-bit IPMI register has to be read from a larger"
1404 " register.");
1405module_param_array(regshifts, int, &num_regshifts, 0);
1406MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1407 " IPMI register, in bits. For instance, if the data"
1408 " is read from a 32-bit word and the IPMI data is in"
1409 " bit 8-15, then the shift would be 8");
1410module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1411MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1412 " the controller. Normally this is 0x20, but can be"
1413 " overridden by this parm. This is an array indexed"
1414 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001415module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1416MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1417 " disabled(0). Normally the IPMI driver auto-detects"
1418 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001419module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001420MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1421 " specified or found, default is 1. Setting to 0"
1422 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001423module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1424MODULE_PARM_DESC(kipmid_max_busy_us,
1425 "Max time (in microseconds) to busy-wait for IPMI data before"
1426 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1427 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429
Corey Minyardb0defcd2006-03-26 01:37:20 -08001430static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001432 if (info->si_type == SI_BT)
1433 /* Disable the interrupt in the BT interface. */
1434 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1435 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438static int std_irq_setup(struct smi_info *info)
1439{
1440 int rv;
1441
Corey Minyardb0defcd2006-03-26 01:37:20 -08001442 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return 0;
1444
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001445 if (info->si_type == SI_BT) {
1446 rv = request_irq(info->irq,
1447 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001448 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001449 DEVICE_NAME,
1450 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001451 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001452 /* Enable the interrupt in the BT interface. */
1453 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1454 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1455 } else
1456 rv = request_irq(info->irq,
1457 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001458 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001459 DEVICE_NAME,
1460 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001462 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1463 " running polled\n",
1464 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 info->irq = 0;
1466 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001467 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001468 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
1471 return rv;
1472}
1473
Corey Minyard81d02b72015-06-13 10:34:25 -05001474static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001476 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Corey Minyardb0defcd2006-03-26 01:37:20 -08001478 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Corey Minyard81d02b72015-06-13 10:34:25 -05001481static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 unsigned char b)
1483{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001484 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Corey Minyardb0defcd2006-03-26 01:37:20 -08001486 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Corey Minyard81d02b72015-06-13 10:34:25 -05001489static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001491 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Corey Minyardb0defcd2006-03-26 01:37:20 -08001493 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Corey Minyard81d02b72015-06-13 10:34:25 -05001496static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 unsigned char b)
1498{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001499 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Corey Minyardb0defcd2006-03-26 01:37:20 -08001501 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Corey Minyard81d02b72015-06-13 10:34:25 -05001504static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001506 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Corey Minyardb0defcd2006-03-26 01:37:20 -08001508 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Corey Minyard81d02b72015-06-13 10:34:25 -05001511static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 unsigned char b)
1513{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001514 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Corey Minyardb0defcd2006-03-26 01:37:20 -08001516 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
1519static void port_cleanup(struct smi_info *info)
1520{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001521 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001522 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Corey Minyardb0defcd2006-03-26 01:37:20 -08001524 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001525 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001526 release_region(addr + idx * info->io.regspacing,
1527 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531static int port_setup(struct smi_info *info)
1532{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001533 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001534 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Corey Minyardb0defcd2006-03-26 01:37:20 -08001536 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return -ENODEV;
1538
1539 info->io_cleanup = port_cleanup;
1540
Corey Minyardc305e3d2008-04-29 01:01:10 -07001541 /*
1542 * Figure out the actual inb/inw/inl/etc routine to use based
1543 * upon the register size.
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 switch (info->io.regsize) {
1546 case 1:
1547 info->io.inputb = port_inb;
1548 info->io.outputb = port_outb;
1549 break;
1550 case 2:
1551 info->io.inputb = port_inw;
1552 info->io.outputb = port_outw;
1553 break;
1554 case 4:
1555 info->io.inputb = port_inl;
1556 info->io.outputb = port_outl;
1557 break;
1558 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001559 dev_warn(info->dev, "Invalid register size: %d\n",
1560 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return -EINVAL;
1562 }
1563
Corey Minyardc305e3d2008-04-29 01:01:10 -07001564 /*
1565 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001566 * tables. This causes problems when trying to register the
1567 * entire I/O region. Therefore we must register each I/O
1568 * port separately.
1569 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001570 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001571 if (request_region(addr + idx * info->io.regspacing,
1572 info->io.regsize, DEVICE_NAME) == NULL) {
1573 /* Undo allocations */
Corey Minyard76824852016-04-26 22:40:15 -05001574 while (idx--)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001575 release_region(addr + idx * info->io.regspacing,
1576 info->io.regsize);
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001577 return -EIO;
1578 }
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581}
1582
Corey Minyard81d02b72015-06-13 10:34:25 -05001583static unsigned char intf_mem_inb(const struct si_sm_io *io,
1584 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 return readb((io->addr)+(offset * io->regspacing));
1587}
1588
Corey Minyard81d02b72015-06-13 10:34:25 -05001589static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1590 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 writeb(b, (io->addr)+(offset * io->regspacing));
1593}
1594
Corey Minyard81d02b72015-06-13 10:34:25 -05001595static unsigned char intf_mem_inw(const struct si_sm_io *io,
1596 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001599 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Corey Minyard81d02b72015-06-13 10:34:25 -05001602static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1603 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1606}
1607
Corey Minyard81d02b72015-06-13 10:34:25 -05001608static unsigned char intf_mem_inl(const struct si_sm_io *io,
1609 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001612 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Corey Minyard81d02b72015-06-13 10:34:25 -05001615static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1616 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
1618 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1619}
1620
1621#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001622static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001625 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Corey Minyard81d02b72015-06-13 10:34:25 -05001628static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 unsigned char b)
1630{
1631 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1632}
1633#endif
1634
Corey Minyard57a38f12016-04-26 22:25:12 -05001635static void mem_region_cleanup(struct smi_info *info, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001637 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001638 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Corey Minyard57a38f12016-04-26 22:25:12 -05001640 for (idx = 0; idx < num; idx++)
1641 release_mem_region(addr + idx * info->io.regspacing,
1642 info->io.regsize);
1643}
1644
1645static void mem_cleanup(struct smi_info *info)
1646{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (info->io.addr) {
1648 iounmap(info->io.addr);
Corey Minyard57a38f12016-04-26 22:25:12 -05001649 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
1653static int mem_setup(struct smi_info *info)
1654{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001655 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001656 int mapsize, idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Corey Minyardb0defcd2006-03-26 01:37:20 -08001658 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return -ENODEV;
1660
1661 info->io_cleanup = mem_cleanup;
1662
Corey Minyardc305e3d2008-04-29 01:01:10 -07001663 /*
1664 * Figure out the actual readb/readw/readl/etc routine to use based
1665 * upon the register size.
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 switch (info->io.regsize) {
1668 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001669 info->io.inputb = intf_mem_inb;
1670 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 break;
1672 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001673 info->io.inputb = intf_mem_inw;
1674 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 break;
1676 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001677 info->io.inputb = intf_mem_inl;
1678 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 break;
1680#ifdef readq
1681 case 8:
1682 info->io.inputb = mem_inq;
1683 info->io.outputb = mem_outq;
1684 break;
1685#endif
1686 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001687 dev_warn(info->dev, "Invalid register size: %d\n",
1688 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return -EINVAL;
1690 }
1691
Corey Minyardc305e3d2008-04-29 01:01:10 -07001692 /*
Corey Minyard57a38f12016-04-26 22:25:12 -05001693 * Some BIOSes reserve disjoint memory regions in their ACPI
1694 * tables. This causes problems when trying to request the
1695 * entire region. Therefore we must request each register
1696 * separately.
1697 */
1698 for (idx = 0; idx < info->io_size; idx++) {
1699 if (request_mem_region(addr + idx * info->io.regspacing,
1700 info->io.regsize, DEVICE_NAME) == NULL) {
1701 /* Undo allocations */
1702 mem_region_cleanup(info, idx);
1703 return -EIO;
1704 }
1705 }
1706
1707 /*
Corey Minyardc305e3d2008-04-29 01:01:10 -07001708 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 * unusual looking calculation, but it avoids claiming any
1710 * more memory than it has to. It will claim everything
1711 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001712 * register.
1713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 mapsize = ((info->io_size * info->io.regspacing)
1715 - (info->io.regspacing - info->io.regsize));
Corey Minyardb0defcd2006-03-26 01:37:20 -08001716 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (info->io.addr == NULL) {
Corey Minyard57a38f12016-04-26 22:25:12 -05001718 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return -EIO;
1720 }
1721 return 0;
1722}
1723
Corey Minyardb361e272006-12-06 20:41:07 -08001724/*
1725 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1726 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1727 * Options are:
1728 * rsp=<regspacing>
1729 * rsi=<regsize>
1730 * rsh=<regshift>
1731 * irq=<irq>
1732 * ipmb=<ipmb addr>
1733 */
1734enum hotmod_op { HM_ADD, HM_REMOVE };
1735struct hotmod_vals {
LABBE Corentin99ee6732015-11-13 13:31:51 +01001736 const char *name;
1737 const int val;
Corey Minyardb361e272006-12-06 20:41:07 -08001738};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001739
1740static const struct hotmod_vals hotmod_ops[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001741 { "add", HM_ADD },
1742 { "remove", HM_REMOVE },
1743 { NULL }
1744};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001745
1746static const struct hotmod_vals hotmod_si[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001747 { "kcs", SI_KCS },
1748 { "smic", SI_SMIC },
1749 { "bt", SI_BT },
1750 { NULL }
1751};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001752
1753static const struct hotmod_vals hotmod_as[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001754 { "mem", IPMI_MEM_ADDR_SPACE },
1755 { "i/o", IPMI_IO_ADDR_SPACE },
1756 { NULL }
1757};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001758
LABBE Corentin99ee6732015-11-13 13:31:51 +01001759static int parse_str(const struct hotmod_vals *v, int *val, char *name,
1760 char **curr)
Corey Minyardb361e272006-12-06 20:41:07 -08001761{
1762 char *s;
1763 int i;
1764
1765 s = strchr(*curr, ',');
1766 if (!s) {
1767 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1768 return -EINVAL;
1769 }
1770 *s = '\0';
1771 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001772 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001773 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001774 *val = v[i].val;
1775 *curr = s;
1776 return 0;
1777 }
1778 }
1779
1780 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1781 return -EINVAL;
1782}
1783
Corey Minyard1d5636c2006-12-10 02:19:08 -08001784static int check_hotmod_int_op(const char *curr, const char *option,
1785 const char *name, int *val)
1786{
1787 char *n;
1788
1789 if (strcmp(curr, name) == 0) {
1790 if (!option) {
1791 printk(KERN_WARNING PFX
1792 "No option given for '%s'\n",
1793 curr);
1794 return -EINVAL;
1795 }
1796 *val = simple_strtoul(option, &n, 0);
1797 if ((*n != '\0') || (*option == '\0')) {
1798 printk(KERN_WARNING PFX
1799 "Bad option given for '%s'\n",
1800 curr);
1801 return -EINVAL;
1802 }
1803 return 1;
1804 }
1805 return 0;
1806}
1807
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001808static struct smi_info *smi_info_alloc(void)
1809{
1810 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1811
Corey Minyardf60adf42012-03-28 14:42:50 -07001812 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001813 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001814 return info;
1815}
1816
Kees Cook24da2c82017-10-17 19:04:42 -07001817static int hotmod_handler(const char *val, const struct kernel_param *kp)
Corey Minyardb361e272006-12-06 20:41:07 -08001818{
1819 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001820 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001821 char *next, *curr, *s, *n, *o;
1822 enum hotmod_op op;
1823 enum si_type si_type;
1824 int addr_space;
1825 unsigned long addr;
1826 int regspacing;
1827 int regsize;
1828 int regshift;
1829 int irq;
1830 int ipmb;
1831 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001832 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001833 struct smi_info *info;
1834
1835 if (!str)
1836 return -ENOMEM;
1837
1838 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001839 len = strlen(str);
1840 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001841 while ((ival >= 0) && isspace(str[ival])) {
1842 str[ival] = '\0';
1843 ival--;
1844 }
1845
1846 for (curr = str; curr; curr = next) {
1847 regspacing = 1;
1848 regsize = 1;
1849 regshift = 0;
1850 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001851 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001852
1853 next = strchr(curr, ':');
1854 if (next) {
1855 *next = '\0';
1856 next++;
1857 }
1858
1859 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1860 if (rv)
1861 break;
1862 op = ival;
1863
1864 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1865 if (rv)
1866 break;
1867 si_type = ival;
1868
1869 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1870 if (rv)
1871 break;
1872
1873 s = strchr(curr, ',');
1874 if (s) {
1875 *s = '\0';
1876 s++;
1877 }
1878 addr = simple_strtoul(curr, &n, 0);
1879 if ((*n != '\0') || (*curr == '\0')) {
1880 printk(KERN_WARNING PFX "Invalid hotmod address"
1881 " '%s'\n", curr);
1882 break;
1883 }
1884
1885 while (s) {
1886 curr = s;
1887 s = strchr(curr, ',');
1888 if (s) {
1889 *s = '\0';
1890 s++;
1891 }
1892 o = strchr(curr, '=');
1893 if (o) {
1894 *o = '\0';
1895 o++;
1896 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001897 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1898 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001899 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001900 else if (rv)
1901 continue;
1902 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1903 if (rv < 0)
1904 goto out;
1905 else if (rv)
1906 continue;
1907 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1908 if (rv < 0)
1909 goto out;
1910 else if (rv)
1911 continue;
1912 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1913 if (rv < 0)
1914 goto out;
1915 else if (rv)
1916 continue;
1917 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1918 if (rv < 0)
1919 goto out;
1920 else if (rv)
1921 continue;
1922
1923 rv = -EINVAL;
1924 printk(KERN_WARNING PFX
1925 "Invalid hotmod option '%s'\n",
1926 curr);
1927 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001928 }
1929
1930 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001931 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001932 if (!info) {
1933 rv = -ENOMEM;
1934 goto out;
1935 }
1936
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001937 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001938 info->si_type = si_type;
1939 info->io.addr_data = addr;
1940 info->io.addr_type = addr_space;
1941 if (addr_space == IPMI_MEM_ADDR_SPACE)
1942 info->io_setup = mem_setup;
1943 else
1944 info->io_setup = port_setup;
1945
1946 info->io.addr = NULL;
1947 info->io.regspacing = regspacing;
1948 if (!info->io.regspacing)
1949 info->io.regspacing = DEFAULT_REGSPACING;
1950 info->io.regsize = regsize;
1951 if (!info->io.regsize)
1952 info->io.regsize = DEFAULT_REGSPACING;
1953 info->io.regshift = regshift;
1954 info->irq = irq;
1955 if (info->irq)
1956 info->irq_setup = std_irq_setup;
1957 info->slave_addr = ipmb;
1958
Corey Minyardd02b3702014-01-24 14:00:53 -06001959 rv = add_smi(info);
1960 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001961 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001962 goto out;
1963 }
1964 rv = try_smi_init(info);
1965 if (rv) {
1966 cleanup_one_si(info);
1967 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001968 }
Corey Minyardb361e272006-12-06 20:41:07 -08001969 } else {
1970 /* remove */
1971 struct smi_info *e, *tmp_e;
1972
1973 mutex_lock(&smi_infos_lock);
1974 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1975 if (e->io.addr_type != addr_space)
1976 continue;
1977 if (e->si_type != si_type)
1978 continue;
1979 if (e->io.addr_data == addr)
1980 cleanup_one_si(e);
1981 }
1982 mutex_unlock(&smi_infos_lock);
1983 }
1984 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001985 rv = len;
Corey Minyard76824852016-04-26 22:40:15 -05001986out:
Corey Minyardb361e272006-12-06 20:41:07 -08001987 kfree(str);
1988 return rv;
1989}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001990
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001991static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001993 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001994 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 struct smi_info *info;
1996
Corey Minyardb0defcd2006-03-26 01:37:20 -08001997 for (i = 0; i < SI_MAX_PARMS; i++) {
1998 if (!ports[i] && !addrs[i])
1999 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002001 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002002 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002003 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002005 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07002006 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002007
Corey Minyard1d5636c2006-12-10 02:19:08 -08002008 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002009 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002010 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002011 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002012 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002013 info->si_type = SI_BT;
2014 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002015 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08002016 "for interface %d, was invalid: %s\n",
2017 i, si_type[i]);
2018 kfree(info);
2019 continue;
2020 }
2021
2022 if (ports[i]) {
2023 /* An I/O port */
2024 info->io_setup = port_setup;
2025 info->io.addr_data = ports[i];
2026 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2027 } else if (addrs[i]) {
2028 /* A memory port */
2029 info->io_setup = mem_setup;
2030 info->io.addr_data = addrs[i];
2031 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2032 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002033 printk(KERN_WARNING PFX "Interface type specified "
2034 "for interface %d, but port and address were "
2035 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002036 kfree(info);
2037 continue;
2038 }
2039
2040 info->io.addr = NULL;
2041 info->io.regspacing = regspacings[i];
2042 if (!info->io.regspacing)
2043 info->io.regspacing = DEFAULT_REGSPACING;
2044 info->io.regsize = regsizes[i];
2045 if (!info->io.regsize)
2046 info->io.regsize = DEFAULT_REGSPACING;
2047 info->io.regshift = regshifts[i];
2048 info->irq = irqs[i];
2049 if (info->irq)
2050 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002051 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002052
Yinghai Lu7faefea2010-08-10 18:03:10 -07002053 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002054 if (try_smi_init(info))
2055 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002056 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002057 } else {
2058 kfree(info);
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002061 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Len Brown84663612005-08-24 12:09:07 -04002064#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Corey Minyardc305e3d2008-04-29 01:01:10 -07002066/*
2067 * Once we get an ACPI failure, we don't try any more, because we go
2068 * through the tables sequentially. Once we don't find a table, there
2069 * are no more.
2070 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002071static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002074static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2075 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
2077 struct smi_info *smi_info = context;
2078 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 spin_lock_irqsave(&(smi_info->si_lock), flags);
2081
Corey Minyard64959e22008-04-29 01:01:07 -07002082 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
John Stultzf93aae92015-01-07 14:24:28 -08002084 debug_timestamp("ACPI_GPE");
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2088
2089 return ACPI_INTERRUPT_HANDLED;
2090}
2091
Corey Minyardb0defcd2006-03-26 01:37:20 -08002092static void acpi_gpe_irq_cleanup(struct smi_info *info)
2093{
2094 if (!info->irq)
2095 return;
2096
2097 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2098}
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100static int acpi_gpe_irq_setup(struct smi_info *info)
2101{
2102 acpi_status status;
2103
Corey Minyardb0defcd2006-03-26 01:37:20 -08002104 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return 0;
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 status = acpi_install_gpe_handler(NULL,
2108 info->irq,
2109 ACPI_GPE_LEVEL_TRIGGERED,
2110 &ipmi_acpi_gpe,
2111 info);
2112 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002113 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2114 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 info->irq = 0;
2116 return -EINVAL;
2117 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002118 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002119 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return 0;
2121 }
2122}
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124/*
2125 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002126 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 */
2128struct SPMITable {
2129 s8 Signature[4];
2130 u32 Length;
2131 u8 Revision;
2132 u8 Checksum;
2133 s8 OEMID[6];
2134 s8 OEMTableID[8];
2135 s8 OEMRevision[4];
2136 s8 CreatorID[4];
2137 s8 CreatorRevision[4];
2138 u8 InterfaceType;
2139 u8 IPMIlegacy;
2140 s16 SpecificationRevision;
2141
2142 /*
2143 * Bit 0 - SCI interrupt supported
2144 * Bit 1 - I/O APIC/SAPIC
2145 */
2146 u8 InterruptType;
2147
Corey Minyardc305e3d2008-04-29 01:01:10 -07002148 /*
2149 * If bit 0 of InterruptType is set, then this is the SCI
2150 * interrupt in the GPEx_STS register.
2151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 u8 GPE;
2153
2154 s16 Reserved;
2155
Corey Minyardc305e3d2008-04-29 01:01:10 -07002156 /*
2157 * If bit 1 of InterruptType is set, then this is the I/O
2158 * APIC/SAPIC interrupt.
2159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 u32 GlobalSystemInterrupt;
2161
2162 /* The actual register address. */
2163 struct acpi_generic_address addr;
2164
2165 u8 UID[4];
2166
2167 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2168};
2169
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002170static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002173 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002176 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2177 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002180 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002181 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002182 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002183 return -ENOMEM;
2184 }
2185
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002186 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002187 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002190 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002192 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002195 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002198 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002200 case 4: /* SSIF, just ignore */
2201 kfree(info);
2202 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002204 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2205 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002206 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return -EIO;
2208 }
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 if (spmi->InterruptType & 1) {
2211 /* We've got a GPE interrupt. */
2212 info->irq = spmi->GPE;
2213 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 } else if (spmi->InterruptType & 2) {
2215 /* We've got an APIC/SAPIC interrupt. */
2216 info->irq = spmi->GlobalSystemInterrupt;
2217 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 } else {
2219 /* Use the default interrupt setting. */
2220 info->irq = 0;
2221 info->irq_setup = NULL;
2222 }
2223
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002224 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002225 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002226 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002227 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002228 info->io.regspacing = DEFAULT_REGSPACING;
2229 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002230 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002231 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002233 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002235 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002236 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002238 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 } else {
2240 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002241 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return -EIO;
2243 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002244 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002246 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2247 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2248 info->io.addr_data, info->io.regsize, info->io.regspacing,
2249 info->irq);
2250
Corey Minyardd02b3702014-01-24 14:00:53 -06002251 rv = add_smi(info);
2252 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002253 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Corey Minyardd02b3702014-01-24 14:00:53 -06002255 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002257
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002258static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002259{
2260 acpi_status status;
2261 struct SPMITable *spmi;
2262 int i;
2263
2264 if (acpi_disabled)
2265 return;
2266
2267 if (acpi_failure)
2268 return;
2269
2270 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002271 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2272 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002273 if (status != AE_OK)
2274 return;
2275
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002276 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002277 }
2278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279#endif
2280
Matt Domscha9fad4c2006-01-11 12:17:44 -08002281#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002282struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 u8 type;
2284 u8 addr_space;
2285 unsigned long base_addr;
2286 u8 irq;
2287 u8 offset;
2288 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002289};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002291static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002292 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
Jeff Garzik18552562007-10-03 15:15:40 -04002294 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 unsigned long base_addr;
2296 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002297 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Corey Minyardb0defcd2006-03-26 01:37:20 -08002299 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 memcpy(&base_addr, data+8, sizeof(unsigned long));
2302 if (len >= 0x11) {
2303 if (base_addr & 1) {
2304 /* I/O */
2305 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002306 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002307 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002309 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2312 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002313 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Corey Minyardb0defcd2006-03-26 01:37:20 -08002315 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002318 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002319 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002321 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 break;
2323 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002324 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 break;
2326 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002327 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 break;
2329 default:
2330 /* Some other interface, just ignore it. */
2331 return -EIO;
2332 }
2333 } else {
2334 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002335 /*
2336 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002337 * address should be 1 if the address is I/O and 0 if
2338 * the address is in memory. So many systems get that
2339 * wrong (and all that I have seen are I/O) so we just
2340 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002341 * memory should use the newer spec, anyway.
2342 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002343 dmi->base_addr = base_addr & 0xfffe;
2344 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2345 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
2347
Corey Minyardb0defcd2006-03-26 01:37:20 -08002348 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Corey Minyardb0defcd2006-03-26 01:37:20 -08002350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002353static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
Corey Minyarde8b33612005-09-06 15:18:45 -07002355 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002357 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002358 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002359 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002360 return;
2361 }
2362
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002363 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002364 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Corey Minyarde8b33612005-09-06 15:18:45 -07002366 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002367 case 0x01: /* KCS */
2368 info->si_type = SI_KCS;
2369 break;
2370 case 0x02: /* SMIC */
2371 info->si_type = SI_SMIC;
2372 break;
2373 case 0x03: /* BT */
2374 info->si_type = SI_BT;
2375 break;
2376 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002377 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002378 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380
Corey Minyardb0defcd2006-03-26 01:37:20 -08002381 switch (ipmi_data->addr_space) {
2382 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002384 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Corey Minyardb0defcd2006-03-26 01:37:20 -08002387 case IPMI_IO_ADDR_SPACE:
2388 info->io_setup = port_setup;
2389 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2390 break;
2391
2392 default:
2393 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002394 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002395 ipmi_data->addr_space);
2396 return;
2397 }
2398 info->io.addr_data = ipmi_data->base_addr;
2399
2400 info->io.regspacing = ipmi_data->offset;
2401 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 info->io.regspacing = DEFAULT_REGSPACING;
2403 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002404 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 info->slave_addr = ipmi_data->slave_addr;
2407
Corey Minyardb0defcd2006-03-26 01:37:20 -08002408 info->irq = ipmi_data->irq;
2409 if (info->irq)
2410 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002412 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2413 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2414 info->io.addr_data, info->io.regsize, info->io.regspacing,
2415 info->irq);
2416
Yinghai Lu7faefea2010-08-10 18:03:10 -07002417 if (add_smi(info))
2418 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002419}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002421static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002422{
Jeff Garzik18552562007-10-03 15:15:40 -04002423 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002424 struct dmi_ipmi_data data;
2425 int rv;
2426
2427 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002428 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002429 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2430 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002431 if (!rv)
2432 try_init_dmi(&data);
2433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002435#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437#ifdef CONFIG_PCI
2438
Corey Minyardb0defcd2006-03-26 01:37:20 -08002439#define PCI_ERMC_CLASSCODE 0x0C0700
2440#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2441#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2442#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2443#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2444#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446#define PCI_HP_VENDOR_ID 0x103C
2447#define PCI_MMC_DEVICE_ID 0x121A
2448#define PCI_MMC_ADDR_CW 0x10
2449
Corey Minyardb0defcd2006-03-26 01:37:20 -08002450static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002452 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Corey Minyardb0defcd2006-03-26 01:37:20 -08002454 pci_disable_device(pdev);
2455}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002457static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002458{
2459 if (info->si_type == SI_KCS) {
2460 unsigned char status;
2461 int regspacing;
2462
2463 info->io.regsize = DEFAULT_REGSIZE;
2464 info->io.regshift = 0;
2465 info->io_size = 2;
2466 info->handlers = &kcs_smi_handlers;
2467
2468 /* detect 1, 4, 16byte spacing */
2469 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2470 info->io.regspacing = regspacing;
2471 if (info->io_setup(info)) {
2472 dev_err(info->dev,
2473 "Could not setup I/O space\n");
2474 return DEFAULT_REGSPACING;
2475 }
2476 /* write invalid cmd */
2477 info->io.outputb(&info->io, 1, 0x10);
2478 /* read status back */
2479 status = info->io.inputb(&info->io, 1);
2480 info->io_cleanup(info);
2481 if (status)
2482 return regspacing;
2483 regspacing *= 4;
2484 }
2485 }
2486 return DEFAULT_REGSPACING;
2487}
2488
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002489static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002490 const struct pci_device_id *ent)
2491{
2492 int rv;
2493 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2494 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002496 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002497 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002498 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002499
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002500 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002501 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002502
2503 switch (class_type) {
2504 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2505 info->si_type = SI_SMIC;
2506 break;
2507
2508 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2509 info->si_type = SI_KCS;
2510 break;
2511
2512 case PCI_ERMC_CLASSCODE_TYPE_BT:
2513 info->si_type = SI_BT;
2514 break;
2515
2516 default:
2517 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002518 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002519 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Corey Minyardb0defcd2006-03-26 01:37:20 -08002522 rv = pci_enable_device(pdev);
2523 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002524 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002525 kfree(info);
2526 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 }
2528
Corey Minyardb0defcd2006-03-26 01:37:20 -08002529 info->addr_source_cleanup = ipmi_pci_cleanup;
2530 info->addr_source_data = pdev;
2531
Corey Minyardb0defcd2006-03-26 01:37:20 -08002532 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2533 info->io_setup = port_setup;
2534 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2535 } else {
2536 info->io_setup = mem_setup;
2537 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002539 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Corey Minyarda6c16c22012-10-16 15:53:40 -05002541 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2542 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002543 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Corey Minyardb0defcd2006-03-26 01:37:20 -08002545 info->irq = pdev->irq;
2546 if (info->irq)
2547 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Corey Minyard50c812b2006-03-26 01:37:21 -08002549 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002550 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002551
Myron Stowe279fbd02010-05-26 14:43:52 -07002552 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2553 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2554 info->irq);
2555
Corey Minyardd02b3702014-01-24 14:00:53 -06002556 rv = add_smi(info);
2557 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002558 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002559 pci_disable_device(pdev);
2560 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002561
Corey Minyardd02b3702014-01-24 14:00:53 -06002562 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Bill Pemberton39af33f2012-11-19 13:26:26 -05002565static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002566{
Corey Minyardfca3b742007-05-08 00:23:59 -07002567 struct smi_info *info = pci_get_drvdata(pdev);
2568 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Corey Minyard81d02b72015-06-13 10:34:25 -05002571static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002572 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002573 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2574 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002575};
2576MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2577
2578static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002579 .name = DEVICE_NAME,
2580 .id_table = ipmi_pci_devices,
2581 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002582 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002583};
2584#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002586#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002587static const struct of_device_id of_ipmi_match[] = {
2588 { .type = "ipmi", .compatible = "ipmi-kcs",
2589 .data = (void *)(unsigned long) SI_KCS },
2590 { .type = "ipmi", .compatible = "ipmi-smic",
2591 .data = (void *)(unsigned long) SI_SMIC },
2592 { .type = "ipmi", .compatible = "ipmi-bt",
2593 .data = (void *)(unsigned long) SI_BT },
2594 {},
2595};
Luis de Bethencourt66f44012015-09-19 16:43:23 +01002596MODULE_DEVICE_TABLE(of, of_ipmi_match);
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002597
2598static int of_ipmi_probe(struct platform_device *dev)
2599{
Grant Likelyb1608d62011-05-18 11:19:24 -06002600 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002601 struct smi_info *info;
2602 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002603 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002604 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002605 int ret;
2606 int proplen;
2607
Myron Stowe279fbd02010-05-26 14:43:52 -07002608 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002609
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002610 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002611 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002612 return -ENODEV;
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002613
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002614 if (!of_device_is_available(np))
2615 return -EINVAL;
2616
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002617 ret = of_address_to_resource(np, 0, &resource);
2618 if (ret) {
2619 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2620 return ret;
2621 }
2622
Stephen Rothwell9c250992007-08-15 16:42:12 +10002623 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002624 if (regsize && proplen != 4) {
2625 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2626 return -EINVAL;
2627 }
2628
Stephen Rothwell9c250992007-08-15 16:42:12 +10002629 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002630 if (regspacing && proplen != 4) {
2631 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2632 return -EINVAL;
2633 }
2634
Stephen Rothwell9c250992007-08-15 16:42:12 +10002635 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002636 if (regshift && proplen != 4) {
2637 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2638 return -EINVAL;
2639 }
2640
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002641 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002642
2643 if (!info) {
2644 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002645 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002646 return -ENOMEM;
2647 }
2648
Grant Likelyb1608d62011-05-18 11:19:24 -06002649 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002650 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002651 info->irq_setup = std_irq_setup;
2652
Nate Case3b7ec112008-05-14 16:05:39 -07002653 if (resource.flags & IORESOURCE_IO) {
2654 info->io_setup = port_setup;
2655 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2656 } else {
2657 info->io_setup = mem_setup;
2658 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2659 }
2660
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002661 info->io.addr_data = resource.start;
2662
Rob Herringda81c3b2010-11-16 14:33:50 -06002663 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2664 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2665 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002666
Grant Likely61c7a082010-04-13 16:12:29 -07002667 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002668 info->dev = &dev->dev;
2669
Myron Stowe279fbd02010-05-26 14:43:52 -07002670 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002671 info->io.addr_data, info->io.regsize, info->io.regspacing,
2672 info->irq);
2673
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002674 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002675
Corey Minyardd02b3702014-01-24 14:00:53 -06002676 ret = add_smi(info);
2677 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002678 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002679 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002680 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002681 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002682}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002683#else
2684#define of_ipmi_match NULL
2685static int of_ipmi_probe(struct platform_device *dev)
2686{
2687 return -ENODEV;
2688}
2689#endif
2690
2691#ifdef CONFIG_ACPI
2692static int acpi_ipmi_probe(struct platform_device *dev)
2693{
2694 struct smi_info *info;
2695 struct resource *res, *res_second;
2696 acpi_handle handle;
2697 acpi_status status;
2698 unsigned long long tmp;
2699 int rv = -EINVAL;
2700
Joe Lawrence9f0257b2016-02-18 16:02:54 -05002701 if (!si_tryacpi)
2702 return 0;
2703
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002704 handle = ACPI_HANDLE(&dev->dev);
2705 if (!handle)
2706 return -ENODEV;
2707
2708 info = smi_info_alloc();
2709 if (!info)
2710 return -ENOMEM;
2711
2712 info->addr_source = SI_ACPI;
2713 dev_info(&dev->dev, PFX "probing via ACPI\n");
2714
2715 info->addr_info.acpi_info.acpi_handle = handle;
2716
2717 /* _IFT tells us the interface type: KCS, BT, etc */
2718 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2719 if (ACPI_FAILURE(status)) {
2720 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2721 goto err_free;
2722 }
2723
2724 switch (tmp) {
2725 case 1:
2726 info->si_type = SI_KCS;
2727 break;
2728 case 2:
2729 info->si_type = SI_SMIC;
2730 break;
2731 case 3:
2732 info->si_type = SI_BT;
2733 break;
2734 case 4: /* SSIF, just ignore */
2735 rv = -ENODEV;
2736 goto err_free;
2737 default:
2738 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2739 goto err_free;
2740 }
2741
2742 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2743 if (res) {
2744 info->io_setup = port_setup;
2745 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2746 } else {
2747 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2748 if (res) {
2749 info->io_setup = mem_setup;
2750 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2751 }
2752 }
2753 if (!res) {
2754 dev_err(&dev->dev, "no I/O or memory address\n");
2755 goto err_free;
2756 }
2757 info->io.addr_data = res->start;
2758
2759 info->io.regspacing = DEFAULT_REGSPACING;
2760 res_second = platform_get_resource(dev,
2761 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2762 IORESOURCE_IO : IORESOURCE_MEM,
2763 1);
2764 if (res_second) {
2765 if (res_second->start > info->io.addr_data)
2766 info->io.regspacing =
2767 res_second->start - info->io.addr_data;
2768 }
2769 info->io.regsize = DEFAULT_REGSPACING;
2770 info->io.regshift = 0;
2771
2772 /* If _GPE exists, use it; otherwise use standard interrupts */
2773 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2774 if (ACPI_SUCCESS(status)) {
2775 info->irq = tmp;
2776 info->irq_setup = acpi_gpe_irq_setup;
2777 } else {
2778 int irq = platform_get_irq(dev, 0);
2779
2780 if (irq > 0) {
2781 info->irq = irq;
2782 info->irq_setup = std_irq_setup;
2783 }
2784 }
2785
2786 info->dev = &dev->dev;
2787 platform_set_drvdata(dev, info);
2788
2789 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2790 res, info->io.regsize, info->io.regspacing,
2791 info->irq);
2792
2793 rv = add_smi(info);
2794 if (rv)
2795 kfree(info);
2796
2797 return rv;
2798
2799err_free:
2800 kfree(info);
2801 return rv;
2802}
2803
Corey Minyard81d02b72015-06-13 10:34:25 -05002804static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002805 { "IPI0001", 0 },
2806 { },
2807};
2808MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2809#else
2810static int acpi_ipmi_probe(struct platform_device *dev)
2811{
2812 return -ENODEV;
2813}
2814#endif
2815
2816static int ipmi_probe(struct platform_device *dev)
2817{
2818 if (of_ipmi_probe(dev) == 0)
2819 return 0;
2820
2821 return acpi_ipmi_probe(dev);
2822}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002823
Bill Pemberton39af33f2012-11-19 13:26:26 -05002824static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002825{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002826 struct smi_info *info = dev_get_drvdata(&dev->dev);
2827
Markus Elfringa7930892015-06-27 18:12:14 +02002828 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002829 return 0;
2830}
2831
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002832static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002833 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002834 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002835 .of_match_table = of_ipmi_match,
2836 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002837 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002838 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002839 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002840};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002841
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002842#ifdef CONFIG_PARISC
2843static int ipmi_parisc_probe(struct parisc_device *dev)
2844{
2845 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002846 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002847
2848 info = smi_info_alloc();
2849
2850 if (!info) {
2851 dev_err(&dev->dev,
2852 "could not allocate memory for PARISC probe\n");
2853 return -ENOMEM;
2854 }
2855
2856 info->si_type = SI_KCS;
2857 info->addr_source = SI_DEVICETREE;
2858 info->io_setup = mem_setup;
2859 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2860 info->io.addr_data = dev->hpa.start;
2861 info->io.regsize = 1;
2862 info->io.regspacing = 1;
2863 info->io.regshift = 0;
2864 info->irq = 0; /* no interrupt */
2865 info->irq_setup = NULL;
2866 info->dev = &dev->dev;
2867
2868 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2869
2870 dev_set_drvdata(&dev->dev, info);
2871
Corey Minyardd02b3702014-01-24 14:00:53 -06002872 rv = add_smi(info);
2873 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002874 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002875 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002876 }
2877
2878 return 0;
2879}
2880
2881static int ipmi_parisc_remove(struct parisc_device *dev)
2882{
2883 cleanup_one_si(dev_get_drvdata(&dev->dev));
2884 return 0;
2885}
2886
LABBE Corentin99ee6732015-11-13 13:31:51 +01002887static const struct parisc_device_id ipmi_parisc_tbl[] = {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002888 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2889 { 0, }
2890};
2891
2892static struct parisc_driver ipmi_parisc_driver = {
2893 .name = "ipmi",
2894 .id_table = ipmi_parisc_tbl,
2895 .probe = ipmi_parisc_probe,
2896 .remove = ipmi_parisc_remove,
2897};
2898#endif /* CONFIG_PARISC */
2899
Corey Minyard40112ae2009-04-21 12:24:03 -07002900static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
Corey Minyard50c812b2006-03-26 01:37:21 -08002902 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002905 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002906 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2907 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002908 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002910 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002911 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 smi_result = smi_info->handlers->event(
2913 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002914 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 break;
2916 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002917 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002918 /*
2919 * We couldn't get the state machine to run, so whatever's at
2920 * the port is probably not an IPMI SMI interface.
2921 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002922 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Corey Minyard40112ae2009-04-21 12:24:03 -07002924 return 0;
2925}
2926
2927static int try_get_dev_id(struct smi_info *smi_info)
2928{
2929 unsigned char msg[2];
2930 unsigned char *resp;
2931 unsigned long resp_len;
2932 int rv = 0;
2933
2934 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2935 if (!resp)
2936 return -ENOMEM;
2937
2938 /*
2939 * Do a Get Device ID command, since it comes back with some
2940 * useful info.
2941 */
2942 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2943 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2944 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2945
2946 rv = wait_for_msg_done(smi_info);
2947 if (rv)
2948 goto out;
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2951 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Corey Minyardd8c98612007-10-18 03:07:11 -07002953 /* Check and record info from the get device id, in case we need it. */
2954 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Corey Minyard76824852016-04-26 22:40:15 -05002956out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 kfree(resp);
2958 return rv;
2959}
2960
Corey Minyardd0882892015-08-18 14:29:10 -05002961static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002962{
2963 unsigned char msg[3];
2964 unsigned char *resp;
2965 unsigned long resp_len;
2966 int rv;
2967
2968 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05002969 if (!resp)
2970 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002971
2972 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2973 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2974 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2975
2976 rv = wait_for_msg_done(smi_info);
2977 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002978 dev_warn(smi_info->dev,
2979 "Error getting response from get global enables command: %d\n",
2980 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002981 goto out;
2982 }
2983
2984 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2985 resp, IPMI_MAX_MSG_LENGTH);
2986
2987 if (resp_len < 4 ||
2988 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2989 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2990 resp[2] != 0) {
Corey Minyardd0882892015-08-18 14:29:10 -05002991 dev_warn(smi_info->dev,
2992 "Invalid return from get global enables command: %ld %x %x %x\n",
2993 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002994 rv = -EINVAL;
2995 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05002996 } else {
2997 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002998 }
2999
Corey Minyardd0882892015-08-18 14:29:10 -05003000out:
3001 kfree(resp);
3002 return rv;
3003}
3004
3005/*
3006 * Returns 1 if it gets an error from the command.
3007 */
3008static int set_global_enables(struct smi_info *smi_info, u8 enables)
3009{
3010 unsigned char msg[3];
3011 unsigned char *resp;
3012 unsigned long resp_len;
3013 int rv;
3014
3015 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3016 if (!resp)
3017 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003018
3019 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3020 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05003021 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003022 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3023
3024 rv = wait_for_msg_done(smi_info);
3025 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05003026 dev_warn(smi_info->dev,
3027 "Error getting response from set global enables command: %d\n",
3028 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003029 goto out;
3030 }
3031
3032 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3033 resp, IPMI_MAX_MSG_LENGTH);
3034
3035 if (resp_len < 3 ||
3036 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3037 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardd0882892015-08-18 14:29:10 -05003038 dev_warn(smi_info->dev,
3039 "Invalid return from set global enables command: %ld %x %x\n",
3040 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003041 rv = -EINVAL;
3042 goto out;
3043 }
3044
Corey Minyardd0882892015-08-18 14:29:10 -05003045 if (resp[2] != 0)
3046 rv = 1;
3047
3048out:
3049 kfree(resp);
3050 return rv;
3051}
3052
3053/*
3054 * Some BMCs do not support clearing the receive irq bit in the global
3055 * enables (even if they don't support interrupts on the BMC). Check
3056 * for this and handle it properly.
3057 */
3058static void check_clr_rcv_irq(struct smi_info *smi_info)
3059{
3060 u8 enables = 0;
3061 int rv;
3062
3063 rv = get_global_enables(smi_info, &enables);
3064 if (!rv) {
3065 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
3066 /* Already clear, should work ok. */
3067 return;
3068
3069 enables &= ~IPMI_BMC_RCV_MSG_INTR;
3070 rv = set_global_enables(smi_info, enables);
3071 }
3072
3073 if (rv < 0) {
3074 dev_err(smi_info->dev,
3075 "Cannot check clearing the rcv irq: %d\n", rv);
3076 return;
3077 }
3078
3079 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003080 /*
3081 * An error when setting the event buffer bit means
3082 * clearing the bit is not supported.
3083 */
Corey Minyardd0882892015-08-18 14:29:10 -05003084 dev_warn(smi_info->dev,
3085 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3086 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003087 }
Corey Minyardd0882892015-08-18 14:29:10 -05003088}
3089
3090/*
3091 * Some BMCs do not support setting the interrupt bits in the global
3092 * enables even if they support interrupts. Clearly bad, but we can
3093 * compensate.
3094 */
3095static void check_set_rcv_irq(struct smi_info *smi_info)
3096{
3097 u8 enables = 0;
3098 int rv;
3099
3100 if (!smi_info->irq)
3101 return;
3102
3103 rv = get_global_enables(smi_info, &enables);
3104 if (!rv) {
3105 enables |= IPMI_BMC_RCV_MSG_INTR;
3106 rv = set_global_enables(smi_info, enables);
3107 }
3108
3109 if (rv < 0) {
3110 dev_err(smi_info->dev,
3111 "Cannot check setting the rcv irq: %d\n", rv);
3112 return;
3113 }
3114
3115 if (rv) {
3116 /*
3117 * An error when setting the event buffer bit means
3118 * setting the bit is not supported.
3119 */
3120 dev_warn(smi_info->dev,
3121 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3122 smi_info->cannot_disable_irq = true;
3123 smi_info->irq_enable_broken = true;
3124 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003125}
3126
Corey Minyard40112ae2009-04-21 12:24:03 -07003127static int try_enable_event_buffer(struct smi_info *smi_info)
3128{
3129 unsigned char msg[3];
3130 unsigned char *resp;
3131 unsigned long resp_len;
3132 int rv = 0;
3133
3134 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3135 if (!resp)
3136 return -ENOMEM;
3137
3138 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3139 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3140 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3141
3142 rv = wait_for_msg_done(smi_info);
3143 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003144 printk(KERN_WARNING PFX "Error getting response from get"
3145 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003146 " enabled.\n");
3147 goto out;
3148 }
3149
3150 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3151 resp, IPMI_MAX_MSG_LENGTH);
3152
3153 if (resp_len < 4 ||
3154 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3155 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3156 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003157 printk(KERN_WARNING PFX "Invalid return from get global"
3158 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003159 rv = -EINVAL;
3160 goto out;
3161 }
3162
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003163 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003164 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003165 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003166 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003167 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003168
3169 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3170 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3171 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3172 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3173
3174 rv = wait_for_msg_done(smi_info);
3175 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003176 printk(KERN_WARNING PFX "Error getting response from set"
3177 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003178 " enabled.\n");
3179 goto out;
3180 }
3181
3182 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3183 resp, IPMI_MAX_MSG_LENGTH);
3184
3185 if (resp_len < 3 ||
3186 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3187 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003188 printk(KERN_WARNING PFX "Invalid return from get global,"
3189 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003190 rv = -EINVAL;
3191 goto out;
3192 }
3193
3194 if (resp[2] != 0)
3195 /*
3196 * An error when setting the event buffer bit means
3197 * that the event buffer is not supported.
3198 */
3199 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003200 else
3201 smi_info->supports_event_msg_buff = true;
3202
Corey Minyard76824852016-04-26 22:40:15 -05003203out:
Corey Minyard40112ae2009-04-21 12:24:03 -07003204 kfree(resp);
3205 return rv;
3206}
3207
Alexey Dobriyan07412732011-05-26 16:25:55 -07003208static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003210 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003212 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3213
Joe Perches5e33cd02015-02-22 10:21:07 -08003214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215}
3216
Alexey Dobriyan07412732011-05-26 16:25:55 -07003217static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Al Virod9dda782013-03-31 18:16:14 -04003219 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003220}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Alexey Dobriyan07412732011-05-26 16:25:55 -07003222static const struct file_operations smi_type_proc_ops = {
3223 .open = smi_type_proc_open,
3224 .read = seq_read,
3225 .llseek = seq_lseek,
3226 .release = single_release,
3227};
3228
3229static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3230{
3231 struct smi_info *smi = m->private;
3232
3233 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003234 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003235 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003236 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003237 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003238 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003239 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003240 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003241 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003242 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003243 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003244 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003245 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003246 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003247 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003248 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003249 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003250 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003251 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003252 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003253 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003254 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003255 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003256 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003257 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003258}
3259
Alexey Dobriyan07412732011-05-26 16:25:55 -07003260static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003261{
Al Virod9dda782013-03-31 18:16:14 -04003262 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003263}
Corey Minyardb361e272006-12-06 20:41:07 -08003264
Alexey Dobriyan07412732011-05-26 16:25:55 -07003265static const struct file_operations smi_si_stats_proc_ops = {
3266 .open = smi_si_stats_proc_open,
3267 .read = seq_read,
3268 .llseek = seq_lseek,
3269 .release = single_release,
3270};
3271
3272static int smi_params_proc_show(struct seq_file *m, void *v)
3273{
3274 struct smi_info *smi = m->private;
3275
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003276 seq_printf(m,
3277 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3278 si_to_str[smi->si_type],
3279 addr_space_to_str[smi->io.addr_type],
3280 smi->io.addr_data,
3281 smi->io.regspacing,
3282 smi->io.regsize,
3283 smi->io.regshift,
3284 smi->irq,
3285 smi->slave_addr);
3286
Joe Perches5e33cd02015-02-22 10:21:07 -08003287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288}
3289
Alexey Dobriyan07412732011-05-26 16:25:55 -07003290static int smi_params_proc_open(struct inode *inode, struct file *file)
3291{
Al Virod9dda782013-03-31 18:16:14 -04003292 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003293}
3294
3295static const struct file_operations smi_params_proc_ops = {
3296 .open = smi_params_proc_open,
3297 .read = seq_read,
3298 .llseek = seq_lseek,
3299 .release = single_release,
3300};
3301
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003302/*
3303 * oem_data_avail_to_receive_msg_avail
3304 * @info - smi_info structure with msg_flags set
3305 *
3306 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3307 * Returns 1 indicating need to re-run handle_flags().
3308 */
3309static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3310{
Corey Minyarde8b33612005-09-06 15:18:45 -07003311 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003312 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003313 return 1;
3314}
3315
3316/*
3317 * setup_dell_poweredge_oem_data_handler
3318 * @info - smi_info.device_id must be populated
3319 *
3320 * Systems that match, but have firmware version < 1.40 may assert
3321 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3322 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3323 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3324 * as RECEIVE_MSG_AVAIL instead.
3325 *
3326 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3327 * assert the OEM[012] bits, and if it did, the driver would have to
3328 * change to handle that properly, we don't actually check for the
3329 * firmware version.
3330 * Device ID = 0x20 BMC on PowerEdge 8G servers
3331 * Device Revision = 0x80
3332 * Firmware Revision1 = 0x01 BMC version 1.40
3333 * Firmware Revision2 = 0x40 BCD encoded
3334 * IPMI Version = 0x51 IPMI 1.5
3335 * Manufacturer ID = A2 02 00 Dell IANA
3336 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003337 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3338 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3339 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003340 */
3341#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3342#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3343#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003344#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003345static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3346{
3347 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003348 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003349 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3350 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003351 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003352 smi_info->oem_data_avail_handler =
3353 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003354 } else if (ipmi_version_major(id) < 1 ||
3355 (ipmi_version_major(id) == 1 &&
3356 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003357 smi_info->oem_data_avail_handler =
3358 oem_data_avail_to_receive_msg_avail;
3359 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003360 }
3361}
3362
Corey Minyardea940272005-11-07 00:59:59 -08003363#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3364static void return_hosed_msg_badsize(struct smi_info *smi_info)
3365{
3366 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3367
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003368 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003369 msg->rsp[0] = msg->data[0] | 4;
3370 msg->rsp[1] = msg->data[1];
3371 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3372 msg->rsp_size = 3;
3373 smi_info->curr_msg = NULL;
3374 deliver_recv_msg(smi_info, msg);
3375}
3376
3377/*
3378 * dell_poweredge_bt_xaction_handler
3379 * @info - smi_info.device_id must be populated
3380 *
3381 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3382 * not respond to a Get SDR command if the length of the data
3383 * requested is exactly 0x3A, which leads to command timeouts and no
3384 * data returned. This intercepts such commands, and causes userspace
3385 * callers to try again with a different-sized buffer, which succeeds.
3386 */
3387
3388#define STORAGE_NETFN 0x0A
3389#define STORAGE_CMD_GET_SDR 0x23
3390static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3391 unsigned long unused,
3392 void *in)
3393{
3394 struct smi_info *smi_info = in;
3395 unsigned char *data = smi_info->curr_msg->data;
3396 unsigned int size = smi_info->curr_msg->data_size;
3397 if (size >= 8 &&
3398 (data[0]>>2) == STORAGE_NETFN &&
3399 data[1] == STORAGE_CMD_GET_SDR &&
3400 data[7] == 0x3A) {
3401 return_hosed_msg_badsize(smi_info);
3402 return NOTIFY_STOP;
3403 }
3404 return NOTIFY_DONE;
3405}
3406
3407static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3408 .notifier_call = dell_poweredge_bt_xaction_handler,
3409};
3410
3411/*
3412 * setup_dell_poweredge_bt_xaction_handler
3413 * @info - smi_info.device_id must be filled in already
3414 *
3415 * Fills in smi_info.device_id.start_transaction_pre_hook
3416 * when we know what function to use there.
3417 */
3418static void
3419setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3420{
3421 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003422 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003423 smi_info->si_type == SI_BT)
3424 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3425}
3426
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003427/*
3428 * setup_oem_data_handler
3429 * @info - smi_info.device_id must be filled in already
3430 *
3431 * Fills in smi_info.device_id.oem_data_available_handler
3432 * when we know what function to use there.
3433 */
3434
3435static void setup_oem_data_handler(struct smi_info *smi_info)
3436{
3437 setup_dell_poweredge_oem_data_handler(smi_info);
3438}
3439
Corey Minyardea940272005-11-07 00:59:59 -08003440static void setup_xaction_handlers(struct smi_info *smi_info)
3441{
3442 setup_dell_poweredge_bt_xaction_handler(smi_info);
3443}
3444
Corey Minyardd0882892015-08-18 14:29:10 -05003445static void check_for_broken_irqs(struct smi_info *smi_info)
3446{
3447 check_clr_rcv_irq(smi_info);
3448 check_set_rcv_irq(smi_info);
3449}
3450
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003451static inline void stop_timer_and_thread(struct smi_info *smi_info)
Corey Minyarda9a2c442005-11-07 01:00:03 -08003452{
Corey Minyardb874b982014-11-06 17:01:59 -06003453 if (smi_info->thread != NULL)
3454 kthread_stop(smi_info->thread);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003455
3456 smi_info->timer_can_start = false;
Corey Minyardb874b982014-11-06 17:01:59 -06003457 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003458 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003459}
3460
Corey Minyardb0defcd2006-03-26 01:37:20 -08003461static int is_new_interface(struct smi_info *info)
3462{
3463 struct smi_info *e;
3464
3465 list_for_each_entry(e, &smi_infos, link) {
3466 if (e->io.addr_type != info->io.addr_type)
3467 continue;
3468 if (e->io.addr_data == info->io.addr_data)
3469 return 0;
3470 }
3471
3472 return 1;
3473}
3474
Matthew Garrett2407d772010-05-26 14:43:46 -07003475static int add_smi(struct smi_info *new_smi)
3476{
3477 int rv = 0;
3478
Myron Stowe279fbd02010-05-26 14:43:52 -07003479 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003480 ipmi_addr_src_to_str(new_smi->addr_source),
3481 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003482 mutex_lock(&smi_infos_lock);
3483 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003484 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003485 rv = -EBUSY;
3486 goto out_err;
3487 }
3488
3489 printk(KERN_CONT "\n");
3490
3491 /* So we know not to free it unless we have allocated one. */
3492 new_smi->intf = NULL;
3493 new_smi->si_sm = NULL;
3494 new_smi->handlers = NULL;
3495
3496 list_add_tail(&new_smi->link, &smi_infos);
3497
3498out_err:
3499 mutex_unlock(&smi_infos_lock);
3500 return rv;
3501}
3502
Corey Minyardb0defcd2006-03-26 01:37:20 -08003503static int try_smi_init(struct smi_info *new_smi)
3504{
Matthew Garrett2407d772010-05-26 14:43:46 -07003505 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003506 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003507
Myron Stowe279fbd02010-05-26 14:43:52 -07003508 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003509 " machine at %s address 0x%lx, slave address 0x%x,"
3510 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003511 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003512 si_to_str[new_smi->si_type],
3513 addr_space_to_str[new_smi->io.addr_type],
3514 new_smi->io.addr_data,
3515 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003516
Corey Minyardb0defcd2006-03-26 01:37:20 -08003517 switch (new_smi->si_type) {
3518 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003520 break;
3521
3522 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003524 break;
3525
3526 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003528 break;
3529
3530 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 /* No support for anything else yet. */
3532 rv = -EIO;
3533 goto out_err;
3534 }
3535
3536 /* Allocate the state machine's data and initialize it. */
3537 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003538 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003539 printk(KERN_ERR PFX
3540 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 rv = -ENOMEM;
3542 goto out_err;
3543 }
3544 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3545 &new_smi->io);
3546
3547 /* Now that we know the I/O size, we can set up the I/O. */
3548 rv = new_smi->io_setup(new_smi);
3549 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003550 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 goto out_err;
3552 }
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 /* Do low-level detection first. */
3555 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003556 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003557 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 rv = -ENODEV;
3559 goto out_err;
3560 }
3561
Corey Minyardc305e3d2008-04-29 01:01:10 -07003562 /*
3563 * Attempt a get device id command. If it fails, we probably
3564 * don't have a BMC here.
3565 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003567 if (rv) {
3568 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003569 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003570 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003574 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003575 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05003576 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003577
Corey Minyardb874b982014-11-06 17:01:59 -06003578 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 new_smi->curr_msg = NULL;
3580 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003581 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003582 for (i = 0; i < SI_NUM_STATS; i++)
3583 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Corey Minyard7aefac22014-04-14 09:46:56 -05003585 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003586 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003587 new_smi->intf_num = smi_num;
3588 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Corey Minyard40112ae2009-04-21 12:24:03 -07003590 rv = try_enable_event_buffer(new_smi);
3591 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003592 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003593
Corey Minyardc305e3d2008-04-29 01:01:10 -07003594 /*
3595 * Start clearing the flags before we enable interrupts or the
3596 * timer to avoid racing with the timer.
3597 */
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003598 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003599
3600 /*
3601 * IRQ is defined to be set when non-zero. req_events will
3602 * cause a global flags check that will enable interrupts.
3603 */
3604 if (new_smi->irq) {
3605 new_smi->interrupt_disabled = false;
3606 atomic_set(&new_smi->req_events, 1);
3607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Corey Minyard50c812b2006-03-26 01:37:21 -08003609 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003610 /*
3611 * If we don't already have a device from something
3612 * else (like PCI), then register a new one.
3613 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003614 new_smi->pdev = platform_device_alloc("ipmi_si",
3615 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003616 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003617 printk(KERN_ERR PFX
3618 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003619 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003620 }
3621 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003622 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003623
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003624 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003625 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003626 printk(KERN_ERR PFX
3627 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003628 " %d\n",
3629 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003630 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003631 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003632 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003633 }
3634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 rv = ipmi_register_smi(&handlers,
3636 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003637 &new_smi->device_id,
3638 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003639 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003641 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3642 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 goto out_err_stop_timer;
3644 }
3645
3646 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003647 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003648 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003650 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 goto out_err_stop_timer;
3652 }
3653
3654 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003655 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003656 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003658 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 goto out_err_stop_timer;
3660 }
3661
Corey Minyardb361e272006-12-06 20:41:07 -08003662 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003663 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003664 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003665 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003666 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003667 goto out_err_stop_timer;
3668 }
3669
Myron Stowe279fbd02010-05-26 14:43:52 -07003670 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3671 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673 return 0;
3674
Corey Minyard76824852016-04-26 22:40:15 -05003675out_err_stop_timer:
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003676 stop_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Corey Minyard76824852016-04-26 22:40:15 -05003678out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003679 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Matthew Garrett2407d772010-05-26 14:43:46 -07003681 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003682 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003683 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003684 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003685 }
3686
3687 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003688 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003689 new_smi->irq_cleanup = NULL;
3690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Corey Minyardc305e3d2008-04-29 01:01:10 -07003692 /*
3693 * Wait until we know that we are out of any interrupt
3694 * handlers might have been running before we freed the
3695 * interrupt.
3696 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003697 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
3699 if (new_smi->si_sm) {
3700 if (new_smi->handlers)
3701 new_smi->handlers->cleanup(new_smi->si_sm);
3702 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003703 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003705 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003706 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003707 new_smi->addr_source_cleanup = NULL;
3708 }
3709 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003710 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003711 new_smi->io_cleanup = NULL;
3712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Matthew Garrett2407d772010-05-26 14:43:46 -07003714 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003715 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003716 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003717 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 return rv;
3720}
3721
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003722static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 int i;
3725 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003726 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003727 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003728 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
3730 if (initialized)
3731 return 0;
3732 initialized = 1;
3733
Corey Minyardf2afae42013-02-27 17:05:13 -08003734 if (si_tryplatform) {
3735 rv = platform_driver_register(&ipmi_driver);
3736 if (rv) {
3737 printk(KERN_ERR PFX "Unable to register "
3738 "driver: %d\n", rv);
3739 return rv;
3740 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003741 }
3742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 /* Parse out the si_type string into its components. */
3744 str = si_type_str;
3745 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003746 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 si_type[i] = str;
3748 str = strchr(str, ',');
3749 if (str) {
3750 *str = '\0';
3751 str++;
3752 } else {
3753 break;
3754 }
3755 }
3756 }
3757
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003758 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003760 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003761 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003762 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003763
Corey Minyardb0defcd2006-03-26 01:37:20 -08003764#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003765 if (si_trypci) {
3766 rv = pci_register_driver(&ipmi_pci_driver);
3767 if (rv)
3768 printk(KERN_ERR PFX "Unable to register "
3769 "PCI driver: %d\n", rv);
3770 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003771 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003772 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003773#endif
3774
Matthew Garrett754d4532010-05-26 14:43:47 -07003775#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003776 if (si_trydmi)
3777 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003778#endif
3779
3780#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003781 if (si_tryacpi)
3782 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003783#endif
3784
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003785#ifdef CONFIG_PARISC
3786 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003787 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003788#endif
3789
Matthew Garrett06ee4592010-05-26 14:43:49 -07003790 /* We prefer devices with interrupts, but in the case of a machine
3791 with multiple BMCs we assume that there will be several instances
3792 of a given type so if we succeed in registering a type then also
3793 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003794
Matthew Garrett2407d772010-05-26 14:43:46 -07003795 mutex_lock(&smi_infos_lock);
3796 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003797 /* Try to register a device if it has an IRQ and we either
3798 haven't successfully registered a device yet or this
3799 device has the same type as one we successfully registered */
3800 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003801 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003802 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003803 }
3804 }
3805 }
3806
Matthew Garrett06ee4592010-05-26 14:43:49 -07003807 /* type will only have been set if we successfully registered an si */
3808 if (type) {
3809 mutex_unlock(&smi_infos_lock);
3810 return 0;
3811 }
3812
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003813 /* Fall back to the preferred device */
3814
3815 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003816 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003817 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003818 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003819 }
3820 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003821 }
3822 mutex_unlock(&smi_infos_lock);
3823
Matthew Garrett06ee4592010-05-26 14:43:49 -07003824 if (type)
3825 return 0;
3826
Corey Minyardd6dfd132006-03-31 02:30:41 -08003827 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003828 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003829 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003830 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003831 printk(KERN_WARNING PFX
3832 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003834 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003835 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838}
3839module_init(init_ipmi_si);
3840
Corey Minyardb361e272006-12-06 20:41:07 -08003841static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
Matthew Garrett2407d772010-05-26 14:43:46 -07003843 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Corey Minyardb0defcd2006-03-26 01:37:20 -08003845 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return;
3847
Corey Minyardb874b982014-11-06 17:01:59 -06003848 if (to_clean->intf) {
3849 ipmi_smi_t intf = to_clean->intf;
3850
3851 to_clean->intf = NULL;
3852 rv = ipmi_unregister_smi(intf);
3853 if (rv) {
3854 pr_err(PFX "Unable to unregister device: errno=%d\n",
3855 rv);
3856 }
3857 }
3858
Takao Indoh567eded2014-10-06 14:17:53 -05003859 if (to_clean->dev)
3860 dev_set_drvdata(to_clean->dev, NULL);
3861
Corey Minyardb0defcd2006-03-26 01:37:20 -08003862 list_del(&to_clean->link);
3863
Corey Minyardc305e3d2008-04-29 01:01:10 -07003864 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003865 * Make sure that interrupts, the timer and the thread are
3866 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003867 */
Corey Minyardb874b982014-11-06 17:01:59 -06003868 if (to_clean->irq_cleanup)
3869 to_clean->irq_cleanup(to_clean);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003870 stop_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Corey Minyardc305e3d2008-04-29 01:01:10 -07003872 /*
3873 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003874 * in the BMC. Note that timers and CPU interrupts are off,
3875 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003876 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003877 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003878 poll(to_clean);
3879 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003880 }
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003881 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003882 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3883 poll(to_clean);
3884 schedule_timeout_uninterruptible(1);
3885 }
3886
Matthew Garrett2407d772010-05-26 14:43:46 -07003887 if (to_clean->handlers)
3888 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
3890 kfree(to_clean->si_sm);
3891
Corey Minyardb0defcd2006-03-26 01:37:20 -08003892 if (to_clean->addr_source_cleanup)
3893 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003894 if (to_clean->io_cleanup)
3895 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003896
3897 if (to_clean->dev_registered)
3898 platform_device_unregister(to_clean->pdev);
3899
3900 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901}
3902
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003903static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003905 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Corey Minyardb0defcd2006-03-26 01:37:20 -08003907 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 return;
3909
Corey Minyardb0defcd2006-03-26 01:37:20 -08003910#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003911 if (pci_registered)
3912 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003913#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003914#ifdef CONFIG_PARISC
3915 if (parisc_registered)
3916 unregister_parisc_driver(&ipmi_parisc_driver);
3917#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003918
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003919 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003920
Corey Minyardd6dfd132006-03-31 02:30:41 -08003921 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003922 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3923 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003924 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925}
3926module_exit(cleanup_ipmi_si);
3927
3928MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003929MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003930MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3931 " system interfaces.");