blob: 6768cb2dd740e692aeac2480ce8841be9e24ae2b [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>
Corey Minyardea940272005-11-07 00:59:59 -080052#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080053#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080054#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/interrupt.h>
57#include <linux/rcupdate.h>
Zhao Yakui16f42322010-12-08 10:10:16 +080058#include <linux/ipmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/ipmi_smi.h>
Corey Minyard1e89a492017-09-12 13:52:13 -050060#include "ipmi_si.h"
Corey Minyardb361e272006-12-06 20:41:07 -080061#include <linux/string.h>
62#include <linux/ctype.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070063
Corey Minyardb361e272006-12-06 20:41:07 -080064#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* Measure times between events in the driver. */
67#undef DEBUG_TIMING
68
69/* Call every 10 ms. */
70#define SI_TIMEOUT_TIME_USEC 10000
71#define SI_USEC_PER_JIFFY (1000000/HZ)
72#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
73#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070074 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76enum si_intf_state {
77 SI_NORMAL,
78 SI_GETTING_FLAGS,
79 SI_GETTING_EVENTS,
80 SI_CLEARING_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 SI_GETTING_MESSAGES,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -060082 SI_CHECKING_ENABLES,
83 SI_SETTING_ENABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* FIXME - add watchdog stuff. */
85};
86
Corey Minyard9dbf68f2005-05-01 08:59:11 -070087/* Some BT-specific defines we need here. */
88#define IPMI_BT_INTMASK_REG 2
89#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
90#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
91
Corey Minyard95e300c2017-09-18 12:38:17 -050092static const char * const si_to_str[] = { "invalid", "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Corey Minyardbb398a42017-09-12 21:37:02 -050094static int initialized;
95
Corey Minyard64959e22008-04-29 01:01:07 -070096/*
97 * Indexes into stats[] in smi_info below.
98 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -070099enum si_stat_indexes {
100 /*
101 * Number of times the driver requested a timer while an operation
102 * was in progress.
103 */
104 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700105
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700106 /*
107 * Number of times the driver requested a timer while nothing was in
108 * progress.
109 */
110 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700111
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700112 /* Number of times the interface was idle while being polled. */
113 SI_STAT_idles,
114
115 /* Number of interrupts the driver handled. */
116 SI_STAT_interrupts,
117
118 /* Number of time the driver got an ATTN from the hardware. */
119 SI_STAT_attentions,
120
121 /* Number of times the driver requested flags from the hardware. */
122 SI_STAT_flag_fetches,
123
124 /* Number of times the hardware didn't follow the state machine. */
125 SI_STAT_hosed_count,
126
127 /* Number of completed messages. */
128 SI_STAT_complete_transactions,
129
130 /* Number of IPMI events received from the hardware. */
131 SI_STAT_events,
132
133 /* Number of watchdog pretimeouts. */
134 SI_STAT_watchdog_pretimeouts,
135
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400136 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700137 SI_STAT_incoming_messages,
138
139
140 /* This *must* remain last, add new values above this. */
141 SI_NUM_STATS
142};
Corey Minyard64959e22008-04-29 01:01:07 -0700143
Corey Minyardc305e3d2008-04-29 01:01:10 -0700144struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800145 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 ipmi_smi_t intf;
147 struct si_sm_data *si_sm;
Corey Minyard81d02b72015-06-13 10:34:25 -0500148 const struct si_sm_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600150 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct ipmi_smi_msg *curr_msg;
152 enum si_intf_state si_state;
153
Corey Minyardc305e3d2008-04-29 01:01:10 -0700154 /*
155 * Used to handle the various types of I/O that can occur with
156 * IPMI
157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct si_sm_io io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Corey Minyardc305e3d2008-04-29 01:01:10 -0700160 /*
161 * Per-OEM handler, called from handle_flags(). Returns 1
162 * when handle_flags() needs to be re-run or 0 indicating it
163 * set si_state itself.
164 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700165 int (*oem_data_avail_handler)(struct smi_info *smi_info);
166
Corey Minyardc305e3d2008-04-29 01:01:10 -0700167 /*
168 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
169 * is set to hold the flags until we are done handling everything
170 * from the flags.
171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#define RECEIVE_MSG_AVAIL 0x01
173#define EVENT_MSG_BUFFER_FULL 0x02
174#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700175#define OEM0_DATA_AVAIL 0x20
176#define OEM1_DATA_AVAIL 0x40
177#define OEM2_DATA_AVAIL 0x80
178#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700179 OEM1_DATA_AVAIL | \
180 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned char msg_flags;
182
Corey Minyard40112ae2009-04-21 12:24:03 -0700183 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500184 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700185
Corey Minyardc305e3d2008-04-29 01:01:10 -0700186 /*
187 * If set to true, this will request events the next time the
188 * state machine is idle.
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 atomic_t req_events;
191
Corey Minyardc305e3d2008-04-29 01:01:10 -0700192 /*
193 * If true, run the state machine to completion on every send
194 * call. Generally used after a panic to make sure stuff goes
195 * out.
196 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500197 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* The timer for this si. */
200 struct timer_list si_timer;
201
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000202 /* This flag is set, if the timer can be set */
203 bool timer_can_start;
204
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500205 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
206 bool timer_running;
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* The time (in jiffies) the last timeout occurred at. */
209 unsigned long last_timeout_jiffies;
210
Corey Minyard89986492014-04-14 09:46:54 -0500211 /* Are we waiting for the events, pretimeouts, received msgs? */
212 atomic_t need_watch;
213
Corey Minyardc305e3d2008-04-29 01:01:10 -0700214 /*
215 * The driver will disable interrupts when it gets into a
216 * situation where it cannot handle messages due to lack of
217 * memory. Once that situation clears up, it will re-enable
218 * interrupts.
219 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500220 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600222 /*
223 * Does the BMC support events?
224 */
225 bool supports_event_msg_buff;
226
Corey Minyarda8df1502014-11-19 11:47:17 -0600227 /*
Corey Minyardd0882892015-08-18 14:29:10 -0500228 * Can we disable interrupts the global enables receive irq
229 * bit? There are currently two forms of brokenness, some
230 * systems cannot disable the bit (which is technically within
231 * the spec but a bad idea) and some systems have the bit
232 * forced to zero even though interrupts work (which is
233 * clearly outside the spec). The next bool tells which form
234 * of brokenness is present.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500235 */
Corey Minyardd0882892015-08-18 14:29:10 -0500236 bool cannot_disable_irq;
237
238 /*
239 * Some systems are broken and cannot set the irq enable
240 * bit, even if they support interrupts.
241 */
242 bool irq_enable_broken;
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500243
244 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600245 * Did we get an attention that we did not handle?
246 */
247 bool got_attn;
248
Corey Minyard50c812b2006-03-26 01:37:21 -0800249 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700250 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Corey Minyard910840f2017-09-12 14:41:56 -0500252 /* Default driver model device. */
Corey Minyard50c812b2006-03-26 01:37:21 -0800253 struct platform_device *pdev;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700256 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800257
Corey Minyardc305e3d2008-04-29 01:01:10 -0700258 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800259
260 struct list_head link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Corey Minyard64959e22008-04-29 01:01:07 -0700263#define smi_inc_stat(smi, stat) \
264 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
265#define smi_get_stat(smi, stat) \
266 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
267
Corey Minyard7a453302017-09-12 22:46:29 -0500268#define IPMI_MAX_INTFS 4
269static int force_kipmid[IPMI_MAX_INTFS];
Corey Minyarda51f4a82006-10-03 01:13:59 -0700270static int num_force_kipmid;
271
Corey Minyard7a453302017-09-12 22:46:29 -0500272static unsigned int kipmid_max_busy_us[IPMI_MAX_INTFS];
Martin Wilckae74e822010-03-10 15:23:06 -0800273static int num_max_busy_us;
274
Corey Minyard7aefac22014-04-14 09:46:56 -0500275static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800276
Corey Minyardb0defcd2006-03-26 01:37:20 -0800277static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800278static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600279static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800280
John Stultzf93aae92015-01-07 14:24:28 -0800281#ifdef DEBUG_TIMING
282void debug_timestamp(char *msg)
283{
John Stultz48862ea22015-01-07 14:24:29 -0800284 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800285
John Stultz48862ea22015-01-07 14:24:29 -0800286 getnstimeofday64(&t);
287 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800288}
289#else
290#define debug_timestamp(x)
291#endif
292
Alan Sterne041c682006-03-27 01:16:30 -0800293static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700294static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800295{
Alan Sterne041c682006-03-27 01:16:30 -0800296 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299static void deliver_recv_msg(struct smi_info *smi_info,
300 struct ipmi_smi_msg *msg)
301{
Corey Minyard7adf5792012-03-28 14:42:49 -0700302 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600303 if (smi_info->intf)
304 ipmi_smi_msg_received(smi_info->intf, msg);
305 else
306 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800309static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct ipmi_smi_msg *msg = smi_info->curr_msg;
312
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800313 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
314 cCode = IPMI_ERR_UNSPECIFIED;
315 /* else use it as is */
316
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300317 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 msg->rsp[0] = msg->data[0] | 4;
319 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800320 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 msg->rsp_size = 3;
322
323 smi_info->curr_msg = NULL;
324 deliver_recv_msg(smi_info, msg);
325}
326
327static enum si_sm_result start_next_msg(struct smi_info *smi_info)
328{
329 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Corey Minyardb874b982014-11-06 17:01:59 -0600331 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 smi_info->curr_msg = NULL;
333 rv = SI_SM_IDLE;
334 } else {
335 int err;
336
Corey Minyardb874b982014-11-06 17:01:59 -0600337 smi_info->curr_msg = smi_info->waiting_msg;
338 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800339 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800340 err = atomic_notifier_call_chain(&xaction_notifier_list,
341 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800342 if (err & NOTIFY_STOP_MASK) {
343 rv = SI_SM_CALL_WITHOUT_DELAY;
344 goto out;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 err = smi_info->handlers->start_transaction(
347 smi_info->si_sm,
348 smi_info->curr_msg->data,
349 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700350 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800351 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 rv = SI_SM_CALL_WITHOUT_DELAY;
354 }
Corey Minyard76824852016-04-26 22:40:15 -0500355out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return rv;
357}
358
Corey Minyard0cfec912015-09-05 17:44:13 -0500359static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
360{
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000361 if (!smi_info->timer_can_start)
362 return;
Corey Minyard0cfec912015-09-05 17:44:13 -0500363 smi_info->last_timeout_jiffies = jiffies;
364 mod_timer(&smi_info->si_timer, new_val);
365 smi_info->timer_running = true;
366}
367
368/*
369 * Start a new message and (re)start the timer and thread.
370 */
371static void start_new_msg(struct smi_info *smi_info, unsigned char *msg,
372 unsigned int size)
373{
374 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
375
376 if (smi_info->thread)
377 wake_up_process(smi_info->thread);
378
379 smi_info->handlers->start_transaction(smi_info->si_sm, msg, size);
380}
381
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000382static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700383{
384 unsigned char msg[2];
385
386 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
387 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
388
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000389 start_new_msg(smi_info, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600390 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700391}
392
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000393static void start_clear_flags(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 unsigned char msg[3];
396
397 /* Make sure the watchdog pre-timeout flag is not set at startup. */
398 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
399 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
400 msg[2] = WDT_PRE_TIMEOUT_INT;
401
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000402 start_new_msg(smi_info, msg, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 smi_info->si_state = SI_CLEARING_FLAGS;
404}
405
Corey Minyard968bf7c2014-11-06 19:06:00 -0600406static void start_getting_msg_queue(struct smi_info *smi_info)
407{
408 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
409 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
410 smi_info->curr_msg->data_size = 2;
411
Corey Minyard0cfec912015-09-05 17:44:13 -0500412 start_new_msg(smi_info, smi_info->curr_msg->data,
413 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600414 smi_info->si_state = SI_GETTING_MESSAGES;
415}
416
417static void start_getting_events(struct smi_info *smi_info)
418{
419 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
420 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
421 smi_info->curr_msg->data_size = 2;
422
Corey Minyard0cfec912015-09-05 17:44:13 -0500423 start_new_msg(smi_info, smi_info->curr_msg->data,
424 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600425 smi_info->si_state = SI_GETTING_EVENTS;
426}
427
Corey Minyardc305e3d2008-04-29 01:01:10 -0700428/*
429 * When we have a situtaion where we run out of memory and cannot
430 * allocate messages, we just leave them in the BMC and run the system
431 * polled until we can allocate some memory. Once we have some
432 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500433 *
434 * Note that we cannot just use disable_irq(), since the interrupt may
435 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700436 */
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000437static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Corey Minyard910840f2017-09-12 14:41:56 -0500439 if ((smi_info->io.irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500440 smi_info->interrupt_disabled = true;
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000441 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600442 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600444 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Corey Minyard968bf7c2014-11-06 19:06:00 -0600447static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Corey Minyard910840f2017-09-12 14:41:56 -0500449 if ((smi_info->io.irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500450 smi_info->interrupt_disabled = false;
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000451 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600452 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600454 return false;
455}
456
457/*
458 * Allocate a message. If unable to allocate, start the interrupt
459 * disable process and return NULL. If able to allocate but
460 * interrupts are disabled, free the message and return NULL after
461 * starting the interrupt enable process.
462 */
463static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
464{
465 struct ipmi_smi_msg *msg;
466
467 msg = ipmi_alloc_smi_msg();
468 if (!msg) {
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000469 if (!disable_si_irq(smi_info))
Corey Minyard968bf7c2014-11-06 19:06:00 -0600470 smi_info->si_state = SI_NORMAL;
471 } else if (enable_si_irq(smi_info)) {
472 ipmi_free_smi_msg(msg);
473 msg = NULL;
474 }
475 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478static void handle_flags(struct smi_info *smi_info)
479{
Corey Minyard76824852016-04-26 22:40:15 -0500480retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
482 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700483 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000485 start_clear_flags(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600487 if (smi_info->intf)
488 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
490 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600491 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
492 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Corey Minyard968bf7c2014-11-06 19:06:00 -0600495 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
497 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600498 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
499 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Corey Minyard968bf7c2014-11-06 19:06:00 -0600502 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700503 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700504 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700505 if (smi_info->oem_data_avail_handler(smi_info))
506 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700507 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600511/*
512 * Global enables we care about.
513 */
514#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
515 IPMI_BMC_EVT_MSG_INTR)
516
Corey Minyard95c97b52014-11-20 07:19:44 -0600517static u8 current_global_enables(struct smi_info *smi_info, u8 base,
518 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600519{
520 u8 enables = 0;
521
522 if (smi_info->supports_event_msg_buff)
523 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600524
Corey Minyard910840f2017-09-12 14:41:56 -0500525 if (((smi_info->io.irq && !smi_info->interrupt_disabled) ||
Corey Minyardd0882892015-08-18 14:29:10 -0500526 smi_info->cannot_disable_irq) &&
527 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600528 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600529
530 if (smi_info->supports_event_msg_buff &&
Corey Minyard910840f2017-09-12 14:41:56 -0500531 smi_info->io.irq && !smi_info->interrupt_disabled &&
Corey Minyardd0882892015-08-18 14:29:10 -0500532 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600533 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600534
Corey Minyard95c97b52014-11-20 07:19:44 -0600535 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
536
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600537 return enables;
538}
539
Corey Minyard95c97b52014-11-20 07:19:44 -0600540static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
541{
542 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
543
544 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
545
546 if ((bool)irqstate == irq_on)
547 return;
548
549 if (irq_on)
550 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
551 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
552 else
553 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static void handle_transaction_done(struct smi_info *smi_info)
557{
558 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
John Stultzf93aae92015-01-07 14:24:28 -0800560 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 switch (smi_info->si_state) {
562 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800563 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 break;
565
566 smi_info->curr_msg->rsp_size
567 = smi_info->handlers->get_result(
568 smi_info->si_sm,
569 smi_info->curr_msg->rsp,
570 IPMI_MAX_MSG_LENGTH);
571
Corey Minyardc305e3d2008-04-29 01:01:10 -0700572 /*
573 * Do this here becase deliver_recv_msg() releases the
574 * lock, and a new message can be put in during the
575 * time the lock is released.
576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 msg = smi_info->curr_msg;
578 smi_info->curr_msg = NULL;
579 deliver_recv_msg(smi_info, msg);
580 break;
581
582 case SI_GETTING_FLAGS:
583 {
584 unsigned char msg[4];
585 unsigned int len;
586
587 /* We got the flags from the SMI, now handle them. */
588 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
589 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700590 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 smi_info->si_state = SI_NORMAL;
592 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700593 /*
594 * Hmm, no flags. That's technically illegal, but
595 * don't use uninitialized data.
596 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 smi_info->si_state = SI_NORMAL;
598 } else {
599 smi_info->msg_flags = msg[3];
600 handle_flags(smi_info);
601 }
602 break;
603 }
604
605 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 {
607 unsigned char msg[3];
608
609 /* We cleared the flags. */
610 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
611 if (msg[2] != 0) {
612 /* Error clearing flags */
Corey Minyard910840f2017-09-12 14:41:56 -0500613 dev_warn(smi_info->io.dev,
Myron Stowe279fbd02010-05-26 14:43:52 -0700614 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600616 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
618 }
619
620 case SI_GETTING_EVENTS:
621 {
622 smi_info->curr_msg->rsp_size
623 = smi_info->handlers->get_result(
624 smi_info->si_sm,
625 smi_info->curr_msg->rsp,
626 IPMI_MAX_MSG_LENGTH);
627
Corey Minyardc305e3d2008-04-29 01:01:10 -0700628 /*
629 * Do this here becase deliver_recv_msg() releases the
630 * lock, and a new message can be put in during the
631 * time the lock is released.
632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 msg = smi_info->curr_msg;
634 smi_info->curr_msg = NULL;
635 if (msg->rsp[2] != 0) {
636 /* Error getting event, probably done. */
637 msg->done(msg);
638
639 /* Take off the event flag. */
640 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
641 handle_flags(smi_info);
642 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700643 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Corey Minyardc305e3d2008-04-29 01:01:10 -0700645 /*
646 * Do this before we deliver the message
647 * because delivering the message releases the
648 * lock and something else can mess with the
649 * state.
650 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 handle_flags(smi_info);
652
653 deliver_recv_msg(smi_info, msg);
654 }
655 break;
656 }
657
658 case SI_GETTING_MESSAGES:
659 {
660 smi_info->curr_msg->rsp_size
661 = smi_info->handlers->get_result(
662 smi_info->si_sm,
663 smi_info->curr_msg->rsp,
664 IPMI_MAX_MSG_LENGTH);
665
Corey Minyardc305e3d2008-04-29 01:01:10 -0700666 /*
667 * Do this here becase deliver_recv_msg() releases the
668 * lock, and a new message can be put in during the
669 * time the lock is released.
670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 msg = smi_info->curr_msg;
672 smi_info->curr_msg = NULL;
673 if (msg->rsp[2] != 0) {
674 /* Error getting event, probably done. */
675 msg->done(msg);
676
677 /* Take off the msg flag. */
678 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
679 handle_flags(smi_info);
680 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700681 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Corey Minyardc305e3d2008-04-29 01:01:10 -0700683 /*
684 * Do this before we deliver the message
685 * because delivering the message releases the
686 * lock and something else can mess with the
687 * state.
688 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 handle_flags(smi_info);
690
691 deliver_recv_msg(smi_info, msg);
692 }
693 break;
694 }
695
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600696 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 {
698 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600699 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600700 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /* We got the flags from the SMI, now handle them. */
703 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
704 if (msg[2] != 0) {
Corey Minyard910840f2017-09-12 14:41:56 -0500705 dev_warn(smi_info->io.dev,
Corey Minyard0849bfe2013-05-16 14:04:26 -0500706 "Couldn't get irq info: %x.\n", msg[2]);
Corey Minyard910840f2017-09-12 14:41:56 -0500707 dev_warn(smi_info->io.dev,
Corey Minyard0849bfe2013-05-16 14:04:26 -0500708 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600710 break;
711 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600712 enables = current_global_enables(smi_info, 0, &irq_on);
Corey Minyard910840f2017-09-12 14:41:56 -0500713 if (smi_info->io.si_type == SI_BT)
Corey Minyard95c97b52014-11-20 07:19:44 -0600714 /* BT has its own interrupt enable bit. */
715 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600716 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
717 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
719 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600720 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 smi_info->handlers->start_transaction(
722 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600723 smi_info->si_state = SI_SETTING_ENABLES;
724 } else if (smi_info->supports_event_msg_buff) {
725 smi_info->curr_msg = ipmi_alloc_smi_msg();
726 if (!smi_info->curr_msg) {
727 smi_info->si_state = SI_NORMAL;
728 break;
729 }
Corey Minyard5ac7b2f2016-10-27 10:12:18 -0500730 start_getting_events(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600731 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700732 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700733 }
734 break;
735 }
736
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600737 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700738 {
739 unsigned char msg[4];
740
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700741 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600742 if (msg[2] != 0)
Corey Minyard910840f2017-09-12 14:41:56 -0500743 dev_warn(smi_info->io.dev,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600744 "Could not set the global enables: 0x%x.\n",
745 msg[2]);
746
747 if (smi_info->supports_event_msg_buff) {
748 smi_info->curr_msg = ipmi_alloc_smi_msg();
749 if (!smi_info->curr_msg) {
750 smi_info->si_state = SI_NORMAL;
751 break;
752 }
Corey Minyard5ac7b2f2016-10-27 10:12:18 -0500753 start_getting_events(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600754 } else {
755 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700756 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700757 break;
758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760}
761
Corey Minyardc305e3d2008-04-29 01:01:10 -0700762/*
763 * Called on timeouts and events. Timeouts should pass the elapsed
764 * time, interrupts should pass in zero. Must be called with
765 * si_lock held and interrupts disabled.
766 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
768 int time)
769{
770 enum si_sm_result si_sm_result;
771
Corey Minyard76824852016-04-26 22:40:15 -0500772restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700773 /*
774 * There used to be a loop here that waited a little while
775 * (around 25us) before giving up. That turned out to be
776 * pointless, the minimum delays I was seeing were in the 300us
777 * range, which is far too long to wait in an interrupt. So
778 * we just run until the state machine tells us something
779 * happened or it needs a delay.
780 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
782 time = 0;
783 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Corey Minyardc305e3d2008-04-29 01:01:10 -0700786 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700787 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 handle_transaction_done(smi_info);
Corey Minyardd9dffd22016-01-25 16:11:20 -0600790 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700791 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700792 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Corey Minyardc305e3d2008-04-29 01:01:10 -0700794 /*
795 * Do the before return_hosed_msg, because that
796 * releases the lock.
797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 smi_info->si_state = SI_NORMAL;
799 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700800 /*
801 * If we were handling a user message, format
802 * a response to send to the upper layer to
803 * tell it about the error.
804 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800805 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Corey Minyardd9dffd22016-01-25 16:11:20 -0600807 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Corey Minyard4ea18422008-04-29 01:01:01 -0700810 /*
811 * We prefer handling attn over new messages. But don't do
812 * this if there is not yet an upper layer to handle anything.
813 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600814 if (likely(smi_info->intf) &&
815 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned char msg[2];
817
Corey Minyarda8df1502014-11-19 11:47:17 -0600818 if (smi_info->si_state != SI_NORMAL) {
819 /*
820 * We got an ATTN, but we are doing something else.
821 * Handle the ATTN later.
822 */
823 smi_info->got_attn = true;
824 } else {
825 smi_info->got_attn = false;
826 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Corey Minyarda8df1502014-11-19 11:47:17 -0600828 /*
829 * Got a attn, send down a get message flags to see
830 * what's causing it. It would be better to handle
831 * this in the upper layer, but due to the way
832 * interrupts work with the SMI, that's not really
833 * possible.
834 */
835 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
836 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Corey Minyard0cfec912015-09-05 17:44:13 -0500838 start_new_msg(smi_info, msg, 2);
Corey Minyarda8df1502014-11-19 11:47:17 -0600839 smi_info->si_state = SI_GETTING_FLAGS;
840 goto restart;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
844 /* If we are currently idle, try to start the next message. */
845 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700846 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 si_sm_result = start_next_msg(smi_info);
849 if (si_sm_result != SI_SM_IDLE)
850 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700854 && (atomic_read(&smi_info->req_events))) {
855 /*
856 * We are idle and the upper layer requested that I fetch
857 * events, so do so.
858 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800860
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600861 /*
862 * Take this opportunity to check the interrupt and
863 * message enable state for the BMC. The BMC can be
864 * asynchronously reset, and may thus get interrupts
865 * disable and messages disabled.
866 */
Corey Minyard910840f2017-09-12 14:41:56 -0500867 if (smi_info->supports_event_msg_buff || smi_info->io.irq) {
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +0000868 start_check_enables(smi_info);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600869 } else {
870 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
871 if (!smi_info->curr_msg)
872 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800873
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600874 start_getting_events(smi_info);
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto restart;
877 }
Corey Minyard314ef522015-09-05 17:58:13 -0500878
879 if (si_sm_result == SI_SM_IDLE && smi_info->timer_running) {
880 /* Ok it if fails, the timer will just go off. */
881 if (del_timer(&smi_info->si_timer))
882 smi_info->timer_running = false;
883 }
884
Corey Minyard76824852016-04-26 22:40:15 -0500885out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return si_sm_result;
887}
888
Corey Minyard89986492014-04-14 09:46:54 -0500889static void check_start_timer_thread(struct smi_info *smi_info)
890{
891 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
892 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
893
894 if (smi_info->thread)
895 wake_up_process(smi_info->thread);
896
897 start_next_msg(smi_info);
898 smi_event_handler(smi_info, 0);
899 }
900}
901
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900902static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900903{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900904 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900905 enum si_sm_result result;
906
907 /*
908 * Currently, this function is called only in run-to-completion
909 * mode. This means we are single-threaded, no need for locks.
910 */
911 result = smi_event_handler(smi_info, 0);
912 while (result != SI_SM_IDLE) {
913 udelay(SI_SHORT_TIMEOUT_USEC);
914 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
915 }
916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600919 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
John Stultzf93aae92015-01-07 14:24:28 -0800924 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700927 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900928 * If we are running to completion, start it. Upper
929 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700930 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900931 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Corey Minyardf60adf42012-03-28 14:42:50 -0700935 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600936 /*
937 * The following two lines don't need to be under the lock for
938 * the lock's sake, but they do need SMP memory barriers to
939 * avoid getting things out of order. We are already claiming
940 * the lock, anyway, so just do it under the lock to avoid the
941 * ordering problem.
942 */
943 BUG_ON(smi_info->waiting_msg);
944 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -0500945 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700946 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Corey Minyard7aefac22014-04-14 09:46:56 -0500949static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900954 if (i_run_to_completion)
955 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Martin Wilckae74e822010-03-10 15:23:06 -0800958/*
959 * Use -1 in the nsec value of the busy waiting timespec to tell that
960 * we are spinning in kipmid looking for something and not delaying
961 * between checks
962 */
John Stultz48862ea22015-01-07 14:24:29 -0800963static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -0800964{
965 ts->tv_nsec = -1;
966}
John Stultz48862ea22015-01-07 14:24:29 -0800967static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -0800968{
969 return ts->tv_nsec != -1;
970}
971
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -0500972static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
973 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -0800974 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -0800975{
976 unsigned int max_busy_us = 0;
977
978 if (smi_info->intf_num < num_max_busy_us)
979 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
980 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
981 ipmi_si_set_not_busy(busy_until);
982 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -0800983 getnstimeofday64(busy_until);
984 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -0800985 } else {
John Stultz48862ea22015-01-07 14:24:29 -0800986 struct timespec64 now;
987
988 getnstimeofday64(&now);
989 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -0800990 ipmi_si_set_not_busy(busy_until);
991 return 0;
992 }
993 }
994 return 1;
995}
996
997
998/*
999 * A busy-waiting loop for speeding up IPMI operation.
1000 *
1001 * Lousy hardware makes this hard. This is only enabled for systems
1002 * that are not BT and do not have interrupts. It starts spinning
1003 * when an operation is complete or until max_busy tells it to stop
1004 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1005 * Documentation/IPMI.txt for details.
1006 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001007static int ipmi_thread(void *data)
1008{
1009 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001010 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001011 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001012 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001013
Martin Wilckae74e822010-03-10 15:23:06 -08001014 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001015 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001016 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001017 int busy_wait;
1018
Corey Minyarda9a2c442005-11-07 01:00:03 -08001019 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001020 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001021
1022 /*
1023 * If the driver is doing something, there is a possible
1024 * race with the timer. If the timer handler see idle,
1025 * and the thread here sees something else, the timer
1026 * handler won't restart the timer even though it is
1027 * required. So start it here if necessary.
1028 */
1029 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1030 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1031
Corey Minyarda9a2c442005-11-07 01:00:03 -08001032 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001033 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1034 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001035 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1036 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001037 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001038 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001039 else if (smi_result == SI_SM_IDLE) {
1040 if (atomic_read(&smi_info->need_watch)) {
1041 schedule_timeout_interruptible(100);
1042 } else {
1043 /* Wait to be woken up when we are needed. */
1044 __set_current_state(TASK_INTERRUPTIBLE);
1045 schedule();
1046 }
1047 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001048 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001049 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001050 return 0;
1051}
1052
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054static void poll(void *send_info)
1055{
1056 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001057 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001058 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Corey Minyard15c62e12006-12-06 20:41:06 -08001060 /*
1061 * Make sure there is some delay in the poll loop so we can
1062 * drive time forward and timeout things.
1063 */
1064 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001065 if (!run_to_completion)
1066 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001067 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001068 if (!run_to_completion)
1069 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072static void request_events(void *send_info)
1073{
1074 struct smi_info *smi_info = send_info;
1075
Corey Minyardb874b982014-11-06 17:01:59 -06001076 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001077 return;
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 atomic_set(&smi_info->req_events, 1);
1080}
1081
Corey Minyard7aefac22014-04-14 09:46:56 -05001082static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001083{
1084 struct smi_info *smi_info = send_info;
1085 unsigned long flags;
1086
1087 atomic_set(&smi_info->need_watch, enable);
1088 spin_lock_irqsave(&smi_info->si_lock, flags);
1089 check_start_timer_thread(smi_info);
1090 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1091}
1092
Kees Cooke99e88a2017-10-16 14:43:17 -07001093static void smi_timeout(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Kees Cooke99e88a2017-10-16 14:43:17 -07001095 struct smi_info *smi_info = from_timer(smi_info, t, si_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 enum si_sm_result smi_result;
1097 unsigned long flags;
1098 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001099 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001100 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001103 debug_timestamp("Timer");
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001106 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * SI_USEC_PER_JIFFY);
1108 smi_result = smi_event_handler(smi_info, time_diff);
1109
Corey Minyard910840f2017-09-12 14:41:56 -05001110 if ((smi_info->io.irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001112 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001113 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001114 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
Corey Minyardc305e3d2008-04-29 01:01:10 -07001117 /*
1118 * If the state machine asks for a short delay, then shorten
1119 * the timer timeout.
1120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001122 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001123 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001125 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001126 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128
Corey Minyard76824852016-04-26 22:40:15 -05001129do_mod_timer:
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001130 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001131 smi_mod_timer(smi_info, timeout);
1132 else
1133 smi_info->timer_running = false;
1134 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
Corey Minyard4f3e8192017-09-12 15:10:22 -05001137irqreturn_t ipmi_si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 struct smi_info *smi_info = data;
1140 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Corey Minyard4f3e8192017-09-12 15:10:22 -05001142 if (smi_info->io.si_type == SI_BT)
1143 /* We need to clear the IRQ flag for the BT interface. */
1144 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1145 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1146 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 spin_lock_irqsave(&(smi_info->si_lock), flags);
1149
Corey Minyard64959e22008-04-29 01:01:07 -07001150 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
John Stultzf93aae92015-01-07 14:24:28 -08001152 debug_timestamp("Interrupt");
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1156 return IRQ_HANDLED;
1157}
1158
Corey Minyard453823b2006-03-31 02:30:39 -08001159static int smi_start_processing(void *send_info,
1160 ipmi_smi_t intf)
1161{
1162 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001163 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001164
1165 new_smi->intf = intf;
1166
1167 /* Set up the timer that drives the interface. */
Kees Cooke99e88a2017-10-16 14:43:17 -07001168 timer_setup(&new_smi->si_timer, smi_timeout, 0);
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00001169 new_smi->timer_can_start = true;
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001170 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001171
Jan Stancek27f972d2015-12-08 13:57:51 -05001172 /* Try to claim any interrupts. */
Corey Minyard4f3e8192017-09-12 15:10:22 -05001173 if (new_smi->io.irq_setup) {
1174 new_smi->io.irq_handler_data = new_smi;
1175 new_smi->io.irq_setup(&new_smi->io);
1176 }
Jan Stancek27f972d2015-12-08 13:57:51 -05001177
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001178 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001179 * Check if the user forcefully enabled the daemon.
1180 */
1181 if (new_smi->intf_num < num_force_kipmid)
1182 enable = force_kipmid[new_smi->intf_num];
1183 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001184 * The BT interface is efficient enough to not need a thread,
1185 * and there is no need for a thread if we have interrupts.
1186 */
Corey Minyard910840f2017-09-12 14:41:56 -05001187 else if ((new_smi->io.si_type != SI_BT) && (!new_smi->io.irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001188 enable = 1;
1189
1190 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001191 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1192 "kipmi%d", new_smi->intf_num);
1193 if (IS_ERR(new_smi->thread)) {
Corey Minyard910840f2017-09-12 14:41:56 -05001194 dev_notice(new_smi->io.dev, "Could not start"
Myron Stowe279fbd02010-05-26 14:43:52 -07001195 " kernel thread due to error %ld, only using"
1196 " timers to drive the interface\n",
1197 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001198 new_smi->thread = NULL;
1199 }
1200 }
1201
1202 return 0;
1203}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001204
Zhao Yakui16f42322010-12-08 10:10:16 +08001205static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1206{
1207 struct smi_info *smi = send_info;
1208
Corey Minyard910840f2017-09-12 14:41:56 -05001209 data->addr_src = smi->io.addr_source;
1210 data->dev = smi->io.dev;
Corey Minyardbb398a42017-09-12 21:37:02 -05001211 data->addr_info = smi->io.addr_info;
Corey Minyard910840f2017-09-12 14:41:56 -05001212 get_device(smi->io.dev);
Zhao Yakui16f42322010-12-08 10:10:16 +08001213
1214 return 0;
1215}
1216
Corey Minyard7aefac22014-04-14 09:46:56 -05001217static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001218{
1219 struct smi_info *smi_info = send_info;
1220
1221 if (!enable)
1222 atomic_set(&smi_info->req_events, 0);
1223}
1224
Corey Minyard81d02b72015-06-13 10:34:25 -05001225static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001227 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001228 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 .sender = sender,
1230 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001231 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001232 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001234 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 .poll = poll,
1236};
1237
Corey Minyardb0defcd2006-03-26 01:37:20 -08001238static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001239static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001240static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
LABBE Corentin99ee6732015-11-13 13:31:51 +01001242static const char * const addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001243
Corey Minyarda51f4a82006-10-03 01:13:59 -07001244module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1245MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1246 " disabled(0). Normally the IPMI driver auto-detects"
1247 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001248module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001249MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1250 " specified or found, default is 1. Setting to 0"
1251 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001252module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1253MODULE_PARM_DESC(kipmid_max_busy_us,
1254 "Max time (in microseconds) to busy-wait for IPMI data before"
1255 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1256 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Corey Minyard4f3e8192017-09-12 15:10:22 -05001258void ipmi_irq_finish_setup(struct si_sm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Corey Minyard4f3e8192017-09-12 15:10:22 -05001260 if (io->si_type == SI_BT)
1261 /* Enable the interrupt in the BT interface. */
1262 io->outputb(io, IPMI_BT_INTMASK_REG,
1263 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Corey Minyard4f3e8192017-09-12 15:10:22 -05001266void ipmi_irq_start_cleanup(struct si_sm_io *io)
1267{
1268 if (io->si_type == SI_BT)
1269 /* Disable the interrupt in the BT interface. */
1270 io->outputb(io, IPMI_BT_INTMASK_REG, 0);
1271}
1272
1273static void std_irq_cleanup(struct si_sm_io *io)
1274{
1275 ipmi_irq_start_cleanup(io);
1276 free_irq(io->irq, io->irq_handler_data);
1277}
1278
1279int ipmi_std_irq_setup(struct si_sm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 int rv;
1282
Corey Minyard4f3e8192017-09-12 15:10:22 -05001283 if (!io->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return 0;
1285
Corey Minyard4f3e8192017-09-12 15:10:22 -05001286 rv = request_irq(io->irq,
1287 ipmi_si_irq_handler,
1288 IRQF_SHARED,
1289 DEVICE_NAME,
1290 io->irq_handler_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (rv) {
Corey Minyard4f3e8192017-09-12 15:10:22 -05001292 dev_warn(io->dev, "%s unable to claim interrupt %d,"
Myron Stowe279fbd02010-05-26 14:43:52 -07001293 " running polled\n",
Corey Minyard4f3e8192017-09-12 15:10:22 -05001294 DEVICE_NAME, io->irq);
1295 io->irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 } else {
Corey Minyard4f3e8192017-09-12 15:10:22 -05001297 io->irq_cleanup = std_irq_cleanup;
1298 ipmi_irq_finish_setup(io);
1299 dev_info(io->dev, "Using irq %d\n", io->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301
1302 return rv;
1303}
1304
Corey Minyard40112ae2009-04-21 12:24:03 -07001305static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Corey Minyard50c812b2006-03-26 01:37:21 -08001307 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001310 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08001311 if (smi_result == SI_SM_CALL_WITH_DELAY ||
1312 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001313 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06001315 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07001316 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 smi_result = smi_info->handlers->event(
1318 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001319 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 break;
1321 }
Corey Minyard40112ae2009-04-21 12:24:03 -07001322 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07001323 /*
1324 * We couldn't get the state machine to run, so whatever's at
1325 * the port is probably not an IPMI SMI interface.
1326 */
Corey Minyard40112ae2009-04-21 12:24:03 -07001327 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Corey Minyard40112ae2009-04-21 12:24:03 -07001329 return 0;
1330}
1331
1332static int try_get_dev_id(struct smi_info *smi_info)
1333{
1334 unsigned char msg[2];
1335 unsigned char *resp;
1336 unsigned long resp_len;
1337 int rv = 0;
1338
1339 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
1340 if (!resp)
1341 return -ENOMEM;
1342
1343 /*
1344 * Do a Get Device ID command, since it comes back with some
1345 * useful info.
1346 */
1347 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1348 msg[1] = IPMI_GET_DEVICE_ID_CMD;
1349 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
1350
1351 rv = wait_for_msg_done(smi_info);
1352 if (rv)
1353 goto out;
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1356 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Corey Minyardd8c98612007-10-18 03:07:11 -07001358 /* Check and record info from the get device id, in case we need it. */
Jeremy Kerrc468f912017-08-25 15:47:23 +08001359 rv = ipmi_demangle_device_id(resp[0] >> 2, resp[1],
1360 resp + 2, resp_len - 2, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Corey Minyard76824852016-04-26 22:40:15 -05001362out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 kfree(resp);
1364 return rv;
1365}
1366
Corey Minyardd0882892015-08-18 14:29:10 -05001367static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001368{
1369 unsigned char msg[3];
1370 unsigned char *resp;
1371 unsigned long resp_len;
1372 int rv;
1373
1374 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05001375 if (!resp)
1376 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001377
1378 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1379 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
1380 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
1381
1382 rv = wait_for_msg_done(smi_info);
1383 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05001384 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001385 "Error getting response from get global enables command: %d\n",
1386 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001387 goto out;
1388 }
1389
1390 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1391 resp, IPMI_MAX_MSG_LENGTH);
1392
1393 if (resp_len < 4 ||
1394 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
1395 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
1396 resp[2] != 0) {
Corey Minyard910840f2017-09-12 14:41:56 -05001397 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001398 "Invalid return from get global enables command: %ld %x %x %x\n",
1399 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001400 rv = -EINVAL;
1401 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05001402 } else {
1403 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001404 }
1405
Corey Minyardd0882892015-08-18 14:29:10 -05001406out:
1407 kfree(resp);
1408 return rv;
1409}
1410
1411/*
1412 * Returns 1 if it gets an error from the command.
1413 */
1414static int set_global_enables(struct smi_info *smi_info, u8 enables)
1415{
1416 unsigned char msg[3];
1417 unsigned char *resp;
1418 unsigned long resp_len;
1419 int rv;
1420
1421 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
1422 if (!resp)
1423 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001424
1425 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1426 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05001427 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001428 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
1429
1430 rv = wait_for_msg_done(smi_info);
1431 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05001432 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001433 "Error getting response from set global enables command: %d\n",
1434 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001435 goto out;
1436 }
1437
1438 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1439 resp, IPMI_MAX_MSG_LENGTH);
1440
1441 if (resp_len < 3 ||
1442 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
1443 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyard910840f2017-09-12 14:41:56 -05001444 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001445 "Invalid return from set global enables command: %ld %x %x\n",
1446 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001447 rv = -EINVAL;
1448 goto out;
1449 }
1450
Corey Minyardd0882892015-08-18 14:29:10 -05001451 if (resp[2] != 0)
1452 rv = 1;
1453
1454out:
1455 kfree(resp);
1456 return rv;
1457}
1458
1459/*
1460 * Some BMCs do not support clearing the receive irq bit in the global
1461 * enables (even if they don't support interrupts on the BMC). Check
1462 * for this and handle it properly.
1463 */
1464static void check_clr_rcv_irq(struct smi_info *smi_info)
1465{
1466 u8 enables = 0;
1467 int rv;
1468
1469 rv = get_global_enables(smi_info, &enables);
1470 if (!rv) {
1471 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
1472 /* Already clear, should work ok. */
1473 return;
1474
1475 enables &= ~IPMI_BMC_RCV_MSG_INTR;
1476 rv = set_global_enables(smi_info, enables);
1477 }
1478
1479 if (rv < 0) {
Corey Minyard910840f2017-09-12 14:41:56 -05001480 dev_err(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001481 "Cannot check clearing the rcv irq: %d\n", rv);
1482 return;
1483 }
1484
1485 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001486 /*
1487 * An error when setting the event buffer bit means
1488 * clearing the bit is not supported.
1489 */
Corey Minyard910840f2017-09-12 14:41:56 -05001490 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001491 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
1492 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001493 }
Corey Minyardd0882892015-08-18 14:29:10 -05001494}
1495
1496/*
1497 * Some BMCs do not support setting the interrupt bits in the global
1498 * enables even if they support interrupts. Clearly bad, but we can
1499 * compensate.
1500 */
1501static void check_set_rcv_irq(struct smi_info *smi_info)
1502{
1503 u8 enables = 0;
1504 int rv;
1505
Corey Minyard910840f2017-09-12 14:41:56 -05001506 if (!smi_info->io.irq)
Corey Minyardd0882892015-08-18 14:29:10 -05001507 return;
1508
1509 rv = get_global_enables(smi_info, &enables);
1510 if (!rv) {
1511 enables |= IPMI_BMC_RCV_MSG_INTR;
1512 rv = set_global_enables(smi_info, enables);
1513 }
1514
1515 if (rv < 0) {
Corey Minyard910840f2017-09-12 14:41:56 -05001516 dev_err(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001517 "Cannot check setting the rcv irq: %d\n", rv);
1518 return;
1519 }
1520
1521 if (rv) {
1522 /*
1523 * An error when setting the event buffer bit means
1524 * setting the bit is not supported.
1525 */
Corey Minyard910840f2017-09-12 14:41:56 -05001526 dev_warn(smi_info->io.dev,
Corey Minyardd0882892015-08-18 14:29:10 -05001527 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
1528 smi_info->cannot_disable_irq = true;
1529 smi_info->irq_enable_broken = true;
1530 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05001531}
1532
Corey Minyard40112ae2009-04-21 12:24:03 -07001533static int try_enable_event_buffer(struct smi_info *smi_info)
1534{
1535 unsigned char msg[3];
1536 unsigned char *resp;
1537 unsigned long resp_len;
1538 int rv = 0;
1539
1540 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
1541 if (!resp)
1542 return -ENOMEM;
1543
1544 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1545 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
1546 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
1547
1548 rv = wait_for_msg_done(smi_info);
1549 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001550 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 -07001551 goto out;
1552 }
1553
1554 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1555 resp, IPMI_MAX_MSG_LENGTH);
1556
1557 if (resp_len < 4 ||
1558 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
1559 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
1560 resp[2] != 0) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001561 pr_warn(PFX "Invalid return from get global enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07001562 rv = -EINVAL;
1563 goto out;
1564 }
1565
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06001566 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07001567 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06001568 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07001569 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06001570 }
Corey Minyard40112ae2009-04-21 12:24:03 -07001571
1572 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
1573 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
1574 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
1575 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
1576
1577 rv = wait_for_msg_done(smi_info);
1578 if (rv) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001579 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 -07001580 goto out;
1581 }
1582
1583 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
1584 resp, IPMI_MAX_MSG_LENGTH);
1585
1586 if (resp_len < 3 ||
1587 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
1588 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardbb2a08c2016-11-07 11:27:18 -06001589 pr_warn(PFX "Invalid return from get global, enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07001590 rv = -EINVAL;
1591 goto out;
1592 }
1593
1594 if (resp[2] != 0)
1595 /*
1596 * An error when setting the event buffer bit means
1597 * that the event buffer is not supported.
1598 */
1599 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06001600 else
1601 smi_info->supports_event_msg_buff = true;
1602
Corey Minyard76824852016-04-26 22:40:15 -05001603out:
Corey Minyard40112ae2009-04-21 12:24:03 -07001604 kfree(resp);
1605 return rv;
1606}
1607
Corey Minyard55f91cb2017-09-16 15:51:25 -05001608#ifdef CONFIG_IPMI_PROC_INTERFACE
Alexey Dobriyan07412732011-05-26 16:25:55 -07001609static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Alexey Dobriyan07412732011-05-26 16:25:55 -07001611 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Corey Minyard910840f2017-09-12 14:41:56 -05001613 seq_printf(m, "%s\n", si_to_str[smi->io.si_type]);
Joe Perchesd6c5dc12015-02-17 11:10:56 -08001614
Joe Perches5e33cd02015-02-22 10:21:07 -08001615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
1617
Alexey Dobriyan07412732011-05-26 16:25:55 -07001618static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Al Virod9dda782013-03-31 18:16:14 -04001620 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001621}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Alexey Dobriyan07412732011-05-26 16:25:55 -07001623static const struct file_operations smi_type_proc_ops = {
1624 .open = smi_type_proc_open,
1625 .read = seq_read,
1626 .llseek = seq_lseek,
1627 .release = single_release,
1628};
1629
1630static int smi_si_stats_proc_show(struct seq_file *m, void *v)
1631{
1632 struct smi_info *smi = m->private;
1633
1634 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyard910840f2017-09-12 14:41:56 -05001635 smi->io.irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07001636 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001637 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001638 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001639 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001640 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001641 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001642 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001643 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001644 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001645 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001646 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001647 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001648 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001649 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001650 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001651 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001652 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001653 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001654 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001655 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001656 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07001657 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001658 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08001659}
1660
Alexey Dobriyan07412732011-05-26 16:25:55 -07001661static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08001662{
Al Virod9dda782013-03-31 18:16:14 -04001663 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001664}
Corey Minyardb361e272006-12-06 20:41:07 -08001665
Alexey Dobriyan07412732011-05-26 16:25:55 -07001666static const struct file_operations smi_si_stats_proc_ops = {
1667 .open = smi_si_stats_proc_open,
1668 .read = seq_read,
1669 .llseek = seq_lseek,
1670 .release = single_release,
1671};
1672
1673static int smi_params_proc_show(struct seq_file *m, void *v)
1674{
1675 struct smi_info *smi = m->private;
1676
Joe Perchesd6c5dc12015-02-17 11:10:56 -08001677 seq_printf(m,
1678 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
Corey Minyard910840f2017-09-12 14:41:56 -05001679 si_to_str[smi->io.si_type],
Joe Perchesd6c5dc12015-02-17 11:10:56 -08001680 addr_space_to_str[smi->io.addr_type],
1681 smi->io.addr_data,
1682 smi->io.regspacing,
1683 smi->io.regsize,
1684 smi->io.regshift,
Corey Minyard910840f2017-09-12 14:41:56 -05001685 smi->io.irq,
1686 smi->io.slave_addr);
Joe Perchesd6c5dc12015-02-17 11:10:56 -08001687
Joe Perches5e33cd02015-02-22 10:21:07 -08001688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
Alexey Dobriyan07412732011-05-26 16:25:55 -07001691static int smi_params_proc_open(struct inode *inode, struct file *file)
1692{
Al Virod9dda782013-03-31 18:16:14 -04001693 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07001694}
1695
1696static const struct file_operations smi_params_proc_ops = {
1697 .open = smi_params_proc_open,
1698 .read = seq_read,
1699 .llseek = seq_lseek,
1700 .release = single_release,
1701};
Corey Minyard55f91cb2017-09-16 15:51:25 -05001702#endif
Alexey Dobriyan07412732011-05-26 16:25:55 -07001703
Corey Minyard3dd377b2017-09-16 14:53:12 -05001704#define IPMI_SI_ATTR(name) \
1705static ssize_t ipmi_##name##_show(struct device *dev, \
1706 struct device_attribute *attr, \
1707 char *buf) \
1708{ \
1709 struct smi_info *smi_info = dev_get_drvdata(dev); \
1710 \
1711 return snprintf(buf, 10, "%u\n", smi_get_stat(smi_info, name)); \
1712} \
1713static DEVICE_ATTR(name, S_IRUGO, ipmi_##name##_show, NULL)
1714
1715static ssize_t ipmi_type_show(struct device *dev,
1716 struct device_attribute *attr,
1717 char *buf)
1718{
1719 struct smi_info *smi_info = dev_get_drvdata(dev);
1720
1721 return snprintf(buf, 10, "%s\n", si_to_str[smi_info->io.si_type]);
1722}
1723static DEVICE_ATTR(type, S_IRUGO, ipmi_type_show, NULL);
1724
1725static ssize_t ipmi_interrupts_enabled_show(struct device *dev,
1726 struct device_attribute *attr,
1727 char *buf)
1728{
1729 struct smi_info *smi_info = dev_get_drvdata(dev);
1730 int enabled = smi_info->io.irq && !smi_info->interrupt_disabled;
1731
1732 return snprintf(buf, 10, "%d\n", enabled);
1733}
1734static DEVICE_ATTR(interrupts_enabled, S_IRUGO,
1735 ipmi_interrupts_enabled_show, NULL);
1736
1737IPMI_SI_ATTR(short_timeouts);
1738IPMI_SI_ATTR(long_timeouts);
1739IPMI_SI_ATTR(idles);
1740IPMI_SI_ATTR(interrupts);
1741IPMI_SI_ATTR(attentions);
1742IPMI_SI_ATTR(flag_fetches);
1743IPMI_SI_ATTR(hosed_count);
1744IPMI_SI_ATTR(complete_transactions);
1745IPMI_SI_ATTR(events);
1746IPMI_SI_ATTR(watchdog_pretimeouts);
1747IPMI_SI_ATTR(incoming_messages);
1748
1749static ssize_t ipmi_params_show(struct device *dev,
1750 struct device_attribute *attr,
1751 char *buf)
1752{
1753 struct smi_info *smi_info = dev_get_drvdata(dev);
1754
1755 return snprintf(buf, 200,
1756 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
1757 si_to_str[smi_info->io.si_type],
1758 addr_space_to_str[smi_info->io.addr_type],
1759 smi_info->io.addr_data,
1760 smi_info->io.regspacing,
1761 smi_info->io.regsize,
1762 smi_info->io.regshift,
1763 smi_info->io.irq,
1764 smi_info->io.slave_addr);
1765}
1766static DEVICE_ATTR(params, S_IRUGO, ipmi_params_show, NULL);
1767
1768static struct attribute *ipmi_si_dev_attrs[] = {
1769 &dev_attr_type.attr,
1770 &dev_attr_interrupts_enabled.attr,
1771 &dev_attr_short_timeouts.attr,
1772 &dev_attr_long_timeouts.attr,
1773 &dev_attr_idles.attr,
1774 &dev_attr_interrupts.attr,
1775 &dev_attr_attentions.attr,
1776 &dev_attr_flag_fetches.attr,
1777 &dev_attr_hosed_count.attr,
1778 &dev_attr_complete_transactions.attr,
1779 &dev_attr_events.attr,
1780 &dev_attr_watchdog_pretimeouts.attr,
1781 &dev_attr_incoming_messages.attr,
1782 &dev_attr_params.attr,
1783 NULL
1784};
1785
1786static const struct attribute_group ipmi_si_dev_attr_group = {
1787 .attrs = ipmi_si_dev_attrs,
1788};
1789
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001790/*
1791 * oem_data_avail_to_receive_msg_avail
1792 * @info - smi_info structure with msg_flags set
1793 *
1794 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
1795 * Returns 1 indicating need to re-run handle_flags().
1796 */
1797static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
1798{
Corey Minyarde8b33612005-09-06 15:18:45 -07001799 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07001800 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001801 return 1;
1802}
1803
1804/*
1805 * setup_dell_poweredge_oem_data_handler
1806 * @info - smi_info.device_id must be populated
1807 *
1808 * Systems that match, but have firmware version < 1.40 may assert
1809 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
1810 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
1811 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
1812 * as RECEIVE_MSG_AVAIL instead.
1813 *
1814 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
1815 * assert the OEM[012] bits, and if it did, the driver would have to
1816 * change to handle that properly, we don't actually check for the
1817 * firmware version.
1818 * Device ID = 0x20 BMC on PowerEdge 8G servers
1819 * Device Revision = 0x80
1820 * Firmware Revision1 = 0x01 BMC version 1.40
1821 * Firmware Revision2 = 0x40 BCD encoded
1822 * IPMI Version = 0x51 IPMI 1.5
1823 * Manufacturer ID = A2 02 00 Dell IANA
1824 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08001825 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
1826 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
1827 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001828 */
1829#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
1830#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
1831#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08001832#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001833static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
1834{
1835 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08001836 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08001837 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
1838 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08001839 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08001840 smi_info->oem_data_avail_handler =
1841 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07001842 } else if (ipmi_version_major(id) < 1 ||
1843 (ipmi_version_major(id) == 1 &&
1844 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08001845 smi_info->oem_data_avail_handler =
1846 oem_data_avail_to_receive_msg_avail;
1847 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001848 }
1849}
1850
Corey Minyardea940272005-11-07 00:59:59 -08001851#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
1852static void return_hosed_msg_badsize(struct smi_info *smi_info)
1853{
1854 struct ipmi_smi_msg *msg = smi_info->curr_msg;
1855
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001856 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08001857 msg->rsp[0] = msg->data[0] | 4;
1858 msg->rsp[1] = msg->data[1];
1859 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
1860 msg->rsp_size = 3;
1861 smi_info->curr_msg = NULL;
1862 deliver_recv_msg(smi_info, msg);
1863}
1864
1865/*
1866 * dell_poweredge_bt_xaction_handler
1867 * @info - smi_info.device_id must be populated
1868 *
1869 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
1870 * not respond to a Get SDR command if the length of the data
1871 * requested is exactly 0x3A, which leads to command timeouts and no
1872 * data returned. This intercepts such commands, and causes userspace
1873 * callers to try again with a different-sized buffer, which succeeds.
1874 */
1875
1876#define STORAGE_NETFN 0x0A
1877#define STORAGE_CMD_GET_SDR 0x23
1878static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
1879 unsigned long unused,
1880 void *in)
1881{
1882 struct smi_info *smi_info = in;
1883 unsigned char *data = smi_info->curr_msg->data;
1884 unsigned int size = smi_info->curr_msg->data_size;
1885 if (size >= 8 &&
1886 (data[0]>>2) == STORAGE_NETFN &&
1887 data[1] == STORAGE_CMD_GET_SDR &&
1888 data[7] == 0x3A) {
1889 return_hosed_msg_badsize(smi_info);
1890 return NOTIFY_STOP;
1891 }
1892 return NOTIFY_DONE;
1893}
1894
1895static struct notifier_block dell_poweredge_bt_xaction_notifier = {
1896 .notifier_call = dell_poweredge_bt_xaction_handler,
1897};
1898
1899/*
1900 * setup_dell_poweredge_bt_xaction_handler
1901 * @info - smi_info.device_id must be filled in already
1902 *
1903 * Fills in smi_info.device_id.start_transaction_pre_hook
1904 * when we know what function to use there.
1905 */
1906static void
1907setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
1908{
1909 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08001910 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyard910840f2017-09-12 14:41:56 -05001911 smi_info->io.si_type == SI_BT)
Corey Minyardea940272005-11-07 00:59:59 -08001912 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
1913}
1914
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07001915/*
1916 * setup_oem_data_handler
1917 * @info - smi_info.device_id must be filled in already
1918 *
1919 * Fills in smi_info.device_id.oem_data_available_handler
1920 * when we know what function to use there.
1921 */
1922
1923static void setup_oem_data_handler(struct smi_info *smi_info)
1924{
1925 setup_dell_poweredge_oem_data_handler(smi_info);
1926}
1927
Corey Minyardea940272005-11-07 00:59:59 -08001928static void setup_xaction_handlers(struct smi_info *smi_info)
1929{
1930 setup_dell_poweredge_bt_xaction_handler(smi_info);
1931}
1932
Corey Minyardd0882892015-08-18 14:29:10 -05001933static void check_for_broken_irqs(struct smi_info *smi_info)
1934{
1935 check_clr_rcv_irq(smi_info);
1936 check_set_rcv_irq(smi_info);
1937}
1938
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00001939static inline void stop_timer_and_thread(struct smi_info *smi_info)
Corey Minyarda9a2c442005-11-07 01:00:03 -08001940{
Masamitsu Yamazakibd1c06a2018-01-15 07:58:12 +00001941 if (smi_info->thread != NULL) {
Corey Minyardb874b982014-11-06 17:01:59 -06001942 kthread_stop(smi_info->thread);
Masamitsu Yamazakibd1c06a2018-01-15 07:58:12 +00001943 smi_info->thread = NULL;
1944 }
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00001945
1946 smi_info->timer_can_start = false;
Corey Minyardb874b982014-11-06 17:01:59 -06001947 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08001948 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001949}
1950
Corey Minyard7e030d62017-09-08 14:05:58 -05001951static struct smi_info *find_dup_si(struct smi_info *info)
Corey Minyardb0defcd2006-03-26 01:37:20 -08001952{
1953 struct smi_info *e;
1954
1955 list_for_each_entry(e, &smi_infos, link) {
1956 if (e->io.addr_type != info->io.addr_type)
1957 continue;
Corey Minyard94671712016-11-07 12:07:09 -06001958 if (e->io.addr_data == info->io.addr_data) {
1959 /*
1960 * This is a cheap hack, ACPI doesn't have a defined
1961 * slave address but SMBIOS does. Pick it up from
1962 * any source that has it available.
1963 */
Corey Minyard910840f2017-09-12 14:41:56 -05001964 if (info->io.slave_addr && !e->io.slave_addr)
1965 e->io.slave_addr = info->io.slave_addr;
Corey Minyard7e030d62017-09-08 14:05:58 -05001966 return e;
Corey Minyard94671712016-11-07 12:07:09 -06001967 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08001968 }
1969
Corey Minyard7e030d62017-09-08 14:05:58 -05001970 return NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001971}
1972
Corey Minyardbb398a42017-09-12 21:37:02 -05001973int ipmi_si_add_smi(struct si_sm_io *io)
Matthew Garrett2407d772010-05-26 14:43:46 -07001974{
1975 int rv = 0;
Corey Minyardbb398a42017-09-12 21:37:02 -05001976 struct smi_info *new_smi, *dup;
Matthew Garrett2407d772010-05-26 14:43:46 -07001977
Corey Minyardbb398a42017-09-12 21:37:02 -05001978 if (!io->io_setup) {
1979 if (io->addr_type == IPMI_IO_ADDR_SPACE) {
Corey Minyard58e27632017-09-12 23:24:30 -05001980 io->io_setup = ipmi_si_port_setup;
Corey Minyardbb398a42017-09-12 21:37:02 -05001981 } else if (io->addr_type == IPMI_MEM_ADDR_SPACE) {
Corey Minyard58e27632017-09-12 23:24:30 -05001982 io->io_setup = ipmi_si_mem_setup;
Corey Minyarde1eeb7f2017-09-12 15:40:53 -05001983 } else {
1984 return -EINVAL;
1985 }
1986 }
1987
Corey Minyard67f4fb02017-09-12 23:35:39 -05001988 new_smi = kzalloc(sizeof(*new_smi), GFP_KERNEL);
Corey Minyardbb398a42017-09-12 21:37:02 -05001989 if (!new_smi)
1990 return -ENOMEM;
Corey Minyard67f4fb02017-09-12 23:35:39 -05001991 spin_lock_init(&new_smi->si_lock);
Corey Minyardbb398a42017-09-12 21:37:02 -05001992
1993 new_smi->io = *io;
1994
Matthew Garrett2407d772010-05-26 14:43:46 -07001995 mutex_lock(&smi_infos_lock);
Corey Minyard7e030d62017-09-08 14:05:58 -05001996 dup = find_dup_si(new_smi);
1997 if (dup) {
Corey Minyard910840f2017-09-12 14:41:56 -05001998 if (new_smi->io.addr_source == SI_ACPI &&
1999 dup->io.addr_source == SI_SMBIOS) {
Corey Minyard7e030d62017-09-08 14:05:58 -05002000 /* We prefer ACPI over SMBIOS. */
Corey Minyard910840f2017-09-12 14:41:56 -05002001 dev_info(dup->io.dev,
Corey Minyard7e030d62017-09-08 14:05:58 -05002002 "Removing SMBIOS-specified %s state machine in favor of ACPI\n",
Corey Minyard910840f2017-09-12 14:41:56 -05002003 si_to_str[new_smi->io.si_type]);
Corey Minyard7e030d62017-09-08 14:05:58 -05002004 cleanup_one_si(dup);
2005 } else {
Corey Minyard910840f2017-09-12 14:41:56 -05002006 dev_info(new_smi->io.dev,
Corey Minyard7e030d62017-09-08 14:05:58 -05002007 "%s-specified %s state machine: duplicate\n",
Corey Minyard910840f2017-09-12 14:41:56 -05002008 ipmi_addr_src_to_str(new_smi->io.addr_source),
2009 si_to_str[new_smi->io.si_type]);
Corey Minyard7e030d62017-09-08 14:05:58 -05002010 rv = -EBUSY;
Colin Ian Kingc0a32fe2017-10-17 16:54:52 +01002011 kfree(new_smi);
Corey Minyard7e030d62017-09-08 14:05:58 -05002012 goto out_err;
2013 }
Matthew Garrett2407d772010-05-26 14:43:46 -07002014 }
2015
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002016 pr_info(PFX "Adding %s-specified %s state machine\n",
Corey Minyard910840f2017-09-12 14:41:56 -05002017 ipmi_addr_src_to_str(new_smi->io.addr_source),
2018 si_to_str[new_smi->io.si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07002019
2020 /* So we know not to free it unless we have allocated one. */
2021 new_smi->intf = NULL;
2022 new_smi->si_sm = NULL;
2023 new_smi->handlers = NULL;
2024
2025 list_add_tail(&new_smi->link, &smi_infos);
2026
Corey Minyardbb398a42017-09-12 21:37:02 -05002027 if (initialized) {
2028 rv = try_smi_init(new_smi);
2029 if (rv) {
2030 mutex_unlock(&smi_infos_lock);
2031 cleanup_one_si(new_smi);
2032 return rv;
2033 }
2034 }
Matthew Garrett2407d772010-05-26 14:43:46 -07002035out_err:
2036 mutex_unlock(&smi_infos_lock);
2037 return rv;
2038}
2039
Tony Camuso3f724c42017-04-10 12:22:13 -04002040/*
2041 * Try to start up an interface. Must be called with smi_infos_lock
2042 * held, primarily to keep smi_num consistent, we only one to do these
2043 * one at a time.
2044 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002045static int try_smi_init(struct smi_info *new_smi)
2046{
Matthew Garrett2407d772010-05-26 14:43:46 -07002047 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07002048 int i;
Corey Minyard1abf71e2016-11-07 07:37:06 -07002049 char *init_name = NULL;
Corey Minyard174134a2017-11-27 08:18:33 -06002050 bool platform_device_registered = false;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002051
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002052 pr_info(PFX "Trying %s-specified %s state machine at %s address 0x%lx, slave address 0x%x, irq %d\n",
Corey Minyard910840f2017-09-12 14:41:56 -05002053 ipmi_addr_src_to_str(new_smi->io.addr_source),
2054 si_to_str[new_smi->io.si_type],
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002055 addr_space_to_str[new_smi->io.addr_type],
2056 new_smi->io.addr_data,
Corey Minyard910840f2017-09-12 14:41:56 -05002057 new_smi->io.slave_addr, new_smi->io.irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002058
Corey Minyard910840f2017-09-12 14:41:56 -05002059 switch (new_smi->io.si_type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002060 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002062 break;
2063
2064 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002066 break;
2067
2068 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002070 break;
2071
2072 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /* No support for anything else yet. */
2074 rv = -EIO;
2075 goto out_err;
2076 }
2077
Tony Camuso3f724c42017-04-10 12:22:13 -04002078 new_smi->intf_num = smi_num;
2079
Corey Minyard1abf71e2016-11-07 07:37:06 -07002080 /* Do this early so it's available for logs. */
Corey Minyard910840f2017-09-12 14:41:56 -05002081 if (!new_smi->io.dev) {
Tony Camuso3f724c42017-04-10 12:22:13 -04002082 init_name = kasprintf(GFP_KERNEL, "ipmi_si.%d",
2083 new_smi->intf_num);
Corey Minyard1abf71e2016-11-07 07:37:06 -07002084
2085 /*
2086 * If we don't already have a device from something
2087 * else (like PCI), then register a new one.
2088 */
2089 new_smi->pdev = platform_device_alloc("ipmi_si",
2090 new_smi->intf_num);
2091 if (!new_smi->pdev) {
2092 pr_err(PFX "Unable to allocate platform device\n");
2093 goto out_err;
2094 }
Corey Minyard910840f2017-09-12 14:41:56 -05002095 new_smi->io.dev = &new_smi->pdev->dev;
Corey Minyard9d700292017-09-12 22:55:57 -05002096 new_smi->io.dev->driver = &ipmi_platform_driver.driver;
Corey Minyard1abf71e2016-11-07 07:37:06 -07002097 /* Nulled by device_add() */
Corey Minyard910840f2017-09-12 14:41:56 -05002098 new_smi->io.dev->init_name = init_name;
Corey Minyard1abf71e2016-11-07 07:37:06 -07002099 }
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 /* Allocate the state machine's data and initialize it. */
2102 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002103 if (!new_smi->si_sm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 rv = -ENOMEM;
2105 goto out_err;
2106 }
Corey Minyarde1eeb7f2017-09-12 15:40:53 -05002107 new_smi->io.io_size = new_smi->handlers->init_data(new_smi->si_sm,
2108 &new_smi->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /* Now that we know the I/O size, we can set up the I/O. */
Corey Minyarde1eeb7f2017-09-12 15:40:53 -05002111 rv = new_smi->io.io_setup(&new_smi->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002113 dev_err(new_smi->io.dev, "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 goto out_err;
2115 }
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /* Do low-level detection first. */
2118 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyard910840f2017-09-12 14:41:56 -05002119 if (new_smi->io.addr_source)
2120 dev_err(new_smi->io.dev,
2121 "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 rv = -ENODEV;
2123 goto out_err;
2124 }
2125
Corey Minyardc305e3d2008-04-29 01:01:10 -07002126 /*
2127 * Attempt a get device id command. If it fails, we probably
2128 * don't have a BMC here.
2129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002131 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002132 if (new_smi->io.addr_source)
2133 dev_err(new_smi->io.dev,
2134 "There appears to be no BMC at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002138 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08002139 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05002140 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07002141
Corey Minyardb874b982014-11-06 17:01:59 -06002142 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 new_smi->curr_msg = NULL;
2144 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05002145 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07002146 for (i = 0; i < SI_NUM_STATS; i++)
2147 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Corey Minyard7aefac22014-04-14 09:46:56 -05002149 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05002150 atomic_set(&new_smi->need_watch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Corey Minyard40112ae2009-04-21 12:24:03 -07002152 rv = try_enable_event_buffer(new_smi);
2153 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05002154 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07002155
Corey Minyardc305e3d2008-04-29 01:01:10 -07002156 /*
2157 * Start clearing the flags before we enable interrupts or the
2158 * timer to avoid racing with the timer.
2159 */
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00002160 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002161
2162 /*
2163 * IRQ is defined to be set when non-zero. req_events will
2164 * cause a global flags check that will enable interrupts.
2165 */
Corey Minyard910840f2017-09-12 14:41:56 -05002166 if (new_smi->io.irq) {
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06002167 new_smi->interrupt_disabled = false;
2168 atomic_set(&new_smi->req_events, 1);
2169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Corey Minyard1abf71e2016-11-07 07:37:06 -07002171 if (new_smi->pdev) {
Zhang, Yanminb48f5452006-11-16 01:19:08 -08002172 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08002173 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002174 dev_err(new_smi->io.dev,
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002175 "Unable to register system interface device: %d\n",
2176 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08002177 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08002178 }
Corey Minyard174134a2017-11-27 08:18:33 -06002179 platform_device_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08002180 }
2181
Corey Minyard3dd377b2017-09-16 14:53:12 -05002182 dev_set_drvdata(new_smi->io.dev, new_smi);
2183 rv = device_add_group(new_smi->io.dev, &ipmi_si_dev_attr_group);
2184 if (rv) {
2185 dev_err(new_smi->io.dev,
2186 "Unable to add device attributes: error %d\n",
2187 rv);
2188 goto out_err_stop_timer;
2189 }
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 rv = ipmi_register_smi(&handlers,
2192 new_smi,
Corey Minyard910840f2017-09-12 14:41:56 -05002193 new_smi->io.dev,
2194 new_smi->io.slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002196 dev_err(new_smi->io.dev,
2197 "Unable to register device: error %d\n",
Myron Stowe279fbd02010-05-26 14:43:52 -07002198 rv);
Corey Minyard3dd377b2017-09-16 14:53:12 -05002199 goto out_err_remove_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201
Corey Minyard55f91cb2017-09-16 15:51:25 -05002202#ifdef CONFIG_IPMI_PROC_INTERFACE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002204 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002205 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002207 dev_err(new_smi->io.dev,
2208 "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 goto out_err_stop_timer;
2210 }
2211
2212 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002213 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002214 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002216 dev_err(new_smi->io.dev,
2217 "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 goto out_err_stop_timer;
2219 }
2220
Corey Minyardb361e272006-12-06 20:41:07 -08002221 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07002222 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03002223 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08002224 if (rv) {
Corey Minyard910840f2017-09-12 14:41:56 -05002225 dev_err(new_smi->io.dev,
2226 "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08002227 goto out_err_stop_timer;
2228 }
Corey Minyard55f91cb2017-09-16 15:51:25 -05002229#endif
Corey Minyardb361e272006-12-06 20:41:07 -08002230
Tony Camuso3f724c42017-04-10 12:22:13 -04002231 /* Don't increment till we know we have succeeded. */
2232 smi_num++;
2233
Corey Minyard910840f2017-09-12 14:41:56 -05002234 dev_info(new_smi->io.dev, "IPMI %s interface initialized\n",
2235 si_to_str[new_smi->io.si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Corey Minyard910840f2017-09-12 14:41:56 -05002237 WARN_ON(new_smi->io.dev->init_name != NULL);
Corey Minyard1abf71e2016-11-07 07:37:06 -07002238 kfree(init_name);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return 0;
2241
Corey Minyard3dd377b2017-09-16 14:53:12 -05002242out_err_remove_attrs:
2243 device_remove_group(new_smi->io.dev, &ipmi_si_dev_attr_group);
2244 dev_set_drvdata(new_smi->io.dev, NULL);
2245
Corey Minyard76824852016-04-26 22:40:15 -05002246out_err_stop_timer:
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00002247 stop_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Corey Minyard76824852016-04-26 22:40:15 -05002249out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05002250 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Matthew Garrett2407d772010-05-26 14:43:46 -07002252 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06002253 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07002254 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06002255 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07002256 }
2257
Corey Minyard4f3e8192017-09-12 15:10:22 -05002258 if (new_smi->io.irq_cleanup) {
2259 new_smi->io.irq_cleanup(&new_smi->io);
2260 new_smi->io.irq_cleanup = NULL;
Matthew Garrett2407d772010-05-26 14:43:46 -07002261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Corey Minyardc305e3d2008-04-29 01:01:10 -07002263 /*
2264 * Wait until we know that we are out of any interrupt
2265 * handlers might have been running before we freed the
2266 * interrupt.
2267 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002268 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 if (new_smi->si_sm) {
2271 if (new_smi->handlers)
2272 new_smi->handlers->cleanup(new_smi->si_sm);
2273 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07002274 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
Corey Minyard910840f2017-09-12 14:41:56 -05002276 if (new_smi->io.addr_source_cleanup) {
2277 new_smi->io.addr_source_cleanup(&new_smi->io);
2278 new_smi->io.addr_source_cleanup = NULL;
Matthew Garrett2407d772010-05-26 14:43:46 -07002279 }
Corey Minyarde1eeb7f2017-09-12 15:40:53 -05002280 if (new_smi->io.io_cleanup) {
2281 new_smi->io.io_cleanup(&new_smi->io);
2282 new_smi->io.io_cleanup = NULL;
Matthew Garrett2407d772010-05-26 14:43:46 -07002283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Corey Minyard910840f2017-09-12 14:41:56 -05002285 if (new_smi->pdev) {
Corey Minyard174134a2017-11-27 08:18:33 -06002286 if (platform_device_registered)
2287 platform_device_unregister(new_smi->pdev);
2288 else
2289 platform_device_put(new_smi->pdev);
Corey Minyard1abf71e2016-11-07 07:37:06 -07002290 new_smi->pdev = NULL;
Matthew Garrett2407d772010-05-26 14:43:46 -07002291 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002292
Corey Minyard1abf71e2016-11-07 07:37:06 -07002293 kfree(init_name);
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return rv;
2296}
2297
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002298static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
Matthew Garrett2407d772010-05-26 14:43:46 -07002300 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07002301 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 if (initialized)
2304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002306 pr_info("IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002308 /* If the user gave us a device, they presumably want us to use it */
Corey Minyard7a453302017-09-12 22:46:29 -05002309 if (!ipmi_si_hardcode_find_bmc())
2310 goto do_scan;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002311
Corey Minyard9d700292017-09-12 22:55:57 -05002312 ipmi_si_platform_init();
2313
Corey Minyard13d0b352017-09-12 23:04:35 -05002314 ipmi_si_pci_init();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002315
Corey Minyardc6f85a72017-09-12 23:10:18 -05002316 ipmi_si_parisc_init();
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002317
Matthew Garrett06ee4592010-05-26 14:43:49 -07002318 /* We prefer devices with interrupts, but in the case of a machine
2319 with multiple BMCs we assume that there will be several instances
2320 of a given type so if we succeed in registering a type then also
2321 try to register everything else of the same type */
Corey Minyard7a453302017-09-12 22:46:29 -05002322do_scan:
Matthew Garrett2407d772010-05-26 14:43:46 -07002323 mutex_lock(&smi_infos_lock);
2324 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07002325 /* Try to register a device if it has an IRQ and we either
2326 haven't successfully registered a device yet or this
2327 device has the same type as one we successfully registered */
Corey Minyard910840f2017-09-12 14:41:56 -05002328 if (e->io.irq && (!type || e->io.addr_source == type)) {
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002329 if (!try_smi_init(e)) {
Corey Minyard910840f2017-09-12 14:41:56 -05002330 type = e->io.addr_source;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002331 }
2332 }
2333 }
2334
Matthew Garrett06ee4592010-05-26 14:43:49 -07002335 /* type will only have been set if we successfully registered an si */
Corey Minyardbb398a42017-09-12 21:37:02 -05002336 if (type)
2337 goto skip_fallback_noirq;
Matthew Garrett06ee4592010-05-26 14:43:49 -07002338
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002339 /* Fall back to the preferred device */
2340
2341 list_for_each_entry(e, &smi_infos, link) {
Corey Minyard910840f2017-09-12 14:41:56 -05002342 if (!e->io.irq && (!type || e->io.addr_source == type)) {
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002343 if (!try_smi_init(e)) {
Corey Minyard910840f2017-09-12 14:41:56 -05002344 type = e->io.addr_source;
Matthew Garrettd8cc52672010-05-26 14:43:46 -07002345 }
2346 }
Matthew Garrett2407d772010-05-26 14:43:46 -07002347 }
Corey Minyardbb398a42017-09-12 21:37:02 -05002348
2349skip_fallback_noirq:
2350 initialized = 1;
Matthew Garrett2407d772010-05-26 14:43:46 -07002351 mutex_unlock(&smi_infos_lock);
2352
Matthew Garrett06ee4592010-05-26 14:43:49 -07002353 if (type)
2354 return 0;
2355
Corey Minyardd6dfd132006-03-31 02:30:41 -08002356 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08002357 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002358 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06002359 cleanup_ipmi_si();
Corey Minyardbb2a08c2016-11-07 11:27:18 -06002360 pr_warn(PFX "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002362 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08002363 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367module_init(init_ipmi_si);
2368
Corey Minyardb361e272006-12-06 20:41:07 -08002369static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
Matthew Garrett2407d772010-05-26 14:43:46 -07002371 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Corey Minyardb0defcd2006-03-26 01:37:20 -08002373 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return;
2375
Corey Minyardb874b982014-11-06 17:01:59 -06002376 if (to_clean->intf) {
2377 ipmi_smi_t intf = to_clean->intf;
2378
2379 to_clean->intf = NULL;
2380 rv = ipmi_unregister_smi(intf);
2381 if (rv) {
2382 pr_err(PFX "Unable to unregister device: errno=%d\n",
2383 rv);
2384 }
2385 }
2386
Corey Minyard3dd377b2017-09-16 14:53:12 -05002387 device_remove_group(to_clean->io.dev, &ipmi_si_dev_attr_group);
2388 dev_set_drvdata(to_clean->io.dev, NULL);
2389
Corey Minyardb0defcd2006-03-26 01:37:20 -08002390 list_del(&to_clean->link);
2391
Corey Minyardc305e3d2008-04-29 01:01:10 -07002392 /*
Corey Minyardb874b982014-11-06 17:01:59 -06002393 * Make sure that interrupts, the timer and the thread are
2394 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07002395 */
Corey Minyard4f3e8192017-09-12 15:10:22 -05002396 if (to_clean->io.irq_cleanup)
2397 to_clean->io.irq_cleanup(&to_clean->io);
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00002398 stop_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Corey Minyardc305e3d2008-04-29 01:01:10 -07002400 /*
2401 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06002402 * in the BMC. Note that timers and CPU interrupts are off,
2403 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07002404 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07002405 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07002406 poll(to_clean);
2407 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07002408 }
Corey Minyard7e030d62017-09-08 14:05:58 -05002409 if (to_clean->handlers)
Masamitsu Yamazaki4f7f5552017-11-15 07:33:14 +00002410 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07002411 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
2412 poll(to_clean);
2413 schedule_timeout_uninterruptible(1);
2414 }
2415
Matthew Garrett2407d772010-05-26 14:43:46 -07002416 if (to_clean->handlers)
2417 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 kfree(to_clean->si_sm);
2420
Corey Minyard910840f2017-09-12 14:41:56 -05002421 if (to_clean->io.addr_source_cleanup)
2422 to_clean->io.addr_source_cleanup(&to_clean->io);
Corey Minyarde1eeb7f2017-09-12 15:40:53 -05002423 if (to_clean->io.io_cleanup)
2424 to_clean->io.io_cleanup(&to_clean->io);
Corey Minyard50c812b2006-03-26 01:37:21 -08002425
Corey Minyard910840f2017-09-12 14:41:56 -05002426 if (to_clean->pdev)
Corey Minyard50c812b2006-03-26 01:37:21 -08002427 platform_device_unregister(to_clean->pdev);
2428
2429 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
Corey Minyardbb398a42017-09-12 21:37:02 -05002432int ipmi_si_remove_by_dev(struct device *dev)
2433{
2434 struct smi_info *e;
2435 int rv = -ENOENT;
2436
2437 mutex_lock(&smi_infos_lock);
2438 list_for_each_entry(e, &smi_infos, link) {
2439 if (e->io.dev == dev) {
2440 cleanup_one_si(e);
2441 rv = 0;
2442 break;
2443 }
2444 }
2445 mutex_unlock(&smi_infos_lock);
2446
2447 return rv;
2448}
2449
Corey Minyard44814ec2017-09-12 22:28:49 -05002450void ipmi_si_remove_by_data(int addr_space, enum si_type si_type,
2451 unsigned long addr)
2452{
2453 /* remove */
2454 struct smi_info *e, *tmp_e;
2455
2456 mutex_lock(&smi_infos_lock);
2457 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
2458 if (e->io.addr_type != addr_space)
2459 continue;
2460 if (e->io.si_type != si_type)
2461 continue;
2462 if (e->io.addr_data == addr)
2463 cleanup_one_si(e);
2464 }
2465 mutex_unlock(&smi_infos_lock);
2466}
2467
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07002468static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002470 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Corey Minyardb0defcd2006-03-26 01:37:20 -08002472 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return;
2474
Corey Minyard13d0b352017-09-12 23:04:35 -05002475 ipmi_si_pci_shutdown();
Corey Minyardc6f85a72017-09-12 23:10:18 -05002476
2477 ipmi_si_parisc_shutdown();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002478
Corey Minyard9d700292017-09-12 22:55:57 -05002479 ipmi_si_platform_shutdown();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002480
Corey Minyardd6dfd132006-03-31 02:30:41 -08002481 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002482 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
2483 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08002484 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486module_exit(cleanup_ipmi_si);
2487
Corey Minyard0944d882016-02-03 10:45:28 -06002488MODULE_ALIAS("platform:dmi-ipmi-si");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07002490MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07002491MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
2492 " system interfaces.");