blob: eda67a6fa293a2eeae693273a6b34ab455e1ee61 [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
Corey Minyard7522f962019-08-02 07:31:36 -0500286 /* Is the driver in maintenance mode? */
287 bool in_maintenance_mode;
288
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500289 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600290 * Did we get an attention that we did not handle?
291 */
292 bool got_attn;
293
Corey Minyard50c812b2006-03-26 01:37:21 -0800294 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700295 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Corey Minyard50c812b2006-03-26 01:37:21 -0800297 /* Driver model stuff. */
298 struct device *dev;
299 struct platform_device *pdev;
300
Corey Minyardc305e3d2008-04-29 01:01:10 -0700301 /*
302 * True if we allocated the device, false if it came from
303 * someplace else (like PCI).
304 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500305 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* Slave address, could be reported from DMI. */
308 unsigned char slave_addr;
309
310 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700311 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800312
Corey Minyardc305e3d2008-04-29 01:01:10 -0700313 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800314
315 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800316 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
Corey Minyard64959e22008-04-29 01:01:07 -0700319#define smi_inc_stat(smi, stat) \
320 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
321#define smi_get_stat(smi, stat) \
322 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
323
Corey Minyarda51f4a82006-10-03 01:13:59 -0700324#define SI_MAX_PARMS 4
325
326static int force_kipmid[SI_MAX_PARMS];
327static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700328#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500329static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700330#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500331#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500332static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500333#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700334
Martin Wilckae74e822010-03-10 15:23:06 -0800335static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
336static int num_max_busy_us;
337
Corey Minyard7aefac22014-04-14 09:46:56 -0500338static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800339
Matthew Garrett2407d772010-05-26 14:43:46 -0700340static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800341static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800342static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600343static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800344
John Stultzf93aae92015-01-07 14:24:28 -0800345#ifdef DEBUG_TIMING
346void debug_timestamp(char *msg)
347{
John Stultz48862ea22015-01-07 14:24:29 -0800348 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800349
John Stultz48862ea22015-01-07 14:24:29 -0800350 getnstimeofday64(&t);
351 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800352}
353#else
354#define debug_timestamp(x)
355#endif
356
Alan Sterne041c682006-03-27 01:16:30 -0800357static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700358static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800359{
Alan Sterne041c682006-03-27 01:16:30 -0800360 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363static void deliver_recv_msg(struct smi_info *smi_info,
364 struct ipmi_smi_msg *msg)
365{
Corey Minyard7adf5792012-03-28 14:42:49 -0700366 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600367 if (smi_info->intf)
368 ipmi_smi_msg_received(smi_info->intf, msg);
369 else
370 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800373static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct ipmi_smi_msg *msg = smi_info->curr_msg;
376
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800377 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
378 cCode = IPMI_ERR_UNSPECIFIED;
379 /* else use it as is */
380
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300381 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 msg->rsp[0] = msg->data[0] | 4;
383 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800384 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 msg->rsp_size = 3;
386
387 smi_info->curr_msg = NULL;
388 deliver_recv_msg(smi_info, msg);
389}
390
391static enum si_sm_result start_next_msg(struct smi_info *smi_info)
392{
393 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Corey Minyardb874b982014-11-06 17:01:59 -0600395 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 smi_info->curr_msg = NULL;
397 rv = SI_SM_IDLE;
398 } else {
399 int err;
400
Corey Minyardb874b982014-11-06 17:01:59 -0600401 smi_info->curr_msg = smi_info->waiting_msg;
402 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800403 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800404 err = atomic_notifier_call_chain(&xaction_notifier_list,
405 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800406 if (err & NOTIFY_STOP_MASK) {
407 rv = SI_SM_CALL_WITHOUT_DELAY;
408 goto out;
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 err = smi_info->handlers->start_transaction(
411 smi_info->si_sm,
412 smi_info->curr_msg->data,
413 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700414 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800415 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 rv = SI_SM_CALL_WITHOUT_DELAY;
418 }
Corey Minyard76824852016-04-26 22:40:15 -0500419out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return rv;
421}
422
Corey Minyard0cfec912015-09-05 17:44:13 -0500423static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
424{
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000425 if (!smi_info->timer_can_start)
426 return;
Corey Minyard0cfec912015-09-05 17:44:13 -0500427 smi_info->last_timeout_jiffies = jiffies;
428 mod_timer(&smi_info->si_timer, new_val);
429 smi_info->timer_running = true;
430}
431
432/*
433 * Start a new message and (re)start the timer and thread.
434 */
435static void start_new_msg(struct smi_info *smi_info, unsigned char *msg,
436 unsigned int size)
437{
438 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
439
440 if (smi_info->thread)
441 wake_up_process(smi_info->thread);
442
443 smi_info->handlers->start_transaction(smi_info->si_sm, msg, size);
444}
445
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000446static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700447{
448 unsigned char msg[2];
449
450 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
451 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
452
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000453 start_new_msg(smi_info, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600454 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700455}
456
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000457static void start_clear_flags(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 unsigned char msg[3];
460
461 /* Make sure the watchdog pre-timeout flag is not set at startup. */
462 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
463 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
464 msg[2] = WDT_PRE_TIMEOUT_INT;
465
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000466 start_new_msg(smi_info, msg, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 smi_info->si_state = SI_CLEARING_FLAGS;
468}
469
Corey Minyard968bf7c2014-11-06 19:06:00 -0600470static void start_getting_msg_queue(struct smi_info *smi_info)
471{
472 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
473 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
474 smi_info->curr_msg->data_size = 2;
475
Corey Minyard0cfec912015-09-05 17:44:13 -0500476 start_new_msg(smi_info, smi_info->curr_msg->data,
477 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600478 smi_info->si_state = SI_GETTING_MESSAGES;
479}
480
481static void start_getting_events(struct smi_info *smi_info)
482{
483 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
484 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
485 smi_info->curr_msg->data_size = 2;
486
Corey Minyard0cfec912015-09-05 17:44:13 -0500487 start_new_msg(smi_info, smi_info->curr_msg->data,
488 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600489 smi_info->si_state = SI_GETTING_EVENTS;
490}
491
Corey Minyardc305e3d2008-04-29 01:01:10 -0700492/*
493 * When we have a situtaion where we run out of memory and cannot
494 * allocate messages, we just leave them in the BMC and run the system
495 * polled until we can allocate some memory. Once we have some
496 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500497 *
498 * Note that we cannot just use disable_irq(), since the interrupt may
499 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700500 */
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000501static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800503 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500504 smi_info->interrupt_disabled = true;
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000505 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600506 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600508 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Corey Minyard968bf7c2014-11-06 19:06:00 -0600511static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500514 smi_info->interrupt_disabled = false;
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000515 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600516 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600518 return false;
519}
520
521/*
522 * Allocate a message. If unable to allocate, start the interrupt
523 * disable process and return NULL. If able to allocate but
524 * interrupts are disabled, free the message and return NULL after
525 * starting the interrupt enable process.
526 */
527static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
528{
529 struct ipmi_smi_msg *msg;
530
531 msg = ipmi_alloc_smi_msg();
532 if (!msg) {
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000533 if (!disable_si_irq(smi_info))
Corey Minyard968bf7c2014-11-06 19:06:00 -0600534 smi_info->si_state = SI_NORMAL;
535 } else if (enable_si_irq(smi_info)) {
536 ipmi_free_smi_msg(msg);
537 msg = NULL;
538 }
539 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542static void handle_flags(struct smi_info *smi_info)
543{
Corey Minyard76824852016-04-26 22:40:15 -0500544retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
546 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700547 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000549 start_clear_flags(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600551 if (smi_info->intf)
552 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
554 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600555 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
556 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Corey Minyard968bf7c2014-11-06 19:06:00 -0600559 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
561 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600562 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
563 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Corey Minyard968bf7c2014-11-06 19:06:00 -0600566 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700567 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700568 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700569 if (smi_info->oem_data_avail_handler(smi_info))
570 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700571 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600575/*
576 * Global enables we care about.
577 */
578#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
579 IPMI_BMC_EVT_MSG_INTR)
580
Corey Minyard95c97b52014-11-20 07:19:44 -0600581static u8 current_global_enables(struct smi_info *smi_info, u8 base,
582 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600583{
584 u8 enables = 0;
585
586 if (smi_info->supports_event_msg_buff)
587 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600588
Corey Minyardd0882892015-08-18 14:29:10 -0500589 if (((smi_info->irq && !smi_info->interrupt_disabled) ||
590 smi_info->cannot_disable_irq) &&
591 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600592 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600593
594 if (smi_info->supports_event_msg_buff &&
Corey Minyardd0882892015-08-18 14:29:10 -0500595 smi_info->irq && !smi_info->interrupt_disabled &&
596 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600597 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600598
Corey Minyard95c97b52014-11-20 07:19:44 -0600599 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
600
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600601 return enables;
602}
603
Corey Minyard95c97b52014-11-20 07:19:44 -0600604static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
605{
606 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
607
608 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
609
610 if ((bool)irqstate == irq_on)
611 return;
612
613 if (irq_on)
614 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
615 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
616 else
617 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620static void handle_transaction_done(struct smi_info *smi_info)
621{
622 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
John Stultzf93aae92015-01-07 14:24:28 -0800624 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 switch (smi_info->si_state) {
626 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800627 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
629
630 smi_info->curr_msg->rsp_size
631 = smi_info->handlers->get_result(
632 smi_info->si_sm,
633 smi_info->curr_msg->rsp,
634 IPMI_MAX_MSG_LENGTH);
635
Corey Minyardc305e3d2008-04-29 01:01:10 -0700636 /*
637 * Do this here becase deliver_recv_msg() releases the
638 * lock, and a new message can be put in during the
639 * time the lock is released.
640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 msg = smi_info->curr_msg;
642 smi_info->curr_msg = NULL;
643 deliver_recv_msg(smi_info, msg);
644 break;
645
646 case SI_GETTING_FLAGS:
647 {
648 unsigned char msg[4];
649 unsigned int len;
650
651 /* We got the flags from the SMI, now handle them. */
652 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
653 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700654 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 smi_info->si_state = SI_NORMAL;
656 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700657 /*
658 * Hmm, no flags. That's technically illegal, but
659 * don't use uninitialized data.
660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 smi_info->si_state = SI_NORMAL;
662 } else {
663 smi_info->msg_flags = msg[3];
664 handle_flags(smi_info);
665 }
666 break;
667 }
668
669 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 {
671 unsigned char msg[3];
672
673 /* We cleared the flags. */
674 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
675 if (msg[2] != 0) {
676 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700677 dev_warn(smi_info->dev,
678 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600680 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 break;
682 }
683
684 case SI_GETTING_EVENTS:
685 {
686 smi_info->curr_msg->rsp_size
687 = smi_info->handlers->get_result(
688 smi_info->si_sm,
689 smi_info->curr_msg->rsp,
690 IPMI_MAX_MSG_LENGTH);
691
Corey Minyardc305e3d2008-04-29 01:01:10 -0700692 /*
693 * Do this here becase deliver_recv_msg() releases the
694 * lock, and a new message can be put in during the
695 * time the lock is released.
696 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 msg = smi_info->curr_msg;
698 smi_info->curr_msg = NULL;
699 if (msg->rsp[2] != 0) {
700 /* Error getting event, probably done. */
701 msg->done(msg);
702
703 /* Take off the event flag. */
704 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
705 handle_flags(smi_info);
706 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700707 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Corey Minyardc305e3d2008-04-29 01:01:10 -0700709 /*
710 * Do this before we deliver the message
711 * because delivering the message releases the
712 * lock and something else can mess with the
713 * state.
714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 handle_flags(smi_info);
716
717 deliver_recv_msg(smi_info, msg);
718 }
719 break;
720 }
721
722 case SI_GETTING_MESSAGES:
723 {
724 smi_info->curr_msg->rsp_size
725 = smi_info->handlers->get_result(
726 smi_info->si_sm,
727 smi_info->curr_msg->rsp,
728 IPMI_MAX_MSG_LENGTH);
729
Corey Minyardc305e3d2008-04-29 01:01:10 -0700730 /*
731 * Do this here becase deliver_recv_msg() releases the
732 * lock, and a new message can be put in during the
733 * time the lock is released.
734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 msg = smi_info->curr_msg;
736 smi_info->curr_msg = NULL;
737 if (msg->rsp[2] != 0) {
738 /* Error getting event, probably done. */
739 msg->done(msg);
740
741 /* Take off the msg flag. */
742 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
743 handle_flags(smi_info);
744 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700745 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Corey Minyardc305e3d2008-04-29 01:01:10 -0700747 /*
748 * Do this before we deliver the message
749 * because delivering the message releases the
750 * lock and something else can mess with the
751 * state.
752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 handle_flags(smi_info);
754
755 deliver_recv_msg(smi_info, msg);
756 }
757 break;
758 }
759
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600760 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 {
762 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600763 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600764 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /* We got the flags from the SMI, now handle them. */
767 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
768 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500769 dev_warn(smi_info->dev,
770 "Couldn't get irq info: %x.\n", msg[2]);
771 dev_warn(smi_info->dev,
772 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600774 break;
775 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600776 enables = current_global_enables(smi_info, 0, &irq_on);
777 if (smi_info->si_type == SI_BT)
778 /* BT has its own interrupt enable bit. */
779 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600780 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
781 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
783 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600784 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 smi_info->handlers->start_transaction(
786 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600787 smi_info->si_state = SI_SETTING_ENABLES;
788 } else if (smi_info->supports_event_msg_buff) {
789 smi_info->curr_msg = ipmi_alloc_smi_msg();
790 if (!smi_info->curr_msg) {
791 smi_info->si_state = SI_NORMAL;
792 break;
793 }
794 start_getting_msg_queue(smi_info);
795 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700796 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700797 }
798 break;
799 }
800
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600801 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700802 {
803 unsigned char msg[4];
804
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700805 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600806 if (msg[2] != 0)
807 dev_warn(smi_info->dev,
808 "Could not set the global enables: 0x%x.\n",
809 msg[2]);
810
811 if (smi_info->supports_event_msg_buff) {
812 smi_info->curr_msg = ipmi_alloc_smi_msg();
813 if (!smi_info->curr_msg) {
814 smi_info->si_state = SI_NORMAL;
815 break;
816 }
817 start_getting_msg_queue(smi_info);
818 } else {
819 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700820 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700821 break;
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824}
825
Corey Minyardc305e3d2008-04-29 01:01:10 -0700826/*
827 * Called on timeouts and events. Timeouts should pass the elapsed
828 * time, interrupts should pass in zero. Must be called with
829 * si_lock held and interrupts disabled.
830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
832 int time)
833{
834 enum si_sm_result si_sm_result;
835
Corey Minyard76824852016-04-26 22:40:15 -0500836restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700837 /*
838 * There used to be a loop here that waited a little while
839 * (around 25us) before giving up. That turned out to be
840 * pointless, the minimum delays I was seeing were in the 300us
841 * range, which is far too long to wait in an interrupt. So
842 * we just run until the state machine tells us something
843 * happened or it needs a delay.
844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
846 time = 0;
847 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Corey Minyardc305e3d2008-04-29 01:01:10 -0700850 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700851 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 handle_transaction_done(smi_info);
Corey Minyardd9dffd22016-01-25 16:11:20 -0600854 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700855 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700856 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Corey Minyardc305e3d2008-04-29 01:01:10 -0700858 /*
859 * Do the before return_hosed_msg, because that
860 * releases the lock.
861 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 smi_info->si_state = SI_NORMAL;
863 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700864 /*
865 * If we were handling a user message, format
866 * a response to send to the upper layer to
867 * tell it about the error.
868 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800869 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
Corey Minyardd9dffd22016-01-25 16:11:20 -0600871 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Corey Minyard4ea18422008-04-29 01:01:01 -0700874 /*
875 * We prefer handling attn over new messages. But don't do
876 * this if there is not yet an upper layer to handle anything.
877 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600878 if (likely(smi_info->intf) &&
879 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 unsigned char msg[2];
881
Corey Minyarda8df1502014-11-19 11:47:17 -0600882 if (smi_info->si_state != SI_NORMAL) {
883 /*
884 * We got an ATTN, but we are doing something else.
885 * Handle the ATTN later.
886 */
887 smi_info->got_attn = true;
888 } else {
889 smi_info->got_attn = false;
890 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Corey Minyarda8df1502014-11-19 11:47:17 -0600892 /*
893 * Got a attn, send down a get message flags to see
894 * what's causing it. It would be better to handle
895 * this in the upper layer, but due to the way
896 * interrupts work with the SMI, that's not really
897 * possible.
898 */
899 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
900 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Corey Minyard0cfec912015-09-05 17:44:13 -0500902 start_new_msg(smi_info, msg, 2);
Corey Minyarda8df1502014-11-19 11:47:17 -0600903 smi_info->si_state = SI_GETTING_FLAGS;
904 goto restart;
905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907
908 /* If we are currently idle, try to start the next message. */
909 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700910 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 si_sm_result = start_next_msg(smi_info);
913 if (si_sm_result != SI_SM_IDLE)
914 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700918 && (atomic_read(&smi_info->req_events))) {
919 /*
920 * We are idle and the upper layer requested that I fetch
921 * events, so do so.
922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800924
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600925 /*
926 * Take this opportunity to check the interrupt and
927 * message enable state for the BMC. The BMC can be
928 * asynchronously reset, and may thus get interrupts
929 * disable and messages disabled.
930 */
931 if (smi_info->supports_event_msg_buff || smi_info->irq) {
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +0000932 start_check_enables(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600933 } else {
934 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
935 if (!smi_info->curr_msg)
936 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800937
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600938 start_getting_events(smi_info);
939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 goto restart;
941 }
Corey Minyard314ef522015-09-05 17:58:13 -0500942
943 if (si_sm_result == SI_SM_IDLE && smi_info->timer_running) {
944 /* Ok it if fails, the timer will just go off. */
945 if (del_timer(&smi_info->si_timer))
946 smi_info->timer_running = false;
947 }
948
Corey Minyard76824852016-04-26 22:40:15 -0500949out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return si_sm_result;
951}
952
Corey Minyard89986492014-04-14 09:46:54 -0500953static void check_start_timer_thread(struct smi_info *smi_info)
954{
955 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
956 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
957
958 if (smi_info->thread)
959 wake_up_process(smi_info->thread);
960
961 start_next_msg(smi_info);
962 smi_event_handler(smi_info, 0);
963 }
964}
965
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900966static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900967{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900968 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900969 enum si_sm_result result;
970
971 /*
972 * Currently, this function is called only in run-to-completion
973 * mode. This means we are single-threaded, no need for locks.
974 */
975 result = smi_event_handler(smi_info, 0);
976 while (result != SI_SM_IDLE) {
977 udelay(SI_SHORT_TIMEOUT_USEC);
978 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
979 }
980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600983 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
John Stultzf93aae92015-01-07 14:24:28 -0800988 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700991 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900992 * If we are running to completion, start it. Upper
993 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700994 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900995 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Corey Minyardf60adf42012-03-28 14:42:50 -0700999 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -06001000 /*
1001 * The following two lines don't need to be under the lock for
1002 * the lock's sake, but they do need SMP memory barriers to
1003 * avoid getting things out of order. We are already claiming
1004 * the lock, anyway, so just do it under the lock to avoid the
1005 * ordering problem.
1006 */
1007 BUG_ON(smi_info->waiting_msg);
1008 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -05001009 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -07001010 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Corey Minyard7aefac22014-04-14 09:46:56 -05001013static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +09001018 if (i_run_to_completion)
1019 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Martin Wilckae74e822010-03-10 15:23:06 -08001022/*
1023 * Use -1 in the nsec value of the busy waiting timespec to tell that
1024 * we are spinning in kipmid looking for something and not delaying
1025 * between checks
1026 */
John Stultz48862ea22015-01-07 14:24:29 -08001027static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001028{
1029 ts->tv_nsec = -1;
1030}
John Stultz48862ea22015-01-07 14:24:29 -08001031static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001032{
1033 return ts->tv_nsec != -1;
1034}
1035
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001036static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1037 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001038 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001039{
1040 unsigned int max_busy_us = 0;
1041
1042 if (smi_info->intf_num < num_max_busy_us)
1043 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1044 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1045 ipmi_si_set_not_busy(busy_until);
1046 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001047 getnstimeofday64(busy_until);
1048 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001049 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001050 struct timespec64 now;
1051
1052 getnstimeofday64(&now);
1053 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001054 ipmi_si_set_not_busy(busy_until);
1055 return 0;
1056 }
1057 }
1058 return 1;
1059}
1060
1061
1062/*
1063 * A busy-waiting loop for speeding up IPMI operation.
1064 *
1065 * Lousy hardware makes this hard. This is only enabled for systems
1066 * that are not BT and do not have interrupts. It starts spinning
1067 * when an operation is complete or until max_busy tells it to stop
1068 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1069 * Documentation/IPMI.txt for details.
1070 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001071static int ipmi_thread(void *data)
1072{
1073 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001074 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001075 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001076 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001077
Martin Wilckae74e822010-03-10 15:23:06 -08001078 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001079 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001080 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001081 int busy_wait;
1082
Corey Minyarda9a2c442005-11-07 01:00:03 -08001083 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001084 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001085
1086 /*
1087 * If the driver is doing something, there is a possible
1088 * race with the timer. If the timer handler see idle,
1089 * and the thread here sees something else, the timer
1090 * handler won't restart the timer even though it is
1091 * required. So start it here if necessary.
1092 */
1093 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1094 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1095
Corey Minyarda9a2c442005-11-07 01:00:03 -08001096 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001097 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1098 &busy_until);
Corey Minyard7522f962019-08-02 07:31:36 -05001099 if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001100 ; /* do nothing */
Corey Minyard7522f962019-08-02 07:31:36 -05001101 } else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait) {
1102 /*
1103 * In maintenance mode we run as fast as
1104 * possible to allow firmware updates to
1105 * complete as fast as possible, but normally
1106 * don't bang on the scheduler.
1107 */
1108 if (smi_info->in_maintenance_mode)
1109 schedule();
1110 else
1111 usleep_range(100, 200);
1112 } else if (smi_result == SI_SM_IDLE) {
Corey Minyard89986492014-04-14 09:46:54 -05001113 if (atomic_read(&smi_info->need_watch)) {
1114 schedule_timeout_interruptible(100);
1115 } else {
1116 /* Wait to be woken up when we are needed. */
1117 __set_current_state(TASK_INTERRUPTIBLE);
1118 schedule();
1119 }
Corey Minyard7522f962019-08-02 07:31:36 -05001120 } else {
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001121 schedule_timeout_interruptible(1);
Corey Minyard7522f962019-08-02 07:31:36 -05001122 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001123 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001124 return 0;
1125}
1126
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128static void poll(void *send_info)
1129{
1130 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001131 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001132 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Corey Minyard15c62e12006-12-06 20:41:06 -08001134 /*
1135 * Make sure there is some delay in the poll loop so we can
1136 * drive time forward and timeout things.
1137 */
1138 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001139 if (!run_to_completion)
1140 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001141 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001142 if (!run_to_completion)
1143 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146static void request_events(void *send_info)
1147{
1148 struct smi_info *smi_info = send_info;
1149
Corey Minyardb874b982014-11-06 17:01:59 -06001150 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001151 return;
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 atomic_set(&smi_info->req_events, 1);
1154}
1155
Corey Minyard7aefac22014-04-14 09:46:56 -05001156static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001157{
1158 struct smi_info *smi_info = send_info;
1159 unsigned long flags;
1160
1161 atomic_set(&smi_info->need_watch, enable);
1162 spin_lock_irqsave(&smi_info->si_lock, flags);
1163 check_start_timer_thread(smi_info);
1164 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1165}
1166
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001167static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169static void smi_timeout(unsigned long data)
1170{
1171 struct smi_info *smi_info = (struct smi_info *) data;
1172 enum si_sm_result smi_result;
1173 unsigned long flags;
1174 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001175 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001176 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001179 debug_timestamp("Timer");
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001182 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 * SI_USEC_PER_JIFFY);
1184 smi_result = smi_event_handler(smi_info, time_diff);
1185
Corey Minyardb0defcd2006-03-26 01:37:20 -08001186 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001188 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001189 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001190 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192
Corey Minyardc305e3d2008-04-29 01:01:10 -07001193 /*
1194 * If the state machine asks for a short delay, then shorten
1195 * the timer timeout.
1196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001198 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001199 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001201 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001202 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204
Corey Minyard76824852016-04-26 22:40:15 -05001205do_mod_timer:
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001206 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001207 smi_mod_timer(smi_info, timeout);
1208 else
1209 smi_info->timer_running = false;
1210 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
David Howells7d12e782006-10-05 14:55:46 +01001213static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 struct smi_info *smi_info = data;
1216 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 spin_lock_irqsave(&(smi_info->si_lock), flags);
1219
Corey Minyard64959e22008-04-29 01:01:07 -07001220 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
John Stultzf93aae92015-01-07 14:24:28 -08001222 debug_timestamp("Interrupt");
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1226 return IRQ_HANDLED;
1227}
1228
David Howells7d12e782006-10-05 14:55:46 +01001229static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001230{
1231 struct smi_info *smi_info = data;
1232 /* We need to clear the IRQ flag for the BT interface. */
1233 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1234 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1235 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001236 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001237}
1238
Corey Minyard453823b2006-03-31 02:30:39 -08001239static int smi_start_processing(void *send_info,
1240 ipmi_smi_t intf)
1241{
1242 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001243 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001244
1245 new_smi->intf = intf;
1246
1247 /* Set up the timer that drives the interface. */
1248 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00001249 new_smi->timer_can_start = true;
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001250 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001251
Jan Stancek27f972d2015-12-08 13:57:51 -05001252 /* Try to claim any interrupts. */
1253 if (new_smi->irq_setup)
1254 new_smi->irq_setup(new_smi);
1255
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001256 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001257 * Check if the user forcefully enabled the daemon.
1258 */
1259 if (new_smi->intf_num < num_force_kipmid)
1260 enable = force_kipmid[new_smi->intf_num];
1261 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001262 * The BT interface is efficient enough to not need a thread,
1263 * and there is no need for a thread if we have interrupts.
1264 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001265 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001266 enable = 1;
1267
1268 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001269 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1270 "kipmi%d", new_smi->intf_num);
1271 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001272 dev_notice(new_smi->dev, "Could not start"
1273 " kernel thread due to error %ld, only using"
1274 " timers to drive the interface\n",
1275 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001276 new_smi->thread = NULL;
1277 }
1278 }
1279
1280 return 0;
1281}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001282
Zhao Yakui16f42322010-12-08 10:10:16 +08001283static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1284{
1285 struct smi_info *smi = send_info;
1286
1287 data->addr_src = smi->addr_source;
1288 data->dev = smi->dev;
1289 data->addr_info = smi->addr_info;
1290 get_device(smi->dev);
1291
1292 return 0;
1293}
1294
Corey Minyard7aefac22014-04-14 09:46:56 -05001295static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001296{
1297 struct smi_info *smi_info = send_info;
1298
1299 if (!enable)
1300 atomic_set(&smi_info->req_events, 0);
Corey Minyard7522f962019-08-02 07:31:36 -05001301 smi_info->in_maintenance_mode = enable;
Corey Minyardb9675132006-12-06 20:41:02 -08001302}
1303
Corey Minyard81d02b72015-06-13 10:34:25 -05001304static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001306 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001307 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 .sender = sender,
1309 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001310 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001311 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001313 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 .poll = poll,
1315};
1316
Corey Minyardc305e3d2008-04-29 01:01:10 -07001317/*
1318 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1319 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Corey Minyardb0defcd2006-03-26 01:37:20 -08001322static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001323static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001324static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001327#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Corey Minyardd941aea2013-02-27 17:05:12 -08001329#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301330static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001331#endif
1332#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301333static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001334#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301335static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001336#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301337static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001338#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static char *si_type[SI_MAX_PARMS];
1340#define MAX_SI_TYPE_STR 30
1341static char si_type_str[MAX_SI_TYPE_STR];
1342static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001343static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001345static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001347static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001349static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001351static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001353static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001354static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001355static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Corey Minyardb361e272006-12-06 20:41:07 -08001357#define IPMI_IO_ADDR_SPACE 0
1358#define IPMI_MEM_ADDR_SPACE 1
LABBE Corentin99ee6732015-11-13 13:31:51 +01001359static const char * const addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001360
Kees Cook24da2c82017-10-17 19:04:42 -07001361static int hotmod_handler(const char *val, const struct kernel_param *kp);
Corey Minyardb361e272006-12-06 20:41:07 -08001362
1363module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1364MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1365 " Documentation/IPMI.txt in the kernel sources for the"
1366 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Corey Minyardd941aea2013-02-27 17:05:12 -08001368#ifdef CONFIG_ACPI
1369module_param_named(tryacpi, si_tryacpi, bool, 0);
1370MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1371 " default scan of the interfaces identified via ACPI");
1372#endif
1373#ifdef CONFIG_DMI
1374module_param_named(trydmi, si_trydmi, bool, 0);
1375MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1376 " default scan of the interfaces identified via DMI");
1377#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001378module_param_named(tryplatform, si_tryplatform, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001379MODULE_PARM_DESC(tryplatform, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001380 " default scan of the interfaces identified via platform"
1381 " interfaces like openfirmware");
1382#ifdef CONFIG_PCI
1383module_param_named(trypci, si_trypci, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001384MODULE_PARM_DESC(trypci, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001385 " default scan of the interfaces identified via pci");
1386#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1388MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1389 " interface separated by commas. The types are 'kcs',"
1390 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1391 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001392module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1394 " addresses separated by commas. Only use if an interface"
1395 " is in memory. Otherwise, set it to zero or leave"
1396 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001397module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1399 " addresses separated by commas. Only use if an interface"
1400 " is a port. Otherwise, set it to zero or leave"
1401 " it blank.");
1402module_param_array(irqs, int, &num_irqs, 0);
1403MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1404 " addresses separated by commas. Only use if an interface"
1405 " has an interrupt. Otherwise, set it to zero or leave"
1406 " it blank.");
1407module_param_array(regspacings, int, &num_regspacings, 0);
1408MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1409 " and each successive register used by the interface. For"
1410 " instance, if the start address is 0xca2 and the spacing"
1411 " is 2, then the second address is at 0xca4. Defaults"
1412 " to 1.");
1413module_param_array(regsizes, int, &num_regsizes, 0);
1414MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1415 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1416 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1417 " the 8-bit IPMI register has to be read from a larger"
1418 " register.");
1419module_param_array(regshifts, int, &num_regshifts, 0);
1420MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1421 " IPMI register, in bits. For instance, if the data"
1422 " is read from a 32-bit word and the IPMI data is in"
1423 " bit 8-15, then the shift would be 8");
1424module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1425MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1426 " the controller. Normally this is 0x20, but can be"
1427 " overridden by this parm. This is an array indexed"
1428 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001429module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1430MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1431 " disabled(0). Normally the IPMI driver auto-detects"
1432 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001433module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001434MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1435 " specified or found, default is 1. Setting to 0"
1436 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001437module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1438MODULE_PARM_DESC(kipmid_max_busy_us,
1439 "Max time (in microseconds) to busy-wait for IPMI data before"
1440 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1441 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443
Corey Minyardb0defcd2006-03-26 01:37:20 -08001444static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001446 if (info->si_type == SI_BT)
1447 /* Disable the interrupt in the BT interface. */
1448 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1449 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452static int std_irq_setup(struct smi_info *info)
1453{
1454 int rv;
1455
Corey Minyardb0defcd2006-03-26 01:37:20 -08001456 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return 0;
1458
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001459 if (info->si_type == SI_BT) {
1460 rv = request_irq(info->irq,
1461 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001462 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001463 DEVICE_NAME,
1464 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001465 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001466 /* Enable the interrupt in the BT interface. */
1467 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1468 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1469 } else
1470 rv = request_irq(info->irq,
1471 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001472 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001473 DEVICE_NAME,
1474 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001476 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1477 " running polled\n",
1478 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 info->irq = 0;
1480 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001481 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001482 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
1485 return rv;
1486}
1487
Corey Minyard81d02b72015-06-13 10:34:25 -05001488static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001490 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Corey Minyardb0defcd2006-03-26 01:37:20 -08001492 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Corey Minyard81d02b72015-06-13 10:34:25 -05001495static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 unsigned char b)
1497{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001498 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Corey Minyardb0defcd2006-03-26 01:37:20 -08001500 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Corey Minyard81d02b72015-06-13 10:34:25 -05001503static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001505 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Corey Minyardb0defcd2006-03-26 01:37:20 -08001507 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
Corey Minyard81d02b72015-06-13 10:34:25 -05001510static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 unsigned char b)
1512{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001513 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Corey Minyardb0defcd2006-03-26 01:37:20 -08001515 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Corey Minyard81d02b72015-06-13 10:34:25 -05001518static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001520 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Corey Minyardb0defcd2006-03-26 01:37:20 -08001522 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Corey Minyard81d02b72015-06-13 10:34:25 -05001525static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 unsigned char b)
1527{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001528 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Corey Minyardb0defcd2006-03-26 01:37:20 -08001530 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
1533static void port_cleanup(struct smi_info *info)
1534{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001535 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001536 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Corey Minyardb0defcd2006-03-26 01:37:20 -08001538 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001539 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001540 release_region(addr + idx * info->io.regspacing,
1541 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
1545static int port_setup(struct smi_info *info)
1546{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001547 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001548 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Corey Minyardb0defcd2006-03-26 01:37:20 -08001550 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return -ENODEV;
1552
1553 info->io_cleanup = port_cleanup;
1554
Corey Minyardc305e3d2008-04-29 01:01:10 -07001555 /*
1556 * Figure out the actual inb/inw/inl/etc routine to use based
1557 * upon the register size.
1558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 switch (info->io.regsize) {
1560 case 1:
1561 info->io.inputb = port_inb;
1562 info->io.outputb = port_outb;
1563 break;
1564 case 2:
1565 info->io.inputb = port_inw;
1566 info->io.outputb = port_outw;
1567 break;
1568 case 4:
1569 info->io.inputb = port_inl;
1570 info->io.outputb = port_outl;
1571 break;
1572 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001573 dev_warn(info->dev, "Invalid register size: %d\n",
1574 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EINVAL;
1576 }
1577
Corey Minyardc305e3d2008-04-29 01:01:10 -07001578 /*
1579 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001580 * tables. This causes problems when trying to register the
1581 * entire I/O region. Therefore we must register each I/O
1582 * port separately.
1583 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001584 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001585 if (request_region(addr + idx * info->io.regspacing,
1586 info->io.regsize, DEVICE_NAME) == NULL) {
1587 /* Undo allocations */
Corey Minyard76824852016-04-26 22:40:15 -05001588 while (idx--)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001589 release_region(addr + idx * info->io.regspacing,
1590 info->io.regsize);
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001591 return -EIO;
1592 }
1593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return 0;
1595}
1596
Corey Minyard81d02b72015-06-13 10:34:25 -05001597static unsigned char intf_mem_inb(const struct si_sm_io *io,
1598 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 return readb((io->addr)+(offset * io->regspacing));
1601}
1602
Corey Minyard81d02b72015-06-13 10:34:25 -05001603static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1604 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 writeb(b, (io->addr)+(offset * io->regspacing));
1607}
1608
Corey Minyard81d02b72015-06-13 10:34:25 -05001609static unsigned char intf_mem_inw(const struct si_sm_io *io,
1610 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001613 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Corey Minyard81d02b72015-06-13 10:34:25 -05001616static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1617 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1620}
1621
Corey Minyard81d02b72015-06-13 10:34:25 -05001622static unsigned char intf_mem_inl(const struct si_sm_io *io,
1623 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001626 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Corey Minyard81d02b72015-06-13 10:34:25 -05001629static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1630 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1633}
1634
1635#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001636static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001639 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Corey Minyard81d02b72015-06-13 10:34:25 -05001642static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 unsigned char b)
1644{
1645 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1646}
1647#endif
1648
Corey Minyard57a38f12016-04-26 22:25:12 -05001649static void mem_region_cleanup(struct smi_info *info, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001651 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001652 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Corey Minyard57a38f12016-04-26 22:25:12 -05001654 for (idx = 0; idx < num; idx++)
1655 release_mem_region(addr + idx * info->io.regspacing,
1656 info->io.regsize);
1657}
1658
1659static void mem_cleanup(struct smi_info *info)
1660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (info->io.addr) {
1662 iounmap(info->io.addr);
Corey Minyard57a38f12016-04-26 22:25:12 -05001663 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
1667static int mem_setup(struct smi_info *info)
1668{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001669 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001670 int mapsize, idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Corey Minyardb0defcd2006-03-26 01:37:20 -08001672 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return -ENODEV;
1674
1675 info->io_cleanup = mem_cleanup;
1676
Corey Minyardc305e3d2008-04-29 01:01:10 -07001677 /*
1678 * Figure out the actual readb/readw/readl/etc routine to use based
1679 * upon the register size.
1680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 switch (info->io.regsize) {
1682 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001683 info->io.inputb = intf_mem_inb;
1684 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 break;
1686 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001687 info->io.inputb = intf_mem_inw;
1688 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 break;
1690 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001691 info->io.inputb = intf_mem_inl;
1692 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 break;
1694#ifdef readq
1695 case 8:
1696 info->io.inputb = mem_inq;
1697 info->io.outputb = mem_outq;
1698 break;
1699#endif
1700 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001701 dev_warn(info->dev, "Invalid register size: %d\n",
1702 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return -EINVAL;
1704 }
1705
Corey Minyardc305e3d2008-04-29 01:01:10 -07001706 /*
Corey Minyard57a38f12016-04-26 22:25:12 -05001707 * Some BIOSes reserve disjoint memory regions in their ACPI
1708 * tables. This causes problems when trying to request the
1709 * entire region. Therefore we must request each register
1710 * separately.
1711 */
1712 for (idx = 0; idx < info->io_size; idx++) {
1713 if (request_mem_region(addr + idx * info->io.regspacing,
1714 info->io.regsize, DEVICE_NAME) == NULL) {
1715 /* Undo allocations */
1716 mem_region_cleanup(info, idx);
1717 return -EIO;
1718 }
1719 }
1720
1721 /*
Corey Minyardc305e3d2008-04-29 01:01:10 -07001722 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 * unusual looking calculation, but it avoids claiming any
1724 * more memory than it has to. It will claim everything
1725 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001726 * register.
1727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 mapsize = ((info->io_size * info->io.regspacing)
1729 - (info->io.regspacing - info->io.regsize));
Corey Minyardb0defcd2006-03-26 01:37:20 -08001730 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (info->io.addr == NULL) {
Corey Minyard57a38f12016-04-26 22:25:12 -05001732 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return -EIO;
1734 }
1735 return 0;
1736}
1737
Corey Minyardb361e272006-12-06 20:41:07 -08001738/*
1739 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1740 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1741 * Options are:
1742 * rsp=<regspacing>
1743 * rsi=<regsize>
1744 * rsh=<regshift>
1745 * irq=<irq>
1746 * ipmb=<ipmb addr>
1747 */
1748enum hotmod_op { HM_ADD, HM_REMOVE };
1749struct hotmod_vals {
LABBE Corentin99ee6732015-11-13 13:31:51 +01001750 const char *name;
1751 const int val;
Corey Minyardb361e272006-12-06 20:41:07 -08001752};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001753
1754static const struct hotmod_vals hotmod_ops[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001755 { "add", HM_ADD },
1756 { "remove", HM_REMOVE },
1757 { NULL }
1758};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001759
1760static const struct hotmod_vals hotmod_si[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001761 { "kcs", SI_KCS },
1762 { "smic", SI_SMIC },
1763 { "bt", SI_BT },
1764 { NULL }
1765};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001766
1767static const struct hotmod_vals hotmod_as[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001768 { "mem", IPMI_MEM_ADDR_SPACE },
1769 { "i/o", IPMI_IO_ADDR_SPACE },
1770 { NULL }
1771};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001772
LABBE Corentin99ee6732015-11-13 13:31:51 +01001773static int parse_str(const struct hotmod_vals *v, int *val, char *name,
1774 char **curr)
Corey Minyardb361e272006-12-06 20:41:07 -08001775{
1776 char *s;
1777 int i;
1778
1779 s = strchr(*curr, ',');
1780 if (!s) {
1781 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1782 return -EINVAL;
1783 }
1784 *s = '\0';
1785 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001786 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001787 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001788 *val = v[i].val;
1789 *curr = s;
1790 return 0;
1791 }
1792 }
1793
1794 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1795 return -EINVAL;
1796}
1797
Corey Minyard1d5636c2006-12-10 02:19:08 -08001798static int check_hotmod_int_op(const char *curr, const char *option,
1799 const char *name, int *val)
1800{
1801 char *n;
1802
1803 if (strcmp(curr, name) == 0) {
1804 if (!option) {
1805 printk(KERN_WARNING PFX
1806 "No option given for '%s'\n",
1807 curr);
1808 return -EINVAL;
1809 }
1810 *val = simple_strtoul(option, &n, 0);
1811 if ((*n != '\0') || (*option == '\0')) {
1812 printk(KERN_WARNING PFX
1813 "Bad option given for '%s'\n",
1814 curr);
1815 return -EINVAL;
1816 }
1817 return 1;
1818 }
1819 return 0;
1820}
1821
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001822static struct smi_info *smi_info_alloc(void)
1823{
1824 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1825
Corey Minyardf60adf42012-03-28 14:42:50 -07001826 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001827 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001828 return info;
1829}
1830
Kees Cook24da2c82017-10-17 19:04:42 -07001831static int hotmod_handler(const char *val, const struct kernel_param *kp)
Corey Minyardb361e272006-12-06 20:41:07 -08001832{
1833 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001834 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001835 char *next, *curr, *s, *n, *o;
1836 enum hotmod_op op;
1837 enum si_type si_type;
1838 int addr_space;
1839 unsigned long addr;
1840 int regspacing;
1841 int regsize;
1842 int regshift;
1843 int irq;
1844 int ipmb;
1845 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001846 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001847 struct smi_info *info;
1848
1849 if (!str)
1850 return -ENOMEM;
1851
1852 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001853 len = strlen(str);
1854 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001855 while ((ival >= 0) && isspace(str[ival])) {
1856 str[ival] = '\0';
1857 ival--;
1858 }
1859
1860 for (curr = str; curr; curr = next) {
1861 regspacing = 1;
1862 regsize = 1;
1863 regshift = 0;
1864 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001865 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001866
1867 next = strchr(curr, ':');
1868 if (next) {
1869 *next = '\0';
1870 next++;
1871 }
1872
1873 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1874 if (rv)
1875 break;
1876 op = ival;
1877
1878 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1879 if (rv)
1880 break;
1881 si_type = ival;
1882
1883 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1884 if (rv)
1885 break;
1886
1887 s = strchr(curr, ',');
1888 if (s) {
1889 *s = '\0';
1890 s++;
1891 }
1892 addr = simple_strtoul(curr, &n, 0);
1893 if ((*n != '\0') || (*curr == '\0')) {
1894 printk(KERN_WARNING PFX "Invalid hotmod address"
1895 " '%s'\n", curr);
1896 break;
1897 }
1898
1899 while (s) {
1900 curr = s;
1901 s = strchr(curr, ',');
1902 if (s) {
1903 *s = '\0';
1904 s++;
1905 }
1906 o = strchr(curr, '=');
1907 if (o) {
1908 *o = '\0';
1909 o++;
1910 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001911 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1912 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001913 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001914 else if (rv)
1915 continue;
1916 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1917 if (rv < 0)
1918 goto out;
1919 else if (rv)
1920 continue;
1921 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1922 if (rv < 0)
1923 goto out;
1924 else if (rv)
1925 continue;
1926 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1927 if (rv < 0)
1928 goto out;
1929 else if (rv)
1930 continue;
1931 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1932 if (rv < 0)
1933 goto out;
1934 else if (rv)
1935 continue;
1936
1937 rv = -EINVAL;
1938 printk(KERN_WARNING PFX
1939 "Invalid hotmod option '%s'\n",
1940 curr);
1941 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001942 }
1943
1944 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001945 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001946 if (!info) {
1947 rv = -ENOMEM;
1948 goto out;
1949 }
1950
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001951 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001952 info->si_type = si_type;
1953 info->io.addr_data = addr;
1954 info->io.addr_type = addr_space;
1955 if (addr_space == IPMI_MEM_ADDR_SPACE)
1956 info->io_setup = mem_setup;
1957 else
1958 info->io_setup = port_setup;
1959
1960 info->io.addr = NULL;
1961 info->io.regspacing = regspacing;
1962 if (!info->io.regspacing)
1963 info->io.regspacing = DEFAULT_REGSPACING;
1964 info->io.regsize = regsize;
1965 if (!info->io.regsize)
1966 info->io.regsize = DEFAULT_REGSPACING;
1967 info->io.regshift = regshift;
1968 info->irq = irq;
1969 if (info->irq)
1970 info->irq_setup = std_irq_setup;
1971 info->slave_addr = ipmb;
1972
Corey Minyardd02b3702014-01-24 14:00:53 -06001973 rv = add_smi(info);
1974 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001975 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001976 goto out;
1977 }
1978 rv = try_smi_init(info);
1979 if (rv) {
1980 cleanup_one_si(info);
1981 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001982 }
Corey Minyardb361e272006-12-06 20:41:07 -08001983 } else {
1984 /* remove */
1985 struct smi_info *e, *tmp_e;
1986
1987 mutex_lock(&smi_infos_lock);
1988 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1989 if (e->io.addr_type != addr_space)
1990 continue;
1991 if (e->si_type != si_type)
1992 continue;
1993 if (e->io.addr_data == addr)
1994 cleanup_one_si(e);
1995 }
1996 mutex_unlock(&smi_infos_lock);
1997 }
1998 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001999 rv = len;
Corey Minyard76824852016-04-26 22:40:15 -05002000out:
Corey Minyardb361e272006-12-06 20:41:07 -08002001 kfree(str);
2002 return rv;
2003}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002004
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002005static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002007 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002008 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 struct smi_info *info;
2010
Corey Minyardb0defcd2006-03-26 01:37:20 -08002011 for (i = 0; i < SI_MAX_PARMS; i++) {
2012 if (!ports[i] && !addrs[i])
2013 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002015 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002016 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002017 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002019 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07002020 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002021
Corey Minyard1d5636c2006-12-10 02:19:08 -08002022 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002023 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002024 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002025 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002026 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002027 info->si_type = SI_BT;
2028 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002029 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08002030 "for interface %d, was invalid: %s\n",
2031 i, si_type[i]);
2032 kfree(info);
2033 continue;
2034 }
2035
2036 if (ports[i]) {
2037 /* An I/O port */
2038 info->io_setup = port_setup;
2039 info->io.addr_data = ports[i];
2040 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2041 } else if (addrs[i]) {
2042 /* A memory port */
2043 info->io_setup = mem_setup;
2044 info->io.addr_data = addrs[i];
2045 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2046 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002047 printk(KERN_WARNING PFX "Interface type specified "
2048 "for interface %d, but port and address were "
2049 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002050 kfree(info);
2051 continue;
2052 }
2053
2054 info->io.addr = NULL;
2055 info->io.regspacing = regspacings[i];
2056 if (!info->io.regspacing)
2057 info->io.regspacing = DEFAULT_REGSPACING;
2058 info->io.regsize = regsizes[i];
2059 if (!info->io.regsize)
2060 info->io.regsize = DEFAULT_REGSPACING;
2061 info->io.regshift = regshifts[i];
2062 info->irq = irqs[i];
2063 if (info->irq)
2064 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002065 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002066
Yinghai Lu7faefea2010-08-10 18:03:10 -07002067 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002068 if (try_smi_init(info))
2069 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002070 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002071 } else {
2072 kfree(info);
2073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002075 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Len Brown84663612005-08-24 12:09:07 -04002078#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Corey Minyardc305e3d2008-04-29 01:01:10 -07002080/*
2081 * Once we get an ACPI failure, we don't try any more, because we go
2082 * through the tables sequentially. Once we don't find a table, there
2083 * are no more.
2084 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002085static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002088static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2089 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 struct smi_info *smi_info = context;
2092 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 spin_lock_irqsave(&(smi_info->si_lock), flags);
2095
Corey Minyard64959e22008-04-29 01:01:07 -07002096 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
John Stultzf93aae92015-01-07 14:24:28 -08002098 debug_timestamp("ACPI_GPE");
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2102
2103 return ACPI_INTERRUPT_HANDLED;
2104}
2105
Corey Minyardb0defcd2006-03-26 01:37:20 -08002106static void acpi_gpe_irq_cleanup(struct smi_info *info)
2107{
2108 if (!info->irq)
2109 return;
2110
2111 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2112}
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114static int acpi_gpe_irq_setup(struct smi_info *info)
2115{
2116 acpi_status status;
2117
Corey Minyardb0defcd2006-03-26 01:37:20 -08002118 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return 0;
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 status = acpi_install_gpe_handler(NULL,
2122 info->irq,
2123 ACPI_GPE_LEVEL_TRIGGERED,
2124 &ipmi_acpi_gpe,
2125 info);
2126 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002127 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2128 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 info->irq = 0;
2130 return -EINVAL;
2131 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002132 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002133 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 return 0;
2135 }
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138/*
2139 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002140 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 */
2142struct SPMITable {
2143 s8 Signature[4];
2144 u32 Length;
2145 u8 Revision;
2146 u8 Checksum;
2147 s8 OEMID[6];
2148 s8 OEMTableID[8];
2149 s8 OEMRevision[4];
2150 s8 CreatorID[4];
2151 s8 CreatorRevision[4];
2152 u8 InterfaceType;
2153 u8 IPMIlegacy;
2154 s16 SpecificationRevision;
2155
2156 /*
2157 * Bit 0 - SCI interrupt supported
2158 * Bit 1 - I/O APIC/SAPIC
2159 */
2160 u8 InterruptType;
2161
Corey Minyardc305e3d2008-04-29 01:01:10 -07002162 /*
2163 * If bit 0 of InterruptType is set, then this is the SCI
2164 * interrupt in the GPEx_STS register.
2165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 u8 GPE;
2167
2168 s16 Reserved;
2169
Corey Minyardc305e3d2008-04-29 01:01:10 -07002170 /*
2171 * If bit 1 of InterruptType is set, then this is the I/O
2172 * APIC/SAPIC interrupt.
2173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 u32 GlobalSystemInterrupt;
2175
2176 /* The actual register address. */
2177 struct acpi_generic_address addr;
2178
2179 u8 UID[4];
2180
2181 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2182};
2183
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002184static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002187 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002190 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2191 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002194 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002195 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002196 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002197 return -ENOMEM;
2198 }
2199
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002200 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002201 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002204 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002206 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002209 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002212 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002214 case 4: /* SSIF, just ignore */
2215 kfree(info);
2216 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002218 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2219 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002220 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 return -EIO;
2222 }
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (spmi->InterruptType & 1) {
2225 /* We've got a GPE interrupt. */
2226 info->irq = spmi->GPE;
2227 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 } else if (spmi->InterruptType & 2) {
2229 /* We've got an APIC/SAPIC interrupt. */
2230 info->irq = spmi->GlobalSystemInterrupt;
2231 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 } else {
2233 /* Use the default interrupt setting. */
2234 info->irq = 0;
2235 info->irq_setup = NULL;
2236 }
2237
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002238 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002239 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002240 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002241 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002242 info->io.regspacing = DEFAULT_REGSPACING;
2243 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002244 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002245 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002247 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002249 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002250 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002252 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 } else {
2254 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002255 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return -EIO;
2257 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002258 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002260 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2261 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2262 info->io.addr_data, info->io.regsize, info->io.regspacing,
2263 info->irq);
2264
Corey Minyardd02b3702014-01-24 14:00:53 -06002265 rv = add_smi(info);
2266 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002267 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Corey Minyardd02b3702014-01-24 14:00:53 -06002269 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002271
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002272static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002273{
2274 acpi_status status;
2275 struct SPMITable *spmi;
2276 int i;
2277
2278 if (acpi_disabled)
2279 return;
2280
2281 if (acpi_failure)
2282 return;
2283
2284 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002285 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2286 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002287 if (status != AE_OK)
2288 return;
2289
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002290 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002291 }
2292}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293#endif
2294
Matt Domscha9fad4c2006-01-11 12:17:44 -08002295#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002296struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 u8 type;
2298 u8 addr_space;
2299 unsigned long base_addr;
2300 u8 irq;
2301 u8 offset;
2302 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002303};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002305static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002306 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Jeff Garzik18552562007-10-03 15:15:40 -04002308 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 unsigned long base_addr;
2310 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002311 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Corey Minyardb0defcd2006-03-26 01:37:20 -08002313 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 memcpy(&base_addr, data+8, sizeof(unsigned long));
2316 if (len >= 0x11) {
2317 if (base_addr & 1) {
2318 /* I/O */
2319 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002320 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002321 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002323 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2326 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002327 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Corey Minyardb0defcd2006-03-26 01:37:20 -08002329 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002332 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002333 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002335 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 break;
2337 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002338 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 break;
2340 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002341 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 break;
2343 default:
2344 /* Some other interface, just ignore it. */
2345 return -EIO;
2346 }
2347 } else {
2348 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002349 /*
2350 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002351 * address should be 1 if the address is I/O and 0 if
2352 * the address is in memory. So many systems get that
2353 * wrong (and all that I have seen are I/O) so we just
2354 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002355 * memory should use the newer spec, anyway.
2356 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002357 dmi->base_addr = base_addr & 0xfffe;
2358 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2359 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 }
2361
Corey Minyardb0defcd2006-03-26 01:37:20 -08002362 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Corey Minyardb0defcd2006-03-26 01:37:20 -08002364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002367static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Corey Minyarde8b33612005-09-06 15:18:45 -07002369 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002371 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002372 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002373 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002374 return;
2375 }
2376
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002377 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002378 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Corey Minyarde8b33612005-09-06 15:18:45 -07002380 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002381 case 0x01: /* KCS */
2382 info->si_type = SI_KCS;
2383 break;
2384 case 0x02: /* SMIC */
2385 info->si_type = SI_SMIC;
2386 break;
2387 case 0x03: /* BT */
2388 info->si_type = SI_BT;
2389 break;
2390 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002391 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002392 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394
Corey Minyardb0defcd2006-03-26 01:37:20 -08002395 switch (ipmi_data->addr_space) {
2396 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002398 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Corey Minyardb0defcd2006-03-26 01:37:20 -08002401 case IPMI_IO_ADDR_SPACE:
2402 info->io_setup = port_setup;
2403 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2404 break;
2405
2406 default:
2407 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002408 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002409 ipmi_data->addr_space);
2410 return;
2411 }
2412 info->io.addr_data = ipmi_data->base_addr;
2413
2414 info->io.regspacing = ipmi_data->offset;
2415 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 info->io.regspacing = DEFAULT_REGSPACING;
2417 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002418 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 info->slave_addr = ipmi_data->slave_addr;
2421
Corey Minyardb0defcd2006-03-26 01:37:20 -08002422 info->irq = ipmi_data->irq;
2423 if (info->irq)
2424 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002426 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2427 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2428 info->io.addr_data, info->io.regsize, info->io.regspacing,
2429 info->irq);
2430
Yinghai Lu7faefea2010-08-10 18:03:10 -07002431 if (add_smi(info))
2432 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002435static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002436{
Jeff Garzik18552562007-10-03 15:15:40 -04002437 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002438 struct dmi_ipmi_data data;
2439 int rv;
2440
2441 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002442 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002443 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2444 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002445 if (!rv)
2446 try_init_dmi(&data);
2447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002449#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451#ifdef CONFIG_PCI
2452
Corey Minyardb0defcd2006-03-26 01:37:20 -08002453#define PCI_ERMC_CLASSCODE 0x0C0700
2454#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2455#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2456#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2457#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2458#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460#define PCI_HP_VENDOR_ID 0x103C
2461#define PCI_MMC_DEVICE_ID 0x121A
2462#define PCI_MMC_ADDR_CW 0x10
2463
Corey Minyardb0defcd2006-03-26 01:37:20 -08002464static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002466 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Corey Minyardb0defcd2006-03-26 01:37:20 -08002468 pci_disable_device(pdev);
2469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002471static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002472{
2473 if (info->si_type == SI_KCS) {
2474 unsigned char status;
2475 int regspacing;
2476
2477 info->io.regsize = DEFAULT_REGSIZE;
2478 info->io.regshift = 0;
2479 info->io_size = 2;
2480 info->handlers = &kcs_smi_handlers;
2481
2482 /* detect 1, 4, 16byte spacing */
2483 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2484 info->io.regspacing = regspacing;
2485 if (info->io_setup(info)) {
2486 dev_err(info->dev,
2487 "Could not setup I/O space\n");
2488 return DEFAULT_REGSPACING;
2489 }
2490 /* write invalid cmd */
2491 info->io.outputb(&info->io, 1, 0x10);
2492 /* read status back */
2493 status = info->io.inputb(&info->io, 1);
2494 info->io_cleanup(info);
2495 if (status)
2496 return regspacing;
2497 regspacing *= 4;
2498 }
2499 }
2500 return DEFAULT_REGSPACING;
2501}
2502
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002503static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002504 const struct pci_device_id *ent)
2505{
2506 int rv;
2507 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2508 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002510 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002511 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002512 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002513
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002514 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002515 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002516
2517 switch (class_type) {
2518 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2519 info->si_type = SI_SMIC;
2520 break;
2521
2522 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2523 info->si_type = SI_KCS;
2524 break;
2525
2526 case PCI_ERMC_CLASSCODE_TYPE_BT:
2527 info->si_type = SI_BT;
2528 break;
2529
2530 default:
2531 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002532 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002533 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Corey Minyardb0defcd2006-03-26 01:37:20 -08002536 rv = pci_enable_device(pdev);
2537 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002538 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002539 kfree(info);
2540 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
2542
Corey Minyardb0defcd2006-03-26 01:37:20 -08002543 info->addr_source_cleanup = ipmi_pci_cleanup;
2544 info->addr_source_data = pdev;
2545
Corey Minyardb0defcd2006-03-26 01:37:20 -08002546 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2547 info->io_setup = port_setup;
2548 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2549 } else {
2550 info->io_setup = mem_setup;
2551 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002553 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Corey Minyarda6c16c22012-10-16 15:53:40 -05002555 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2556 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002557 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Corey Minyardb0defcd2006-03-26 01:37:20 -08002559 info->irq = pdev->irq;
2560 if (info->irq)
2561 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Corey Minyard50c812b2006-03-26 01:37:21 -08002563 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002564 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002565
Myron Stowe279fbd02010-05-26 14:43:52 -07002566 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2567 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2568 info->irq);
2569
Corey Minyardd02b3702014-01-24 14:00:53 -06002570 rv = add_smi(info);
2571 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002572 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002573 pci_disable_device(pdev);
2574 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002575
Corey Minyardd02b3702014-01-24 14:00:53 -06002576 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002577}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Bill Pemberton39af33f2012-11-19 13:26:26 -05002579static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002580{
Corey Minyardfca3b742007-05-08 00:23:59 -07002581 struct smi_info *info = pci_get_drvdata(pdev);
2582 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002583}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Corey Minyard81d02b72015-06-13 10:34:25 -05002585static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002586 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002587 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2588 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002589};
2590MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2591
2592static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002593 .name = DEVICE_NAME,
2594 .id_table = ipmi_pci_devices,
2595 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002596 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002597};
2598#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002600#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002601static const struct of_device_id of_ipmi_match[] = {
2602 { .type = "ipmi", .compatible = "ipmi-kcs",
2603 .data = (void *)(unsigned long) SI_KCS },
2604 { .type = "ipmi", .compatible = "ipmi-smic",
2605 .data = (void *)(unsigned long) SI_SMIC },
2606 { .type = "ipmi", .compatible = "ipmi-bt",
2607 .data = (void *)(unsigned long) SI_BT },
2608 {},
2609};
Luis de Bethencourt66f44012015-09-19 16:43:23 +01002610MODULE_DEVICE_TABLE(of, of_ipmi_match);
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002611
2612static int of_ipmi_probe(struct platform_device *dev)
2613{
Grant Likelyb1608d62011-05-18 11:19:24 -06002614 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002615 struct smi_info *info;
2616 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002617 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002618 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619 int ret;
2620 int proplen;
2621
Myron Stowe279fbd02010-05-26 14:43:52 -07002622 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002623
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002624 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002625 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002626 return -ENODEV;
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002627
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002628 if (!of_device_is_available(np))
2629 return -EINVAL;
2630
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002631 ret = of_address_to_resource(np, 0, &resource);
2632 if (ret) {
2633 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2634 return ret;
2635 }
2636
Stephen Rothwell9c250992007-08-15 16:42:12 +10002637 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002638 if (regsize && proplen != 4) {
2639 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2640 return -EINVAL;
2641 }
2642
Stephen Rothwell9c250992007-08-15 16:42:12 +10002643 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002644 if (regspacing && proplen != 4) {
2645 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2646 return -EINVAL;
2647 }
2648
Stephen Rothwell9c250992007-08-15 16:42:12 +10002649 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002650 if (regshift && proplen != 4) {
2651 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2652 return -EINVAL;
2653 }
2654
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002655 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002656
2657 if (!info) {
2658 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002659 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002660 return -ENOMEM;
2661 }
2662
Grant Likelyb1608d62011-05-18 11:19:24 -06002663 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002664 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002665 info->irq_setup = std_irq_setup;
2666
Nate Case3b7ec112008-05-14 16:05:39 -07002667 if (resource.flags & IORESOURCE_IO) {
2668 info->io_setup = port_setup;
2669 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2670 } else {
2671 info->io_setup = mem_setup;
2672 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2673 }
2674
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002675 info->io.addr_data = resource.start;
2676
Rob Herringda81c3b2010-11-16 14:33:50 -06002677 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2678 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2679 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002680
Grant Likely61c7a082010-04-13 16:12:29 -07002681 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002682 info->dev = &dev->dev;
2683
Myron Stowe279fbd02010-05-26 14:43:52 -07002684 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002685 info->io.addr_data, info->io.regsize, info->io.regspacing,
2686 info->irq);
2687
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002688 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002689
Corey Minyardd02b3702014-01-24 14:00:53 -06002690 ret = add_smi(info);
2691 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002692 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002693 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002694 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002695 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002696}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002697#else
2698#define of_ipmi_match NULL
2699static int of_ipmi_probe(struct platform_device *dev)
2700{
2701 return -ENODEV;
2702}
2703#endif
2704
2705#ifdef CONFIG_ACPI
2706static int acpi_ipmi_probe(struct platform_device *dev)
2707{
2708 struct smi_info *info;
2709 struct resource *res, *res_second;
2710 acpi_handle handle;
2711 acpi_status status;
2712 unsigned long long tmp;
2713 int rv = -EINVAL;
2714
Joe Lawrence9f0257b2016-02-18 16:02:54 -05002715 if (!si_tryacpi)
2716 return 0;
2717
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002718 handle = ACPI_HANDLE(&dev->dev);
2719 if (!handle)
2720 return -ENODEV;
2721
2722 info = smi_info_alloc();
2723 if (!info)
2724 return -ENOMEM;
2725
2726 info->addr_source = SI_ACPI;
2727 dev_info(&dev->dev, PFX "probing via ACPI\n");
2728
2729 info->addr_info.acpi_info.acpi_handle = handle;
2730
2731 /* _IFT tells us the interface type: KCS, BT, etc */
2732 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2733 if (ACPI_FAILURE(status)) {
2734 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2735 goto err_free;
2736 }
2737
2738 switch (tmp) {
2739 case 1:
2740 info->si_type = SI_KCS;
2741 break;
2742 case 2:
2743 info->si_type = SI_SMIC;
2744 break;
2745 case 3:
2746 info->si_type = SI_BT;
2747 break;
2748 case 4: /* SSIF, just ignore */
2749 rv = -ENODEV;
2750 goto err_free;
2751 default:
2752 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2753 goto err_free;
2754 }
2755
2756 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2757 if (res) {
2758 info->io_setup = port_setup;
2759 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2760 } else {
2761 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2762 if (res) {
2763 info->io_setup = mem_setup;
2764 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2765 }
2766 }
2767 if (!res) {
2768 dev_err(&dev->dev, "no I/O or memory address\n");
2769 goto err_free;
2770 }
2771 info->io.addr_data = res->start;
2772
2773 info->io.regspacing = DEFAULT_REGSPACING;
2774 res_second = platform_get_resource(dev,
2775 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2776 IORESOURCE_IO : IORESOURCE_MEM,
2777 1);
2778 if (res_second) {
2779 if (res_second->start > info->io.addr_data)
2780 info->io.regspacing =
2781 res_second->start - info->io.addr_data;
2782 }
2783 info->io.regsize = DEFAULT_REGSPACING;
2784 info->io.regshift = 0;
2785
2786 /* If _GPE exists, use it; otherwise use standard interrupts */
2787 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2788 if (ACPI_SUCCESS(status)) {
2789 info->irq = tmp;
2790 info->irq_setup = acpi_gpe_irq_setup;
2791 } else {
2792 int irq = platform_get_irq(dev, 0);
2793
2794 if (irq > 0) {
2795 info->irq = irq;
2796 info->irq_setup = std_irq_setup;
2797 }
2798 }
2799
2800 info->dev = &dev->dev;
2801 platform_set_drvdata(dev, info);
2802
2803 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2804 res, info->io.regsize, info->io.regspacing,
2805 info->irq);
2806
2807 rv = add_smi(info);
2808 if (rv)
2809 kfree(info);
2810
2811 return rv;
2812
2813err_free:
2814 kfree(info);
2815 return rv;
2816}
2817
Corey Minyard81d02b72015-06-13 10:34:25 -05002818static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002819 { "IPI0001", 0 },
2820 { },
2821};
2822MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2823#else
2824static int acpi_ipmi_probe(struct platform_device *dev)
2825{
2826 return -ENODEV;
2827}
2828#endif
2829
2830static int ipmi_probe(struct platform_device *dev)
2831{
2832 if (of_ipmi_probe(dev) == 0)
2833 return 0;
2834
2835 return acpi_ipmi_probe(dev);
2836}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002837
Bill Pemberton39af33f2012-11-19 13:26:26 -05002838static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002839{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002840 struct smi_info *info = dev_get_drvdata(&dev->dev);
2841
Markus Elfringa7930892015-06-27 18:12:14 +02002842 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002843 return 0;
2844}
2845
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002846static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002847 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002848 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002849 .of_match_table = of_ipmi_match,
2850 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002851 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002852 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002853 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002854};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002855
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002856#ifdef CONFIG_PARISC
2857static int ipmi_parisc_probe(struct parisc_device *dev)
2858{
2859 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002860 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002861
2862 info = smi_info_alloc();
2863
2864 if (!info) {
2865 dev_err(&dev->dev,
2866 "could not allocate memory for PARISC probe\n");
2867 return -ENOMEM;
2868 }
2869
2870 info->si_type = SI_KCS;
2871 info->addr_source = SI_DEVICETREE;
2872 info->io_setup = mem_setup;
2873 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2874 info->io.addr_data = dev->hpa.start;
2875 info->io.regsize = 1;
2876 info->io.regspacing = 1;
2877 info->io.regshift = 0;
2878 info->irq = 0; /* no interrupt */
2879 info->irq_setup = NULL;
2880 info->dev = &dev->dev;
2881
2882 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2883
2884 dev_set_drvdata(&dev->dev, info);
2885
Corey Minyardd02b3702014-01-24 14:00:53 -06002886 rv = add_smi(info);
2887 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002888 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002889 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002890 }
2891
2892 return 0;
2893}
2894
2895static int ipmi_parisc_remove(struct parisc_device *dev)
2896{
2897 cleanup_one_si(dev_get_drvdata(&dev->dev));
2898 return 0;
2899}
2900
LABBE Corentin99ee6732015-11-13 13:31:51 +01002901static const struct parisc_device_id ipmi_parisc_tbl[] = {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002902 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2903 { 0, }
2904};
2905
2906static struct parisc_driver ipmi_parisc_driver = {
2907 .name = "ipmi",
2908 .id_table = ipmi_parisc_tbl,
2909 .probe = ipmi_parisc_probe,
2910 .remove = ipmi_parisc_remove,
2911};
2912#endif /* CONFIG_PARISC */
2913
Corey Minyard40112ae2009-04-21 12:24:03 -07002914static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
Corey Minyard50c812b2006-03-26 01:37:21 -08002916 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002919 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002920 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2921 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002922 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002924 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002925 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 smi_result = smi_info->handlers->event(
2927 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002928 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 break;
2930 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002931 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002932 /*
2933 * We couldn't get the state machine to run, so whatever's at
2934 * the port is probably not an IPMI SMI interface.
2935 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002936 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Corey Minyard40112ae2009-04-21 12:24:03 -07002938 return 0;
2939}
2940
2941static int try_get_dev_id(struct smi_info *smi_info)
2942{
2943 unsigned char msg[2];
2944 unsigned char *resp;
2945 unsigned long resp_len;
2946 int rv = 0;
2947
2948 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2949 if (!resp)
2950 return -ENOMEM;
2951
2952 /*
2953 * Do a Get Device ID command, since it comes back with some
2954 * useful info.
2955 */
2956 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2957 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2958 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2959
2960 rv = wait_for_msg_done(smi_info);
2961 if (rv)
2962 goto out;
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2965 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
Corey Minyardd8c98612007-10-18 03:07:11 -07002967 /* Check and record info from the get device id, in case we need it. */
2968 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Corey Minyard76824852016-04-26 22:40:15 -05002970out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 kfree(resp);
2972 return rv;
2973}
2974
Corey Minyardd0882892015-08-18 14:29:10 -05002975static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002976{
2977 unsigned char msg[3];
2978 unsigned char *resp;
2979 unsigned long resp_len;
2980 int rv;
2981
2982 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05002983 if (!resp)
2984 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002985
2986 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2987 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2988 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2989
2990 rv = wait_for_msg_done(smi_info);
2991 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002992 dev_warn(smi_info->dev,
2993 "Error getting response from get global enables command: %d\n",
2994 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002995 goto out;
2996 }
2997
2998 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2999 resp, IPMI_MAX_MSG_LENGTH);
3000
3001 if (resp_len < 4 ||
3002 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3003 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3004 resp[2] != 0) {
Corey Minyardd0882892015-08-18 14:29:10 -05003005 dev_warn(smi_info->dev,
3006 "Invalid return from get global enables command: %ld %x %x %x\n",
3007 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003008 rv = -EINVAL;
3009 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05003010 } else {
3011 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003012 }
3013
Corey Minyardd0882892015-08-18 14:29:10 -05003014out:
3015 kfree(resp);
3016 return rv;
3017}
3018
3019/*
3020 * Returns 1 if it gets an error from the command.
3021 */
3022static int set_global_enables(struct smi_info *smi_info, u8 enables)
3023{
3024 unsigned char msg[3];
3025 unsigned char *resp;
3026 unsigned long resp_len;
3027 int rv;
3028
3029 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3030 if (!resp)
3031 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003032
3033 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3034 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05003035 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003036 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3037
3038 rv = wait_for_msg_done(smi_info);
3039 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05003040 dev_warn(smi_info->dev,
3041 "Error getting response from set global enables command: %d\n",
3042 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003043 goto out;
3044 }
3045
3046 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3047 resp, IPMI_MAX_MSG_LENGTH);
3048
3049 if (resp_len < 3 ||
3050 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3051 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardd0882892015-08-18 14:29:10 -05003052 dev_warn(smi_info->dev,
3053 "Invalid return from set global enables command: %ld %x %x\n",
3054 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003055 rv = -EINVAL;
3056 goto out;
3057 }
3058
Corey Minyardd0882892015-08-18 14:29:10 -05003059 if (resp[2] != 0)
3060 rv = 1;
3061
3062out:
3063 kfree(resp);
3064 return rv;
3065}
3066
3067/*
3068 * Some BMCs do not support clearing the receive irq bit in the global
3069 * enables (even if they don't support interrupts on the BMC). Check
3070 * for this and handle it properly.
3071 */
3072static void check_clr_rcv_irq(struct smi_info *smi_info)
3073{
3074 u8 enables = 0;
3075 int rv;
3076
3077 rv = get_global_enables(smi_info, &enables);
3078 if (!rv) {
3079 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
3080 /* Already clear, should work ok. */
3081 return;
3082
3083 enables &= ~IPMI_BMC_RCV_MSG_INTR;
3084 rv = set_global_enables(smi_info, enables);
3085 }
3086
3087 if (rv < 0) {
3088 dev_err(smi_info->dev,
3089 "Cannot check clearing the rcv irq: %d\n", rv);
3090 return;
3091 }
3092
3093 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003094 /*
3095 * An error when setting the event buffer bit means
3096 * clearing the bit is not supported.
3097 */
Corey Minyardd0882892015-08-18 14:29:10 -05003098 dev_warn(smi_info->dev,
3099 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3100 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003101 }
Corey Minyardd0882892015-08-18 14:29:10 -05003102}
3103
3104/*
3105 * Some BMCs do not support setting the interrupt bits in the global
3106 * enables even if they support interrupts. Clearly bad, but we can
3107 * compensate.
3108 */
3109static void check_set_rcv_irq(struct smi_info *smi_info)
3110{
3111 u8 enables = 0;
3112 int rv;
3113
3114 if (!smi_info->irq)
3115 return;
3116
3117 rv = get_global_enables(smi_info, &enables);
3118 if (!rv) {
3119 enables |= IPMI_BMC_RCV_MSG_INTR;
3120 rv = set_global_enables(smi_info, enables);
3121 }
3122
3123 if (rv < 0) {
3124 dev_err(smi_info->dev,
3125 "Cannot check setting the rcv irq: %d\n", rv);
3126 return;
3127 }
3128
3129 if (rv) {
3130 /*
3131 * An error when setting the event buffer bit means
3132 * setting the bit is not supported.
3133 */
3134 dev_warn(smi_info->dev,
3135 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3136 smi_info->cannot_disable_irq = true;
3137 smi_info->irq_enable_broken = true;
3138 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003139}
3140
Corey Minyard40112ae2009-04-21 12:24:03 -07003141static int try_enable_event_buffer(struct smi_info *smi_info)
3142{
3143 unsigned char msg[3];
3144 unsigned char *resp;
3145 unsigned long resp_len;
3146 int rv = 0;
3147
3148 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3149 if (!resp)
3150 return -ENOMEM;
3151
3152 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3153 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3154 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3155
3156 rv = wait_for_msg_done(smi_info);
3157 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003158 printk(KERN_WARNING PFX "Error getting response from get"
3159 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003160 " enabled.\n");
3161 goto out;
3162 }
3163
3164 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3165 resp, IPMI_MAX_MSG_LENGTH);
3166
3167 if (resp_len < 4 ||
3168 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3169 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3170 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003171 printk(KERN_WARNING PFX "Invalid return from get global"
3172 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003173 rv = -EINVAL;
3174 goto out;
3175 }
3176
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003177 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003178 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003179 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003180 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003181 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003182
3183 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3184 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3185 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3186 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3187
3188 rv = wait_for_msg_done(smi_info);
3189 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003190 printk(KERN_WARNING PFX "Error getting response from set"
3191 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003192 " enabled.\n");
3193 goto out;
3194 }
3195
3196 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3197 resp, IPMI_MAX_MSG_LENGTH);
3198
3199 if (resp_len < 3 ||
3200 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3201 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003202 printk(KERN_WARNING PFX "Invalid return from get global,"
3203 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003204 rv = -EINVAL;
3205 goto out;
3206 }
3207
3208 if (resp[2] != 0)
3209 /*
3210 * An error when setting the event buffer bit means
3211 * that the event buffer is not supported.
3212 */
3213 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003214 else
3215 smi_info->supports_event_msg_buff = true;
3216
Corey Minyard76824852016-04-26 22:40:15 -05003217out:
Corey Minyard40112ae2009-04-21 12:24:03 -07003218 kfree(resp);
3219 return rv;
3220}
3221
Alexey Dobriyan07412732011-05-26 16:25:55 -07003222static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003224 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003226 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3227
Joe Perches5e33cd02015-02-22 10:21:07 -08003228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229}
3230
Alexey Dobriyan07412732011-05-26 16:25:55 -07003231static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232{
Al Virod9dda782013-03-31 18:16:14 -04003233 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Alexey Dobriyan07412732011-05-26 16:25:55 -07003236static const struct file_operations smi_type_proc_ops = {
3237 .open = smi_type_proc_open,
3238 .read = seq_read,
3239 .llseek = seq_lseek,
3240 .release = single_release,
3241};
3242
3243static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3244{
3245 struct smi_info *smi = m->private;
3246
3247 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003248 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003249 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003250 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003251 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003252 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003253 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003254 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003255 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003256 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003257 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003258 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003259 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003260 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003261 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003262 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003263 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003264 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003265 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003266 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003267 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003268 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003269 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003270 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003271 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003272}
3273
Alexey Dobriyan07412732011-05-26 16:25:55 -07003274static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003275{
Al Virod9dda782013-03-31 18:16:14 -04003276 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003277}
Corey Minyardb361e272006-12-06 20:41:07 -08003278
Alexey Dobriyan07412732011-05-26 16:25:55 -07003279static const struct file_operations smi_si_stats_proc_ops = {
3280 .open = smi_si_stats_proc_open,
3281 .read = seq_read,
3282 .llseek = seq_lseek,
3283 .release = single_release,
3284};
3285
3286static int smi_params_proc_show(struct seq_file *m, void *v)
3287{
3288 struct smi_info *smi = m->private;
3289
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003290 seq_printf(m,
3291 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3292 si_to_str[smi->si_type],
3293 addr_space_to_str[smi->io.addr_type],
3294 smi->io.addr_data,
3295 smi->io.regspacing,
3296 smi->io.regsize,
3297 smi->io.regshift,
3298 smi->irq,
3299 smi->slave_addr);
3300
Joe Perches5e33cd02015-02-22 10:21:07 -08003301 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302}
3303
Alexey Dobriyan07412732011-05-26 16:25:55 -07003304static int smi_params_proc_open(struct inode *inode, struct file *file)
3305{
Al Virod9dda782013-03-31 18:16:14 -04003306 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003307}
3308
3309static const struct file_operations smi_params_proc_ops = {
3310 .open = smi_params_proc_open,
3311 .read = seq_read,
3312 .llseek = seq_lseek,
3313 .release = single_release,
3314};
3315
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003316/*
3317 * oem_data_avail_to_receive_msg_avail
3318 * @info - smi_info structure with msg_flags set
3319 *
3320 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3321 * Returns 1 indicating need to re-run handle_flags().
3322 */
3323static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3324{
Corey Minyarde8b33612005-09-06 15:18:45 -07003325 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003326 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003327 return 1;
3328}
3329
3330/*
3331 * setup_dell_poweredge_oem_data_handler
3332 * @info - smi_info.device_id must be populated
3333 *
3334 * Systems that match, but have firmware version < 1.40 may assert
3335 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3336 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3337 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3338 * as RECEIVE_MSG_AVAIL instead.
3339 *
3340 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3341 * assert the OEM[012] bits, and if it did, the driver would have to
3342 * change to handle that properly, we don't actually check for the
3343 * firmware version.
3344 * Device ID = 0x20 BMC on PowerEdge 8G servers
3345 * Device Revision = 0x80
3346 * Firmware Revision1 = 0x01 BMC version 1.40
3347 * Firmware Revision2 = 0x40 BCD encoded
3348 * IPMI Version = 0x51 IPMI 1.5
3349 * Manufacturer ID = A2 02 00 Dell IANA
3350 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003351 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3352 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3353 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003354 */
3355#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3356#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3357#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003358#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003359static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3360{
3361 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003362 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003363 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3364 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003365 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003366 smi_info->oem_data_avail_handler =
3367 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003368 } else if (ipmi_version_major(id) < 1 ||
3369 (ipmi_version_major(id) == 1 &&
3370 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003371 smi_info->oem_data_avail_handler =
3372 oem_data_avail_to_receive_msg_avail;
3373 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003374 }
3375}
3376
Corey Minyardea940272005-11-07 00:59:59 -08003377#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3378static void return_hosed_msg_badsize(struct smi_info *smi_info)
3379{
3380 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3381
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003382 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003383 msg->rsp[0] = msg->data[0] | 4;
3384 msg->rsp[1] = msg->data[1];
3385 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3386 msg->rsp_size = 3;
3387 smi_info->curr_msg = NULL;
3388 deliver_recv_msg(smi_info, msg);
3389}
3390
3391/*
3392 * dell_poweredge_bt_xaction_handler
3393 * @info - smi_info.device_id must be populated
3394 *
3395 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3396 * not respond to a Get SDR command if the length of the data
3397 * requested is exactly 0x3A, which leads to command timeouts and no
3398 * data returned. This intercepts such commands, and causes userspace
3399 * callers to try again with a different-sized buffer, which succeeds.
3400 */
3401
3402#define STORAGE_NETFN 0x0A
3403#define STORAGE_CMD_GET_SDR 0x23
3404static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3405 unsigned long unused,
3406 void *in)
3407{
3408 struct smi_info *smi_info = in;
3409 unsigned char *data = smi_info->curr_msg->data;
3410 unsigned int size = smi_info->curr_msg->data_size;
3411 if (size >= 8 &&
3412 (data[0]>>2) == STORAGE_NETFN &&
3413 data[1] == STORAGE_CMD_GET_SDR &&
3414 data[7] == 0x3A) {
3415 return_hosed_msg_badsize(smi_info);
3416 return NOTIFY_STOP;
3417 }
3418 return NOTIFY_DONE;
3419}
3420
3421static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3422 .notifier_call = dell_poweredge_bt_xaction_handler,
3423};
3424
3425/*
3426 * setup_dell_poweredge_bt_xaction_handler
3427 * @info - smi_info.device_id must be filled in already
3428 *
3429 * Fills in smi_info.device_id.start_transaction_pre_hook
3430 * when we know what function to use there.
3431 */
3432static void
3433setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3434{
3435 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003436 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003437 smi_info->si_type == SI_BT)
3438 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3439}
3440
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003441/*
3442 * setup_oem_data_handler
3443 * @info - smi_info.device_id must be filled in already
3444 *
3445 * Fills in smi_info.device_id.oem_data_available_handler
3446 * when we know what function to use there.
3447 */
3448
3449static void setup_oem_data_handler(struct smi_info *smi_info)
3450{
3451 setup_dell_poweredge_oem_data_handler(smi_info);
3452}
3453
Corey Minyardea940272005-11-07 00:59:59 -08003454static void setup_xaction_handlers(struct smi_info *smi_info)
3455{
3456 setup_dell_poweredge_bt_xaction_handler(smi_info);
3457}
3458
Corey Minyardd0882892015-08-18 14:29:10 -05003459static void check_for_broken_irqs(struct smi_info *smi_info)
3460{
3461 check_clr_rcv_irq(smi_info);
3462 check_set_rcv_irq(smi_info);
3463}
3464
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003465static inline void stop_timer_and_thread(struct smi_info *smi_info)
Corey Minyarda9a2c442005-11-07 01:00:03 -08003466{
Corey Minyardb874b982014-11-06 17:01:59 -06003467 if (smi_info->thread != NULL)
3468 kthread_stop(smi_info->thread);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003469
3470 smi_info->timer_can_start = false;
Corey Minyardb874b982014-11-06 17:01:59 -06003471 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003472 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003473}
3474
Corey Minyardb0defcd2006-03-26 01:37:20 -08003475static int is_new_interface(struct smi_info *info)
3476{
3477 struct smi_info *e;
3478
3479 list_for_each_entry(e, &smi_infos, link) {
3480 if (e->io.addr_type != info->io.addr_type)
3481 continue;
3482 if (e->io.addr_data == info->io.addr_data)
3483 return 0;
3484 }
3485
3486 return 1;
3487}
3488
Matthew Garrett2407d772010-05-26 14:43:46 -07003489static int add_smi(struct smi_info *new_smi)
3490{
3491 int rv = 0;
3492
Myron Stowe279fbd02010-05-26 14:43:52 -07003493 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003494 ipmi_addr_src_to_str(new_smi->addr_source),
3495 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003496 mutex_lock(&smi_infos_lock);
3497 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003498 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003499 rv = -EBUSY;
3500 goto out_err;
3501 }
3502
3503 printk(KERN_CONT "\n");
3504
3505 /* So we know not to free it unless we have allocated one. */
3506 new_smi->intf = NULL;
3507 new_smi->si_sm = NULL;
3508 new_smi->handlers = NULL;
3509
3510 list_add_tail(&new_smi->link, &smi_infos);
3511
3512out_err:
3513 mutex_unlock(&smi_infos_lock);
3514 return rv;
3515}
3516
Corey Minyardb0defcd2006-03-26 01:37:20 -08003517static int try_smi_init(struct smi_info *new_smi)
3518{
Matthew Garrett2407d772010-05-26 14:43:46 -07003519 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003520 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003521
Myron Stowe279fbd02010-05-26 14:43:52 -07003522 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003523 " machine at %s address 0x%lx, slave address 0x%x,"
3524 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003525 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003526 si_to_str[new_smi->si_type],
3527 addr_space_to_str[new_smi->io.addr_type],
3528 new_smi->io.addr_data,
3529 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003530
Corey Minyardb0defcd2006-03-26 01:37:20 -08003531 switch (new_smi->si_type) {
3532 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003534 break;
3535
3536 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003538 break;
3539
3540 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003542 break;
3543
3544 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 /* No support for anything else yet. */
3546 rv = -EIO;
3547 goto out_err;
3548 }
3549
3550 /* Allocate the state machine's data and initialize it. */
3551 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003552 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003553 printk(KERN_ERR PFX
3554 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 rv = -ENOMEM;
3556 goto out_err;
3557 }
3558 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3559 &new_smi->io);
3560
3561 /* Now that we know the I/O size, we can set up the I/O. */
3562 rv = new_smi->io_setup(new_smi);
3563 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003564 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 goto out_err;
3566 }
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 /* Do low-level detection first. */
3569 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003570 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003571 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 rv = -ENODEV;
3573 goto out_err;
3574 }
3575
Corey Minyardc305e3d2008-04-29 01:01:10 -07003576 /*
3577 * Attempt a get device id command. If it fails, we probably
3578 * don't have a BMC here.
3579 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003581 if (rv) {
3582 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003583 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003584 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003588 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003589 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05003590 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003591
Corey Minyardb874b982014-11-06 17:01:59 -06003592 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 new_smi->curr_msg = NULL;
3594 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003595 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003596 for (i = 0; i < SI_NUM_STATS; i++)
3597 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Corey Minyard7aefac22014-04-14 09:46:56 -05003599 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003600 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003601 new_smi->intf_num = smi_num;
3602 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Corey Minyard40112ae2009-04-21 12:24:03 -07003604 rv = try_enable_event_buffer(new_smi);
3605 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003606 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003607
Corey Minyardc305e3d2008-04-29 01:01:10 -07003608 /*
3609 * Start clearing the flags before we enable interrupts or the
3610 * timer to avoid racing with the timer.
3611 */
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003612 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003613
3614 /*
3615 * IRQ is defined to be set when non-zero. req_events will
3616 * cause a global flags check that will enable interrupts.
3617 */
3618 if (new_smi->irq) {
3619 new_smi->interrupt_disabled = false;
3620 atomic_set(&new_smi->req_events, 1);
3621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Corey Minyard50c812b2006-03-26 01:37:21 -08003623 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003624 /*
3625 * If we don't already have a device from something
3626 * else (like PCI), then register a new one.
3627 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003628 new_smi->pdev = platform_device_alloc("ipmi_si",
3629 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003630 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003631 printk(KERN_ERR PFX
3632 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003633 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003634 }
3635 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003636 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003637
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003638 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003639 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003640 printk(KERN_ERR PFX
3641 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003642 " %d\n",
3643 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003644 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003645 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003646 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003647 }
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 rv = ipmi_register_smi(&handlers,
3650 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003651 &new_smi->device_id,
3652 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003653 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003655 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3656 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 goto out_err_stop_timer;
3658 }
3659
3660 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003661 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003662 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003664 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 goto out_err_stop_timer;
3666 }
3667
3668 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003669 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003670 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003672 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 goto out_err_stop_timer;
3674 }
3675
Corey Minyardb361e272006-12-06 20:41:07 -08003676 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003677 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003678 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003679 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003680 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003681 goto out_err_stop_timer;
3682 }
3683
Myron Stowe279fbd02010-05-26 14:43:52 -07003684 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3685 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
3687 return 0;
3688
Corey Minyard76824852016-04-26 22:40:15 -05003689out_err_stop_timer:
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003690 stop_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Corey Minyard76824852016-04-26 22:40:15 -05003692out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003693 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Matthew Garrett2407d772010-05-26 14:43:46 -07003695 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003696 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003697 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003698 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003699 }
3700
3701 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003702 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003703 new_smi->irq_cleanup = NULL;
3704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Corey Minyardc305e3d2008-04-29 01:01:10 -07003706 /*
3707 * Wait until we know that we are out of any interrupt
3708 * handlers might have been running before we freed the
3709 * interrupt.
3710 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003711 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
3713 if (new_smi->si_sm) {
3714 if (new_smi->handlers)
3715 new_smi->handlers->cleanup(new_smi->si_sm);
3716 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003717 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003719 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003720 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003721 new_smi->addr_source_cleanup = NULL;
3722 }
3723 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003724 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003725 new_smi->io_cleanup = NULL;
3726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Matthew Garrett2407d772010-05-26 14:43:46 -07003728 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003729 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003730 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003731 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003732
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 return rv;
3734}
3735
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003736static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 int i;
3739 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003740 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003741 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003742 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
3744 if (initialized)
3745 return 0;
3746 initialized = 1;
3747
Corey Minyardf2afae42013-02-27 17:05:13 -08003748 if (si_tryplatform) {
3749 rv = platform_driver_register(&ipmi_driver);
3750 if (rv) {
3751 printk(KERN_ERR PFX "Unable to register "
3752 "driver: %d\n", rv);
3753 return rv;
3754 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003755 }
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 /* Parse out the si_type string into its components. */
3758 str = si_type_str;
3759 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003760 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 si_type[i] = str;
3762 str = strchr(str, ',');
3763 if (str) {
3764 *str = '\0';
3765 str++;
3766 } else {
3767 break;
3768 }
3769 }
3770 }
3771
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003772 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003774 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003775 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003776 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003777
Corey Minyardb0defcd2006-03-26 01:37:20 -08003778#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003779 if (si_trypci) {
3780 rv = pci_register_driver(&ipmi_pci_driver);
3781 if (rv)
3782 printk(KERN_ERR PFX "Unable to register "
3783 "PCI driver: %d\n", rv);
3784 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003785 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003786 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003787#endif
3788
Matthew Garrett754d4532010-05-26 14:43:47 -07003789#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003790 if (si_trydmi)
3791 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003792#endif
3793
3794#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003795 if (si_tryacpi)
3796 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003797#endif
3798
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003799#ifdef CONFIG_PARISC
3800 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003801 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003802#endif
3803
Matthew Garrett06ee4592010-05-26 14:43:49 -07003804 /* We prefer devices with interrupts, but in the case of a machine
3805 with multiple BMCs we assume that there will be several instances
3806 of a given type so if we succeed in registering a type then also
3807 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003808
Matthew Garrett2407d772010-05-26 14:43:46 -07003809 mutex_lock(&smi_infos_lock);
3810 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003811 /* Try to register a device if it has an IRQ and we either
3812 haven't successfully registered a device yet or this
3813 device has the same type as one we successfully registered */
3814 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003815 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003816 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003817 }
3818 }
3819 }
3820
Matthew Garrett06ee4592010-05-26 14:43:49 -07003821 /* type will only have been set if we successfully registered an si */
3822 if (type) {
3823 mutex_unlock(&smi_infos_lock);
3824 return 0;
3825 }
3826
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003827 /* Fall back to the preferred device */
3828
3829 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003830 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003831 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003832 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003833 }
3834 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003835 }
3836 mutex_unlock(&smi_infos_lock);
3837
Matthew Garrett06ee4592010-05-26 14:43:49 -07003838 if (type)
3839 return 0;
3840
Corey Minyardd6dfd132006-03-31 02:30:41 -08003841 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003842 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003843 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003844 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003845 printk(KERN_WARNING PFX
3846 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003848 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003849 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852}
3853module_init(init_ipmi_si);
3854
Corey Minyardb361e272006-12-06 20:41:07 -08003855static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Matthew Garrett2407d772010-05-26 14:43:46 -07003857 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Corey Minyardb0defcd2006-03-26 01:37:20 -08003859 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 return;
3861
Corey Minyardb874b982014-11-06 17:01:59 -06003862 if (to_clean->intf) {
3863 ipmi_smi_t intf = to_clean->intf;
3864
3865 to_clean->intf = NULL;
3866 rv = ipmi_unregister_smi(intf);
3867 if (rv) {
3868 pr_err(PFX "Unable to unregister device: errno=%d\n",
3869 rv);
3870 }
3871 }
3872
Takao Indoh567eded2014-10-06 14:17:53 -05003873 if (to_clean->dev)
3874 dev_set_drvdata(to_clean->dev, NULL);
3875
Corey Minyardb0defcd2006-03-26 01:37:20 -08003876 list_del(&to_clean->link);
3877
Corey Minyardc305e3d2008-04-29 01:01:10 -07003878 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003879 * Make sure that interrupts, the timer and the thread are
3880 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003881 */
Corey Minyardb874b982014-11-06 17:01:59 -06003882 if (to_clean->irq_cleanup)
3883 to_clean->irq_cleanup(to_clean);
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003884 stop_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Corey Minyardc305e3d2008-04-29 01:01:10 -07003886 /*
3887 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003888 * in the BMC. Note that timers and CPU interrupts are off,
3889 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003890 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003891 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003892 poll(to_clean);
3893 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003894 }
Masamitsu Yamazakif8dac5b2017-11-15 07:33:14 +00003895 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003896 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3897 poll(to_clean);
3898 schedule_timeout_uninterruptible(1);
3899 }
3900
Matthew Garrett2407d772010-05-26 14:43:46 -07003901 if (to_clean->handlers)
3902 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 kfree(to_clean->si_sm);
3905
Corey Minyardb0defcd2006-03-26 01:37:20 -08003906 if (to_clean->addr_source_cleanup)
3907 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003908 if (to_clean->io_cleanup)
3909 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003910
3911 if (to_clean->dev_registered)
3912 platform_device_unregister(to_clean->pdev);
3913
3914 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003917static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003919 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Corey Minyardb0defcd2006-03-26 01:37:20 -08003921 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 return;
3923
Corey Minyardb0defcd2006-03-26 01:37:20 -08003924#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003925 if (pci_registered)
3926 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003927#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003928#ifdef CONFIG_PARISC
3929 if (parisc_registered)
3930 unregister_parisc_driver(&ipmi_parisc_driver);
3931#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003932
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003933 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003934
Corey Minyardd6dfd132006-03-31 02:30:41 -08003935 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003936 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3937 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003938 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939}
3940module_exit(cleanup_ipmi_si);
3941
3942MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003943MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003944MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3945 " system interfaces.");