blob: 21bddc10e321a76346f7ff6ffe93fde3a80a89d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipmi_si.c
3 *
4 * The interface to the IPMI driver for the system interfaces (KCS, SMIC,
5 * BT).
6 *
7 * Author: MontaVista Software, Inc.
8 * Corey Minyard <minyard@mvista.com>
9 * source@mvista.com
10 *
11 * Copyright 2002 MontaVista Software Inc.
Corey Minyarddba9b4f2007-05-08 00:23:51 -070012 * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 *
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
28 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
29 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * You should have received a copy of the GNU General Public License along
32 * with this program; if not, write to the Free Software Foundation, Inc.,
33 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 */
35
36/*
37 * This file holds the "policy" for the interface to the SMI state
38 * machine. It does the configuration, handles timers and interrupts,
39 * and drives the real SMI state machine.
40 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/module.h>
43#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/sched.h>
Alexey Dobriyan07412732011-05-26 16:25:55 -070045#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/timer.h>
47#include <linux/errno.h>
48#include <linux/spinlock.h>
49#include <linux/slab.h>
50#include <linux/delay.h>
51#include <linux/list.h>
52#include <linux/pci.h>
53#include <linux/ioport.h>
Corey Minyardea940272005-11-07 00:59:59 -080054#include <linux/notifier.h>
Corey Minyardb0defcd2006-03-26 01:37:20 -080055#include <linux/mutex.h>
Matt Domsche9a705a2005-11-07 01:00:04 -080056#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/interrupt.h>
59#include <linux/rcupdate.h>
Zhao Yakui16f42322010-12-08 10:10:16 +080060#include <linux/ipmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ipmi_smi.h>
62#include <asm/io.h>
63#include "ipmi_si_sm.h"
Andrey Paninb224cd32005-09-06 15:18:37 -070064#include <linux/dmi.h>
Corey Minyardb361e272006-12-06 20:41:07 -080065#include <linux/string.h>
66#include <linux/ctype.h>
Stephen Rothwell11c675c2008-05-23 16:22:42 +100067#include <linux/of_device.h>
68#include <linux/of_platform.h>
Rob Herring672d8ea2010-11-16 14:33:51 -060069#include <linux/of_address.h>
70#include <linux/of_irq.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070071
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -050072#ifdef CONFIG_PARISC
73#include <asm/hardware.h> /* for register_parisc_driver() stuff */
74#include <asm/parisc-device.h>
75#endif
76
Corey Minyardb361e272006-12-06 20:41:07 -080077#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Measure times between events in the driver. */
80#undef DEBUG_TIMING
81
82/* Call every 10 ms. */
83#define SI_TIMEOUT_TIME_USEC 10000
84#define SI_USEC_PER_JIFFY (1000000/HZ)
85#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
86#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070087 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89enum si_intf_state {
90 SI_NORMAL,
91 SI_GETTING_FLAGS,
92 SI_GETTING_EVENTS,
93 SI_CLEARING_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 SI_GETTING_MESSAGES,
Corey Minyardd9b7e4f2014-11-19 04:03:26 -060095 SI_CHECKING_ENABLES,
96 SI_SETTING_ENABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* FIXME - add watchdog stuff. */
98};
99
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700100/* Some BT-specific defines we need here. */
101#define IPMI_BT_INTMASK_REG 2
102#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
103#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105enum si_type {
106 SI_KCS, SI_SMIC, SI_BT
107};
Corey Minyardb361e272006-12-06 20:41:07 -0800108static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Corey Minyard50c812b2006-03-26 01:37:21 -0800110#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700111
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600112static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700113
114/*
115 * Indexes into stats[] in smi_info below.
116 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700117enum si_stat_indexes {
118 /*
119 * Number of times the driver requested a timer while an operation
120 * was in progress.
121 */
122 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700123
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700124 /*
125 * Number of times the driver requested a timer while nothing was in
126 * progress.
127 */
128 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700129
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700130 /* Number of times the interface was idle while being polled. */
131 SI_STAT_idles,
132
133 /* Number of interrupts the driver handled. */
134 SI_STAT_interrupts,
135
136 /* Number of time the driver got an ATTN from the hardware. */
137 SI_STAT_attentions,
138
139 /* Number of times the driver requested flags from the hardware. */
140 SI_STAT_flag_fetches,
141
142 /* Number of times the hardware didn't follow the state machine. */
143 SI_STAT_hosed_count,
144
145 /* Number of completed messages. */
146 SI_STAT_complete_transactions,
147
148 /* Number of IPMI events received from the hardware. */
149 SI_STAT_events,
150
151 /* Number of watchdog pretimeouts. */
152 SI_STAT_watchdog_pretimeouts,
153
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400154 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700155 SI_STAT_incoming_messages,
156
157
158 /* This *must* remain last, add new values above this. */
159 SI_NUM_STATS
160};
Corey Minyard64959e22008-04-29 01:01:07 -0700161
Corey Minyardc305e3d2008-04-29 01:01:10 -0700162struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800163 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 ipmi_smi_t intf;
165 struct si_sm_data *si_sm;
Corey Minyard81d02b72015-06-13 10:34:25 -0500166 const struct si_sm_handlers *handlers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 enum si_type si_type;
168 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600169 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct ipmi_smi_msg *curr_msg;
171 enum si_intf_state si_state;
172
Corey Minyardc305e3d2008-04-29 01:01:10 -0700173 /*
174 * Used to handle the various types of I/O that can occur with
175 * IPMI
176 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct si_sm_io io;
178 int (*io_setup)(struct smi_info *info);
179 void (*io_cleanup)(struct smi_info *info);
180 int (*irq_setup)(struct smi_info *info);
181 void (*irq_cleanup)(struct smi_info *info);
182 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700183 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800184 void (*addr_source_cleanup)(struct smi_info *info);
185 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Corey Minyardc305e3d2008-04-29 01:01:10 -0700187 /*
188 * Per-OEM handler, called from handle_flags(). Returns 1
189 * when handle_flags() needs to be re-run or 0 indicating it
190 * set si_state itself.
191 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700192 int (*oem_data_avail_handler)(struct smi_info *smi_info);
193
Corey Minyardc305e3d2008-04-29 01:01:10 -0700194 /*
195 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
196 * is set to hold the flags until we are done handling everything
197 * from the flags.
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define RECEIVE_MSG_AVAIL 0x01
200#define EVENT_MSG_BUFFER_FULL 0x02
201#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700202#define OEM0_DATA_AVAIL 0x20
203#define OEM1_DATA_AVAIL 0x40
204#define OEM2_DATA_AVAIL 0x80
205#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700206 OEM1_DATA_AVAIL | \
207 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned char msg_flags;
209
Corey Minyard40112ae2009-04-21 12:24:03 -0700210 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500211 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700212
Corey Minyardc305e3d2008-04-29 01:01:10 -0700213 /*
214 * If set to true, this will request events the next time the
215 * state machine is idle.
216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 atomic_t req_events;
218
Corey Minyardc305e3d2008-04-29 01:01:10 -0700219 /*
220 * If true, run the state machine to completion on every send
221 * call. Generally used after a panic to make sure stuff goes
222 * out.
223 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500224 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* The I/O port of an SI interface. */
227 int port;
228
Corey Minyardc305e3d2008-04-29 01:01:10 -0700229 /*
230 * The space between start addresses of the two ports. For
231 * instance, if the first port is 0xca2 and the spacing is 4, then
232 * the second port is 0xca6.
233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 unsigned int spacing;
235
236 /* zero if no irq; */
237 int irq;
238
239 /* The timer for this si. */
240 struct timer_list si_timer;
241
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500242 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
243 bool timer_running;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* The time (in jiffies) the last timeout occurred at. */
246 unsigned long last_timeout_jiffies;
247
Corey Minyard89986492014-04-14 09:46:54 -0500248 /* Are we waiting for the events, pretimeouts, received msgs? */
249 atomic_t need_watch;
250
Corey Minyardc305e3d2008-04-29 01:01:10 -0700251 /*
252 * The driver will disable interrupts when it gets into a
253 * situation where it cannot handle messages due to lack of
254 * memory. Once that situation clears up, it will re-enable
255 * interrupts.
256 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500257 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600259 /*
260 * Does the BMC support events?
261 */
262 bool supports_event_msg_buff;
263
Corey Minyarda8df1502014-11-19 11:47:17 -0600264 /*
Corey Minyardd0882892015-08-18 14:29:10 -0500265 * Can we disable interrupts the global enables receive irq
266 * bit? There are currently two forms of brokenness, some
267 * systems cannot disable the bit (which is technically within
268 * the spec but a bad idea) and some systems have the bit
269 * forced to zero even though interrupts work (which is
270 * clearly outside the spec). The next bool tells which form
271 * of brokenness is present.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500272 */
Corey Minyardd0882892015-08-18 14:29:10 -0500273 bool cannot_disable_irq;
274
275 /*
276 * Some systems are broken and cannot set the irq enable
277 * bit, even if they support interrupts.
278 */
279 bool irq_enable_broken;
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500280
281 /*
Corey Minyarda8df1502014-11-19 11:47:17 -0600282 * Did we get an attention that we did not handle?
283 */
284 bool got_attn;
285
Corey Minyard50c812b2006-03-26 01:37:21 -0800286 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700287 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Corey Minyard50c812b2006-03-26 01:37:21 -0800289 /* Driver model stuff. */
290 struct device *dev;
291 struct platform_device *pdev;
292
Corey Minyardc305e3d2008-04-29 01:01:10 -0700293 /*
294 * True if we allocated the device, false if it came from
295 * someplace else (like PCI).
296 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500297 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* Slave address, could be reported from DMI. */
300 unsigned char slave_addr;
301
302 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700303 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800304
Corey Minyardc305e3d2008-04-29 01:01:10 -0700305 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800306
307 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800308 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309};
310
Corey Minyard64959e22008-04-29 01:01:07 -0700311#define smi_inc_stat(smi, stat) \
312 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
313#define smi_get_stat(smi, stat) \
314 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
315
Corey Minyarda51f4a82006-10-03 01:13:59 -0700316#define SI_MAX_PARMS 4
317
318static int force_kipmid[SI_MAX_PARMS];
319static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700320#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500321static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700322#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500323#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500324static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500325#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700326
Martin Wilckae74e822010-03-10 15:23:06 -0800327static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
328static int num_max_busy_us;
329
Corey Minyard7aefac22014-04-14 09:46:56 -0500330static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800331
Matthew Garrett2407d772010-05-26 14:43:46 -0700332static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800333static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800334static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600335static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800336
John Stultzf93aae92015-01-07 14:24:28 -0800337#ifdef DEBUG_TIMING
338void debug_timestamp(char *msg)
339{
John Stultz48862ea22015-01-07 14:24:29 -0800340 struct timespec64 t;
John Stultzf93aae92015-01-07 14:24:28 -0800341
John Stultz48862ea22015-01-07 14:24:29 -0800342 getnstimeofday64(&t);
343 pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec);
John Stultzf93aae92015-01-07 14:24:28 -0800344}
345#else
346#define debug_timestamp(x)
347#endif
348
Alan Sterne041c682006-03-27 01:16:30 -0800349static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700350static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800351{
Alan Sterne041c682006-03-27 01:16:30 -0800352 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355static void deliver_recv_msg(struct smi_info *smi_info,
356 struct ipmi_smi_msg *msg)
357{
Corey Minyard7adf5792012-03-28 14:42:49 -0700358 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600359 if (smi_info->intf)
360 ipmi_smi_msg_received(smi_info->intf, msg);
361 else
362 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800365static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct ipmi_smi_msg *msg = smi_info->curr_msg;
368
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800369 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
370 cCode = IPMI_ERR_UNSPECIFIED;
371 /* else use it as is */
372
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300373 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 msg->rsp[0] = msg->data[0] | 4;
375 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800376 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 msg->rsp_size = 3;
378
379 smi_info->curr_msg = NULL;
380 deliver_recv_msg(smi_info, msg);
381}
382
383static enum si_sm_result start_next_msg(struct smi_info *smi_info)
384{
385 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Corey Minyardb874b982014-11-06 17:01:59 -0600387 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 smi_info->curr_msg = NULL;
389 rv = SI_SM_IDLE;
390 } else {
391 int err;
392
Corey Minyardb874b982014-11-06 17:01:59 -0600393 smi_info->curr_msg = smi_info->waiting_msg;
394 smi_info->waiting_msg = NULL;
John Stultzf93aae92015-01-07 14:24:28 -0800395 debug_timestamp("Start2");
Alan Sterne041c682006-03-27 01:16:30 -0800396 err = atomic_notifier_call_chain(&xaction_notifier_list,
397 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800398 if (err & NOTIFY_STOP_MASK) {
399 rv = SI_SM_CALL_WITHOUT_DELAY;
400 goto out;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 err = smi_info->handlers->start_transaction(
403 smi_info->si_sm,
404 smi_info->curr_msg->data,
405 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700406 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800407 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 rv = SI_SM_CALL_WITHOUT_DELAY;
410 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700411 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return rv;
413}
414
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600415static void start_check_enables(struct smi_info *smi_info)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700416{
417 unsigned char msg[2];
418
419 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
420 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
421
422 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600423 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static void start_clear_flags(struct smi_info *smi_info)
427{
428 unsigned char msg[3];
429
430 /* Make sure the watchdog pre-timeout flag is not set at startup. */
431 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
432 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
433 msg[2] = WDT_PRE_TIMEOUT_INT;
434
435 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
436 smi_info->si_state = SI_CLEARING_FLAGS;
437}
438
Corey Minyard968bf7c2014-11-06 19:06:00 -0600439static void start_getting_msg_queue(struct smi_info *smi_info)
440{
441 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
442 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
443 smi_info->curr_msg->data_size = 2;
444
445 smi_info->handlers->start_transaction(
446 smi_info->si_sm,
447 smi_info->curr_msg->data,
448 smi_info->curr_msg->data_size);
449 smi_info->si_state = SI_GETTING_MESSAGES;
450}
451
452static void start_getting_events(struct smi_info *smi_info)
453{
454 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
455 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
456 smi_info->curr_msg->data_size = 2;
457
458 smi_info->handlers->start_transaction(
459 smi_info->si_sm,
460 smi_info->curr_msg->data,
461 smi_info->curr_msg->data_size);
462 smi_info->si_state = SI_GETTING_EVENTS;
463}
464
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500465static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
466{
467 smi_info->last_timeout_jiffies = jiffies;
468 mod_timer(&smi_info->si_timer, new_val);
469 smi_info->timer_running = true;
470}
471
Corey Minyardc305e3d2008-04-29 01:01:10 -0700472/*
473 * When we have a situtaion where we run out of memory and cannot
474 * allocate messages, we just leave them in the BMC and run the system
475 * polled until we can allocate some memory. Once we have some
476 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500477 *
478 * Note that we cannot just use disable_irq(), since the interrupt may
479 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700480 */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600481static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800483 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500484 smi_info->interrupt_disabled = true;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600485 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600486 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600488 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Corey Minyard968bf7c2014-11-06 19:06:00 -0600491static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500494 smi_info->interrupt_disabled = false;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600495 start_check_enables(smi_info);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600496 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600498 return false;
499}
500
501/*
502 * Allocate a message. If unable to allocate, start the interrupt
503 * disable process and return NULL. If able to allocate but
504 * interrupts are disabled, free the message and return NULL after
505 * starting the interrupt enable process.
506 */
507static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
508{
509 struct ipmi_smi_msg *msg;
510
511 msg = ipmi_alloc_smi_msg();
512 if (!msg) {
513 if (!disable_si_irq(smi_info))
514 smi_info->si_state = SI_NORMAL;
515 } else if (enable_si_irq(smi_info)) {
516 ipmi_free_smi_msg(msg);
517 msg = NULL;
518 }
519 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522static void handle_flags(struct smi_info *smi_info)
523{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700524 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
526 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700527 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 start_clear_flags(smi_info);
530 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600531 if (smi_info->intf)
532 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
534 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600535 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
536 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Corey Minyard968bf7c2014-11-06 19:06:00 -0600539 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
541 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600542 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
543 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Corey Minyard968bf7c2014-11-06 19:06:00 -0600546 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700547 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700548 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700549 if (smi_info->oem_data_avail_handler(smi_info))
550 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700551 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600555/*
556 * Global enables we care about.
557 */
558#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
559 IPMI_BMC_EVT_MSG_INTR)
560
Corey Minyard95c97b52014-11-20 07:19:44 -0600561static u8 current_global_enables(struct smi_info *smi_info, u8 base,
562 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600563{
564 u8 enables = 0;
565
566 if (smi_info->supports_event_msg_buff)
567 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600568
Corey Minyardd0882892015-08-18 14:29:10 -0500569 if (((smi_info->irq && !smi_info->interrupt_disabled) ||
570 smi_info->cannot_disable_irq) &&
571 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600572 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600573
574 if (smi_info->supports_event_msg_buff &&
Corey Minyardd0882892015-08-18 14:29:10 -0500575 smi_info->irq && !smi_info->interrupt_disabled &&
576 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600577 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600578
Corey Minyard95c97b52014-11-20 07:19:44 -0600579 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
580
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600581 return enables;
582}
583
Corey Minyard95c97b52014-11-20 07:19:44 -0600584static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
585{
586 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
587
588 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
589
590 if ((bool)irqstate == irq_on)
591 return;
592
593 if (irq_on)
594 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
595 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
596 else
597 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static void handle_transaction_done(struct smi_info *smi_info)
601{
602 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
John Stultzf93aae92015-01-07 14:24:28 -0800604 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 switch (smi_info->si_state) {
606 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800607 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 break;
609
610 smi_info->curr_msg->rsp_size
611 = smi_info->handlers->get_result(
612 smi_info->si_sm,
613 smi_info->curr_msg->rsp,
614 IPMI_MAX_MSG_LENGTH);
615
Corey Minyardc305e3d2008-04-29 01:01:10 -0700616 /*
617 * Do this here becase deliver_recv_msg() releases the
618 * lock, and a new message can be put in during the
619 * time the lock is released.
620 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 msg = smi_info->curr_msg;
622 smi_info->curr_msg = NULL;
623 deliver_recv_msg(smi_info, msg);
624 break;
625
626 case SI_GETTING_FLAGS:
627 {
628 unsigned char msg[4];
629 unsigned int len;
630
631 /* We got the flags from the SMI, now handle them. */
632 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
633 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700634 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 smi_info->si_state = SI_NORMAL;
636 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700637 /*
638 * Hmm, no flags. That's technically illegal, but
639 * don't use uninitialized data.
640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 smi_info->si_state = SI_NORMAL;
642 } else {
643 smi_info->msg_flags = msg[3];
644 handle_flags(smi_info);
645 }
646 break;
647 }
648
649 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 {
651 unsigned char msg[3];
652
653 /* We cleared the flags. */
654 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
655 if (msg[2] != 0) {
656 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700657 dev_warn(smi_info->dev,
658 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600660 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 }
663
664 case SI_GETTING_EVENTS:
665 {
666 smi_info->curr_msg->rsp_size
667 = smi_info->handlers->get_result(
668 smi_info->si_sm,
669 smi_info->curr_msg->rsp,
670 IPMI_MAX_MSG_LENGTH);
671
Corey Minyardc305e3d2008-04-29 01:01:10 -0700672 /*
673 * Do this here becase deliver_recv_msg() releases the
674 * lock, and a new message can be put in during the
675 * time the lock is released.
676 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 msg = smi_info->curr_msg;
678 smi_info->curr_msg = NULL;
679 if (msg->rsp[2] != 0) {
680 /* Error getting event, probably done. */
681 msg->done(msg);
682
683 /* Take off the event flag. */
684 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
685 handle_flags(smi_info);
686 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700687 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Corey Minyardc305e3d2008-04-29 01:01:10 -0700689 /*
690 * Do this before we deliver the message
691 * because delivering the message releases the
692 * lock and something else can mess with the
693 * state.
694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 handle_flags(smi_info);
696
697 deliver_recv_msg(smi_info, msg);
698 }
699 break;
700 }
701
702 case SI_GETTING_MESSAGES:
703 {
704 smi_info->curr_msg->rsp_size
705 = smi_info->handlers->get_result(
706 smi_info->si_sm,
707 smi_info->curr_msg->rsp,
708 IPMI_MAX_MSG_LENGTH);
709
Corey Minyardc305e3d2008-04-29 01:01:10 -0700710 /*
711 * Do this here becase deliver_recv_msg() releases the
712 * lock, and a new message can be put in during the
713 * time the lock is released.
714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 msg = smi_info->curr_msg;
716 smi_info->curr_msg = NULL;
717 if (msg->rsp[2] != 0) {
718 /* Error getting event, probably done. */
719 msg->done(msg);
720
721 /* Take off the msg flag. */
722 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
723 handle_flags(smi_info);
724 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700725 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Corey Minyardc305e3d2008-04-29 01:01:10 -0700727 /*
728 * Do this before we deliver the message
729 * because delivering the message releases the
730 * lock and something else can mess with the
731 * state.
732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 handle_flags(smi_info);
734
735 deliver_recv_msg(smi_info, msg);
736 }
737 break;
738 }
739
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600740 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 {
742 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600743 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600744 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* We got the flags from the SMI, now handle them. */
747 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
748 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500749 dev_warn(smi_info->dev,
750 "Couldn't get irq info: %x.\n", msg[2]);
751 dev_warn(smi_info->dev,
752 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600754 break;
755 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600756 enables = current_global_enables(smi_info, 0, &irq_on);
757 if (smi_info->si_type == SI_BT)
758 /* BT has its own interrupt enable bit. */
759 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600760 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
761 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
763 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600764 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 smi_info->handlers->start_transaction(
766 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600767 smi_info->si_state = SI_SETTING_ENABLES;
768 } else if (smi_info->supports_event_msg_buff) {
769 smi_info->curr_msg = ipmi_alloc_smi_msg();
770 if (!smi_info->curr_msg) {
771 smi_info->si_state = SI_NORMAL;
772 break;
773 }
774 start_getting_msg_queue(smi_info);
775 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700776 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700777 }
778 break;
779 }
780
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600781 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700782 {
783 unsigned char msg[4];
784
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700785 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600786 if (msg[2] != 0)
787 dev_warn(smi_info->dev,
788 "Could not set the global enables: 0x%x.\n",
789 msg[2]);
790
791 if (smi_info->supports_event_msg_buff) {
792 smi_info->curr_msg = ipmi_alloc_smi_msg();
793 if (!smi_info->curr_msg) {
794 smi_info->si_state = SI_NORMAL;
795 break;
796 }
797 start_getting_msg_queue(smi_info);
798 } else {
799 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700800 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700801 break;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804}
805
Corey Minyardc305e3d2008-04-29 01:01:10 -0700806/*
807 * Called on timeouts and events. Timeouts should pass the elapsed
808 * time, interrupts should pass in zero. Must be called with
809 * si_lock held and interrupts disabled.
810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
812 int time)
813{
814 enum si_sm_result si_sm_result;
815
816 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700817 /*
818 * There used to be a loop here that waited a little while
819 * (around 25us) before giving up. That turned out to be
820 * pointless, the minimum delays I was seeing were in the 300us
821 * range, which is far too long to wait in an interrupt. So
822 * we just run until the state machine tells us something
823 * happened or it needs a delay.
824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
826 time = 0;
827 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Corey Minyardc305e3d2008-04-29 01:01:10 -0700830 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700831 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 handle_transaction_done(smi_info);
834 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700835 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700836 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Corey Minyardc305e3d2008-04-29 01:01:10 -0700838 /*
839 * Do the before return_hosed_msg, because that
840 * releases the lock.
841 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 smi_info->si_state = SI_NORMAL;
843 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700844 /*
845 * If we were handling a user message, format
846 * a response to send to the upper layer to
847 * tell it about the error.
848 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800849 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
852 }
853
Corey Minyard4ea18422008-04-29 01:01:01 -0700854 /*
855 * We prefer handling attn over new messages. But don't do
856 * this if there is not yet an upper layer to handle anything.
857 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600858 if (likely(smi_info->intf) &&
859 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 unsigned char msg[2];
861
Corey Minyarda8df1502014-11-19 11:47:17 -0600862 if (smi_info->si_state != SI_NORMAL) {
863 /*
864 * We got an ATTN, but we are doing something else.
865 * Handle the ATTN later.
866 */
867 smi_info->got_attn = true;
868 } else {
869 smi_info->got_attn = false;
870 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Corey Minyarda8df1502014-11-19 11:47:17 -0600872 /*
873 * Got a attn, send down a get message flags to see
874 * what's causing it. It would be better to handle
875 * this in the upper layer, but due to the way
876 * interrupts work with the SMI, that's not really
877 * possible.
878 */
879 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
880 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Corey Minyarda8df1502014-11-19 11:47:17 -0600882 smi_info->handlers->start_transaction(
883 smi_info->si_sm, msg, 2);
884 smi_info->si_state = SI_GETTING_FLAGS;
885 goto restart;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888
889 /* If we are currently idle, try to start the next message. */
890 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700891 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 si_sm_result = start_next_msg(smi_info);
894 if (si_sm_result != SI_SM_IDLE)
895 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700899 && (atomic_read(&smi_info->req_events))) {
900 /*
901 * We are idle and the upper layer requested that I fetch
902 * events, so do so.
903 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800905
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600906 /*
907 * Take this opportunity to check the interrupt and
908 * message enable state for the BMC. The BMC can be
909 * asynchronously reset, and may thus get interrupts
910 * disable and messages disabled.
911 */
912 if (smi_info->supports_event_msg_buff || smi_info->irq) {
913 start_check_enables(smi_info);
914 } else {
915 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
916 if (!smi_info->curr_msg)
917 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800918
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600919 start_getting_events(smi_info);
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto restart;
922 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800923 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return si_sm_result;
925}
926
Corey Minyard89986492014-04-14 09:46:54 -0500927static void check_start_timer_thread(struct smi_info *smi_info)
928{
929 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
930 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
931
932 if (smi_info->thread)
933 wake_up_process(smi_info->thread);
934
935 start_next_msg(smi_info);
936 smi_event_handler(smi_info, 0);
937 }
938}
939
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900940static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900941{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900942 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900943 enum si_sm_result result;
944
945 /*
946 * Currently, this function is called only in run-to-completion
947 * mode. This means we are single-threaded, no need for locks.
948 */
949 result = smi_event_handler(smi_info, 0);
950 while (result != SI_SM_IDLE) {
951 udelay(SI_SHORT_TIMEOUT_USEC);
952 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
953 }
954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600957 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
John Stultzf93aae92015-01-07 14:24:28 -0800962 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700965 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900966 * If we are running to completion, start it. Upper
967 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700968 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900969 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Corey Minyardf60adf42012-03-28 14:42:50 -0700973 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600974 /*
975 * The following two lines don't need to be under the lock for
976 * the lock's sake, but they do need SMP memory barriers to
977 * avoid getting things out of order. We are already claiming
978 * the lock, anyway, so just do it under the lock to avoid the
979 * ordering problem.
980 */
981 BUG_ON(smi_info->waiting_msg);
982 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -0500983 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700984 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Corey Minyard7aefac22014-04-14 09:46:56 -0500987static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900992 if (i_run_to_completion)
993 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Martin Wilckae74e822010-03-10 15:23:06 -0800996/*
997 * Use -1 in the nsec value of the busy waiting timespec to tell that
998 * we are spinning in kipmid looking for something and not delaying
999 * between checks
1000 */
John Stultz48862ea22015-01-07 14:24:29 -08001001static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001002{
1003 ts->tv_nsec = -1;
1004}
John Stultz48862ea22015-01-07 14:24:29 -08001005static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001006{
1007 return ts->tv_nsec != -1;
1008}
1009
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001010static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1011 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001012 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001013{
1014 unsigned int max_busy_us = 0;
1015
1016 if (smi_info->intf_num < num_max_busy_us)
1017 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1018 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1019 ipmi_si_set_not_busy(busy_until);
1020 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001021 getnstimeofday64(busy_until);
1022 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001023 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001024 struct timespec64 now;
1025
1026 getnstimeofday64(&now);
1027 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001028 ipmi_si_set_not_busy(busy_until);
1029 return 0;
1030 }
1031 }
1032 return 1;
1033}
1034
1035
1036/*
1037 * A busy-waiting loop for speeding up IPMI operation.
1038 *
1039 * Lousy hardware makes this hard. This is only enabled for systems
1040 * that are not BT and do not have interrupts. It starts spinning
1041 * when an operation is complete or until max_busy tells it to stop
1042 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1043 * Documentation/IPMI.txt for details.
1044 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001045static int ipmi_thread(void *data)
1046{
1047 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001048 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001049 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001050 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001051
Martin Wilckae74e822010-03-10 15:23:06 -08001052 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001053 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001054 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001055 int busy_wait;
1056
Corey Minyarda9a2c442005-11-07 01:00:03 -08001057 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001058 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001059
1060 /*
1061 * If the driver is doing something, there is a possible
1062 * race with the timer. If the timer handler see idle,
1063 * and the thread here sees something else, the timer
1064 * handler won't restart the timer even though it is
1065 * required. So start it here if necessary.
1066 */
1067 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1068 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1069
Corey Minyarda9a2c442005-11-07 01:00:03 -08001070 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001071 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1072 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001073 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1074 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001075 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001076 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001077 else if (smi_result == SI_SM_IDLE) {
1078 if (atomic_read(&smi_info->need_watch)) {
1079 schedule_timeout_interruptible(100);
1080 } else {
1081 /* Wait to be woken up when we are needed. */
1082 __set_current_state(TASK_INTERRUPTIBLE);
1083 schedule();
1084 }
1085 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001086 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001087 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001088 return 0;
1089}
1090
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092static void poll(void *send_info)
1093{
1094 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001095 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001096 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Corey Minyard15c62e12006-12-06 20:41:06 -08001098 /*
1099 * Make sure there is some delay in the poll loop so we can
1100 * drive time forward and timeout things.
1101 */
1102 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001103 if (!run_to_completion)
1104 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001105 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001106 if (!run_to_completion)
1107 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110static void request_events(void *send_info)
1111{
1112 struct smi_info *smi_info = send_info;
1113
Corey Minyardb874b982014-11-06 17:01:59 -06001114 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001115 return;
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 atomic_set(&smi_info->req_events, 1);
1118}
1119
Corey Minyard7aefac22014-04-14 09:46:56 -05001120static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001121{
1122 struct smi_info *smi_info = send_info;
1123 unsigned long flags;
1124
1125 atomic_set(&smi_info->need_watch, enable);
1126 spin_lock_irqsave(&smi_info->si_lock, flags);
1127 check_start_timer_thread(smi_info);
1128 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1129}
1130
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001131static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133static void smi_timeout(unsigned long data)
1134{
1135 struct smi_info *smi_info = (struct smi_info *) data;
1136 enum si_sm_result smi_result;
1137 unsigned long flags;
1138 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001139 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001140 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001143 debug_timestamp("Timer");
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001146 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 * SI_USEC_PER_JIFFY);
1148 smi_result = smi_event_handler(smi_info, time_diff);
1149
Corey Minyardb0defcd2006-03-26 01:37:20 -08001150 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001152 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001153 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001154 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
Corey Minyardc305e3d2008-04-29 01:01:10 -07001157 /*
1158 * If the state machine asks for a short delay, then shorten
1159 * the timer timeout.
1160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001162 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001163 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001165 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001166 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001169 do_mod_timer:
1170 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001171 smi_mod_timer(smi_info, timeout);
1172 else
1173 smi_info->timer_running = false;
1174 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
David Howells7d12e782006-10-05 14:55:46 +01001177static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 struct smi_info *smi_info = data;
1180 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 spin_lock_irqsave(&(smi_info->si_lock), flags);
1183
Corey Minyard64959e22008-04-29 01:01:07 -07001184 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
John Stultzf93aae92015-01-07 14:24:28 -08001186 debug_timestamp("Interrupt");
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1190 return IRQ_HANDLED;
1191}
1192
David Howells7d12e782006-10-05 14:55:46 +01001193static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001194{
1195 struct smi_info *smi_info = data;
1196 /* We need to clear the IRQ flag for the BT interface. */
1197 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1198 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1199 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001200 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001201}
1202
Corey Minyard453823b2006-03-31 02:30:39 -08001203static int smi_start_processing(void *send_info,
1204 ipmi_smi_t intf)
1205{
1206 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001207 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001208
1209 new_smi->intf = intf;
1210
Corey Minyardc45adc32007-10-18 03:07:08 -07001211 /* Try to claim any interrupts. */
1212 if (new_smi->irq_setup)
1213 new_smi->irq_setup(new_smi);
1214
Corey Minyard453823b2006-03-31 02:30:39 -08001215 /* Set up the timer that drives the interface. */
1216 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001217 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001218
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001219 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001220 * Check if the user forcefully enabled the daemon.
1221 */
1222 if (new_smi->intf_num < num_force_kipmid)
1223 enable = force_kipmid[new_smi->intf_num];
1224 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001225 * The BT interface is efficient enough to not need a thread,
1226 * and there is no need for a thread if we have interrupts.
1227 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001228 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001229 enable = 1;
1230
1231 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001232 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1233 "kipmi%d", new_smi->intf_num);
1234 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001235 dev_notice(new_smi->dev, "Could not start"
1236 " kernel thread due to error %ld, only using"
1237 " timers to drive the interface\n",
1238 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001239 new_smi->thread = NULL;
1240 }
1241 }
1242
1243 return 0;
1244}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001245
Zhao Yakui16f42322010-12-08 10:10:16 +08001246static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1247{
1248 struct smi_info *smi = send_info;
1249
1250 data->addr_src = smi->addr_source;
1251 data->dev = smi->dev;
1252 data->addr_info = smi->addr_info;
1253 get_device(smi->dev);
1254
1255 return 0;
1256}
1257
Corey Minyard7aefac22014-04-14 09:46:56 -05001258static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001259{
1260 struct smi_info *smi_info = send_info;
1261
1262 if (!enable)
1263 atomic_set(&smi_info->req_events, 0);
1264}
1265
Corey Minyard81d02b72015-06-13 10:34:25 -05001266static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001268 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001269 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .sender = sender,
1271 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001272 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001273 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001275 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 .poll = poll,
1277};
1278
Corey Minyardc305e3d2008-04-29 01:01:10 -07001279/*
1280 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1281 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Corey Minyardb0defcd2006-03-26 01:37:20 -08001284static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001285static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001286static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001289#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Corey Minyardd941aea2013-02-27 17:05:12 -08001291#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301292static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001293#endif
1294#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301295static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001296#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301297static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001298#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301299static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001300#endif
Corey Minyard0dfe6e72014-04-14 09:46:53 -05001301static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302static char *si_type[SI_MAX_PARMS];
1303#define MAX_SI_TYPE_STR 30
1304static char si_type_str[MAX_SI_TYPE_STR];
1305static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001306static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001308static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001310static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001312static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001314static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001316static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001317static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001318static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Corey Minyardb361e272006-12-06 20:41:07 -08001320#define IPMI_IO_ADDR_SPACE 0
1321#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001322static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001323
1324static int hotmod_handler(const char *val, struct kernel_param *kp);
1325
1326module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1327MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1328 " Documentation/IPMI.txt in the kernel sources for the"
1329 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Corey Minyardd941aea2013-02-27 17:05:12 -08001331#ifdef CONFIG_ACPI
1332module_param_named(tryacpi, si_tryacpi, bool, 0);
1333MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1334 " default scan of the interfaces identified via ACPI");
1335#endif
1336#ifdef CONFIG_DMI
1337module_param_named(trydmi, si_trydmi, bool, 0);
1338MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1339 " default scan of the interfaces identified via DMI");
1340#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001341module_param_named(tryplatform, si_tryplatform, bool, 0);
1342MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1343 " default scan of the interfaces identified via platform"
1344 " interfaces like openfirmware");
1345#ifdef CONFIG_PCI
1346module_param_named(trypci, si_trypci, bool, 0);
1347MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1348 " default scan of the interfaces identified via pci");
1349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350module_param_named(trydefaults, si_trydefaults, bool, 0);
1351MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1352 " default scan of the KCS and SMIC interface at the standard"
1353 " address");
1354module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1355MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1356 " interface separated by commas. The types are 'kcs',"
1357 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1358 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001359module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1361 " addresses separated by commas. Only use if an interface"
1362 " is in memory. Otherwise, set it to zero or leave"
1363 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001364module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1366 " addresses separated by commas. Only use if an interface"
1367 " is a port. Otherwise, set it to zero or leave"
1368 " it blank.");
1369module_param_array(irqs, int, &num_irqs, 0);
1370MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1371 " addresses separated by commas. Only use if an interface"
1372 " has an interrupt. Otherwise, set it to zero or leave"
1373 " it blank.");
1374module_param_array(regspacings, int, &num_regspacings, 0);
1375MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1376 " and each successive register used by the interface. For"
1377 " instance, if the start address is 0xca2 and the spacing"
1378 " is 2, then the second address is at 0xca4. Defaults"
1379 " to 1.");
1380module_param_array(regsizes, int, &num_regsizes, 0);
1381MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1382 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1383 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1384 " the 8-bit IPMI register has to be read from a larger"
1385 " register.");
1386module_param_array(regshifts, int, &num_regshifts, 0);
1387MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1388 " IPMI register, in bits. For instance, if the data"
1389 " is read from a 32-bit word and the IPMI data is in"
1390 " bit 8-15, then the shift would be 8");
1391module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1392MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1393 " the controller. Normally this is 0x20, but can be"
1394 " overridden by this parm. This is an array indexed"
1395 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001396module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1397MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1398 " disabled(0). Normally the IPMI driver auto-detects"
1399 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001400module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001401MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1402 " specified or found, default is 1. Setting to 0"
1403 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001404module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1405MODULE_PARM_DESC(kipmid_max_busy_us,
1406 "Max time (in microseconds) to busy-wait for IPMI data before"
1407 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1408 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410
Corey Minyardb0defcd2006-03-26 01:37:20 -08001411static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001413 if (info->si_type == SI_BT)
1414 /* Disable the interrupt in the BT interface. */
1415 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1416 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419static int std_irq_setup(struct smi_info *info)
1420{
1421 int rv;
1422
Corey Minyardb0defcd2006-03-26 01:37:20 -08001423 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
1425
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001426 if (info->si_type == SI_BT) {
1427 rv = request_irq(info->irq,
1428 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001429 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001430 DEVICE_NAME,
1431 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001432 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001433 /* Enable the interrupt in the BT interface. */
1434 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1435 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1436 } else
1437 rv = request_irq(info->irq,
1438 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001439 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001440 DEVICE_NAME,
1441 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001443 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1444 " running polled\n",
1445 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 info->irq = 0;
1447 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001448 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001449 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
1452 return rv;
1453}
1454
Corey Minyard81d02b72015-06-13 10:34:25 -05001455static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001457 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Corey Minyardb0defcd2006-03-26 01:37:20 -08001459 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Corey Minyard81d02b72015-06-13 10:34:25 -05001462static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 unsigned char b)
1464{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001465 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Corey Minyardb0defcd2006-03-26 01:37:20 -08001467 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Corey Minyard81d02b72015-06-13 10:34:25 -05001470static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001472 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Corey Minyardb0defcd2006-03-26 01:37:20 -08001474 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Corey Minyard81d02b72015-06-13 10:34:25 -05001477static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 unsigned char b)
1479{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001480 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Corey Minyardb0defcd2006-03-26 01:37:20 -08001482 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Corey Minyard81d02b72015-06-13 10:34:25 -05001485static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001487 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Corey Minyardb0defcd2006-03-26 01:37:20 -08001489 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Corey Minyard81d02b72015-06-13 10:34:25 -05001492static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 unsigned char b)
1494{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001495 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Corey Minyardb0defcd2006-03-26 01:37:20 -08001497 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500static void port_cleanup(struct smi_info *info)
1501{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001502 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001503 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Corey Minyardb0defcd2006-03-26 01:37:20 -08001505 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001506 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001507 release_region(addr + idx * info->io.regspacing,
1508 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512static int port_setup(struct smi_info *info)
1513{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001514 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001515 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Corey Minyardb0defcd2006-03-26 01:37:20 -08001517 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return -ENODEV;
1519
1520 info->io_cleanup = port_cleanup;
1521
Corey Minyardc305e3d2008-04-29 01:01:10 -07001522 /*
1523 * Figure out the actual inb/inw/inl/etc routine to use based
1524 * upon the register size.
1525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 switch (info->io.regsize) {
1527 case 1:
1528 info->io.inputb = port_inb;
1529 info->io.outputb = port_outb;
1530 break;
1531 case 2:
1532 info->io.inputb = port_inw;
1533 info->io.outputb = port_outw;
1534 break;
1535 case 4:
1536 info->io.inputb = port_inl;
1537 info->io.outputb = port_outl;
1538 break;
1539 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001540 dev_warn(info->dev, "Invalid register size: %d\n",
1541 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return -EINVAL;
1543 }
1544
Corey Minyardc305e3d2008-04-29 01:01:10 -07001545 /*
1546 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001547 * tables. This causes problems when trying to register the
1548 * entire I/O region. Therefore we must register each I/O
1549 * port separately.
1550 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001551 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001552 if (request_region(addr + idx * info->io.regspacing,
1553 info->io.regsize, DEVICE_NAME) == NULL) {
1554 /* Undo allocations */
1555 while (idx--) {
1556 release_region(addr + idx * info->io.regspacing,
1557 info->io.regsize);
1558 }
1559 return -EIO;
1560 }
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return 0;
1563}
1564
Corey Minyard81d02b72015-06-13 10:34:25 -05001565static unsigned char intf_mem_inb(const struct si_sm_io *io,
1566 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
1568 return readb((io->addr)+(offset * io->regspacing));
1569}
1570
Corey Minyard81d02b72015-06-13 10:34:25 -05001571static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1572 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
1574 writeb(b, (io->addr)+(offset * io->regspacing));
1575}
1576
Corey Minyard81d02b72015-06-13 10:34:25 -05001577static unsigned char intf_mem_inw(const struct si_sm_io *io,
1578 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001581 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Corey Minyard81d02b72015-06-13 10:34:25 -05001584static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1585 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
1587 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1588}
1589
Corey Minyard81d02b72015-06-13 10:34:25 -05001590static unsigned char intf_mem_inl(const struct si_sm_io *io,
1591 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001594 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Corey Minyard81d02b72015-06-13 10:34:25 -05001597static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1598 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1601}
1602
1603#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001604static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001607 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Corey Minyard81d02b72015-06-13 10:34:25 -05001610static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 unsigned char b)
1612{
1613 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1614}
1615#endif
1616
1617static void mem_cleanup(struct smi_info *info)
1618{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001619 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 int mapsize;
1621
1622 if (info->io.addr) {
1623 iounmap(info->io.addr);
1624
1625 mapsize = ((info->io_size * info->io.regspacing)
1626 - (info->io.regspacing - info->io.regsize));
1627
Corey Minyardb0defcd2006-03-26 01:37:20 -08001628 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
1632static int mem_setup(struct smi_info *info)
1633{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001634 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 int mapsize;
1636
Corey Minyardb0defcd2006-03-26 01:37:20 -08001637 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return -ENODEV;
1639
1640 info->io_cleanup = mem_cleanup;
1641
Corey Minyardc305e3d2008-04-29 01:01:10 -07001642 /*
1643 * Figure out the actual readb/readw/readl/etc routine to use based
1644 * upon the register size.
1645 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 switch (info->io.regsize) {
1647 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001648 info->io.inputb = intf_mem_inb;
1649 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 break;
1651 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001652 info->io.inputb = intf_mem_inw;
1653 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 break;
1655 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001656 info->io.inputb = intf_mem_inl;
1657 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 break;
1659#ifdef readq
1660 case 8:
1661 info->io.inputb = mem_inq;
1662 info->io.outputb = mem_outq;
1663 break;
1664#endif
1665 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001666 dev_warn(info->dev, "Invalid register size: %d\n",
1667 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return -EINVAL;
1669 }
1670
Corey Minyardc305e3d2008-04-29 01:01:10 -07001671 /*
1672 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 * unusual looking calculation, but it avoids claiming any
1674 * more memory than it has to. It will claim everything
1675 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001676 * register.
1677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 mapsize = ((info->io_size * info->io.regspacing)
1679 - (info->io.regspacing - info->io.regsize));
1680
Corey Minyardb0defcd2006-03-26 01:37:20 -08001681 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return -EIO;
1683
Corey Minyardb0defcd2006-03-26 01:37:20 -08001684 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001686 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return -EIO;
1688 }
1689 return 0;
1690}
1691
Corey Minyardb361e272006-12-06 20:41:07 -08001692/*
1693 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1694 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1695 * Options are:
1696 * rsp=<regspacing>
1697 * rsi=<regsize>
1698 * rsh=<regshift>
1699 * irq=<irq>
1700 * ipmb=<ipmb addr>
1701 */
1702enum hotmod_op { HM_ADD, HM_REMOVE };
1703struct hotmod_vals {
1704 char *name;
1705 int val;
1706};
1707static struct hotmod_vals hotmod_ops[] = {
1708 { "add", HM_ADD },
1709 { "remove", HM_REMOVE },
1710 { NULL }
1711};
1712static struct hotmod_vals hotmod_si[] = {
1713 { "kcs", SI_KCS },
1714 { "smic", SI_SMIC },
1715 { "bt", SI_BT },
1716 { NULL }
1717};
1718static struct hotmod_vals hotmod_as[] = {
1719 { "mem", IPMI_MEM_ADDR_SPACE },
1720 { "i/o", IPMI_IO_ADDR_SPACE },
1721 { NULL }
1722};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001723
Corey Minyardb361e272006-12-06 20:41:07 -08001724static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1725{
1726 char *s;
1727 int i;
1728
1729 s = strchr(*curr, ',');
1730 if (!s) {
1731 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1732 return -EINVAL;
1733 }
1734 *s = '\0';
1735 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001736 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001737 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001738 *val = v[i].val;
1739 *curr = s;
1740 return 0;
1741 }
1742 }
1743
1744 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1745 return -EINVAL;
1746}
1747
Corey Minyard1d5636c2006-12-10 02:19:08 -08001748static int check_hotmod_int_op(const char *curr, const char *option,
1749 const char *name, int *val)
1750{
1751 char *n;
1752
1753 if (strcmp(curr, name) == 0) {
1754 if (!option) {
1755 printk(KERN_WARNING PFX
1756 "No option given for '%s'\n",
1757 curr);
1758 return -EINVAL;
1759 }
1760 *val = simple_strtoul(option, &n, 0);
1761 if ((*n != '\0') || (*option == '\0')) {
1762 printk(KERN_WARNING PFX
1763 "Bad option given for '%s'\n",
1764 curr);
1765 return -EINVAL;
1766 }
1767 return 1;
1768 }
1769 return 0;
1770}
1771
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001772static struct smi_info *smi_info_alloc(void)
1773{
1774 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1775
Corey Minyardf60adf42012-03-28 14:42:50 -07001776 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001777 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001778 return info;
1779}
1780
Corey Minyardb361e272006-12-06 20:41:07 -08001781static int hotmod_handler(const char *val, struct kernel_param *kp)
1782{
1783 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001784 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001785 char *next, *curr, *s, *n, *o;
1786 enum hotmod_op op;
1787 enum si_type si_type;
1788 int addr_space;
1789 unsigned long addr;
1790 int regspacing;
1791 int regsize;
1792 int regshift;
1793 int irq;
1794 int ipmb;
1795 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001796 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001797 struct smi_info *info;
1798
1799 if (!str)
1800 return -ENOMEM;
1801
1802 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001803 len = strlen(str);
1804 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001805 while ((ival >= 0) && isspace(str[ival])) {
1806 str[ival] = '\0';
1807 ival--;
1808 }
1809
1810 for (curr = str; curr; curr = next) {
1811 regspacing = 1;
1812 regsize = 1;
1813 regshift = 0;
1814 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001815 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001816
1817 next = strchr(curr, ':');
1818 if (next) {
1819 *next = '\0';
1820 next++;
1821 }
1822
1823 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1824 if (rv)
1825 break;
1826 op = ival;
1827
1828 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1829 if (rv)
1830 break;
1831 si_type = ival;
1832
1833 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1834 if (rv)
1835 break;
1836
1837 s = strchr(curr, ',');
1838 if (s) {
1839 *s = '\0';
1840 s++;
1841 }
1842 addr = simple_strtoul(curr, &n, 0);
1843 if ((*n != '\0') || (*curr == '\0')) {
1844 printk(KERN_WARNING PFX "Invalid hotmod address"
1845 " '%s'\n", curr);
1846 break;
1847 }
1848
1849 while (s) {
1850 curr = s;
1851 s = strchr(curr, ',');
1852 if (s) {
1853 *s = '\0';
1854 s++;
1855 }
1856 o = strchr(curr, '=');
1857 if (o) {
1858 *o = '\0';
1859 o++;
1860 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001861 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1862 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001863 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001864 else if (rv)
1865 continue;
1866 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1867 if (rv < 0)
1868 goto out;
1869 else if (rv)
1870 continue;
1871 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1872 if (rv < 0)
1873 goto out;
1874 else if (rv)
1875 continue;
1876 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1877 if (rv < 0)
1878 goto out;
1879 else if (rv)
1880 continue;
1881 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1882 if (rv < 0)
1883 goto out;
1884 else if (rv)
1885 continue;
1886
1887 rv = -EINVAL;
1888 printk(KERN_WARNING PFX
1889 "Invalid hotmod option '%s'\n",
1890 curr);
1891 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001892 }
1893
1894 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001895 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001896 if (!info) {
1897 rv = -ENOMEM;
1898 goto out;
1899 }
1900
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001901 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001902 info->si_type = si_type;
1903 info->io.addr_data = addr;
1904 info->io.addr_type = addr_space;
1905 if (addr_space == IPMI_MEM_ADDR_SPACE)
1906 info->io_setup = mem_setup;
1907 else
1908 info->io_setup = port_setup;
1909
1910 info->io.addr = NULL;
1911 info->io.regspacing = regspacing;
1912 if (!info->io.regspacing)
1913 info->io.regspacing = DEFAULT_REGSPACING;
1914 info->io.regsize = regsize;
1915 if (!info->io.regsize)
1916 info->io.regsize = DEFAULT_REGSPACING;
1917 info->io.regshift = regshift;
1918 info->irq = irq;
1919 if (info->irq)
1920 info->irq_setup = std_irq_setup;
1921 info->slave_addr = ipmb;
1922
Corey Minyardd02b3702014-01-24 14:00:53 -06001923 rv = add_smi(info);
1924 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001925 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001926 goto out;
1927 }
1928 rv = try_smi_init(info);
1929 if (rv) {
1930 cleanup_one_si(info);
1931 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001932 }
Corey Minyardb361e272006-12-06 20:41:07 -08001933 } else {
1934 /* remove */
1935 struct smi_info *e, *tmp_e;
1936
1937 mutex_lock(&smi_infos_lock);
1938 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1939 if (e->io.addr_type != addr_space)
1940 continue;
1941 if (e->si_type != si_type)
1942 continue;
1943 if (e->io.addr_data == addr)
1944 cleanup_one_si(e);
1945 }
1946 mutex_unlock(&smi_infos_lock);
1947 }
1948 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001949 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001950 out:
1951 kfree(str);
1952 return rv;
1953}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001954
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001955static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001957 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001958 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct smi_info *info;
1960
Corey Minyardb0defcd2006-03-26 01:37:20 -08001961 for (i = 0; i < SI_MAX_PARMS; i++) {
1962 if (!ports[i] && !addrs[i])
1963 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001965 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001966 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001967 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001969 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001970 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001971
Corey Minyard1d5636c2006-12-10 02:19:08 -08001972 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001973 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001974 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001975 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001976 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001977 info->si_type = SI_BT;
1978 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001979 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001980 "for interface %d, was invalid: %s\n",
1981 i, si_type[i]);
1982 kfree(info);
1983 continue;
1984 }
1985
1986 if (ports[i]) {
1987 /* An I/O port */
1988 info->io_setup = port_setup;
1989 info->io.addr_data = ports[i];
1990 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1991 } else if (addrs[i]) {
1992 /* A memory port */
1993 info->io_setup = mem_setup;
1994 info->io.addr_data = addrs[i];
1995 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1996 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001997 printk(KERN_WARNING PFX "Interface type specified "
1998 "for interface %d, but port and address were "
1999 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002000 kfree(info);
2001 continue;
2002 }
2003
2004 info->io.addr = NULL;
2005 info->io.regspacing = regspacings[i];
2006 if (!info->io.regspacing)
2007 info->io.regspacing = DEFAULT_REGSPACING;
2008 info->io.regsize = regsizes[i];
2009 if (!info->io.regsize)
2010 info->io.regsize = DEFAULT_REGSPACING;
2011 info->io.regshift = regshifts[i];
2012 info->irq = irqs[i];
2013 if (info->irq)
2014 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002015 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002016
Yinghai Lu7faefea2010-08-10 18:03:10 -07002017 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002018 if (try_smi_init(info))
2019 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002020 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002021 } else {
2022 kfree(info);
2023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002025 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Len Brown84663612005-08-24 12:09:07 -04002028#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030#include <linux/acpi.h>
2031
Corey Minyardc305e3d2008-04-29 01:01:10 -07002032/*
2033 * Once we get an ACPI failure, we don't try any more, because we go
2034 * through the tables sequentially. Once we don't find a table, there
2035 * are no more.
2036 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002037static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002040static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2041 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 struct smi_info *smi_info = context;
2044 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 spin_lock_irqsave(&(smi_info->si_lock), flags);
2047
Corey Minyard64959e22008-04-29 01:01:07 -07002048 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
John Stultzf93aae92015-01-07 14:24:28 -08002050 debug_timestamp("ACPI_GPE");
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2054
2055 return ACPI_INTERRUPT_HANDLED;
2056}
2057
Corey Minyardb0defcd2006-03-26 01:37:20 -08002058static void acpi_gpe_irq_cleanup(struct smi_info *info)
2059{
2060 if (!info->irq)
2061 return;
2062
2063 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2064}
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066static int acpi_gpe_irq_setup(struct smi_info *info)
2067{
2068 acpi_status status;
2069
Corey Minyardb0defcd2006-03-26 01:37:20 -08002070 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return 0;
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 status = acpi_install_gpe_handler(NULL,
2074 info->irq,
2075 ACPI_GPE_LEVEL_TRIGGERED,
2076 &ipmi_acpi_gpe,
2077 info);
2078 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002079 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2080 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 info->irq = 0;
2082 return -EINVAL;
2083 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002084 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002085 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return 0;
2087 }
2088}
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090/*
2091 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002092 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 */
2094struct SPMITable {
2095 s8 Signature[4];
2096 u32 Length;
2097 u8 Revision;
2098 u8 Checksum;
2099 s8 OEMID[6];
2100 s8 OEMTableID[8];
2101 s8 OEMRevision[4];
2102 s8 CreatorID[4];
2103 s8 CreatorRevision[4];
2104 u8 InterfaceType;
2105 u8 IPMIlegacy;
2106 s16 SpecificationRevision;
2107
2108 /*
2109 * Bit 0 - SCI interrupt supported
2110 * Bit 1 - I/O APIC/SAPIC
2111 */
2112 u8 InterruptType;
2113
Corey Minyardc305e3d2008-04-29 01:01:10 -07002114 /*
2115 * If bit 0 of InterruptType is set, then this is the SCI
2116 * interrupt in the GPEx_STS register.
2117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 u8 GPE;
2119
2120 s16 Reserved;
2121
Corey Minyardc305e3d2008-04-29 01:01:10 -07002122 /*
2123 * If bit 1 of InterruptType is set, then this is the I/O
2124 * APIC/SAPIC interrupt.
2125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 u32 GlobalSystemInterrupt;
2127
2128 /* The actual register address. */
2129 struct acpi_generic_address addr;
2130
2131 u8 UID[4];
2132
2133 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2134};
2135
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002136static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002139 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002142 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2143 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002146 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002147 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002148 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002149 return -ENOMEM;
2150 }
2151
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002152 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002153 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002156 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002158 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002161 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002164 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002166 case 4: /* SSIF, just ignore */
2167 kfree(info);
2168 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002170 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2171 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002172 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 return -EIO;
2174 }
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (spmi->InterruptType & 1) {
2177 /* We've got a GPE interrupt. */
2178 info->irq = spmi->GPE;
2179 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 } else if (spmi->InterruptType & 2) {
2181 /* We've got an APIC/SAPIC interrupt. */
2182 info->irq = spmi->GlobalSystemInterrupt;
2183 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 } else {
2185 /* Use the default interrupt setting. */
2186 info->irq = 0;
2187 info->irq_setup = NULL;
2188 }
2189
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002190 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002191 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002192 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002193 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002194 info->io.regspacing = DEFAULT_REGSPACING;
2195 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002196 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002197 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002199 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002201 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002202 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002204 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 } else {
2206 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002207 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return -EIO;
2209 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002210 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002212 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2213 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2214 info->io.addr_data, info->io.regsize, info->io.regspacing,
2215 info->irq);
2216
Corey Minyardd02b3702014-01-24 14:00:53 -06002217 rv = add_smi(info);
2218 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002219 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Corey Minyardd02b3702014-01-24 14:00:53 -06002221 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002223
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002224static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002225{
2226 acpi_status status;
2227 struct SPMITable *spmi;
2228 int i;
2229
2230 if (acpi_disabled)
2231 return;
2232
2233 if (acpi_failure)
2234 return;
2235
2236 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002237 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2238 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002239 if (status != AE_OK)
2240 return;
2241
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002242 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002243 }
2244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245#endif
2246
Matt Domscha9fad4c2006-01-11 12:17:44 -08002247#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002248struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 u8 type;
2250 u8 addr_space;
2251 unsigned long base_addr;
2252 u8 irq;
2253 u8 offset;
2254 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002255};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002257static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002258 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
Jeff Garzik18552562007-10-03 15:15:40 -04002260 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 unsigned long base_addr;
2262 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002263 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Corey Minyardb0defcd2006-03-26 01:37:20 -08002265 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 memcpy(&base_addr, data+8, sizeof(unsigned long));
2268 if (len >= 0x11) {
2269 if (base_addr & 1) {
2270 /* I/O */
2271 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002272 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002273 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002275 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2278 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002279 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Corey Minyardb0defcd2006-03-26 01:37:20 -08002281 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002284 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002285 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002287 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 break;
2289 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002290 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 break;
2292 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002293 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 break;
2295 default:
2296 /* Some other interface, just ignore it. */
2297 return -EIO;
2298 }
2299 } else {
2300 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002301 /*
2302 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002303 * address should be 1 if the address is I/O and 0 if
2304 * the address is in memory. So many systems get that
2305 * wrong (and all that I have seen are I/O) so we just
2306 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002307 * memory should use the newer spec, anyway.
2308 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002309 dmi->base_addr = base_addr & 0xfffe;
2310 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2311 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313
Corey Minyardb0defcd2006-03-26 01:37:20 -08002314 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Corey Minyardb0defcd2006-03-26 01:37:20 -08002316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002319static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Corey Minyarde8b33612005-09-06 15:18:45 -07002321 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002323 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002324 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002325 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002326 return;
2327 }
2328
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002329 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002330 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Corey Minyarde8b33612005-09-06 15:18:45 -07002332 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002333 case 0x01: /* KCS */
2334 info->si_type = SI_KCS;
2335 break;
2336 case 0x02: /* SMIC */
2337 info->si_type = SI_SMIC;
2338 break;
2339 case 0x03: /* BT */
2340 info->si_type = SI_BT;
2341 break;
2342 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002343 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002344 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346
Corey Minyardb0defcd2006-03-26 01:37:20 -08002347 switch (ipmi_data->addr_space) {
2348 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002350 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2351 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Corey Minyardb0defcd2006-03-26 01:37:20 -08002353 case IPMI_IO_ADDR_SPACE:
2354 info->io_setup = port_setup;
2355 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2356 break;
2357
2358 default:
2359 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002360 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002361 ipmi_data->addr_space);
2362 return;
2363 }
2364 info->io.addr_data = ipmi_data->base_addr;
2365
2366 info->io.regspacing = ipmi_data->offset;
2367 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 info->io.regspacing = DEFAULT_REGSPACING;
2369 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002370 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 info->slave_addr = ipmi_data->slave_addr;
2373
Corey Minyardb0defcd2006-03-26 01:37:20 -08002374 info->irq = ipmi_data->irq;
2375 if (info->irq)
2376 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002378 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2379 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2380 info->io.addr_data, info->io.regsize, info->io.regspacing,
2381 info->irq);
2382
Yinghai Lu7faefea2010-08-10 18:03:10 -07002383 if (add_smi(info))
2384 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002385}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002387static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002388{
Jeff Garzik18552562007-10-03 15:15:40 -04002389 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002390 struct dmi_ipmi_data data;
2391 int rv;
2392
2393 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002394 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002395 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2396 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002397 if (!rv)
2398 try_init_dmi(&data);
2399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002401#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403#ifdef CONFIG_PCI
2404
Corey Minyardb0defcd2006-03-26 01:37:20 -08002405#define PCI_ERMC_CLASSCODE 0x0C0700
2406#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2407#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2408#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2409#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2410#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412#define PCI_HP_VENDOR_ID 0x103C
2413#define PCI_MMC_DEVICE_ID 0x121A
2414#define PCI_MMC_ADDR_CW 0x10
2415
Corey Minyardb0defcd2006-03-26 01:37:20 -08002416static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002418 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Corey Minyardb0defcd2006-03-26 01:37:20 -08002420 pci_disable_device(pdev);
2421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002423static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002424{
2425 if (info->si_type == SI_KCS) {
2426 unsigned char status;
2427 int regspacing;
2428
2429 info->io.regsize = DEFAULT_REGSIZE;
2430 info->io.regshift = 0;
2431 info->io_size = 2;
2432 info->handlers = &kcs_smi_handlers;
2433
2434 /* detect 1, 4, 16byte spacing */
2435 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2436 info->io.regspacing = regspacing;
2437 if (info->io_setup(info)) {
2438 dev_err(info->dev,
2439 "Could not setup I/O space\n");
2440 return DEFAULT_REGSPACING;
2441 }
2442 /* write invalid cmd */
2443 info->io.outputb(&info->io, 1, 0x10);
2444 /* read status back */
2445 status = info->io.inputb(&info->io, 1);
2446 info->io_cleanup(info);
2447 if (status)
2448 return regspacing;
2449 regspacing *= 4;
2450 }
2451 }
2452 return DEFAULT_REGSPACING;
2453}
2454
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002455static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002456 const struct pci_device_id *ent)
2457{
2458 int rv;
2459 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2460 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002462 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002463 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002464 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002465
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002466 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002467 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002468
2469 switch (class_type) {
2470 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2471 info->si_type = SI_SMIC;
2472 break;
2473
2474 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2475 info->si_type = SI_KCS;
2476 break;
2477
2478 case PCI_ERMC_CLASSCODE_TYPE_BT:
2479 info->si_type = SI_BT;
2480 break;
2481
2482 default:
2483 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002484 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002485 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Corey Minyardb0defcd2006-03-26 01:37:20 -08002488 rv = pci_enable_device(pdev);
2489 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002490 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002491 kfree(info);
2492 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
2494
Corey Minyardb0defcd2006-03-26 01:37:20 -08002495 info->addr_source_cleanup = ipmi_pci_cleanup;
2496 info->addr_source_data = pdev;
2497
Corey Minyardb0defcd2006-03-26 01:37:20 -08002498 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2499 info->io_setup = port_setup;
2500 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2501 } else {
2502 info->io_setup = mem_setup;
2503 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002505 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Corey Minyarda6c16c22012-10-16 15:53:40 -05002507 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2508 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002509 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Corey Minyardb0defcd2006-03-26 01:37:20 -08002511 info->irq = pdev->irq;
2512 if (info->irq)
2513 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Corey Minyard50c812b2006-03-26 01:37:21 -08002515 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002516 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002517
Myron Stowe279fbd02010-05-26 14:43:52 -07002518 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2519 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2520 info->irq);
2521
Corey Minyardd02b3702014-01-24 14:00:53 -06002522 rv = add_smi(info);
2523 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002524 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002525 pci_disable_device(pdev);
2526 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002527
Corey Minyardd02b3702014-01-24 14:00:53 -06002528 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002529}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Bill Pemberton39af33f2012-11-19 13:26:26 -05002531static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002532{
Corey Minyardfca3b742007-05-08 00:23:59 -07002533 struct smi_info *info = pci_get_drvdata(pdev);
2534 cleanup_one_si(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002535 pci_disable_device(pdev);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002536}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Corey Minyard81d02b72015-06-13 10:34:25 -05002538static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002539 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002540 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2541 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002542};
2543MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2544
2545static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002546 .name = DEVICE_NAME,
2547 .id_table = ipmi_pci_devices,
2548 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002549 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002550};
2551#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002553#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002554static const struct of_device_id of_ipmi_match[] = {
2555 { .type = "ipmi", .compatible = "ipmi-kcs",
2556 .data = (void *)(unsigned long) SI_KCS },
2557 { .type = "ipmi", .compatible = "ipmi-smic",
2558 .data = (void *)(unsigned long) SI_SMIC },
2559 { .type = "ipmi", .compatible = "ipmi-bt",
2560 .data = (void *)(unsigned long) SI_BT },
2561 {},
2562};
2563
2564static int of_ipmi_probe(struct platform_device *dev)
2565{
Grant Likelyb1608d62011-05-18 11:19:24 -06002566 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002567 struct smi_info *info;
2568 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002569 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002570 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002571 int ret;
2572 int proplen;
2573
Myron Stowe279fbd02010-05-26 14:43:52 -07002574 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002575
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002576 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002577 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002578 return -ENODEV;
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002579
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002580 if (!of_device_is_available(np))
2581 return -EINVAL;
2582
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002583 ret = of_address_to_resource(np, 0, &resource);
2584 if (ret) {
2585 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2586 return ret;
2587 }
2588
Stephen Rothwell9c250992007-08-15 16:42:12 +10002589 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002590 if (regsize && proplen != 4) {
2591 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2592 return -EINVAL;
2593 }
2594
Stephen Rothwell9c250992007-08-15 16:42:12 +10002595 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002596 if (regspacing && proplen != 4) {
2597 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2598 return -EINVAL;
2599 }
2600
Stephen Rothwell9c250992007-08-15 16:42:12 +10002601 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002602 if (regshift && proplen != 4) {
2603 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2604 return -EINVAL;
2605 }
2606
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002607 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002608
2609 if (!info) {
2610 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002611 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002612 return -ENOMEM;
2613 }
2614
Grant Likelyb1608d62011-05-18 11:19:24 -06002615 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002616 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002617 info->irq_setup = std_irq_setup;
2618
Nate Case3b7ec112008-05-14 16:05:39 -07002619 if (resource.flags & IORESOURCE_IO) {
2620 info->io_setup = port_setup;
2621 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2622 } else {
2623 info->io_setup = mem_setup;
2624 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2625 }
2626
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002627 info->io.addr_data = resource.start;
2628
Rob Herringda81c3b2010-11-16 14:33:50 -06002629 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2630 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2631 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002632
Grant Likely61c7a082010-04-13 16:12:29 -07002633 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002634 info->dev = &dev->dev;
2635
Myron Stowe279fbd02010-05-26 14:43:52 -07002636 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002637 info->io.addr_data, info->io.regsize, info->io.regspacing,
2638 info->irq);
2639
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002640 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002641
Corey Minyardd02b3702014-01-24 14:00:53 -06002642 ret = add_smi(info);
2643 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002644 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002645 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002646 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002647 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002648}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002649#else
2650#define of_ipmi_match NULL
2651static int of_ipmi_probe(struct platform_device *dev)
2652{
2653 return -ENODEV;
2654}
2655#endif
2656
2657#ifdef CONFIG_ACPI
2658static int acpi_ipmi_probe(struct platform_device *dev)
2659{
2660 struct smi_info *info;
2661 struct resource *res, *res_second;
2662 acpi_handle handle;
2663 acpi_status status;
2664 unsigned long long tmp;
2665 int rv = -EINVAL;
2666
2667 handle = ACPI_HANDLE(&dev->dev);
2668 if (!handle)
2669 return -ENODEV;
2670
2671 info = smi_info_alloc();
2672 if (!info)
2673 return -ENOMEM;
2674
2675 info->addr_source = SI_ACPI;
2676 dev_info(&dev->dev, PFX "probing via ACPI\n");
2677
2678 info->addr_info.acpi_info.acpi_handle = handle;
2679
2680 /* _IFT tells us the interface type: KCS, BT, etc */
2681 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2682 if (ACPI_FAILURE(status)) {
2683 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2684 goto err_free;
2685 }
2686
2687 switch (tmp) {
2688 case 1:
2689 info->si_type = SI_KCS;
2690 break;
2691 case 2:
2692 info->si_type = SI_SMIC;
2693 break;
2694 case 3:
2695 info->si_type = SI_BT;
2696 break;
2697 case 4: /* SSIF, just ignore */
2698 rv = -ENODEV;
2699 goto err_free;
2700 default:
2701 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2702 goto err_free;
2703 }
2704
2705 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2706 if (res) {
2707 info->io_setup = port_setup;
2708 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2709 } else {
2710 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2711 if (res) {
2712 info->io_setup = mem_setup;
2713 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2714 }
2715 }
2716 if (!res) {
2717 dev_err(&dev->dev, "no I/O or memory address\n");
2718 goto err_free;
2719 }
2720 info->io.addr_data = res->start;
2721
2722 info->io.regspacing = DEFAULT_REGSPACING;
2723 res_second = platform_get_resource(dev,
2724 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2725 IORESOURCE_IO : IORESOURCE_MEM,
2726 1);
2727 if (res_second) {
2728 if (res_second->start > info->io.addr_data)
2729 info->io.regspacing =
2730 res_second->start - info->io.addr_data;
2731 }
2732 info->io.regsize = DEFAULT_REGSPACING;
2733 info->io.regshift = 0;
2734
2735 /* If _GPE exists, use it; otherwise use standard interrupts */
2736 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2737 if (ACPI_SUCCESS(status)) {
2738 info->irq = tmp;
2739 info->irq_setup = acpi_gpe_irq_setup;
2740 } else {
2741 int irq = platform_get_irq(dev, 0);
2742
2743 if (irq > 0) {
2744 info->irq = irq;
2745 info->irq_setup = std_irq_setup;
2746 }
2747 }
2748
2749 info->dev = &dev->dev;
2750 platform_set_drvdata(dev, info);
2751
2752 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2753 res, info->io.regsize, info->io.regspacing,
2754 info->irq);
2755
2756 rv = add_smi(info);
2757 if (rv)
2758 kfree(info);
2759
2760 return rv;
2761
2762err_free:
2763 kfree(info);
2764 return rv;
2765}
2766
Corey Minyard81d02b72015-06-13 10:34:25 -05002767static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002768 { "IPI0001", 0 },
2769 { },
2770};
2771MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2772#else
2773static int acpi_ipmi_probe(struct platform_device *dev)
2774{
2775 return -ENODEV;
2776}
2777#endif
2778
2779static int ipmi_probe(struct platform_device *dev)
2780{
2781 if (of_ipmi_probe(dev) == 0)
2782 return 0;
2783
2784 return acpi_ipmi_probe(dev);
2785}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002786
Bill Pemberton39af33f2012-11-19 13:26:26 -05002787static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002788{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002789 struct smi_info *info = dev_get_drvdata(&dev->dev);
2790
Markus Elfringa7930892015-06-27 18:12:14 +02002791 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002792 return 0;
2793}
2794
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002795static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002796 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002797 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002798 .of_match_table = of_ipmi_match,
2799 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002800 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002801 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002802 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002803};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002804
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002805#ifdef CONFIG_PARISC
2806static int ipmi_parisc_probe(struct parisc_device *dev)
2807{
2808 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002809 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002810
2811 info = smi_info_alloc();
2812
2813 if (!info) {
2814 dev_err(&dev->dev,
2815 "could not allocate memory for PARISC probe\n");
2816 return -ENOMEM;
2817 }
2818
2819 info->si_type = SI_KCS;
2820 info->addr_source = SI_DEVICETREE;
2821 info->io_setup = mem_setup;
2822 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2823 info->io.addr_data = dev->hpa.start;
2824 info->io.regsize = 1;
2825 info->io.regspacing = 1;
2826 info->io.regshift = 0;
2827 info->irq = 0; /* no interrupt */
2828 info->irq_setup = NULL;
2829 info->dev = &dev->dev;
2830
2831 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2832
2833 dev_set_drvdata(&dev->dev, info);
2834
Corey Minyardd02b3702014-01-24 14:00:53 -06002835 rv = add_smi(info);
2836 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002837 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002838 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002839 }
2840
2841 return 0;
2842}
2843
2844static int ipmi_parisc_remove(struct parisc_device *dev)
2845{
2846 cleanup_one_si(dev_get_drvdata(&dev->dev));
2847 return 0;
2848}
2849
2850static struct parisc_device_id ipmi_parisc_tbl[] = {
2851 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2852 { 0, }
2853};
2854
2855static struct parisc_driver ipmi_parisc_driver = {
2856 .name = "ipmi",
2857 .id_table = ipmi_parisc_tbl,
2858 .probe = ipmi_parisc_probe,
2859 .remove = ipmi_parisc_remove,
2860};
2861#endif /* CONFIG_PARISC */
2862
Corey Minyard40112ae2009-04-21 12:24:03 -07002863static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
Corey Minyard50c812b2006-03-26 01:37:21 -08002865 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002868 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002869 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2870 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002871 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002873 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002874 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 smi_result = smi_info->handlers->event(
2876 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002877 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 break;
2879 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002880 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002881 /*
2882 * We couldn't get the state machine to run, so whatever's at
2883 * the port is probably not an IPMI SMI interface.
2884 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002885 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Corey Minyard40112ae2009-04-21 12:24:03 -07002887 return 0;
2888}
2889
2890static int try_get_dev_id(struct smi_info *smi_info)
2891{
2892 unsigned char msg[2];
2893 unsigned char *resp;
2894 unsigned long resp_len;
2895 int rv = 0;
2896
2897 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2898 if (!resp)
2899 return -ENOMEM;
2900
2901 /*
2902 * Do a Get Device ID command, since it comes back with some
2903 * useful info.
2904 */
2905 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2906 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2907 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2908
2909 rv = wait_for_msg_done(smi_info);
2910 if (rv)
2911 goto out;
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2914 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Corey Minyardd8c98612007-10-18 03:07:11 -07002916 /* Check and record info from the get device id, in case we need it. */
2917 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919 out:
2920 kfree(resp);
2921 return rv;
2922}
2923
Corey Minyardd0882892015-08-18 14:29:10 -05002924static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002925{
2926 unsigned char msg[3];
2927 unsigned char *resp;
2928 unsigned long resp_len;
2929 int rv;
2930
2931 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05002932 if (!resp)
2933 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002934
2935 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2936 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2937 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2938
2939 rv = wait_for_msg_done(smi_info);
2940 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002941 dev_warn(smi_info->dev,
2942 "Error getting response from get global enables command: %d\n",
2943 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002944 goto out;
2945 }
2946
2947 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2948 resp, IPMI_MAX_MSG_LENGTH);
2949
2950 if (resp_len < 4 ||
2951 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2952 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2953 resp[2] != 0) {
Corey Minyardd0882892015-08-18 14:29:10 -05002954 dev_warn(smi_info->dev,
2955 "Invalid return from get global enables command: %ld %x %x %x\n",
2956 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002957 rv = -EINVAL;
2958 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05002959 } else {
2960 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002961 }
2962
Corey Minyardd0882892015-08-18 14:29:10 -05002963out:
2964 kfree(resp);
2965 return rv;
2966}
2967
2968/*
2969 * Returns 1 if it gets an error from the command.
2970 */
2971static int set_global_enables(struct smi_info *smi_info, u8 enables)
2972{
2973 unsigned char msg[3];
2974 unsigned char *resp;
2975 unsigned long resp_len;
2976 int rv;
2977
2978 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2979 if (!resp)
2980 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002981
2982 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2983 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05002984 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002985 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2986
2987 rv = wait_for_msg_done(smi_info);
2988 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002989 dev_warn(smi_info->dev,
2990 "Error getting response from set global enables command: %d\n",
2991 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002992 goto out;
2993 }
2994
2995 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2996 resp, IPMI_MAX_MSG_LENGTH);
2997
2998 if (resp_len < 3 ||
2999 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3000 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardd0882892015-08-18 14:29:10 -05003001 dev_warn(smi_info->dev,
3002 "Invalid return from set global enables command: %ld %x %x\n",
3003 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003004 rv = -EINVAL;
3005 goto out;
3006 }
3007
Corey Minyardd0882892015-08-18 14:29:10 -05003008 if (resp[2] != 0)
3009 rv = 1;
3010
3011out:
3012 kfree(resp);
3013 return rv;
3014}
3015
3016/*
3017 * Some BMCs do not support clearing the receive irq bit in the global
3018 * enables (even if they don't support interrupts on the BMC). Check
3019 * for this and handle it properly.
3020 */
3021static void check_clr_rcv_irq(struct smi_info *smi_info)
3022{
3023 u8 enables = 0;
3024 int rv;
3025
3026 rv = get_global_enables(smi_info, &enables);
3027 if (!rv) {
3028 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
3029 /* Already clear, should work ok. */
3030 return;
3031
3032 enables &= ~IPMI_BMC_RCV_MSG_INTR;
3033 rv = set_global_enables(smi_info, enables);
3034 }
3035
3036 if (rv < 0) {
3037 dev_err(smi_info->dev,
3038 "Cannot check clearing the rcv irq: %d\n", rv);
3039 return;
3040 }
3041
3042 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003043 /*
3044 * An error when setting the event buffer bit means
3045 * clearing the bit is not supported.
3046 */
Corey Minyardd0882892015-08-18 14:29:10 -05003047 dev_warn(smi_info->dev,
3048 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3049 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003050 }
Corey Minyardd0882892015-08-18 14:29:10 -05003051}
3052
3053/*
3054 * Some BMCs do not support setting the interrupt bits in the global
3055 * enables even if they support interrupts. Clearly bad, but we can
3056 * compensate.
3057 */
3058static void check_set_rcv_irq(struct smi_info *smi_info)
3059{
3060 u8 enables = 0;
3061 int rv;
3062
3063 if (!smi_info->irq)
3064 return;
3065
3066 rv = get_global_enables(smi_info, &enables);
3067 if (!rv) {
3068 enables |= IPMI_BMC_RCV_MSG_INTR;
3069 rv = set_global_enables(smi_info, enables);
3070 }
3071
3072 if (rv < 0) {
3073 dev_err(smi_info->dev,
3074 "Cannot check setting the rcv irq: %d\n", rv);
3075 return;
3076 }
3077
3078 if (rv) {
3079 /*
3080 * An error when setting the event buffer bit means
3081 * setting the bit is not supported.
3082 */
3083 dev_warn(smi_info->dev,
3084 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3085 smi_info->cannot_disable_irq = true;
3086 smi_info->irq_enable_broken = true;
3087 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003088}
3089
Corey Minyard40112ae2009-04-21 12:24:03 -07003090static int try_enable_event_buffer(struct smi_info *smi_info)
3091{
3092 unsigned char msg[3];
3093 unsigned char *resp;
3094 unsigned long resp_len;
3095 int rv = 0;
3096
3097 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3098 if (!resp)
3099 return -ENOMEM;
3100
3101 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3102 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3103 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3104
3105 rv = wait_for_msg_done(smi_info);
3106 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003107 printk(KERN_WARNING PFX "Error getting response from get"
3108 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003109 " enabled.\n");
3110 goto out;
3111 }
3112
3113 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3114 resp, IPMI_MAX_MSG_LENGTH);
3115
3116 if (resp_len < 4 ||
3117 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3118 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3119 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003120 printk(KERN_WARNING PFX "Invalid return from get global"
3121 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003122 rv = -EINVAL;
3123 goto out;
3124 }
3125
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003126 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003127 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003128 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003129 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003130 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003131
3132 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3133 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3134 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3135 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3136
3137 rv = wait_for_msg_done(smi_info);
3138 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003139 printk(KERN_WARNING PFX "Error getting response from set"
3140 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003141 " enabled.\n");
3142 goto out;
3143 }
3144
3145 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3146 resp, IPMI_MAX_MSG_LENGTH);
3147
3148 if (resp_len < 3 ||
3149 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3150 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003151 printk(KERN_WARNING PFX "Invalid return from get global,"
3152 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003153 rv = -EINVAL;
3154 goto out;
3155 }
3156
3157 if (resp[2] != 0)
3158 /*
3159 * An error when setting the event buffer bit means
3160 * that the event buffer is not supported.
3161 */
3162 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003163 else
3164 smi_info->supports_event_msg_buff = true;
3165
Corey Minyard40112ae2009-04-21 12:24:03 -07003166 out:
3167 kfree(resp);
3168 return rv;
3169}
3170
Alexey Dobriyan07412732011-05-26 16:25:55 -07003171static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003173 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003175 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3176
Joe Perches5e33cd02015-02-22 10:21:07 -08003177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
Alexey Dobriyan07412732011-05-26 16:25:55 -07003180static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
Al Virod9dda782013-03-31 18:16:14 -04003182 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003183}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Alexey Dobriyan07412732011-05-26 16:25:55 -07003185static const struct file_operations smi_type_proc_ops = {
3186 .open = smi_type_proc_open,
3187 .read = seq_read,
3188 .llseek = seq_lseek,
3189 .release = single_release,
3190};
3191
3192static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3193{
3194 struct smi_info *smi = m->private;
3195
3196 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003197 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003198 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003199 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003200 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003201 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003202 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003203 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003204 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003205 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003206 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003207 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003208 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003209 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003210 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003211 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003212 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003213 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003214 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003215 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003216 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003217 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003218 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003219 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003220 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003221}
3222
Alexey Dobriyan07412732011-05-26 16:25:55 -07003223static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003224{
Al Virod9dda782013-03-31 18:16:14 -04003225 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003226}
Corey Minyardb361e272006-12-06 20:41:07 -08003227
Alexey Dobriyan07412732011-05-26 16:25:55 -07003228static const struct file_operations smi_si_stats_proc_ops = {
3229 .open = smi_si_stats_proc_open,
3230 .read = seq_read,
3231 .llseek = seq_lseek,
3232 .release = single_release,
3233};
3234
3235static int smi_params_proc_show(struct seq_file *m, void *v)
3236{
3237 struct smi_info *smi = m->private;
3238
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003239 seq_printf(m,
3240 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3241 si_to_str[smi->si_type],
3242 addr_space_to_str[smi->io.addr_type],
3243 smi->io.addr_data,
3244 smi->io.regspacing,
3245 smi->io.regsize,
3246 smi->io.regshift,
3247 smi->irq,
3248 smi->slave_addr);
3249
Joe Perches5e33cd02015-02-22 10:21:07 -08003250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
3252
Alexey Dobriyan07412732011-05-26 16:25:55 -07003253static int smi_params_proc_open(struct inode *inode, struct file *file)
3254{
Al Virod9dda782013-03-31 18:16:14 -04003255 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003256}
3257
3258static const struct file_operations smi_params_proc_ops = {
3259 .open = smi_params_proc_open,
3260 .read = seq_read,
3261 .llseek = seq_lseek,
3262 .release = single_release,
3263};
3264
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003265/*
3266 * oem_data_avail_to_receive_msg_avail
3267 * @info - smi_info structure with msg_flags set
3268 *
3269 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3270 * Returns 1 indicating need to re-run handle_flags().
3271 */
3272static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3273{
Corey Minyarde8b33612005-09-06 15:18:45 -07003274 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003275 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003276 return 1;
3277}
3278
3279/*
3280 * setup_dell_poweredge_oem_data_handler
3281 * @info - smi_info.device_id must be populated
3282 *
3283 * Systems that match, but have firmware version < 1.40 may assert
3284 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3285 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3286 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3287 * as RECEIVE_MSG_AVAIL instead.
3288 *
3289 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3290 * assert the OEM[012] bits, and if it did, the driver would have to
3291 * change to handle that properly, we don't actually check for the
3292 * firmware version.
3293 * Device ID = 0x20 BMC on PowerEdge 8G servers
3294 * Device Revision = 0x80
3295 * Firmware Revision1 = 0x01 BMC version 1.40
3296 * Firmware Revision2 = 0x40 BCD encoded
3297 * IPMI Version = 0x51 IPMI 1.5
3298 * Manufacturer ID = A2 02 00 Dell IANA
3299 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003300 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3301 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3302 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003303 */
3304#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3305#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3306#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003307#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003308static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3309{
3310 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003311 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003312 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3313 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003314 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003315 smi_info->oem_data_avail_handler =
3316 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003317 } else if (ipmi_version_major(id) < 1 ||
3318 (ipmi_version_major(id) == 1 &&
3319 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003320 smi_info->oem_data_avail_handler =
3321 oem_data_avail_to_receive_msg_avail;
3322 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003323 }
3324}
3325
Corey Minyardea940272005-11-07 00:59:59 -08003326#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3327static void return_hosed_msg_badsize(struct smi_info *smi_info)
3328{
3329 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3330
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003331 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003332 msg->rsp[0] = msg->data[0] | 4;
3333 msg->rsp[1] = msg->data[1];
3334 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3335 msg->rsp_size = 3;
3336 smi_info->curr_msg = NULL;
3337 deliver_recv_msg(smi_info, msg);
3338}
3339
3340/*
3341 * dell_poweredge_bt_xaction_handler
3342 * @info - smi_info.device_id must be populated
3343 *
3344 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3345 * not respond to a Get SDR command if the length of the data
3346 * requested is exactly 0x3A, which leads to command timeouts and no
3347 * data returned. This intercepts such commands, and causes userspace
3348 * callers to try again with a different-sized buffer, which succeeds.
3349 */
3350
3351#define STORAGE_NETFN 0x0A
3352#define STORAGE_CMD_GET_SDR 0x23
3353static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3354 unsigned long unused,
3355 void *in)
3356{
3357 struct smi_info *smi_info = in;
3358 unsigned char *data = smi_info->curr_msg->data;
3359 unsigned int size = smi_info->curr_msg->data_size;
3360 if (size >= 8 &&
3361 (data[0]>>2) == STORAGE_NETFN &&
3362 data[1] == STORAGE_CMD_GET_SDR &&
3363 data[7] == 0x3A) {
3364 return_hosed_msg_badsize(smi_info);
3365 return NOTIFY_STOP;
3366 }
3367 return NOTIFY_DONE;
3368}
3369
3370static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3371 .notifier_call = dell_poweredge_bt_xaction_handler,
3372};
3373
3374/*
3375 * setup_dell_poweredge_bt_xaction_handler
3376 * @info - smi_info.device_id must be filled in already
3377 *
3378 * Fills in smi_info.device_id.start_transaction_pre_hook
3379 * when we know what function to use there.
3380 */
3381static void
3382setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3383{
3384 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003385 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003386 smi_info->si_type == SI_BT)
3387 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3388}
3389
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003390/*
3391 * setup_oem_data_handler
3392 * @info - smi_info.device_id must be filled in already
3393 *
3394 * Fills in smi_info.device_id.oem_data_available_handler
3395 * when we know what function to use there.
3396 */
3397
3398static void setup_oem_data_handler(struct smi_info *smi_info)
3399{
3400 setup_dell_poweredge_oem_data_handler(smi_info);
3401}
3402
Corey Minyardea940272005-11-07 00:59:59 -08003403static void setup_xaction_handlers(struct smi_info *smi_info)
3404{
3405 setup_dell_poweredge_bt_xaction_handler(smi_info);
3406}
3407
Corey Minyardd0882892015-08-18 14:29:10 -05003408static void check_for_broken_irqs(struct smi_info *smi_info)
3409{
3410 check_clr_rcv_irq(smi_info);
3411 check_set_rcv_irq(smi_info);
3412}
3413
Corey Minyarda9a2c442005-11-07 01:00:03 -08003414static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3415{
Corey Minyardb874b982014-11-06 17:01:59 -06003416 if (smi_info->thread != NULL)
3417 kthread_stop(smi_info->thread);
3418 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003419 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003420}
3421
Corey Minyard81d02b72015-06-13 10:34:25 -05003422static const struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003424 int type;
3425 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003426} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003427{
3428 { .type = SI_KCS, .port = 0xca2 },
3429 { .type = SI_SMIC, .port = 0xca9 },
3430 { .type = SI_BT, .port = 0xe4 },
3431 { .port = 0 }
3432};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003434static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003435{
3436 struct smi_info *info;
3437 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Corey Minyardb0defcd2006-03-26 01:37:20 -08003439 for (i = 0; ; i++) {
3440 if (!ipmi_defaults[i].port)
3441 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003442#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003443 if (check_legacy_ioport(ipmi_defaults[i].port))
3444 continue;
3445#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003446 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003447 if (!info)
3448 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003449
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003450 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003451
3452 info->si_type = ipmi_defaults[i].type;
3453 info->io_setup = port_setup;
3454 info->io.addr_data = ipmi_defaults[i].port;
3455 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3456
3457 info->io.addr = NULL;
3458 info->io.regspacing = DEFAULT_REGSPACING;
3459 info->io.regsize = DEFAULT_REGSPACING;
3460 info->io.regshift = 0;
3461
Matthew Garrett2407d772010-05-26 14:43:46 -07003462 if (add_smi(info) == 0) {
3463 if ((try_smi_init(info)) == 0) {
3464 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003465 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003466 " state machine at %s address 0x%lx\n",
3467 si_to_str[info->si_type],
3468 addr_space_to_str[info->io.addr_type],
3469 info->io.addr_data);
3470 } else
3471 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003472 } else {
3473 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003474 }
3475 }
3476}
3477
3478static int is_new_interface(struct smi_info *info)
3479{
3480 struct smi_info *e;
3481
3482 list_for_each_entry(e, &smi_infos, link) {
3483 if (e->io.addr_type != info->io.addr_type)
3484 continue;
3485 if (e->io.addr_data == info->io.addr_data)
3486 return 0;
3487 }
3488
3489 return 1;
3490}
3491
Matthew Garrett2407d772010-05-26 14:43:46 -07003492static int add_smi(struct smi_info *new_smi)
3493{
3494 int rv = 0;
3495
Myron Stowe279fbd02010-05-26 14:43:52 -07003496 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003497 ipmi_addr_src_to_str(new_smi->addr_source),
3498 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003499 mutex_lock(&smi_infos_lock);
3500 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003501 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003502 rv = -EBUSY;
3503 goto out_err;
3504 }
3505
3506 printk(KERN_CONT "\n");
3507
3508 /* So we know not to free it unless we have allocated one. */
3509 new_smi->intf = NULL;
3510 new_smi->si_sm = NULL;
3511 new_smi->handlers = NULL;
3512
3513 list_add_tail(&new_smi->link, &smi_infos);
3514
3515out_err:
3516 mutex_unlock(&smi_infos_lock);
3517 return rv;
3518}
3519
Corey Minyardb0defcd2006-03-26 01:37:20 -08003520static int try_smi_init(struct smi_info *new_smi)
3521{
Matthew Garrett2407d772010-05-26 14:43:46 -07003522 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003523 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003524
Myron Stowe279fbd02010-05-26 14:43:52 -07003525 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003526 " machine at %s address 0x%lx, slave address 0x%x,"
3527 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003528 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003529 si_to_str[new_smi->si_type],
3530 addr_space_to_str[new_smi->io.addr_type],
3531 new_smi->io.addr_data,
3532 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003533
Corey Minyardb0defcd2006-03-26 01:37:20 -08003534 switch (new_smi->si_type) {
3535 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003537 break;
3538
3539 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003541 break;
3542
3543 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003545 break;
3546
3547 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 /* No support for anything else yet. */
3549 rv = -EIO;
3550 goto out_err;
3551 }
3552
3553 /* Allocate the state machine's data and initialize it. */
3554 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003555 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003556 printk(KERN_ERR PFX
3557 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 rv = -ENOMEM;
3559 goto out_err;
3560 }
3561 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3562 &new_smi->io);
3563
3564 /* Now that we know the I/O size, we can set up the I/O. */
3565 rv = new_smi->io_setup(new_smi);
3566 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003567 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 goto out_err;
3569 }
3570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 /* Do low-level detection first. */
3572 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003573 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003574 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 rv = -ENODEV;
3576 goto out_err;
3577 }
3578
Corey Minyardc305e3d2008-04-29 01:01:10 -07003579 /*
3580 * Attempt a get device id command. If it fails, we probably
3581 * don't have a BMC here.
3582 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003584 if (rv) {
3585 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003586 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003587 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003591 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003592 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05003593 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003594
Corey Minyardb874b982014-11-06 17:01:59 -06003595 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 new_smi->curr_msg = NULL;
3597 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003598 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003599 for (i = 0; i < SI_NUM_STATS; i++)
3600 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
Corey Minyard7aefac22014-04-14 09:46:56 -05003602 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003603 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003604 new_smi->intf_num = smi_num;
3605 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Corey Minyard40112ae2009-04-21 12:24:03 -07003607 rv = try_enable_event_buffer(new_smi);
3608 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003609 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003610
Corey Minyardc305e3d2008-04-29 01:01:10 -07003611 /*
3612 * Start clearing the flags before we enable interrupts or the
3613 * timer to avoid racing with the timer.
3614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 start_clear_flags(new_smi);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003616
3617 /*
3618 * IRQ is defined to be set when non-zero. req_events will
3619 * cause a global flags check that will enable interrupts.
3620 */
3621 if (new_smi->irq) {
3622 new_smi->interrupt_disabled = false;
3623 atomic_set(&new_smi->req_events, 1);
3624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
Corey Minyard50c812b2006-03-26 01:37:21 -08003626 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003627 /*
3628 * If we don't already have a device from something
3629 * else (like PCI), then register a new one.
3630 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003631 new_smi->pdev = platform_device_alloc("ipmi_si",
3632 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003633 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003634 printk(KERN_ERR PFX
3635 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003636 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003637 }
3638 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003639 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003640
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003641 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003642 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003643 printk(KERN_ERR PFX
3644 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003645 " %d\n",
3646 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003647 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003648 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003649 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003650 }
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 rv = ipmi_register_smi(&handlers,
3653 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003654 &new_smi->device_id,
3655 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003656 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003658 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3659 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 goto out_err_stop_timer;
3661 }
3662
3663 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003664 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003665 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003667 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 goto out_err_stop_timer;
3669 }
3670
3671 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003672 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003673 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003675 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 goto out_err_stop_timer;
3677 }
3678
Corey Minyardb361e272006-12-06 20:41:07 -08003679 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003680 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003681 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003682 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003683 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003684 goto out_err_stop_timer;
3685 }
3686
Myron Stowe279fbd02010-05-26 14:43:52 -07003687 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3688 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690 return 0;
3691
3692 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003693 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695 out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003696 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
Matthew Garrett2407d772010-05-26 14:43:46 -07003698 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003699 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003700 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003701 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003702 }
3703
3704 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003705 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003706 new_smi->irq_cleanup = NULL;
3707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Corey Minyardc305e3d2008-04-29 01:01:10 -07003709 /*
3710 * Wait until we know that we are out of any interrupt
3711 * handlers might have been running before we freed the
3712 * interrupt.
3713 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003714 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
3716 if (new_smi->si_sm) {
3717 if (new_smi->handlers)
3718 new_smi->handlers->cleanup(new_smi->si_sm);
3719 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003720 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003722 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003723 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003724 new_smi->addr_source_cleanup = NULL;
3725 }
3726 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003727 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003728 new_smi->io_cleanup = NULL;
3729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Matthew Garrett2407d772010-05-26 14:43:46 -07003731 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003732 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003733 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003734 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 return rv;
3737}
3738
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003739static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 int i;
3742 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003743 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003744 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003745 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
3747 if (initialized)
3748 return 0;
3749 initialized = 1;
3750
Corey Minyardf2afae42013-02-27 17:05:13 -08003751 if (si_tryplatform) {
3752 rv = platform_driver_register(&ipmi_driver);
3753 if (rv) {
3754 printk(KERN_ERR PFX "Unable to register "
3755 "driver: %d\n", rv);
3756 return rv;
3757 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003758 }
3759
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 /* Parse out the si_type string into its components. */
3761 str = si_type_str;
3762 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003763 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 si_type[i] = str;
3765 str = strchr(str, ',');
3766 if (str) {
3767 *str = '\0';
3768 str++;
3769 } else {
3770 break;
3771 }
3772 }
3773 }
3774
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003775 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003777 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003778 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003779 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003780
Corey Minyardb0defcd2006-03-26 01:37:20 -08003781#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003782 if (si_trypci) {
3783 rv = pci_register_driver(&ipmi_pci_driver);
3784 if (rv)
3785 printk(KERN_ERR PFX "Unable to register "
3786 "PCI driver: %d\n", rv);
3787 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003788 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003789 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003790#endif
3791
Matthew Garrett754d4532010-05-26 14:43:47 -07003792#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003793 if (si_trydmi)
3794 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003795#endif
3796
3797#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003798 if (si_tryacpi)
3799 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003800#endif
3801
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003802#ifdef CONFIG_PARISC
3803 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003804 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003805 /* poking PC IO addresses will crash machine, don't do it */
3806 si_trydefaults = 0;
3807#endif
3808
Matthew Garrett06ee4592010-05-26 14:43:49 -07003809 /* We prefer devices with interrupts, but in the case of a machine
3810 with multiple BMCs we assume that there will be several instances
3811 of a given type so if we succeed in registering a type then also
3812 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003813
Matthew Garrett2407d772010-05-26 14:43:46 -07003814 mutex_lock(&smi_infos_lock);
3815 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003816 /* Try to register a device if it has an IRQ and we either
3817 haven't successfully registered a device yet or this
3818 device has the same type as one we successfully registered */
3819 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003820 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003821 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003822 }
3823 }
3824 }
3825
Matthew Garrett06ee4592010-05-26 14:43:49 -07003826 /* type will only have been set if we successfully registered an si */
3827 if (type) {
3828 mutex_unlock(&smi_infos_lock);
3829 return 0;
3830 }
3831
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003832 /* Fall back to the preferred device */
3833
3834 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003835 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003836 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003837 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003838 }
3839 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003840 }
3841 mutex_unlock(&smi_infos_lock);
3842
Matthew Garrett06ee4592010-05-26 14:43:49 -07003843 if (type)
3844 return 0;
3845
Corey Minyardb0defcd2006-03-26 01:37:20 -08003846 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003847 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003848 if (list_empty(&smi_infos)) {
3849 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003850 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003851 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003852 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003853 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Corey Minyardd6dfd132006-03-31 02:30:41 -08003856 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003857 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003858 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003859 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003860 printk(KERN_WARNING PFX
3861 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003863 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003864 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867}
3868module_init(init_ipmi_si);
3869
Corey Minyardb361e272006-12-06 20:41:07 -08003870static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
Matthew Garrett2407d772010-05-26 14:43:46 -07003872 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
Corey Minyardb0defcd2006-03-26 01:37:20 -08003874 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 return;
3876
Corey Minyardb874b982014-11-06 17:01:59 -06003877 if (to_clean->intf) {
3878 ipmi_smi_t intf = to_clean->intf;
3879
3880 to_clean->intf = NULL;
3881 rv = ipmi_unregister_smi(intf);
3882 if (rv) {
3883 pr_err(PFX "Unable to unregister device: errno=%d\n",
3884 rv);
3885 }
3886 }
3887
Takao Indoh567eded2014-10-06 14:17:53 -05003888 if (to_clean->dev)
3889 dev_set_drvdata(to_clean->dev, NULL);
3890
Corey Minyardb0defcd2006-03-26 01:37:20 -08003891 list_del(&to_clean->link);
3892
Corey Minyardc305e3d2008-04-29 01:01:10 -07003893 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003894 * Make sure that interrupts, the timer and the thread are
3895 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003896 */
Corey Minyardb874b982014-11-06 17:01:59 -06003897 if (to_clean->irq_cleanup)
3898 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003899 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Corey Minyardc305e3d2008-04-29 01:01:10 -07003901 /*
3902 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003903 * in the BMC. Note that timers and CPU interrupts are off,
3904 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003905 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003906 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003907 poll(to_clean);
3908 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003909 }
3910 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003911 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3912 poll(to_clean);
3913 schedule_timeout_uninterruptible(1);
3914 }
3915
Matthew Garrett2407d772010-05-26 14:43:46 -07003916 if (to_clean->handlers)
3917 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
3919 kfree(to_clean->si_sm);
3920
Corey Minyardb0defcd2006-03-26 01:37:20 -08003921 if (to_clean->addr_source_cleanup)
3922 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003923 if (to_clean->io_cleanup)
3924 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003925
3926 if (to_clean->dev_registered)
3927 platform_device_unregister(to_clean->pdev);
3928
3929 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930}
3931
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003932static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003934 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Corey Minyardb0defcd2006-03-26 01:37:20 -08003936 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 return;
3938
Corey Minyardb0defcd2006-03-26 01:37:20 -08003939#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003940 if (pci_registered)
3941 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003942#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003943#ifdef CONFIG_PARISC
3944 if (parisc_registered)
3945 unregister_parisc_driver(&ipmi_parisc_driver);
3946#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003947
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003948 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003949
Corey Minyardd6dfd132006-03-31 02:30:41 -08003950 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003951 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3952 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003953 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955module_exit(cleanup_ipmi_si);
3956
3957MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003958MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003959MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3960 " system interfaces.");