blob: 59ee93ea84ebe8807ee3bcf1084f95cd53d5e4f8 [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 Herringa1e9c9dd2011-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
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500244 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
245 bool timer_running;
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* The time (in jiffies) the last timeout occurred at. */
248 unsigned long last_timeout_jiffies;
249
Corey Minyard89986492014-04-14 09:46:54 -0500250 /* Are we waiting for the events, pretimeouts, received msgs? */
251 atomic_t need_watch;
252
Corey Minyardc305e3d2008-04-29 01:01:10 -0700253 /*
254 * The driver will disable interrupts when it gets into a
255 * situation where it cannot handle messages due to lack of
256 * memory. Once that situation clears up, it will re-enable
257 * interrupts.
258 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500259 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600261 /*
262 * Does the BMC support events?
263 */
264 bool supports_event_msg_buff;
265
Corey Minyarda8df1502014-11-19 11:47:17 -0600266 /*
Corey Minyardd0882892015-08-18 14:29:10 -0500267 * Can we disable interrupts the global enables receive irq
268 * bit? There are currently two forms of brokenness, some
269 * systems cannot disable the bit (which is technically within
270 * the spec but a bad idea) and some systems have the bit
271 * forced to zero even though interrupts work (which is
272 * clearly outside the spec). The next bool tells which form
273 * of brokenness is present.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500274 */
Corey Minyardd0882892015-08-18 14:29:10 -0500275 bool cannot_disable_irq;
276
277 /*
278 * Some systems are broken and cannot set the irq enable
279 * bit, even if they support interrupts.
280 */
281 bool irq_enable_broken;
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500282
283 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600284 * Did we get an attention that we did not handle?
285 */
286 bool got_attn;
287
Corey Minyard50c812b2006-03-26 01:37:21 -0800288 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700289 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Corey Minyard50c812b2006-03-26 01:37:21 -0800291 /* Driver model stuff. */
292 struct device *dev;
293 struct platform_device *pdev;
294
Corey Minyardc305e3d2008-04-29 01:01:10 -0700295 /*
296 * True if we allocated the device, false if it came from
297 * someplace else (like PCI).
298 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500299 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* Slave address, could be reported from DMI. */
302 unsigned char slave_addr;
303
304 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700305 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800306
Corey Minyardc305e3d2008-04-29 01:01:10 -0700307 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800308
309 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800310 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Corey Minyard64959e22008-04-29 01:01:07 -0700313#define smi_inc_stat(smi, stat) \
314 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
315#define smi_get_stat(smi, stat) \
316 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
317
Corey Minyarda51f4a82006-10-03 01:13:59 -0700318#define SI_MAX_PARMS 4
319
320static int force_kipmid[SI_MAX_PARMS];
321static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700322#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500323static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700324#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500325#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500326static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500327#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700328
Martin Wilckae74e822010-03-10 15:23:06 -0800329static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
330static int num_max_busy_us;
331
Corey Minyard7aefac22014-04-14 09:46:56 -0500332static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800333
Matthew Garrett2407d772010-05-26 14:43:46 -0700334static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800335static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800336static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600337static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800338
John Stultzf93aae92015-01-07 14:24:28 -0800339#ifdef DEBUG_TIMING
340void debug_timestamp(char *msg)
341{
John Stultz48862ea22015-01-07 14:24:29 -0800342 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800343
John Stultz48862ea22015-01-07 14:24:29 -0800344 getnstimeofday64(&t);
345 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800346}
347#else
348#define debug_timestamp(x)
349#endif
350
Alan Sterne041c682006-03-27 01:16:30 -0800351static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700352static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800353{
Alan Sterne041c682006-03-27 01:16:30 -0800354 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static void deliver_recv_msg(struct smi_info *smi_info,
358 struct ipmi_smi_msg *msg)
359{
Corey Minyard7adf5792012-03-28 14:42:49 -0700360 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600361 if (smi_info->intf)
362 ipmi_smi_msg_received(smi_info->intf, msg);
363 else
364 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800367static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct ipmi_smi_msg *msg = smi_info->curr_msg;
370
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800371 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
372 cCode = IPMI_ERR_UNSPECIFIED;
373 /* else use it as is */
374
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300375 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 msg->rsp[0] = msg->data[0] | 4;
377 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800378 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 msg->rsp_size = 3;
380
381 smi_info->curr_msg = NULL;
382 deliver_recv_msg(smi_info, msg);
383}
384
385static enum si_sm_result start_next_msg(struct smi_info *smi_info)
386{
387 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Corey Minyardb874b982014-11-06 17:01:59 -0600389 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 smi_info->curr_msg = NULL;
391 rv = SI_SM_IDLE;
392 } else {
393 int err;
394
Corey Minyardb874b982014-11-06 17:01:59 -0600395 smi_info->curr_msg = smi_info->waiting_msg;
396 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800397 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800398 err = atomic_notifier_call_chain(&xaction_notifier_list,
399 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800400 if (err & NOTIFY_STOP_MASK) {
401 rv = SI_SM_CALL_WITHOUT_DELAY;
402 goto out;
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 err = smi_info->handlers->start_transaction(
405 smi_info->si_sm,
406 smi_info->curr_msg->data,
407 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700408 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800409 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 rv = SI_SM_CALL_WITHOUT_DELAY;
412 }
Corey Minyard76824852016-04-26 22:40:15 -0500413out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return rv;
415}
416
Corey Minyard0cfec912015-09-05 17:44:13 -0500417static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
418{
419 smi_info->last_timeout_jiffies = jiffies;
420 mod_timer(&smi_info->si_timer, new_val);
421 smi_info->timer_running = true;
422}
423
424/*
425 * Start a new message and (re)start the timer and thread.
426 */
427static void start_new_msg(struct smi_info *smi_info, unsigned char *msg,
428 unsigned int size)
429{
430 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
431
432 if (smi_info->thread)
433 wake_up_process(smi_info->thread);
434
435 smi_info->handlers->start_transaction(smi_info->si_sm, msg, size);
436}
437
438static void start_check_enables(struct smi_info *smi_info, bool start_timer)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700439{
440 unsigned char msg[2];
441
442 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
443 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
444
Corey Minyard0cfec912015-09-05 17:44:13 -0500445 if (start_timer)
446 start_new_msg(smi_info, msg, 2);
447 else
448 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600449 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700450}
451
Corey Minyard0cfec912015-09-05 17:44:13 -0500452static void start_clear_flags(struct smi_info *smi_info, bool start_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 unsigned char msg[3];
455
456 /* Make sure the watchdog pre-timeout flag is not set at startup. */
457 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
458 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
459 msg[2] = WDT_PRE_TIMEOUT_INT;
460
Corey Minyard0cfec912015-09-05 17:44:13 -0500461 if (start_timer)
462 start_new_msg(smi_info, msg, 3);
463 else
464 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 smi_info->si_state = SI_CLEARING_FLAGS;
466}
467
Corey Minyard968bf7c2014-11-06 19:06:00 -0600468static void start_getting_msg_queue(struct smi_info *smi_info)
469{
470 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
471 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
472 smi_info->curr_msg->data_size = 2;
473
Corey Minyard0cfec912015-09-05 17:44:13 -0500474 start_new_msg(smi_info, smi_info->curr_msg->data,
475 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600476 smi_info->si_state = SI_GETTING_MESSAGES;
477}
478
479static void start_getting_events(struct smi_info *smi_info)
480{
481 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
482 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
483 smi_info->curr_msg->data_size = 2;
484
Corey Minyard0cfec912015-09-05 17:44:13 -0500485 start_new_msg(smi_info, smi_info->curr_msg->data,
486 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600487 smi_info->si_state = SI_GETTING_EVENTS;
488}
489
Corey Minyardc305e3d2008-04-29 01:01:10 -0700490/*
491 * When we have a situtaion where we run out of memory and cannot
492 * allocate messages, we just leave them in the BMC and run the system
493 * polled until we can allocate some memory. Once we have some
494 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500495 *
496 * Note that we cannot just use disable_irq(), since the interrupt may
497 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700498 */
Corey Minyard0cfec912015-09-05 17:44:13 -0500499static inline bool disable_si_irq(struct smi_info *smi_info, bool start_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800501 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500502 smi_info->interrupt_disabled = true;
Corey Minyard0cfec912015-09-05 17:44:13 -0500503 start_check_enables(smi_info, start_timer);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600504 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600506 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Corey Minyard968bf7c2014-11-06 19:06:00 -0600509static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500512 smi_info->interrupt_disabled = false;
Corey Minyard0cfec912015-09-05 17:44:13 -0500513 start_check_enables(smi_info, true);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600514 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600516 return false;
517}
518
519/*
520 * Allocate a message. If unable to allocate, start the interrupt
521 * disable process and return NULL. If able to allocate but
522 * interrupts are disabled, free the message and return NULL after
523 * starting the interrupt enable process.
524 */
525static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
526{
527 struct ipmi_smi_msg *msg;
528
529 msg = ipmi_alloc_smi_msg();
530 if (!msg) {
Corey Minyard0cfec912015-09-05 17:44:13 -0500531 if (!disable_si_irq(smi_info, true))
Corey Minyard968bf7c2014-11-06 19:06:00 -0600532 smi_info->si_state = SI_NORMAL;
533 } else if (enable_si_irq(smi_info)) {
534 ipmi_free_smi_msg(msg);
535 msg = NULL;
536 }
537 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540static void handle_flags(struct smi_info *smi_info)
541{
Corey Minyard76824852016-04-26 22:40:15 -0500542retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
544 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700545 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Corey Minyard0cfec912015-09-05 17:44:13 -0500547 start_clear_flags(smi_info, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600549 if (smi_info->intf)
550 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
552 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600553 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
554 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Corey Minyard968bf7c2014-11-06 19:06:00 -0600557 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
559 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600560 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
561 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Corey Minyard968bf7c2014-11-06 19:06:00 -0600564 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700565 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700566 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700567 if (smi_info->oem_data_avail_handler(smi_info))
568 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700569 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600573/*
574 * Global enables we care about.
575 */
576#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
577 IPMI_BMC_EVT_MSG_INTR)
578
Corey Minyard95c97b52014-11-20 07:19:44 -0600579static u8 current_global_enables(struct smi_info *smi_info, u8 base,
580 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600581{
582 u8 enables = 0;
583
584 if (smi_info->supports_event_msg_buff)
585 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600586
Corey Minyardd0882892015-08-18 14:29:10 -0500587 if (((smi_info->irq && !smi_info->interrupt_disabled) ||
588 smi_info->cannot_disable_irq) &&
589 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600590 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600591
592 if (smi_info->supports_event_msg_buff &&
Corey Minyardd0882892015-08-18 14:29:10 -0500593 smi_info->irq && !smi_info->interrupt_disabled &&
594 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600595 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600596
Corey Minyard95c97b52014-11-20 07:19:44 -0600597 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
598
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600599 return enables;
600}
601
Corey Minyard95c97b52014-11-20 07:19:44 -0600602static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
603{
604 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
605
606 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
607
608 if ((bool)irqstate == irq_on)
609 return;
610
611 if (irq_on)
612 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
613 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
614 else
615 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618static void handle_transaction_done(struct smi_info *smi_info)
619{
620 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
John Stultzf93aae92015-01-07 14:24:28 -0800622 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 switch (smi_info->si_state) {
624 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800625 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 break;
627
628 smi_info->curr_msg->rsp_size
629 = smi_info->handlers->get_result(
630 smi_info->si_sm,
631 smi_info->curr_msg->rsp,
632 IPMI_MAX_MSG_LENGTH);
633
Corey Minyardc305e3d2008-04-29 01:01:10 -0700634 /*
635 * Do this here becase deliver_recv_msg() releases the
636 * lock, and a new message can be put in during the
637 * time the lock is released.
638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 msg = smi_info->curr_msg;
640 smi_info->curr_msg = NULL;
641 deliver_recv_msg(smi_info, msg);
642 break;
643
644 case SI_GETTING_FLAGS:
645 {
646 unsigned char msg[4];
647 unsigned int len;
648
649 /* We got the flags from the SMI, now handle them. */
650 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
651 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700652 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 smi_info->si_state = SI_NORMAL;
654 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700655 /*
656 * Hmm, no flags. That's technically illegal, but
657 * don't use uninitialized data.
658 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 smi_info->si_state = SI_NORMAL;
660 } else {
661 smi_info->msg_flags = msg[3];
662 handle_flags(smi_info);
663 }
664 break;
665 }
666
667 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 {
669 unsigned char msg[3];
670
671 /* We cleared the flags. */
672 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
673 if (msg[2] != 0) {
674 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700675 dev_warn(smi_info->dev,
676 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600678 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 break;
680 }
681
682 case SI_GETTING_EVENTS:
683 {
684 smi_info->curr_msg->rsp_size
685 = smi_info->handlers->get_result(
686 smi_info->si_sm,
687 smi_info->curr_msg->rsp,
688 IPMI_MAX_MSG_LENGTH);
689
Corey Minyardc305e3d2008-04-29 01:01:10 -0700690 /*
691 * Do this here becase deliver_recv_msg() releases the
692 * lock, and a new message can be put in during the
693 * time the lock is released.
694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 msg = smi_info->curr_msg;
696 smi_info->curr_msg = NULL;
697 if (msg->rsp[2] != 0) {
698 /* Error getting event, probably done. */
699 msg->done(msg);
700
701 /* Take off the event flag. */
702 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
703 handle_flags(smi_info);
704 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700705 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Corey Minyardc305e3d2008-04-29 01:01:10 -0700707 /*
708 * Do this before we deliver the message
709 * because delivering the message releases the
710 * lock and something else can mess with the
711 * state.
712 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 handle_flags(smi_info);
714
715 deliver_recv_msg(smi_info, msg);
716 }
717 break;
718 }
719
720 case SI_GETTING_MESSAGES:
721 {
722 smi_info->curr_msg->rsp_size
723 = smi_info->handlers->get_result(
724 smi_info->si_sm,
725 smi_info->curr_msg->rsp,
726 IPMI_MAX_MSG_LENGTH);
727
Corey Minyardc305e3d2008-04-29 01:01:10 -0700728 /*
729 * Do this here becase deliver_recv_msg() releases the
730 * lock, and a new message can be put in during the
731 * time the lock is released.
732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 msg = smi_info->curr_msg;
734 smi_info->curr_msg = NULL;
735 if (msg->rsp[2] != 0) {
736 /* Error getting event, probably done. */
737 msg->done(msg);
738
739 /* Take off the msg flag. */
740 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
741 handle_flags(smi_info);
742 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700743 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Corey Minyardc305e3d2008-04-29 01:01:10 -0700745 /*
746 * Do this before we deliver the message
747 * because delivering the message releases the
748 * lock and something else can mess with the
749 * state.
750 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 handle_flags(smi_info);
752
753 deliver_recv_msg(smi_info, msg);
754 }
755 break;
756 }
757
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600758 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 {
760 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600761 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600762 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /* We got the flags from the SMI, now handle them. */
765 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
766 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500767 dev_warn(smi_info->dev,
768 "Couldn't get irq info: %x.\n", msg[2]);
769 dev_warn(smi_info->dev,
770 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600772 break;
773 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600774 enables = current_global_enables(smi_info, 0, &irq_on);
775 if (smi_info->si_type == SI_BT)
776 /* BT has its own interrupt enable bit. */
777 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600778 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
779 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
781 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600782 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 smi_info->handlers->start_transaction(
784 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600785 smi_info->si_state = SI_SETTING_ENABLES;
786 } else if (smi_info->supports_event_msg_buff) {
787 smi_info->curr_msg = ipmi_alloc_smi_msg();
788 if (!smi_info->curr_msg) {
789 smi_info->si_state = SI_NORMAL;
790 break;
791 }
Corey Minyard5ac7b2f2016-10-27 10:12:18 -0500792 start_getting_events(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600793 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700794 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700795 }
796 break;
797 }
798
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600799 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700800 {
801 unsigned char msg[4];
802
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700803 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600804 if (msg[2] != 0)
805 dev_warn(smi_info->dev,
806 "Could not set the global enables: 0x%x.\n",
807 msg[2]);
808
809 if (smi_info->supports_event_msg_buff) {
810 smi_info->curr_msg = ipmi_alloc_smi_msg();
811 if (!smi_info->curr_msg) {
812 smi_info->si_state = SI_NORMAL;
813 break;
814 }
Corey Minyard5ac7b2f2016-10-27 10:12:18 -0500815 start_getting_events(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600816 } else {
817 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700818 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700819 break;
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822}
823
Corey Minyardc305e3d2008-04-29 01:01:10 -0700824/*
825 * Called on timeouts and events. Timeouts should pass the elapsed
826 * time, interrupts should pass in zero. Must be called with
827 * si_lock held and interrupts disabled.
828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
830 int time)
831{
832 enum si_sm_result si_sm_result;
833
Corey Minyard76824852016-04-26 22:40:15 -0500834restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700835 /*
836 * There used to be a loop here that waited a little while
837 * (around 25us) before giving up. That turned out to be
838 * pointless, the minimum delays I was seeing were in the 300us
839 * range, which is far too long to wait in an interrupt. So
840 * we just run until the state machine tells us something
841 * happened or it needs a delay.
842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
844 time = 0;
845 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Corey Minyardc305e3d2008-04-29 01:01:10 -0700848 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700849 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 handle_transaction_done(smi_info);
Corey Minyardd9dffd22016-01-25 16:11:20 -0600852 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700853 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700854 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Corey Minyardc305e3d2008-04-29 01:01:10 -0700856 /*
857 * Do the before return_hosed_msg, because that
858 * releases the lock.
859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 smi_info->si_state = SI_NORMAL;
861 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700862 /*
863 * If we were handling a user message, format
864 * a response to send to the upper layer to
865 * tell it about the error.
866 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800867 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Corey Minyardd9dffd22016-01-25 16:11:20 -0600869 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
Corey Minyard4ea18422008-04-29 01:01:01 -0700872 /*
873 * We prefer handling attn over new messages. But don't do
874 * this if there is not yet an upper layer to handle anything.
875 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600876 if (likely(smi_info->intf) &&
877 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 unsigned char msg[2];
879
Corey Minyarda8df1502014-11-19 11:47:17 -0600880 if (smi_info->si_state != SI_NORMAL) {
881 /*
882 * We got an ATTN, but we are doing something else.
883 * Handle the ATTN later.
884 */
885 smi_info->got_attn = true;
886 } else {
887 smi_info->got_attn = false;
888 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Corey Minyarda8df1502014-11-19 11:47:17 -0600890 /*
891 * Got a attn, send down a get message flags to see
892 * what's causing it. It would be better to handle
893 * this in the upper layer, but due to the way
894 * interrupts work with the SMI, that's not really
895 * possible.
896 */
897 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
898 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Corey Minyard0cfec912015-09-05 17:44:13 -0500900 start_new_msg(smi_info, msg, 2);
Corey Minyarda8df1502014-11-19 11:47:17 -0600901 smi_info->si_state = SI_GETTING_FLAGS;
902 goto restart;
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905
906 /* If we are currently idle, try to start the next message. */
907 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700908 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 si_sm_result = start_next_msg(smi_info);
911 if (si_sm_result != SI_SM_IDLE)
912 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700916 && (atomic_read(&smi_info->req_events))) {
917 /*
918 * We are idle and the upper layer requested that I fetch
919 * events, so do so.
920 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800922
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600923 /*
924 * Take this opportunity to check the interrupt and
925 * message enable state for the BMC. The BMC can be
926 * asynchronously reset, and may thus get interrupts
927 * disable and messages disabled.
928 */
929 if (smi_info->supports_event_msg_buff || smi_info->irq) {
Corey Minyard0cfec912015-09-05 17:44:13 -0500930 start_check_enables(smi_info, true);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600931 } else {
932 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
933 if (!smi_info->curr_msg)
934 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800935
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600936 start_getting_events(smi_info);
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto restart;
939 }
Corey Minyard314ef522015-09-05 17:58:13 -0500940
941 if (si_sm_result == SI_SM_IDLE && smi_info->timer_running) {
942 /* Ok it if fails, the timer will just go off. */
943 if (del_timer(&smi_info->si_timer))
944 smi_info->timer_running = false;
945 }
946
Corey Minyard76824852016-04-26 22:40:15 -0500947out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return si_sm_result;
949}
950
Corey Minyard89986492014-04-14 09:46:54 -0500951static void check_start_timer_thread(struct smi_info *smi_info)
952{
953 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
954 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
955
956 if (smi_info->thread)
957 wake_up_process(smi_info->thread);
958
959 start_next_msg(smi_info);
960 smi_event_handler(smi_info, 0);
961 }
962}
963
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900964static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900965{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900966 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900967 enum si_sm_result result;
968
969 /*
970 * Currently, this function is called only in run-to-completion
971 * mode. This means we are single-threaded, no need for locks.
972 */
973 result = smi_event_handler(smi_info, 0);
974 while (result != SI_SM_IDLE) {
975 udelay(SI_SHORT_TIMEOUT_USEC);
976 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
977 }
978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600981 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
John Stultzf93aae92015-01-07 14:24:28 -0800986 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700989 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900990 * If we are running to completion, start it. Upper
991 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700992 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900993 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Corey Minyardf60adf42012-03-28 14:42:50 -0700997 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600998 /*
999 * The following two lines don't need to be under the lock for
1000 * the lock's sake, but they do need SMP memory barriers to
1001 * avoid getting things out of order. We are already claiming
1002 * the lock, anyway, so just do it under the lock to avoid the
1003 * ordering problem.
1004 */
1005 BUG_ON(smi_info->waiting_msg);
1006 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -05001007 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -07001008 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Corey Minyard7aefac22014-04-14 09:46:56 -05001011static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +09001016 if (i_run_to_completion)
1017 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Martin Wilckae74e822010-03-10 15:23:06 -08001020/*
1021 * Use -1 in the nsec value of the busy waiting timespec to tell that
1022 * we are spinning in kipmid looking for something and not delaying
1023 * between checks
1024 */
John Stultz48862ea22015-01-07 14:24:29 -08001025static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001026{
1027 ts->tv_nsec = -1;
1028}
John Stultz48862ea22015-01-07 14:24:29 -08001029static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001030{
1031 return ts->tv_nsec != -1;
1032}
1033
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001034static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1035 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001036 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001037{
1038 unsigned int max_busy_us = 0;
1039
1040 if (smi_info->intf_num < num_max_busy_us)
1041 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1042 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1043 ipmi_si_set_not_busy(busy_until);
1044 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001045 getnstimeofday64(busy_until);
1046 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001047 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001048 struct timespec64 now;
1049
1050 getnstimeofday64(&now);
1051 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001052 ipmi_si_set_not_busy(busy_until);
1053 return 0;
1054 }
1055 }
1056 return 1;
1057}
1058
1059
1060/*
1061 * A busy-waiting loop for speeding up IPMI operation.
1062 *
1063 * Lousy hardware makes this hard. This is only enabled for systems
1064 * that are not BT and do not have interrupts. It starts spinning
1065 * when an operation is complete or until max_busy tells it to stop
1066 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1067 * Documentation/IPMI.txt for details.
1068 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001069static int ipmi_thread(void *data)
1070{
1071 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001072 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001073 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001074 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001075
Martin Wilckae74e822010-03-10 15:23:06 -08001076 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001077 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001078 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001079 int busy_wait;
1080
Corey Minyarda9a2c442005-11-07 01:00:03 -08001081 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001082 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001083
1084 /*
1085 * If the driver is doing something, there is a possible
1086 * race with the timer. If the timer handler see idle,
1087 * and the thread here sees something else, the timer
1088 * handler won't restart the timer even though it is
1089 * required. So start it here if necessary.
1090 */
1091 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1092 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1093
Corey Minyarda9a2c442005-11-07 01:00:03 -08001094 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001095 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1096 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001097 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1098 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001099 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001100 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001101 else if (smi_result == SI_SM_IDLE) {
1102 if (atomic_read(&smi_info->need_watch)) {
1103 schedule_timeout_interruptible(100);
1104 } else {
1105 /* Wait to be woken up when we are needed. */
1106 __set_current_state(TASK_INTERRUPTIBLE);
1107 schedule();
1108 }
1109 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001110 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001111 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001112 return 0;
1113}
1114
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116static void poll(void *send_info)
1117{
1118 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001119 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001120 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Corey Minyard15c62e12006-12-06 20:41:06 -08001122 /*
1123 * Make sure there is some delay in the poll loop so we can
1124 * drive time forward and timeout things.
1125 */
1126 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001127 if (!run_to_completion)
1128 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001129 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001130 if (!run_to_completion)
1131 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134static void request_events(void *send_info)
1135{
1136 struct smi_info *smi_info = send_info;
1137
Corey Minyardb874b982014-11-06 17:01:59 -06001138 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001139 return;
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 atomic_set(&smi_info->req_events, 1);
1142}
1143
Corey Minyard7aefac22014-04-14 09:46:56 -05001144static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001145{
1146 struct smi_info *smi_info = send_info;
1147 unsigned long flags;
1148
1149 atomic_set(&smi_info->need_watch, enable);
1150 spin_lock_irqsave(&smi_info->si_lock, flags);
1151 check_start_timer_thread(smi_info);
1152 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1153}
1154
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001155static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157static void smi_timeout(unsigned long data)
1158{
1159 struct smi_info *smi_info = (struct smi_info *) data;
1160 enum si_sm_result smi_result;
1161 unsigned long flags;
1162 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001163 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001164 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001167 debug_timestamp("Timer");
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001170 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 * SI_USEC_PER_JIFFY);
1172 smi_result = smi_event_handler(smi_info, time_diff);
1173
Corey Minyardb0defcd2006-03-26 01:37:20 -08001174 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001176 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001177 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001178 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
Corey Minyardc305e3d2008-04-29 01:01:10 -07001181 /*
1182 * If the state machine asks for a short delay, then shorten
1183 * the timer timeout.
1184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001186 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001187 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001189 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001190 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192
Corey Minyard76824852016-04-26 22:40:15 -05001193do_mod_timer:
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001194 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001195 smi_mod_timer(smi_info, timeout);
1196 else
1197 smi_info->timer_running = false;
1198 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
David Howells7d12e782006-10-05 14:55:46 +01001201static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 struct smi_info *smi_info = data;
1204 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 spin_lock_irqsave(&(smi_info->si_lock), flags);
1207
Corey Minyard64959e22008-04-29 01:01:07 -07001208 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
John Stultzf93aae92015-01-07 14:24:28 -08001210 debug_timestamp("Interrupt");
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1214 return IRQ_HANDLED;
1215}
1216
David Howells7d12e782006-10-05 14:55:46 +01001217static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001218{
1219 struct smi_info *smi_info = data;
1220 /* We need to clear the IRQ flag for the BT interface. */
1221 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1222 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1223 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001224 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001225}
1226
Corey Minyard453823b2006-03-31 02:30:39 -08001227static int smi_start_processing(void *send_info,
1228 ipmi_smi_t intf)
1229{
1230 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001231 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001232
1233 new_smi->intf = intf;
1234
1235 /* Set up the timer that drives the interface. */
1236 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001237 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001238
Jan Stancek27f972d2015-12-08 13:57:51 -05001239 /* Try to claim any interrupts. */
1240 if (new_smi->irq_setup)
1241 new_smi->irq_setup(new_smi);
1242
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001243 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001244 * Check if the user forcefully enabled the daemon.
1245 */
1246 if (new_smi->intf_num < num_force_kipmid)
1247 enable = force_kipmid[new_smi->intf_num];
1248 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001249 * The BT interface is efficient enough to not need a thread,
1250 * and there is no need for a thread if we have interrupts.
1251 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001252 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001253 enable = 1;
1254
1255 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001256 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1257 "kipmi%d", new_smi->intf_num);
1258 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001259 dev_notice(new_smi->dev, "Could not start"
1260 " kernel thread due to error %ld, only using"
1261 " timers to drive the interface\n",
1262 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001263 new_smi->thread = NULL;
1264 }
1265 }
1266
1267 return 0;
1268}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001269
Zhao Yakui16f42322010-12-08 10:10:16 +08001270static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1271{
1272 struct smi_info *smi = send_info;
1273
1274 data->addr_src = smi->addr_source;
1275 data->dev = smi->dev;
1276 data->addr_info = smi->addr_info;
1277 get_device(smi->dev);
1278
1279 return 0;
1280}
1281
Corey Minyard7aefac22014-04-14 09:46:56 -05001282static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001283{
1284 struct smi_info *smi_info = send_info;
1285
1286 if (!enable)
1287 atomic_set(&smi_info->req_events, 0);
1288}
1289
Corey Minyard81d02b72015-06-13 10:34:25 -05001290static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001292 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001293 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 .sender = sender,
1295 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001296 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001297 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001299 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 .poll = poll,
1301};
1302
Corey Minyardc305e3d2008-04-29 01:01:10 -07001303/*
1304 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1305 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Corey Minyardb0defcd2006-03-26 01:37:20 -08001308static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001309static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001310static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001313#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Corey Minyardd941aea2013-02-27 17:05:12 -08001315#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301316static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001317#endif
1318#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301319static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001320#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301321static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001322#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301323static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001324#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325static char *si_type[SI_MAX_PARMS];
1326#define MAX_SI_TYPE_STR 30
1327static char si_type_str[MAX_SI_TYPE_STR];
1328static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001329static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001331static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001333static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001335static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001337static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001339static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001340static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001341static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Corey Minyardb361e272006-12-06 20:41:07 -08001343#define IPMI_IO_ADDR_SPACE 0
1344#define IPMI_MEM_ADDR_SPACE 1
LABBE Corentin99ee6732015-11-13 13:31:51 +01001345static const char * const addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001346
1347static int hotmod_handler(const char *val, struct kernel_param *kp);
1348
1349module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1350MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1351 " Documentation/IPMI.txt in the kernel sources for the"
1352 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Corey Minyardd941aea2013-02-27 17:05:12 -08001354#ifdef CONFIG_ACPI
1355module_param_named(tryacpi, si_tryacpi, bool, 0);
1356MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1357 " default scan of the interfaces identified via ACPI");
1358#endif
1359#ifdef CONFIG_DMI
1360module_param_named(trydmi, si_trydmi, bool, 0);
1361MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1362 " default scan of the interfaces identified via DMI");
1363#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001364module_param_named(tryplatform, si_tryplatform, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001365MODULE_PARM_DESC(tryplatform, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001366 " default scan of the interfaces identified via platform"
1367 " interfaces like openfirmware");
1368#ifdef CONFIG_PCI
1369module_param_named(trypci, si_trypci, bool, 0);
Corey Minyardf8136552016-01-19 14:51:53 -06001370MODULE_PARM_DESC(trypci, "Setting this to zero will disable the"
Corey Minyardf2afae42013-02-27 17:05:13 -08001371 " default scan of the interfaces identified via pci");
1372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1374MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1375 " interface separated by commas. The types are 'kcs',"
1376 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1377 " the first interface to kcs and the second to bt");
David Howells684497b2017-04-04 16:54:21 +01001378module_param_hw_array(addrs, ulong, iomem, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1380 " addresses separated by commas. Only use if an interface"
1381 " is in memory. Otherwise, set it to zero or leave"
1382 " it blank.");
David Howells684497b2017-04-04 16:54:21 +01001383module_param_hw_array(ports, uint, ioport, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1385 " addresses separated by commas. Only use if an interface"
1386 " is a port. Otherwise, set it to zero or leave"
1387 " it blank.");
David Howells684497b2017-04-04 16:54:21 +01001388module_param_hw_array(irqs, int, irq, &num_irqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1390 " addresses separated by commas. Only use if an interface"
1391 " has an interrupt. Otherwise, set it to zero or leave"
1392 " it blank.");
David Howells684497b2017-04-04 16:54:21 +01001393module_param_hw_array(regspacings, int, other, &num_regspacings, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1395 " and each successive register used by the interface. For"
1396 " instance, if the start address is 0xca2 and the spacing"
1397 " is 2, then the second address is at 0xca4. Defaults"
1398 " to 1.");
David Howells684497b2017-04-04 16:54:21 +01001399module_param_hw_array(regsizes, int, other, &num_regsizes, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1401 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1402 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1403 " the 8-bit IPMI register has to be read from a larger"
1404 " register.");
David Howells684497b2017-04-04 16:54:21 +01001405module_param_hw_array(regshifts, int, other, &num_regshifts, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1407 " IPMI register, in bits. For instance, if the data"
1408 " is read from a 32-bit word and the IPMI data is in"
1409 " bit 8-15, then the shift would be 8");
David Howells684497b2017-04-04 16:54:21 +01001410module_param_hw_array(slave_addrs, int, other, &num_slave_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1412 " the controller. Normally this is 0x20, but can be"
1413 " overridden by this parm. This is an array indexed"
1414 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001415module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1416MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1417 " disabled(0). Normally the IPMI driver auto-detects"
1418 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001419module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001420MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1421 " specified or found, default is 1. Setting to 0"
1422 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001423module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1424MODULE_PARM_DESC(kipmid_max_busy_us,
1425 "Max time (in microseconds) to busy-wait for IPMI data before"
1426 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1427 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429
Corey Minyardb0defcd2006-03-26 01:37:20 -08001430static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001432 if (info->si_type == SI_BT)
1433 /* Disable the interrupt in the BT interface. */
1434 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1435 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438static int std_irq_setup(struct smi_info *info)
1439{
1440 int rv;
1441
Corey Minyardb0defcd2006-03-26 01:37:20 -08001442 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return 0;
1444
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001445 if (info->si_type == SI_BT) {
1446 rv = request_irq(info->irq,
1447 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001448 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001449 DEVICE_NAME,
1450 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001451 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001452 /* Enable the interrupt in the BT interface. */
1453 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1454 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1455 } else
1456 rv = request_irq(info->irq,
1457 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001458 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001459 DEVICE_NAME,
1460 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001462 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1463 " running polled\n",
1464 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 info->irq = 0;
1466 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001467 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001468 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470
1471 return rv;
1472}
1473
Corey Minyard81d02b72015-06-13 10:34:25 -05001474static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001476 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Corey Minyardb0defcd2006-03-26 01:37:20 -08001478 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Corey Minyard81d02b72015-06-13 10:34:25 -05001481static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 unsigned char b)
1483{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001484 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Corey Minyardb0defcd2006-03-26 01:37:20 -08001486 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Corey Minyard81d02b72015-06-13 10:34:25 -05001489static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001491 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Corey Minyardb0defcd2006-03-26 01:37:20 -08001493 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Corey Minyard81d02b72015-06-13 10:34:25 -05001496static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 unsigned char b)
1498{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001499 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Corey Minyardb0defcd2006-03-26 01:37:20 -08001501 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Corey Minyard81d02b72015-06-13 10:34:25 -05001504static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001506 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Corey Minyardb0defcd2006-03-26 01:37:20 -08001508 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Corey Minyard81d02b72015-06-13 10:34:25 -05001511static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 unsigned char b)
1513{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001514 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Corey Minyardb0defcd2006-03-26 01:37:20 -08001516 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
1519static void port_cleanup(struct smi_info *info)
1520{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001521 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001522 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Corey Minyardb0defcd2006-03-26 01:37:20 -08001524 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001525 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001526 release_region(addr + idx * info->io.regspacing,
1527 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531static int port_setup(struct smi_info *info)
1532{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001533 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001534 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Corey Minyardb0defcd2006-03-26 01:37:20 -08001536 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return -ENODEV;
1538
1539 info->io_cleanup = port_cleanup;
1540
Corey Minyardc305e3d2008-04-29 01:01:10 -07001541 /*
1542 * Figure out the actual inb/inw/inl/etc routine to use based
1543 * upon the register size.
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 switch (info->io.regsize) {
1546 case 1:
1547 info->io.inputb = port_inb;
1548 info->io.outputb = port_outb;
1549 break;
1550 case 2:
1551 info->io.inputb = port_inw;
1552 info->io.outputb = port_outw;
1553 break;
1554 case 4:
1555 info->io.inputb = port_inl;
1556 info->io.outputb = port_outl;
1557 break;
1558 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001559 dev_warn(info->dev, "Invalid register size: %d\n",
1560 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return -EINVAL;
1562 }
1563
Corey Minyardc305e3d2008-04-29 01:01:10 -07001564 /*
1565 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001566 * tables. This causes problems when trying to register the
1567 * entire I/O region. Therefore we must register each I/O
1568 * port separately.
1569 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001570 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001571 if (request_region(addr + idx * info->io.regspacing,
1572 info->io.regsize, DEVICE_NAME) == NULL) {
1573 /* Undo allocations */
Corey Minyard76824852016-04-26 22:40:15 -05001574 while (idx--)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001575 release_region(addr + idx * info->io.regspacing,
1576 info->io.regsize);
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001577 return -EIO;
1578 }
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581}
1582
Corey Minyard81d02b72015-06-13 10:34:25 -05001583static unsigned char intf_mem_inb(const struct si_sm_io *io,
1584 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 return readb((io->addr)+(offset * io->regspacing));
1587}
1588
Corey Minyard81d02b72015-06-13 10:34:25 -05001589static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1590 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 writeb(b, (io->addr)+(offset * io->regspacing));
1593}
1594
Corey Minyard81d02b72015-06-13 10:34:25 -05001595static unsigned char intf_mem_inw(const struct si_sm_io *io,
1596 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001599 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Corey Minyard81d02b72015-06-13 10:34:25 -05001602static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1603 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1606}
1607
Corey Minyard81d02b72015-06-13 10:34:25 -05001608static unsigned char intf_mem_inl(const struct si_sm_io *io,
1609 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001612 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Corey Minyard81d02b72015-06-13 10:34:25 -05001615static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1616 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
1618 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1619}
1620
1621#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001622static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001625 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Corey Minyard81d02b72015-06-13 10:34:25 -05001628static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 unsigned char b)
1630{
1631 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1632}
1633#endif
1634
Corey Minyard57a38f12016-04-26 22:25:12 -05001635static void mem_region_cleanup(struct smi_info *info, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001637 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001638 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Corey Minyard57a38f12016-04-26 22:25:12 -05001640 for (idx = 0; idx < num; idx++)
1641 release_mem_region(addr + idx * info->io.regspacing,
1642 info->io.regsize);
1643}
1644
1645static void mem_cleanup(struct smi_info *info)
1646{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (info->io.addr) {
1648 iounmap(info->io.addr);
Corey Minyard57a38f12016-04-26 22:25:12 -05001649 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
1653static int mem_setup(struct smi_info *info)
1654{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001655 unsigned long addr = info->io.addr_data;
Corey Minyard57a38f12016-04-26 22:25:12 -05001656 int mapsize, idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Corey Minyardb0defcd2006-03-26 01:37:20 -08001658 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return -ENODEV;
1660
1661 info->io_cleanup = mem_cleanup;
1662
Corey Minyardc305e3d2008-04-29 01:01:10 -07001663 /*
1664 * Figure out the actual readb/readw/readl/etc routine to use based
1665 * upon the register size.
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 switch (info->io.regsize) {
1668 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001669 info->io.inputb = intf_mem_inb;
1670 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 break;
1672 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001673 info->io.inputb = intf_mem_inw;
1674 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 break;
1676 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001677 info->io.inputb = intf_mem_inl;
1678 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 break;
1680#ifdef readq
1681 case 8:
1682 info->io.inputb = mem_inq;
1683 info->io.outputb = mem_outq;
1684 break;
1685#endif
1686 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001687 dev_warn(info->dev, "Invalid register size: %d\n",
1688 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return -EINVAL;
1690 }
1691
Corey Minyardc305e3d2008-04-29 01:01:10 -07001692 /*
Corey Minyard57a38f12016-04-26 22:25:12 -05001693 * Some BIOSes reserve disjoint memory regions in their ACPI
1694 * tables. This causes problems when trying to request the
1695 * entire region. Therefore we must request each register
1696 * separately.
1697 */
1698 for (idx = 0; idx < info->io_size; idx++) {
1699 if (request_mem_region(addr + idx * info->io.regspacing,
1700 info->io.regsize, DEVICE_NAME) == NULL) {
1701 /* Undo allocations */
1702 mem_region_cleanup(info, idx);
1703 return -EIO;
1704 }
1705 }
1706
1707 /*
Corey Minyardc305e3d2008-04-29 01:01:10 -07001708 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 * unusual looking calculation, but it avoids claiming any
1710 * more memory than it has to. It will claim everything
1711 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001712 * register.
1713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 mapsize = ((info->io_size * info->io.regspacing)
1715 - (info->io.regspacing - info->io.regsize));
Corey Minyardb0defcd2006-03-26 01:37:20 -08001716 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (info->io.addr == NULL) {
Corey Minyard57a38f12016-04-26 22:25:12 -05001718 mem_region_cleanup(info, info->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return -EIO;
1720 }
1721 return 0;
1722}
1723
Corey Minyardb361e272006-12-06 20:41:07 -08001724/*
1725 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1726 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1727 * Options are:
1728 * rsp=<regspacing>
1729 * rsi=<regsize>
1730 * rsh=<regshift>
1731 * irq=<irq>
1732 * ipmb=<ipmb addr>
1733 */
1734enum hotmod_op { HM_ADD, HM_REMOVE };
1735struct hotmod_vals {
LABBE Corentin99ee6732015-11-13 13:31:51 +01001736 const char *name;
1737 const int val;
Corey Minyardb361e272006-12-06 20:41:07 -08001738};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001739
1740static const struct hotmod_vals hotmod_ops[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001741 { "add", HM_ADD },
1742 { "remove", HM_REMOVE },
1743 { NULL }
1744};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001745
1746static const struct hotmod_vals hotmod_si[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001747 { "kcs", SI_KCS },
1748 { "smic", SI_SMIC },
1749 { "bt", SI_BT },
1750 { NULL }
1751};
LABBE Corentin99ee6732015-11-13 13:31:51 +01001752
1753static const struct hotmod_vals hotmod_as[] = {
Corey Minyardb361e272006-12-06 20:41:07 -08001754 { "mem", IPMI_MEM_ADDR_SPACE },
1755 { "i/o", IPMI_IO_ADDR_SPACE },
1756 { NULL }
1757};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001758
LABBE Corentin99ee6732015-11-13 13:31:51 +01001759static int parse_str(const struct hotmod_vals *v, int *val, char *name,
1760 char **curr)
Corey Minyardb361e272006-12-06 20:41:07 -08001761{
1762 char *s;
1763 int i;
1764
1765 s = strchr(*curr, ',');
1766 if (!s) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001767 pr_warn(PFX "No hotmod %s given.\n", name);
Corey Minyardb361e272006-12-06 20:41:07 -08001768 return -EINVAL;
1769 }
1770 *s = '\0';
1771 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001772 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001773 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001774 *val = v[i].val;
1775 *curr = s;
1776 return 0;
1777 }
1778 }
1779
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001780 pr_warn(PFX "Invalid hotmod %s '%s'\n", name, *curr);
Corey Minyardb361e272006-12-06 20:41:07 -08001781 return -EINVAL;
1782}
1783
Corey Minyard1d5636c2006-12-10 02:19:08 -08001784static int check_hotmod_int_op(const char *curr, const char *option,
1785 const char *name, int *val)
1786{
1787 char *n;
1788
1789 if (strcmp(curr, name) == 0) {
1790 if (!option) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001791 pr_warn(PFX "No option given for '%s'\n", curr);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001792 return -EINVAL;
1793 }
1794 *val = simple_strtoul(option, &n, 0);
1795 if ((*n != '\0') || (*option == '\0')) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001796 pr_warn(PFX "Bad option given for '%s'\n", curr);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001797 return -EINVAL;
1798 }
1799 return 1;
1800 }
1801 return 0;
1802}
1803
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001804static struct smi_info *smi_info_alloc(void)
1805{
1806 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1807
Corey Minyardf60adf42012-03-28 14:42:50 -07001808 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001809 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001810 return info;
1811}
1812
Corey Minyardb361e272006-12-06 20:41:07 -08001813static int hotmod_handler(const char *val, struct kernel_param *kp)
1814{
1815 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001816 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001817 char *next, *curr, *s, *n, *o;
1818 enum hotmod_op op;
1819 enum si_type si_type;
1820 int addr_space;
1821 unsigned long addr;
1822 int regspacing;
1823 int regsize;
1824 int regshift;
1825 int irq;
1826 int ipmb;
1827 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001828 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001829 struct smi_info *info;
1830
1831 if (!str)
1832 return -ENOMEM;
1833
1834 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001835 len = strlen(str);
1836 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001837 while ((ival >= 0) && isspace(str[ival])) {
1838 str[ival] = '\0';
1839 ival--;
1840 }
1841
1842 for (curr = str; curr; curr = next) {
1843 regspacing = 1;
1844 regsize = 1;
1845 regshift = 0;
1846 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001847 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001848
1849 next = strchr(curr, ':');
1850 if (next) {
1851 *next = '\0';
1852 next++;
1853 }
1854
1855 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1856 if (rv)
1857 break;
1858 op = ival;
1859
1860 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1861 if (rv)
1862 break;
1863 si_type = ival;
1864
1865 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1866 if (rv)
1867 break;
1868
1869 s = strchr(curr, ',');
1870 if (s) {
1871 *s = '\0';
1872 s++;
1873 }
1874 addr = simple_strtoul(curr, &n, 0);
1875 if ((*n != '\0') || (*curr == '\0')) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001876 pr_warn(PFX "Invalid hotmod address '%s'\n", curr);
Corey Minyardb361e272006-12-06 20:41:07 -08001877 break;
1878 }
1879
1880 while (s) {
1881 curr = s;
1882 s = strchr(curr, ',');
1883 if (s) {
1884 *s = '\0';
1885 s++;
1886 }
1887 o = strchr(curr, '=');
1888 if (o) {
1889 *o = '\0';
1890 o++;
1891 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001892 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1893 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001894 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001895 else if (rv)
1896 continue;
1897 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1898 if (rv < 0)
1899 goto out;
1900 else if (rv)
1901 continue;
1902 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1903 if (rv < 0)
1904 goto out;
1905 else if (rv)
1906 continue;
1907 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1908 if (rv < 0)
1909 goto out;
1910 else if (rv)
1911 continue;
1912 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1913 if (rv < 0)
1914 goto out;
1915 else if (rv)
1916 continue;
1917
1918 rv = -EINVAL;
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001919 pr_warn(PFX "Invalid hotmod option '%s'\n", curr);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001920 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001921 }
1922
1923 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001924 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001925 if (!info) {
1926 rv = -ENOMEM;
1927 goto out;
1928 }
1929
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001930 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001931 info->si_type = si_type;
1932 info->io.addr_data = addr;
1933 info->io.addr_type = addr_space;
1934 if (addr_space == IPMI_MEM_ADDR_SPACE)
1935 info->io_setup = mem_setup;
1936 else
1937 info->io_setup = port_setup;
1938
1939 info->io.addr = NULL;
1940 info->io.regspacing = regspacing;
1941 if (!info->io.regspacing)
1942 info->io.regspacing = DEFAULT_REGSPACING;
1943 info->io.regsize = regsize;
1944 if (!info->io.regsize)
1945 info->io.regsize = DEFAULT_REGSPACING;
1946 info->io.regshift = regshift;
1947 info->irq = irq;
1948 if (info->irq)
1949 info->irq_setup = std_irq_setup;
1950 info->slave_addr = ipmb;
1951
Corey Minyardd02b3702014-01-24 14:00:53 -06001952 rv = add_smi(info);
1953 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001954 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001955 goto out;
1956 }
Tony Camuso3f724c42017-04-10 12:22:13 -04001957 mutex_lock(&smi_infos_lock);
Corey Minyardd02b3702014-01-24 14:00:53 -06001958 rv = try_smi_init(info);
Tony Camuso3f724c42017-04-10 12:22:13 -04001959 mutex_unlock(&smi_infos_lock);
Corey Minyardd02b3702014-01-24 14:00:53 -06001960 if (rv) {
1961 cleanup_one_si(info);
1962 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001963 }
Corey Minyardb361e272006-12-06 20:41:07 -08001964 } else {
1965 /* remove */
1966 struct smi_info *e, *tmp_e;
1967
1968 mutex_lock(&smi_infos_lock);
1969 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1970 if (e->io.addr_type != addr_space)
1971 continue;
1972 if (e->si_type != si_type)
1973 continue;
1974 if (e->io.addr_data == addr)
1975 cleanup_one_si(e);
1976 }
1977 mutex_unlock(&smi_infos_lock);
1978 }
1979 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001980 rv = len;
Corey Minyard76824852016-04-26 22:40:15 -05001981out:
Corey Minyardb361e272006-12-06 20:41:07 -08001982 kfree(str);
1983 return rv;
1984}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001985
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001986static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06001988 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001989 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct smi_info *info;
1991
Corey Minyardb0defcd2006-03-26 01:37:20 -08001992 for (i = 0; i < SI_MAX_PARMS; i++) {
1993 if (!ports[i] && !addrs[i])
1994 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001996 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001997 if (!info)
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06001998 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002000 info->addr_source = SI_HARDCODED;
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002001 pr_info(PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002002
Corey Minyard1d5636c2006-12-10 02:19:08 -08002003 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002004 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002005 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002006 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08002007 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002008 info->si_type = SI_BT;
2009 } else {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002010 pr_warn(PFX "Interface type specified for interface %d, was invalid: %s\n",
2011 i, si_type[i]);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002012 kfree(info);
2013 continue;
2014 }
2015
2016 if (ports[i]) {
2017 /* An I/O port */
2018 info->io_setup = port_setup;
2019 info->io.addr_data = ports[i];
2020 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2021 } else if (addrs[i]) {
2022 /* A memory port */
2023 info->io_setup = mem_setup;
2024 info->io.addr_data = addrs[i];
2025 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2026 } else {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002027 pr_warn(PFX "Interface type specified for interface %d, but port and address were not set or set to zero.\n",
2028 i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002029 kfree(info);
2030 continue;
2031 }
2032
2033 info->io.addr = NULL;
2034 info->io.regspacing = regspacings[i];
2035 if (!info->io.regspacing)
2036 info->io.regspacing = DEFAULT_REGSPACING;
2037 info->io.regsize = regsizes[i];
2038 if (!info->io.regsize)
2039 info->io.regsize = DEFAULT_REGSPACING;
2040 info->io.regshift = regshifts[i];
2041 info->irq = irqs[i];
2042 if (info->irq)
2043 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002044 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002045
Yinghai Lu7faefea2010-08-10 18:03:10 -07002046 if (!add_smi(info)) {
Tony Camuso3f724c42017-04-10 12:22:13 -04002047 mutex_lock(&smi_infos_lock);
Matthew Garrett2407d772010-05-26 14:43:46 -07002048 if (try_smi_init(info))
2049 cleanup_one_si(info);
Tony Camuso3f724c42017-04-10 12:22:13 -04002050 mutex_unlock(&smi_infos_lock);
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002051 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002052 } else {
2053 kfree(info);
2054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002056 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Len Brown84663612005-08-24 12:09:07 -04002059#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Corey Minyardc305e3d2008-04-29 01:01:10 -07002061/*
2062 * Once we get an ACPI failure, we don't try any more, because we go
2063 * through the tables sequentially. Once we don't find a table, there
2064 * are no more.
2065 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002066static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002069static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2070 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
2072 struct smi_info *smi_info = context;
2073 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 spin_lock_irqsave(&(smi_info->si_lock), flags);
2076
Corey Minyard64959e22008-04-29 01:01:07 -07002077 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
John Stultzf93aae92015-01-07 14:24:28 -08002079 debug_timestamp("ACPI_GPE");
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2083
2084 return ACPI_INTERRUPT_HANDLED;
2085}
2086
Corey Minyardb0defcd2006-03-26 01:37:20 -08002087static void acpi_gpe_irq_cleanup(struct smi_info *info)
2088{
2089 if (!info->irq)
2090 return;
2091
2092 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2093}
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095static int acpi_gpe_irq_setup(struct smi_info *info)
2096{
2097 acpi_status status;
2098
Corey Minyardb0defcd2006-03-26 01:37:20 -08002099 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return 0;
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 status = acpi_install_gpe_handler(NULL,
2103 info->irq,
2104 ACPI_GPE_LEVEL_TRIGGERED,
2105 &ipmi_acpi_gpe,
2106 info);
2107 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002108 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2109 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 info->irq = 0;
2111 return -EINVAL;
2112 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002113 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002114 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return 0;
2116 }
2117}
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119/*
2120 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002121 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 */
2123struct SPMITable {
2124 s8 Signature[4];
2125 u32 Length;
2126 u8 Revision;
2127 u8 Checksum;
2128 s8 OEMID[6];
2129 s8 OEMTableID[8];
2130 s8 OEMRevision[4];
2131 s8 CreatorID[4];
2132 s8 CreatorRevision[4];
2133 u8 InterfaceType;
2134 u8 IPMIlegacy;
2135 s16 SpecificationRevision;
2136
2137 /*
2138 * Bit 0 - SCI interrupt supported
2139 * Bit 1 - I/O APIC/SAPIC
2140 */
2141 u8 InterruptType;
2142
Corey Minyardc305e3d2008-04-29 01:01:10 -07002143 /*
2144 * If bit 0 of InterruptType is set, then this is the SCI
2145 * interrupt in the GPEx_STS register.
2146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 u8 GPE;
2148
2149 s16 Reserved;
2150
Corey Minyardc305e3d2008-04-29 01:01:10 -07002151 /*
2152 * If bit 1 of InterruptType is set, then this is the I/O
2153 * APIC/SAPIC interrupt.
2154 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 u32 GlobalSystemInterrupt;
2156
2157 /* The actual register address. */
2158 struct acpi_generic_address addr;
2159
2160 u8 UID[4];
2161
2162 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2163};
2164
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002165static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002168 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (spmi->IPMIlegacy != 1) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002171 pr_info(PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
Myron Stowe279fbd02010-05-26 14:43:52 -07002172 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002175 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002176 if (!info) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002177 pr_err(PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002178 return -ENOMEM;
2179 }
2180
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002181 info->addr_source = SI_SPMI;
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002182 pr_info(PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002185 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002187 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002190 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002193 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002195 case 4: /* SSIF, just ignore */
2196 kfree(info);
2197 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 default:
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002199 pr_info(PFX "Unknown ACPI/SPMI SI type %d\n",
2200 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002201 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return -EIO;
2203 }
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (spmi->InterruptType & 1) {
2206 /* We've got a GPE interrupt. */
2207 info->irq = spmi->GPE;
2208 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 } else if (spmi->InterruptType & 2) {
2210 /* We've got an APIC/SAPIC interrupt. */
2211 info->irq = spmi->GlobalSystemInterrupt;
2212 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 } else {
2214 /* Use the default interrupt setting. */
2215 info->irq = 0;
2216 info->irq_setup = NULL;
2217 }
2218
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002219 if (spmi->addr.bit_width) {
Corey Minyard35bc37a02005-05-01 08:59:10 -07002220 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002221 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a02005-05-01 08:59:10 -07002222 } else {
Corey Minyard35bc37a02005-05-01 08:59:10 -07002223 info->io.regspacing = DEFAULT_REGSPACING;
2224 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002225 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002226 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002228 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002230 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002231 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002233 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 } else {
2235 kfree(info);
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002236 pr_warn(PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 return -EIO;
2238 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002239 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002241 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002242 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2243 info->io.addr_data, info->io.regsize, info->io.regspacing,
2244 info->irq);
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002245
Corey Minyardd02b3702014-01-24 14:00:53 -06002246 rv = add_smi(info);
2247 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002248 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Corey Minyardd02b3702014-01-24 14:00:53 -06002250 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002252
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002253static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002254{
2255 acpi_status status;
2256 struct SPMITable *spmi;
2257 int i;
2258
2259 if (acpi_disabled)
2260 return;
2261
2262 if (acpi_failure)
2263 return;
2264
2265 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002266 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2267 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002268 if (status != AE_OK)
2269 return;
2270
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002271 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002272 }
2273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274#endif
2275
Matt Domscha9fad4c2006-01-11 12:17:44 -08002276#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002277struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 u8 type;
2279 u8 addr_space;
2280 unsigned long base_addr;
2281 u8 irq;
2282 u8 offset;
2283 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002284};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002286static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002287 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
Jeff Garzik18552562007-10-03 15:15:40 -04002289 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 unsigned long base_addr;
2291 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002292 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Corey Minyardb0defcd2006-03-26 01:37:20 -08002294 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 memcpy(&base_addr, data+8, sizeof(unsigned long));
2297 if (len >= 0x11) {
2298 if (base_addr & 1) {
2299 /* I/O */
2300 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002301 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002302 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002304 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2307 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002308 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Corey Minyardb0defcd2006-03-26 01:37:20 -08002310 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002313 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002314 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002316 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 break;
2318 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002319 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 break;
2321 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002322 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 break;
2324 default:
2325 /* Some other interface, just ignore it. */
2326 return -EIO;
2327 }
2328 } else {
2329 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002330 /*
2331 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002332 * address should be 1 if the address is I/O and 0 if
2333 * the address is in memory. So many systems get that
2334 * wrong (and all that I have seen are I/O) so we just
2335 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002336 * memory should use the newer spec, anyway.
2337 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002338 dmi->base_addr = base_addr & 0xfffe;
2339 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2340 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342
Corey Minyardb0defcd2006-03-26 01:37:20 -08002343 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Corey Minyardb0defcd2006-03-26 01:37:20 -08002345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002348static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Corey Minyarde8b33612005-09-06 15:18:45 -07002350 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002352 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002353 if (!info) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002354 pr_err(PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002355 return;
2356 }
2357
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002358 info->addr_source = SI_SMBIOS;
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002359 pr_info(PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Corey Minyarde8b33612005-09-06 15:18:45 -07002361 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002362 case 0x01: /* KCS */
2363 info->si_type = SI_KCS;
2364 break;
2365 case 0x02: /* SMIC */
2366 info->si_type = SI_SMIC;
2367 break;
2368 case 0x03: /* BT */
2369 info->si_type = SI_BT;
2370 break;
2371 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002372 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
2375
Corey Minyardb0defcd2006-03-26 01:37:20 -08002376 switch (ipmi_data->addr_space) {
2377 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002379 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2380 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Corey Minyardb0defcd2006-03-26 01:37:20 -08002382 case IPMI_IO_ADDR_SPACE:
2383 info->io_setup = port_setup;
2384 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2385 break;
2386
2387 default:
2388 kfree(info);
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002389 pr_warn(PFX "Unknown SMBIOS I/O Address type: %d\n",
2390 ipmi_data->addr_space);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002391 return;
2392 }
2393 info->io.addr_data = ipmi_data->base_addr;
2394
2395 info->io.regspacing = ipmi_data->offset;
2396 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 info->io.regspacing = DEFAULT_REGSPACING;
2398 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002399 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 info->slave_addr = ipmi_data->slave_addr;
2402
Corey Minyardb0defcd2006-03-26 01:37:20 -08002403 info->irq = ipmi_data->irq;
2404 if (info->irq)
2405 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002407 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002408 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2409 info->io.addr_data, info->io.regsize, info->io.regspacing,
2410 info->irq);
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002411
Yinghai Lu7faefea2010-08-10 18:03:10 -07002412 if (add_smi(info))
2413 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002416static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002417{
Jeff Garzik18552562007-10-03 15:15:40 -04002418 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002419 struct dmi_ipmi_data data;
2420 int rv;
2421
2422 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002423 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002424 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2425 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002426 if (!rv)
2427 try_init_dmi(&data);
2428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002430#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432#ifdef CONFIG_PCI
2433
Corey Minyardb0defcd2006-03-26 01:37:20 -08002434#define PCI_ERMC_CLASSCODE 0x0C0700
2435#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2436#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2437#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2438#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2439#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441#define PCI_HP_VENDOR_ID 0x103C
2442#define PCI_MMC_DEVICE_ID 0x121A
2443#define PCI_MMC_ADDR_CW 0x10
2444
Corey Minyardb0defcd2006-03-26 01:37:20 -08002445static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002447 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Corey Minyardb0defcd2006-03-26 01:37:20 -08002449 pci_disable_device(pdev);
2450}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002452static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002453{
2454 if (info->si_type == SI_KCS) {
2455 unsigned char status;
2456 int regspacing;
2457
2458 info->io.regsize = DEFAULT_REGSIZE;
2459 info->io.regshift = 0;
2460 info->io_size = 2;
2461 info->handlers = &kcs_smi_handlers;
2462
2463 /* detect 1, 4, 16byte spacing */
2464 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2465 info->io.regspacing = regspacing;
2466 if (info->io_setup(info)) {
2467 dev_err(info->dev,
2468 "Could not setup I/O space\n");
2469 return DEFAULT_REGSPACING;
2470 }
2471 /* write invalid cmd */
2472 info->io.outputb(&info->io, 1, 0x10);
2473 /* read status back */
2474 status = info->io.inputb(&info->io, 1);
2475 info->io_cleanup(info);
2476 if (status)
2477 return regspacing;
2478 regspacing *= 4;
2479 }
2480 }
2481 return DEFAULT_REGSPACING;
2482}
2483
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002484static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002485 const struct pci_device_id *ent)
2486{
2487 int rv;
2488 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2489 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002491 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002492 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002493 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002494
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002495 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002496 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002497
2498 switch (class_type) {
2499 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2500 info->si_type = SI_SMIC;
2501 break;
2502
2503 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2504 info->si_type = SI_KCS;
2505 break;
2506
2507 case PCI_ERMC_CLASSCODE_TYPE_BT:
2508 info->si_type = SI_BT;
2509 break;
2510
2511 default:
2512 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002513 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002514 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Corey Minyardb0defcd2006-03-26 01:37:20 -08002517 rv = pci_enable_device(pdev);
2518 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002519 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002520 kfree(info);
2521 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 }
2523
Corey Minyardb0defcd2006-03-26 01:37:20 -08002524 info->addr_source_cleanup = ipmi_pci_cleanup;
2525 info->addr_source_data = pdev;
2526
Corey Minyardb0defcd2006-03-26 01:37:20 -08002527 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2528 info->io_setup = port_setup;
2529 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2530 } else {
2531 info->io_setup = mem_setup;
2532 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002534 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Corey Minyarda6c16c22012-10-16 15:53:40 -05002536 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2537 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002538 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Corey Minyardb0defcd2006-03-26 01:37:20 -08002540 info->irq = pdev->irq;
2541 if (info->irq)
2542 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Corey Minyard50c812b2006-03-26 01:37:21 -08002544 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002545 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002546
Myron Stowe279fbd02010-05-26 14:43:52 -07002547 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2548 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2549 info->irq);
2550
Corey Minyardd02b3702014-01-24 14:00:53 -06002551 rv = add_smi(info);
2552 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002553 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002554 pci_disable_device(pdev);
2555 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002556
Corey Minyardd02b3702014-01-24 14:00:53 -06002557 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Bill Pemberton39af33f2012-11-19 13:26:26 -05002560static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002561{
Corey Minyardfca3b742007-05-08 00:23:59 -07002562 struct smi_info *info = pci_get_drvdata(pdev);
2563 cleanup_one_si(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002564}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Corey Minyard81d02b72015-06-13 10:34:25 -05002566static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002567 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002568 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2569 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002570};
2571MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2572
2573static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002574 .name = DEVICE_NAME,
2575 .id_table = ipmi_pci_devices,
2576 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002577 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002578};
2579#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002581#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002582static const struct of_device_id of_ipmi_match[] = {
2583 { .type = "ipmi", .compatible = "ipmi-kcs",
2584 .data = (void *)(unsigned long) SI_KCS },
2585 { .type = "ipmi", .compatible = "ipmi-smic",
2586 .data = (void *)(unsigned long) SI_SMIC },
2587 { .type = "ipmi", .compatible = "ipmi-bt",
2588 .data = (void *)(unsigned long) SI_BT },
2589 {},
2590};
Luis de Bethencourt66f44012015-09-19 16:43:23 +01002591MODULE_DEVICE_TABLE(of, of_ipmi_match);
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002592
2593static int of_ipmi_probe(struct platform_device *dev)
2594{
Grant Likelyb1608d62011-05-18 11:19:24 -06002595 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002596 struct smi_info *info;
2597 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002598 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002599 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002600 int ret;
2601 int proplen;
2602
Myron Stowe279fbd02010-05-26 14:43:52 -07002603 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002604
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002605 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002606 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002607 return -ENODEV;
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002608
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002609 if (!of_device_is_available(np))
2610 return -EINVAL;
2611
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002612 ret = of_address_to_resource(np, 0, &resource);
2613 if (ret) {
2614 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2615 return ret;
2616 }
2617
Stephen Rothwell9c250992007-08-15 16:42:12 +10002618 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619 if (regsize && proplen != 4) {
2620 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2621 return -EINVAL;
2622 }
2623
Stephen Rothwell9c250992007-08-15 16:42:12 +10002624 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002625 if (regspacing && proplen != 4) {
2626 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2627 return -EINVAL;
2628 }
2629
Stephen Rothwell9c250992007-08-15 16:42:12 +10002630 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002631 if (regshift && proplen != 4) {
2632 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2633 return -EINVAL;
2634 }
2635
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002636 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002637
2638 if (!info) {
2639 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002640 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002641 return -ENOMEM;
2642 }
2643
Grant Likelyb1608d62011-05-18 11:19:24 -06002644 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002645 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002646 info->irq_setup = std_irq_setup;
2647
Nate Case3b7ec112008-05-14 16:05:39 -07002648 if (resource.flags & IORESOURCE_IO) {
2649 info->io_setup = port_setup;
2650 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2651 } else {
2652 info->io_setup = mem_setup;
2653 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2654 }
2655
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002656 info->io.addr_data = resource.start;
2657
Rob Herringda81c3b2010-11-16 14:33:50 -06002658 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2659 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2660 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002661
Grant Likely61c7a082010-04-13 16:12:29 -07002662 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002663 info->dev = &dev->dev;
2664
Myron Stowe279fbd02010-05-26 14:43:52 -07002665 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002666 info->io.addr_data, info->io.regsize, info->io.regspacing,
2667 info->irq);
2668
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002669 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002670
Corey Minyardd02b3702014-01-24 14:00:53 -06002671 ret = add_smi(info);
2672 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002673 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002674 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002675 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002676 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002677}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002678#else
2679#define of_ipmi_match NULL
2680static int of_ipmi_probe(struct platform_device *dev)
2681{
2682 return -ENODEV;
2683}
2684#endif
2685
2686#ifdef CONFIG_ACPI
2687static int acpi_ipmi_probe(struct platform_device *dev)
2688{
2689 struct smi_info *info;
2690 struct resource *res, *res_second;
2691 acpi_handle handle;
2692 acpi_status status;
2693 unsigned long long tmp;
2694 int rv = -EINVAL;
2695
Joe Lawrence9f0257b32016-02-18 16:02:54 -05002696 if (!si_tryacpi)
2697 return 0;
2698
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002699 handle = ACPI_HANDLE(&dev->dev);
2700 if (!handle)
2701 return -ENODEV;
2702
2703 info = smi_info_alloc();
2704 if (!info)
2705 return -ENOMEM;
2706
2707 info->addr_source = SI_ACPI;
2708 dev_info(&dev->dev, PFX "probing via ACPI\n");
2709
2710 info->addr_info.acpi_info.acpi_handle = handle;
2711
2712 /* _IFT tells us the interface type: KCS, BT, etc */
2713 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2714 if (ACPI_FAILURE(status)) {
2715 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2716 goto err_free;
2717 }
2718
2719 switch (tmp) {
2720 case 1:
2721 info->si_type = SI_KCS;
2722 break;
2723 case 2:
2724 info->si_type = SI_SMIC;
2725 break;
2726 case 3:
2727 info->si_type = SI_BT;
2728 break;
2729 case 4: /* SSIF, just ignore */
2730 rv = -ENODEV;
2731 goto err_free;
2732 default:
2733 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2734 goto err_free;
2735 }
2736
2737 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2738 if (res) {
2739 info->io_setup = port_setup;
2740 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2741 } else {
2742 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2743 if (res) {
2744 info->io_setup = mem_setup;
2745 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2746 }
2747 }
2748 if (!res) {
2749 dev_err(&dev->dev, "no I/O or memory address\n");
2750 goto err_free;
2751 }
2752 info->io.addr_data = res->start;
2753
2754 info->io.regspacing = DEFAULT_REGSPACING;
2755 res_second = platform_get_resource(dev,
2756 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2757 IORESOURCE_IO : IORESOURCE_MEM,
2758 1);
2759 if (res_second) {
2760 if (res_second->start > info->io.addr_data)
2761 info->io.regspacing =
2762 res_second->start - info->io.addr_data;
2763 }
2764 info->io.regsize = DEFAULT_REGSPACING;
2765 info->io.regshift = 0;
2766
2767 /* If _GPE exists, use it; otherwise use standard interrupts */
2768 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2769 if (ACPI_SUCCESS(status)) {
2770 info->irq = tmp;
2771 info->irq_setup = acpi_gpe_irq_setup;
2772 } else {
2773 int irq = platform_get_irq(dev, 0);
2774
2775 if (irq > 0) {
2776 info->irq = irq;
2777 info->irq_setup = std_irq_setup;
2778 }
2779 }
2780
2781 info->dev = &dev->dev;
2782 platform_set_drvdata(dev, info);
2783
2784 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2785 res, info->io.regsize, info->io.regspacing,
2786 info->irq);
2787
2788 rv = add_smi(info);
2789 if (rv)
2790 kfree(info);
2791
2792 return rv;
2793
2794err_free:
2795 kfree(info);
2796 return rv;
2797}
2798
Corey Minyard81d02b72015-06-13 10:34:25 -05002799static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002800 { "IPI0001", 0 },
2801 { },
2802};
2803MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2804#else
2805static int acpi_ipmi_probe(struct platform_device *dev)
2806{
2807 return -ENODEV;
2808}
2809#endif
2810
2811static int ipmi_probe(struct platform_device *dev)
2812{
2813 if (of_ipmi_probe(dev) == 0)
2814 return 0;
2815
2816 return acpi_ipmi_probe(dev);
2817}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002818
Bill Pemberton39af33f2012-11-19 13:26:26 -05002819static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002820{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002821 struct smi_info *info = dev_get_drvdata(&dev->dev);
2822
Markus Elfringa7930892015-06-27 18:12:14 +02002823 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002824 return 0;
2825}
2826
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002827static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002828 .driver = {
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002829 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002830 .of_match_table = of_ipmi_match,
2831 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002832 },
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06002833 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002834 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002835};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002836
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002837#ifdef CONFIG_PARISC
2838static int ipmi_parisc_probe(struct parisc_device *dev)
2839{
2840 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002841 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002842
2843 info = smi_info_alloc();
2844
2845 if (!info) {
2846 dev_err(&dev->dev,
2847 "could not allocate memory for PARISC probe\n");
2848 return -ENOMEM;
2849 }
2850
2851 info->si_type = SI_KCS;
2852 info->addr_source = SI_DEVICETREE;
2853 info->io_setup = mem_setup;
2854 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2855 info->io.addr_data = dev->hpa.start;
2856 info->io.regsize = 1;
2857 info->io.regspacing = 1;
2858 info->io.regshift = 0;
2859 info->irq = 0; /* no interrupt */
2860 info->irq_setup = NULL;
2861 info->dev = &dev->dev;
2862
2863 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2864
2865 dev_set_drvdata(&dev->dev, info);
2866
Corey Minyardd02b3702014-01-24 14:00:53 -06002867 rv = add_smi(info);
2868 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002869 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002870 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002871 }
2872
2873 return 0;
2874}
2875
2876static int ipmi_parisc_remove(struct parisc_device *dev)
2877{
2878 cleanup_one_si(dev_get_drvdata(&dev->dev));
2879 return 0;
2880}
2881
LABBE Corentin99ee6732015-11-13 13:31:51 +01002882static const struct parisc_device_id ipmi_parisc_tbl[] = {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002883 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2884 { 0, }
2885};
2886
2887static struct parisc_driver ipmi_parisc_driver = {
2888 .name = "ipmi",
2889 .id_table = ipmi_parisc_tbl,
2890 .probe = ipmi_parisc_probe,
2891 .remove = ipmi_parisc_remove,
2892};
2893#endif /* CONFIG_PARISC */
2894
Corey Minyard40112ae2009-04-21 12:24:03 -07002895static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
Corey Minyard50c812b2006-03-26 01:37:21 -08002897 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002900 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002901 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2902 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002903 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002905 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002906 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 smi_result = smi_info->handlers->event(
2908 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002909 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 break;
2911 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002912 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002913 /*
2914 * We couldn't get the state machine to run, so whatever's at
2915 * the port is probably not an IPMI SMI interface.
2916 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002917 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Corey Minyard40112ae2009-04-21 12:24:03 -07002919 return 0;
2920}
2921
2922static int try_get_dev_id(struct smi_info *smi_info)
2923{
2924 unsigned char msg[2];
2925 unsigned char *resp;
2926 unsigned long resp_len;
2927 int rv = 0;
2928
2929 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2930 if (!resp)
2931 return -ENOMEM;
2932
2933 /*
2934 * Do a Get Device ID command, since it comes back with some
2935 * useful info.
2936 */
2937 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2938 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2939 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2940
2941 rv = wait_for_msg_done(smi_info);
2942 if (rv)
2943 goto out;
2944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2946 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Corey Minyardd8c98612007-10-18 03:07:11 -07002948 /* Check and record info from the get device id, in case we need it. */
2949 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Corey Minyard76824852016-04-26 22:40:15 -05002951out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 kfree(resp);
2953 return rv;
2954}
2955
Corey Minyardd0882892015-08-18 14:29:10 -05002956static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002957{
2958 unsigned char msg[3];
2959 unsigned char *resp;
2960 unsigned long resp_len;
2961 int rv;
2962
2963 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05002964 if (!resp)
2965 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002966
2967 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2968 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2969 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2970
2971 rv = wait_for_msg_done(smi_info);
2972 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002973 dev_warn(smi_info->dev,
2974 "Error getting response from get global enables command: %d\n",
2975 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002976 goto out;
2977 }
2978
2979 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2980 resp, IPMI_MAX_MSG_LENGTH);
2981
2982 if (resp_len < 4 ||
2983 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2984 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2985 resp[2] != 0) {
Corey Minyardd0882892015-08-18 14:29:10 -05002986 dev_warn(smi_info->dev,
2987 "Invalid return from get global enables command: %ld %x %x %x\n",
2988 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002989 rv = -EINVAL;
2990 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05002991 } else {
2992 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002993 }
2994
Corey Minyardd0882892015-08-18 14:29:10 -05002995out:
2996 kfree(resp);
2997 return rv;
2998}
2999
3000/*
3001 * Returns 1 if it gets an error from the command.
3002 */
3003static int set_global_enables(struct smi_info *smi_info, u8 enables)
3004{
3005 unsigned char msg[3];
3006 unsigned char *resp;
3007 unsigned long resp_len;
3008 int rv;
3009
3010 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3011 if (!resp)
3012 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003013
3014 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3015 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05003016 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003017 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3018
3019 rv = wait_for_msg_done(smi_info);
3020 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05003021 dev_warn(smi_info->dev,
3022 "Error getting response from set global enables command: %d\n",
3023 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003024 goto out;
3025 }
3026
3027 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3028 resp, IPMI_MAX_MSG_LENGTH);
3029
3030 if (resp_len < 3 ||
3031 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3032 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardd0882892015-08-18 14:29:10 -05003033 dev_warn(smi_info->dev,
3034 "Invalid return from set global enables command: %ld %x %x\n",
3035 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003036 rv = -EINVAL;
3037 goto out;
3038 }
3039
Corey Minyardd0882892015-08-18 14:29:10 -05003040 if (resp[2] != 0)
3041 rv = 1;
3042
3043out:
3044 kfree(resp);
3045 return rv;
3046}
3047
3048/*
3049 * Some BMCs do not support clearing the receive irq bit in the global
3050 * enables (even if they don't support interrupts on the BMC). Check
3051 * for this and handle it properly.
3052 */
3053static void check_clr_rcv_irq(struct smi_info *smi_info)
3054{
3055 u8 enables = 0;
3056 int rv;
3057
3058 rv = get_global_enables(smi_info, &enables);
3059 if (!rv) {
3060 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
3061 /* Already clear, should work ok. */
3062 return;
3063
3064 enables &= ~IPMI_BMC_RCV_MSG_INTR;
3065 rv = set_global_enables(smi_info, enables);
3066 }
3067
3068 if (rv < 0) {
3069 dev_err(smi_info->dev,
3070 "Cannot check clearing the rcv irq: %d\n", rv);
3071 return;
3072 }
3073
3074 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003075 /*
3076 * An error when setting the event buffer bit means
3077 * clearing the bit is not supported.
3078 */
Corey Minyardd0882892015-08-18 14:29:10 -05003079 dev_warn(smi_info->dev,
3080 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3081 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003082 }
Corey Minyardd0882892015-08-18 14:29:10 -05003083}
3084
3085/*
3086 * Some BMCs do not support setting the interrupt bits in the global
3087 * enables even if they support interrupts. Clearly bad, but we can
3088 * compensate.
3089 */
3090static void check_set_rcv_irq(struct smi_info *smi_info)
3091{
3092 u8 enables = 0;
3093 int rv;
3094
3095 if (!smi_info->irq)
3096 return;
3097
3098 rv = get_global_enables(smi_info, &enables);
3099 if (!rv) {
3100 enables |= IPMI_BMC_RCV_MSG_INTR;
3101 rv = set_global_enables(smi_info, enables);
3102 }
3103
3104 if (rv < 0) {
3105 dev_err(smi_info->dev,
3106 "Cannot check setting the rcv irq: %d\n", rv);
3107 return;
3108 }
3109
3110 if (rv) {
3111 /*
3112 * An error when setting the event buffer bit means
3113 * setting the bit is not supported.
3114 */
3115 dev_warn(smi_info->dev,
3116 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3117 smi_info->cannot_disable_irq = true;
3118 smi_info->irq_enable_broken = true;
3119 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003120}
3121
Corey Minyard40112ae2009-04-21 12:24:03 -07003122static int try_enable_event_buffer(struct smi_info *smi_info)
3123{
3124 unsigned char msg[3];
3125 unsigned char *resp;
3126 unsigned long resp_len;
3127 int rv = 0;
3128
3129 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3130 if (!resp)
3131 return -ENOMEM;
3132
3133 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3134 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3135 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3136
3137 rv = wait_for_msg_done(smi_info);
3138 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003139 pr_warn(PFX "Error getting response from get global enables command, the event buffer is not enabled.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003140 goto out;
3141 }
3142
3143 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3144 resp, IPMI_MAX_MSG_LENGTH);
3145
3146 if (resp_len < 4 ||
3147 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3148 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3149 resp[2] != 0) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003150 pr_warn(PFX "Invalid return from get global enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003151 rv = -EINVAL;
3152 goto out;
3153 }
3154
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003155 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003156 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003157 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003158 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003159 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003160
3161 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3162 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3163 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3164 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3165
3166 rv = wait_for_msg_done(smi_info);
3167 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003168 pr_warn(PFX "Error getting response from set global, enables command, the event buffer is not enabled.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003169 goto out;
3170 }
3171
3172 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3173 resp, IPMI_MAX_MSG_LENGTH);
3174
3175 if (resp_len < 3 ||
3176 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3177 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003178 pr_warn(PFX "Invalid return from get global, enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003179 rv = -EINVAL;
3180 goto out;
3181 }
3182
3183 if (resp[2] != 0)
3184 /*
3185 * An error when setting the event buffer bit means
3186 * that the event buffer is not supported.
3187 */
3188 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003189 else
3190 smi_info->supports_event_msg_buff = true;
3191
Corey Minyard76824852016-04-26 22:40:15 -05003192out:
Corey Minyard40112ae2009-04-21 12:24:03 -07003193 kfree(resp);
3194 return rv;
3195}
3196
Alexey Dobriyan07412732011-05-26 16:25:55 -07003197static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003199 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003201 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3202
Joe Perches5e33cd02015-02-22 10:21:07 -08003203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204}
3205
Alexey Dobriyan07412732011-05-26 16:25:55 -07003206static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
Al Virod9dda782013-03-31 18:16:14 -04003208 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Alexey Dobriyan07412732011-05-26 16:25:55 -07003211static const struct file_operations smi_type_proc_ops = {
3212 .open = smi_type_proc_open,
3213 .read = seq_read,
3214 .llseek = seq_lseek,
3215 .release = single_release,
3216};
3217
3218static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3219{
3220 struct smi_info *smi = m->private;
3221
3222 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003223 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003224 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003225 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003226 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003227 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003228 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003229 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003230 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003231 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003232 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003233 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003234 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003235 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003236 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003237 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003238 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003239 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003240 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003241 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003242 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003243 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003244 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003245 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003246 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003247}
3248
Alexey Dobriyan07412732011-05-26 16:25:55 -07003249static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003250{
Al Virod9dda782013-03-31 18:16:14 -04003251 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003252}
Corey Minyardb361e272006-12-06 20:41:07 -08003253
Alexey Dobriyan07412732011-05-26 16:25:55 -07003254static const struct file_operations smi_si_stats_proc_ops = {
3255 .open = smi_si_stats_proc_open,
3256 .read = seq_read,
3257 .llseek = seq_lseek,
3258 .release = single_release,
3259};
3260
3261static int smi_params_proc_show(struct seq_file *m, void *v)
3262{
3263 struct smi_info *smi = m->private;
3264
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003265 seq_printf(m,
3266 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3267 si_to_str[smi->si_type],
3268 addr_space_to_str[smi->io.addr_type],
3269 smi->io.addr_data,
3270 smi->io.regspacing,
3271 smi->io.regsize,
3272 smi->io.regshift,
3273 smi->irq,
3274 smi->slave_addr);
3275
Joe Perches5e33cd02015-02-22 10:21:07 -08003276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
Alexey Dobriyan07412732011-05-26 16:25:55 -07003279static int smi_params_proc_open(struct inode *inode, struct file *file)
3280{
Al Virod9dda782013-03-31 18:16:14 -04003281 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003282}
3283
3284static const struct file_operations smi_params_proc_ops = {
3285 .open = smi_params_proc_open,
3286 .read = seq_read,
3287 .llseek = seq_lseek,
3288 .release = single_release,
3289};
3290
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003291/*
3292 * oem_data_avail_to_receive_msg_avail
3293 * @info - smi_info structure with msg_flags set
3294 *
3295 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3296 * Returns 1 indicating need to re-run handle_flags().
3297 */
3298static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3299{
Corey Minyarde8b33612005-09-06 15:18:45 -07003300 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003301 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003302 return 1;
3303}
3304
3305/*
3306 * setup_dell_poweredge_oem_data_handler
3307 * @info - smi_info.device_id must be populated
3308 *
3309 * Systems that match, but have firmware version < 1.40 may assert
3310 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3311 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3312 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3313 * as RECEIVE_MSG_AVAIL instead.
3314 *
3315 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3316 * assert the OEM[012] bits, and if it did, the driver would have to
3317 * change to handle that properly, we don't actually check for the
3318 * firmware version.
3319 * Device ID = 0x20 BMC on PowerEdge 8G servers
3320 * Device Revision = 0x80
3321 * Firmware Revision1 = 0x01 BMC version 1.40
3322 * Firmware Revision2 = 0x40 BCD encoded
3323 * IPMI Version = 0x51 IPMI 1.5
3324 * Manufacturer ID = A2 02 00 Dell IANA
3325 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003326 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3327 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3328 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003329 */
3330#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3331#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3332#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003333#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003334static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3335{
3336 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003337 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003338 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3339 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003340 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003341 smi_info->oem_data_avail_handler =
3342 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003343 } else if (ipmi_version_major(id) < 1 ||
3344 (ipmi_version_major(id) == 1 &&
3345 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003346 smi_info->oem_data_avail_handler =
3347 oem_data_avail_to_receive_msg_avail;
3348 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003349 }
3350}
3351
Corey Minyardea940272005-11-07 00:59:59 -08003352#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3353static void return_hosed_msg_badsize(struct smi_info *smi_info)
3354{
3355 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3356
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003357 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003358 msg->rsp[0] = msg->data[0] | 4;
3359 msg->rsp[1] = msg->data[1];
3360 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3361 msg->rsp_size = 3;
3362 smi_info->curr_msg = NULL;
3363 deliver_recv_msg(smi_info, msg);
3364}
3365
3366/*
3367 * dell_poweredge_bt_xaction_handler
3368 * @info - smi_info.device_id must be populated
3369 *
3370 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3371 * not respond to a Get SDR command if the length of the data
3372 * requested is exactly 0x3A, which leads to command timeouts and no
3373 * data returned. This intercepts such commands, and causes userspace
3374 * callers to try again with a different-sized buffer, which succeeds.
3375 */
3376
3377#define STORAGE_NETFN 0x0A
3378#define STORAGE_CMD_GET_SDR 0x23
3379static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3380 unsigned long unused,
3381 void *in)
3382{
3383 struct smi_info *smi_info = in;
3384 unsigned char *data = smi_info->curr_msg->data;
3385 unsigned int size = smi_info->curr_msg->data_size;
3386 if (size >= 8 &&
3387 (data[0]>>2) == STORAGE_NETFN &&
3388 data[1] == STORAGE_CMD_GET_SDR &&
3389 data[7] == 0x3A) {
3390 return_hosed_msg_badsize(smi_info);
3391 return NOTIFY_STOP;
3392 }
3393 return NOTIFY_DONE;
3394}
3395
3396static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3397 .notifier_call = dell_poweredge_bt_xaction_handler,
3398};
3399
3400/*
3401 * setup_dell_poweredge_bt_xaction_handler
3402 * @info - smi_info.device_id must be filled in already
3403 *
3404 * Fills in smi_info.device_id.start_transaction_pre_hook
3405 * when we know what function to use there.
3406 */
3407static void
3408setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3409{
3410 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003411 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003412 smi_info->si_type == SI_BT)
3413 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3414}
3415
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003416/*
3417 * setup_oem_data_handler
3418 * @info - smi_info.device_id must be filled in already
3419 *
3420 * Fills in smi_info.device_id.oem_data_available_handler
3421 * when we know what function to use there.
3422 */
3423
3424static void setup_oem_data_handler(struct smi_info *smi_info)
3425{
3426 setup_dell_poweredge_oem_data_handler(smi_info);
3427}
3428
Corey Minyardea940272005-11-07 00:59:59 -08003429static void setup_xaction_handlers(struct smi_info *smi_info)
3430{
3431 setup_dell_poweredge_bt_xaction_handler(smi_info);
3432}
3433
Corey Minyardd0882892015-08-18 14:29:10 -05003434static void check_for_broken_irqs(struct smi_info *smi_info)
3435{
3436 check_clr_rcv_irq(smi_info);
3437 check_set_rcv_irq(smi_info);
3438}
3439
Corey Minyarda9a2c442005-11-07 01:00:03 -08003440static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3441{
Corey Minyardb874b982014-11-06 17:01:59 -06003442 if (smi_info->thread != NULL)
3443 kthread_stop(smi_info->thread);
3444 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003445 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003446}
3447
Corey Minyardb0defcd2006-03-26 01:37:20 -08003448static int is_new_interface(struct smi_info *info)
3449{
3450 struct smi_info *e;
3451
3452 list_for_each_entry(e, &smi_infos, link) {
3453 if (e->io.addr_type != info->io.addr_type)
3454 continue;
Corey Minyard94671712016-11-07 12:07:09 -06003455 if (e->io.addr_data == info->io.addr_data) {
3456 /*
3457 * This is a cheap hack, ACPI doesn't have a defined
3458 * slave address but SMBIOS does. Pick it up from
3459 * any source that has it available.
3460 */
3461 if (info->slave_addr && !e->slave_addr)
3462 e->slave_addr = info->slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003463 return 0;
Corey Minyard94671712016-11-07 12:07:09 -06003464 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003465 }
3466
3467 return 1;
3468}
3469
Matthew Garrett2407d772010-05-26 14:43:46 -07003470static int add_smi(struct smi_info *new_smi)
3471{
3472 int rv = 0;
3473
Matthew Garrett2407d772010-05-26 14:43:46 -07003474 mutex_lock(&smi_infos_lock);
3475 if (!is_new_interface(new_smi)) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003476 pr_info(PFX "%s-specified %s state machine: duplicate\n",
3477 ipmi_addr_src_to_str(new_smi->addr_source),
3478 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003479 rv = -EBUSY;
3480 goto out_err;
3481 }
3482
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003483 pr_info(PFX "Adding %s-specified %s state machine\n",
3484 ipmi_addr_src_to_str(new_smi->addr_source),
3485 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003486
3487 /* So we know not to free it unless we have allocated one. */
3488 new_smi->intf = NULL;
3489 new_smi->si_sm = NULL;
3490 new_smi->handlers = NULL;
3491
3492 list_add_tail(&new_smi->link, &smi_infos);
3493
3494out_err:
3495 mutex_unlock(&smi_infos_lock);
3496 return rv;
3497}
3498
Tony Camuso3f724c42017-04-10 12:22:13 -04003499/*
3500 * Try to start up an interface. Must be called with smi_infos_lock
3501 * held, primarily to keep smi_num consistent, we only one to do these
3502 * one at a time.
3503 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08003504static int try_smi_init(struct smi_info *new_smi)
3505{
Matthew Garrett2407d772010-05-26 14:43:46 -07003506 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003507 int i;
Corey Minyard1abf71e2016-11-07 07:37:06 -07003508 char *init_name = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003509
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003510 pr_info(PFX "Trying %s-specified %s state machine at %s address 0x%lx, slave address 0x%x, irq %d\n",
3511 ipmi_addr_src_to_str(new_smi->addr_source),
3512 si_to_str[new_smi->si_type],
3513 addr_space_to_str[new_smi->io.addr_type],
3514 new_smi->io.addr_data,
3515 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003516
Corey Minyardb0defcd2006-03-26 01:37:20 -08003517 switch (new_smi->si_type) {
3518 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003520 break;
3521
3522 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003524 break;
3525
3526 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003528 break;
3529
3530 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 /* No support for anything else yet. */
3532 rv = -EIO;
3533 goto out_err;
3534 }
3535
Tony Camuso3f724c42017-04-10 12:22:13 -04003536 new_smi->intf_num = smi_num;
3537
Corey Minyard1abf71e2016-11-07 07:37:06 -07003538 /* Do this early so it's available for logs. */
3539 if (!new_smi->dev) {
Tony Camuso3f724c42017-04-10 12:22:13 -04003540 init_name = kasprintf(GFP_KERNEL, "ipmi_si.%d",
3541 new_smi->intf_num);
Corey Minyard1abf71e2016-11-07 07:37:06 -07003542
3543 /*
3544 * If we don't already have a device from something
3545 * else (like PCI), then register a new one.
3546 */
3547 new_smi->pdev = platform_device_alloc("ipmi_si",
3548 new_smi->intf_num);
3549 if (!new_smi->pdev) {
3550 pr_err(PFX "Unable to allocate platform device\n");
3551 goto out_err;
3552 }
3553 new_smi->dev = &new_smi->pdev->dev;
3554 new_smi->dev->driver = &ipmi_driver.driver;
3555 /* Nulled by device_add() */
3556 new_smi->dev->init_name = init_name;
3557 }
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 /* Allocate the state machine's data and initialize it. */
3560 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003561 if (!new_smi->si_sm) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003562 pr_err(PFX "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 rv = -ENOMEM;
3564 goto out_err;
3565 }
3566 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3567 &new_smi->io);
3568
3569 /* Now that we know the I/O size, we can set up the I/O. */
3570 rv = new_smi->io_setup(new_smi);
3571 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003572 dev_err(new_smi->dev, "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 goto out_err;
3574 }
3575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 /* Do low-level detection first. */
3577 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003578 if (new_smi->addr_source)
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003579 dev_err(new_smi->dev, "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 rv = -ENODEV;
3581 goto out_err;
3582 }
3583
Corey Minyardc305e3d2008-04-29 01:01:10 -07003584 /*
3585 * Attempt a get device id command. If it fails, we probably
3586 * don't have a BMC here.
3587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003589 if (rv) {
3590 if (new_smi->addr_source)
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003591 dev_err(new_smi->dev, "There appears to be no BMC at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003595 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003596 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05003597 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003598
Corey Minyardb874b982014-11-06 17:01:59 -06003599 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 new_smi->curr_msg = NULL;
3601 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003602 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003603 for (i = 0; i < SI_NUM_STATS; i++)
3604 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Corey Minyard7aefac22014-04-14 09:46:56 -05003606 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003607 atomic_set(&new_smi->need_watch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Corey Minyard40112ae2009-04-21 12:24:03 -07003609 rv = try_enable_event_buffer(new_smi);
3610 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003611 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003612
Corey Minyardc305e3d2008-04-29 01:01:10 -07003613 /*
3614 * Start clearing the flags before we enable interrupts or the
3615 * timer to avoid racing with the timer.
3616 */
Corey Minyard0cfec912015-09-05 17:44:13 -05003617 start_clear_flags(new_smi, false);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003618
3619 /*
3620 * IRQ is defined to be set when non-zero. req_events will
3621 * cause a global flags check that will enable interrupts.
3622 */
3623 if (new_smi->irq) {
3624 new_smi->interrupt_disabled = false;
3625 atomic_set(&new_smi->req_events, 1);
3626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Corey Minyard1abf71e2016-11-07 07:37:06 -07003628 if (new_smi->pdev) {
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003629 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003630 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003631 dev_err(new_smi->dev,
3632 "Unable to register system interface device: %d\n",
3633 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003634 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003635 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003636 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003637 }
3638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 rv = ipmi_register_smi(&handlers,
3640 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003641 &new_smi->device_id,
3642 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003643 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003645 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3646 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 goto out_err_stop_timer;
3648 }
3649
3650 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003651 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003652 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003654 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 goto out_err_stop_timer;
3656 }
3657
3658 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003659 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003660 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003662 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 goto out_err_stop_timer;
3664 }
3665
Corey Minyardb361e272006-12-06 20:41:07 -08003666 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003667 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003668 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003669 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003670 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003671 goto out_err_stop_timer;
3672 }
3673
Tony Camuso3f724c42017-04-10 12:22:13 -04003674 /* Don't increment till we know we have succeeded. */
3675 smi_num++;
3676
Myron Stowe279fbd02010-05-26 14:43:52 -07003677 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3678 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Corey Minyard1abf71e2016-11-07 07:37:06 -07003680 WARN_ON(new_smi->dev->init_name != NULL);
3681 kfree(init_name);
3682
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 return 0;
3684
Corey Minyard76824852016-04-26 22:40:15 -05003685out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003686 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Corey Minyard76824852016-04-26 22:40:15 -05003688out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003689 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
Matthew Garrett2407d772010-05-26 14:43:46 -07003691 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003692 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003693 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003694 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003695 }
3696
3697 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003698 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003699 new_smi->irq_cleanup = NULL;
3700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Corey Minyardc305e3d2008-04-29 01:01:10 -07003702 /*
3703 * Wait until we know that we are out of any interrupt
3704 * handlers might have been running before we freed the
3705 * interrupt.
3706 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003707 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709 if (new_smi->si_sm) {
3710 if (new_smi->handlers)
3711 new_smi->handlers->cleanup(new_smi->si_sm);
3712 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003713 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003715 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003716 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003717 new_smi->addr_source_cleanup = NULL;
3718 }
3719 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003720 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003721 new_smi->io_cleanup = NULL;
3722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Matthew Garrett2407d772010-05-26 14:43:46 -07003724 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003725 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003726 new_smi->dev_registered = false;
Corey Minyard1abf71e2016-11-07 07:37:06 -07003727 new_smi->pdev = NULL;
3728 } else if (new_smi->pdev) {
3729 platform_device_put(new_smi->pdev);
3730 new_smi->pdev = NULL;
Matthew Garrett2407d772010-05-26 14:43:46 -07003731 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003732
Corey Minyard1abf71e2016-11-07 07:37:06 -07003733 kfree(init_name);
3734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 return rv;
3736}
3737
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003738static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 int i;
3741 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003742 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003743 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003744 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
3746 if (initialized)
3747 return 0;
3748 initialized = 1;
3749
Corey Minyardf2afae42013-02-27 17:05:13 -08003750 if (si_tryplatform) {
3751 rv = platform_driver_register(&ipmi_driver);
3752 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003753 pr_err(PFX "Unable to register driver: %d\n", rv);
Corey Minyardf2afae42013-02-27 17:05:13 -08003754 return rv;
3755 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003756 }
3757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 /* Parse out the si_type string into its components. */
3759 str = si_type_str;
3760 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003761 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 si_type[i] = str;
3763 str = strchr(str, ',');
3764 if (str) {
3765 *str = '\0';
3766 str++;
3767 } else {
3768 break;
3769 }
3770 }
3771 }
3772
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003773 pr_info("IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003775 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06003776 if (!hardcode_find_bmc())
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003777 return 0;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07003778
Corey Minyardb0defcd2006-03-26 01:37:20 -08003779#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003780 if (si_trypci) {
3781 rv = pci_register_driver(&ipmi_pci_driver);
3782 if (rv)
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003783 pr_err(PFX "Unable to register PCI driver: %d\n", rv);
Corey Minyardf2afae42013-02-27 17:05:13 -08003784 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 Garrettd8cc52672010-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 Garrettd8cc52672010-05-26 14:43:46 -07003815 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003816 type = e->addr_source;
Matthew Garrettd8cc52672010-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 Garrettd8cc52672010-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 Garrettd8cc52672010-05-26 14:43:46 -07003831 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003832 type = e->addr_source;
Matthew Garrettd8cc52672010-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();
Corey Minyardbb2a08c2016-11-07 11:27:18 -06003845 pr_warn(PFX "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003847 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003848 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852module_init(init_ipmi_si);
3853
Corey Minyardb361e272006-12-06 20:41:07 -08003854static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855{
Matthew Garrett2407d772010-05-26 14:43:46 -07003856 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Corey Minyardb0defcd2006-03-26 01:37:20 -08003858 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 return;
3860
Corey Minyardb874b982014-11-06 17:01:59 -06003861 if (to_clean->intf) {
3862 ipmi_smi_t intf = to_clean->intf;
3863
3864 to_clean->intf = NULL;
3865 rv = ipmi_unregister_smi(intf);
3866 if (rv) {
3867 pr_err(PFX "Unable to unregister device: errno=%d\n",
3868 rv);
3869 }
3870 }
3871
Takao Indoh567eded2014-10-06 14:17:53 -05003872 if (to_clean->dev)
3873 dev_set_drvdata(to_clean->dev, NULL);
3874
Corey Minyardb0defcd2006-03-26 01:37:20 -08003875 list_del(&to_clean->link);
3876
Corey Minyardc305e3d2008-04-29 01:01:10 -07003877 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003878 * Make sure that interrupts, the timer and the thread are
3879 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003880 */
Corey Minyardb874b982014-11-06 17:01:59 -06003881 if (to_clean->irq_cleanup)
3882 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003883 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Corey Minyardc305e3d2008-04-29 01:01:10 -07003885 /*
3886 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003887 * in the BMC. Note that timers and CPU interrupts are off,
3888 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003889 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003890 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003891 poll(to_clean);
3892 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003893 }
Corey Minyard0cfec912015-09-05 17:44:13 -05003894 disable_si_irq(to_clean, false);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003895 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3896 poll(to_clean);
3897 schedule_timeout_uninterruptible(1);
3898 }
3899
Matthew Garrett2407d772010-05-26 14:43:46 -07003900 if (to_clean->handlers)
3901 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 kfree(to_clean->si_sm);
3904
Corey Minyardb0defcd2006-03-26 01:37:20 -08003905 if (to_clean->addr_source_cleanup)
3906 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003907 if (to_clean->io_cleanup)
3908 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003909
3910 if (to_clean->dev_registered)
3911 platform_device_unregister(to_clean->pdev);
3912
3913 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914}
3915
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003916static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003918 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Corey Minyardb0defcd2006-03-26 01:37:20 -08003920 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 return;
3922
Corey Minyardb0defcd2006-03-26 01:37:20 -08003923#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003924 if (pci_registered)
3925 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003926#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003927#ifdef CONFIG_PARISC
3928 if (parisc_registered)
3929 unregister_parisc_driver(&ipmi_parisc_driver);
3930#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003931
Rob Herringa1e9c9dd2011-02-23 15:37:59 -06003932 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003933
Corey Minyardd6dfd132006-03-31 02:30:41 -08003934 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003935 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3936 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003937 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938}
3939module_exit(cleanup_ipmi_si);
3940
3941MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003942MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003943MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3944 " system interfaces.");