blob: 4cc72fa017c7bbb02c4027e3bf44bc4d102d3849 [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 Minyard0cfec912015-09-05 17:44:13 -0500415static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
416{
417 smi_info->last_timeout_jiffies = jiffies;
418 mod_timer(&smi_info->si_timer, new_val);
419 smi_info->timer_running = true;
420}
421
422/*
423 * Start a new message and (re)start the timer and thread.
424 */
425static void start_new_msg(struct smi_info *smi_info, unsigned char *msg,
426 unsigned int size)
427{
428 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
429
430 if (smi_info->thread)
431 wake_up_process(smi_info->thread);
432
433 smi_info->handlers->start_transaction(smi_info->si_sm, msg, size);
434}
435
436static void start_check_enables(struct smi_info *smi_info, bool start_timer)
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700437{
438 unsigned char msg[2];
439
440 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
441 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
442
Corey Minyard0cfec912015-09-05 17:44:13 -0500443 if (start_timer)
444 start_new_msg(smi_info, msg, 2);
445 else
446 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600447 smi_info->si_state = SI_CHECKING_ENABLES;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700448}
449
Corey Minyard0cfec912015-09-05 17:44:13 -0500450static void start_clear_flags(struct smi_info *smi_info, bool start_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 unsigned char msg[3];
453
454 /* Make sure the watchdog pre-timeout flag is not set at startup. */
455 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
456 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
457 msg[2] = WDT_PRE_TIMEOUT_INT;
458
Corey Minyard0cfec912015-09-05 17:44:13 -0500459 if (start_timer)
460 start_new_msg(smi_info, msg, 3);
461 else
462 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 smi_info->si_state = SI_CLEARING_FLAGS;
464}
465
Corey Minyard968bf7c2014-11-06 19:06:00 -0600466static void start_getting_msg_queue(struct smi_info *smi_info)
467{
468 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
469 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
470 smi_info->curr_msg->data_size = 2;
471
Corey Minyard0cfec912015-09-05 17:44:13 -0500472 start_new_msg(smi_info, smi_info->curr_msg->data,
473 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600474 smi_info->si_state = SI_GETTING_MESSAGES;
475}
476
477static void start_getting_events(struct smi_info *smi_info)
478{
479 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
480 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
481 smi_info->curr_msg->data_size = 2;
482
Corey Minyard0cfec912015-09-05 17:44:13 -0500483 start_new_msg(smi_info, smi_info->curr_msg->data,
484 smi_info->curr_msg->data_size);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600485 smi_info->si_state = SI_GETTING_EVENTS;
486}
487
Corey Minyardc305e3d2008-04-29 01:01:10 -0700488/*
489 * When we have a situtaion where we run out of memory and cannot
490 * allocate messages, we just leave them in the BMC and run the system
491 * polled until we can allocate some memory. Once we have some
492 * memory, we will re-enable the interrupt.
Corey Minyard1e7d6a42015-04-03 12:13:48 -0500493 *
494 * Note that we cannot just use disable_irq(), since the interrupt may
495 * be shared.
Corey Minyardc305e3d2008-04-29 01:01:10 -0700496 */
Corey Minyard0cfec912015-09-05 17:44:13 -0500497static inline bool disable_si_irq(struct smi_info *smi_info, bool start_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800499 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500500 smi_info->interrupt_disabled = true;
Corey Minyard0cfec912015-09-05 17:44:13 -0500501 start_check_enables(smi_info, start_timer);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600502 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600504 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Corey Minyard968bf7c2014-11-06 19:06:00 -0600507static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyard7aefac22014-04-14 09:46:56 -0500510 smi_info->interrupt_disabled = false;
Corey Minyard0cfec912015-09-05 17:44:13 -0500511 start_check_enables(smi_info, true);
Corey Minyard968bf7c2014-11-06 19:06:00 -0600512 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600514 return false;
515}
516
517/*
518 * Allocate a message. If unable to allocate, start the interrupt
519 * disable process and return NULL. If able to allocate but
520 * interrupts are disabled, free the message and return NULL after
521 * starting the interrupt enable process.
522 */
523static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
524{
525 struct ipmi_smi_msg *msg;
526
527 msg = ipmi_alloc_smi_msg();
528 if (!msg) {
Corey Minyard0cfec912015-09-05 17:44:13 -0500529 if (!disable_si_irq(smi_info, true))
Corey Minyard968bf7c2014-11-06 19:06:00 -0600530 smi_info->si_state = SI_NORMAL;
531 } else if (enable_si_irq(smi_info)) {
532 ipmi_free_smi_msg(msg);
533 msg = NULL;
534 }
535 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538static void handle_flags(struct smi_info *smi_info)
539{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700540 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
542 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700543 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Corey Minyard0cfec912015-09-05 17:44:13 -0500545 start_clear_flags(smi_info, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600547 if (smi_info->intf)
548 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
550 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600551 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
552 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Corey Minyard968bf7c2014-11-06 19:06:00 -0600555 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
557 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600558 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
559 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Corey Minyard968bf7c2014-11-06 19:06:00 -0600562 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700563 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700564 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700565 if (smi_info->oem_data_avail_handler(smi_info))
566 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700567 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600571/*
572 * Global enables we care about.
573 */
574#define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
575 IPMI_BMC_EVT_MSG_INTR)
576
Corey Minyard95c97b52014-11-20 07:19:44 -0600577static u8 current_global_enables(struct smi_info *smi_info, u8 base,
578 bool *irq_on)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600579{
580 u8 enables = 0;
581
582 if (smi_info->supports_event_msg_buff)
583 enables |= IPMI_BMC_EVT_MSG_BUFF;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600584
Corey Minyardd0882892015-08-18 14:29:10 -0500585 if (((smi_info->irq && !smi_info->interrupt_disabled) ||
586 smi_info->cannot_disable_irq) &&
587 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600588 enables |= IPMI_BMC_RCV_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600589
590 if (smi_info->supports_event_msg_buff &&
Corey Minyardd0882892015-08-18 14:29:10 -0500591 smi_info->irq && !smi_info->interrupt_disabled &&
592 !smi_info->irq_enable_broken)
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600593 enables |= IPMI_BMC_EVT_MSG_INTR;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600594
Corey Minyard95c97b52014-11-20 07:19:44 -0600595 *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR);
596
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600597 return enables;
598}
599
Corey Minyard95c97b52014-11-20 07:19:44 -0600600static void check_bt_irq(struct smi_info *smi_info, bool irq_on)
601{
602 u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG);
603
604 irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT;
605
606 if ((bool)irqstate == irq_on)
607 return;
608
609 if (irq_on)
610 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
611 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
612 else
613 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0);
614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616static void handle_transaction_done(struct smi_info *smi_info)
617{
618 struct ipmi_smi_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
John Stultzf93aae92015-01-07 14:24:28 -0800620 debug_timestamp("Done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 switch (smi_info->si_state) {
622 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800623 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625
626 smi_info->curr_msg->rsp_size
627 = smi_info->handlers->get_result(
628 smi_info->si_sm,
629 smi_info->curr_msg->rsp,
630 IPMI_MAX_MSG_LENGTH);
631
Corey Minyardc305e3d2008-04-29 01:01:10 -0700632 /*
633 * Do this here becase deliver_recv_msg() releases the
634 * lock, and a new message can be put in during the
635 * time the lock is released.
636 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 msg = smi_info->curr_msg;
638 smi_info->curr_msg = NULL;
639 deliver_recv_msg(smi_info, msg);
640 break;
641
642 case SI_GETTING_FLAGS:
643 {
644 unsigned char msg[4];
645 unsigned int len;
646
647 /* We got the flags from the SMI, now handle them. */
648 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
649 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700650 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 smi_info->si_state = SI_NORMAL;
652 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700653 /*
654 * Hmm, no flags. That's technically illegal, but
655 * don't use uninitialized data.
656 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 smi_info->si_state = SI_NORMAL;
658 } else {
659 smi_info->msg_flags = msg[3];
660 handle_flags(smi_info);
661 }
662 break;
663 }
664
665 case SI_CLEARING_FLAGS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 {
667 unsigned char msg[3];
668
669 /* We cleared the flags. */
670 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
671 if (msg[2] != 0) {
672 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700673 dev_warn(smi_info->dev,
674 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600676 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
678 }
679
680 case SI_GETTING_EVENTS:
681 {
682 smi_info->curr_msg->rsp_size
683 = smi_info->handlers->get_result(
684 smi_info->si_sm,
685 smi_info->curr_msg->rsp,
686 IPMI_MAX_MSG_LENGTH);
687
Corey Minyardc305e3d2008-04-29 01:01:10 -0700688 /*
689 * Do this here becase deliver_recv_msg() releases the
690 * lock, and a new message can be put in during the
691 * time the lock is released.
692 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 msg = smi_info->curr_msg;
694 smi_info->curr_msg = NULL;
695 if (msg->rsp[2] != 0) {
696 /* Error getting event, probably done. */
697 msg->done(msg);
698
699 /* Take off the event flag. */
700 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
701 handle_flags(smi_info);
702 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700703 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Corey Minyardc305e3d2008-04-29 01:01:10 -0700705 /*
706 * Do this before we deliver the message
707 * because delivering the message releases the
708 * lock and something else can mess with the
709 * state.
710 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 handle_flags(smi_info);
712
713 deliver_recv_msg(smi_info, msg);
714 }
715 break;
716 }
717
718 case SI_GETTING_MESSAGES:
719 {
720 smi_info->curr_msg->rsp_size
721 = smi_info->handlers->get_result(
722 smi_info->si_sm,
723 smi_info->curr_msg->rsp,
724 IPMI_MAX_MSG_LENGTH);
725
Corey Minyardc305e3d2008-04-29 01:01:10 -0700726 /*
727 * Do this here becase deliver_recv_msg() releases the
728 * lock, and a new message can be put in during the
729 * time the lock is released.
730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 msg = smi_info->curr_msg;
732 smi_info->curr_msg = NULL;
733 if (msg->rsp[2] != 0) {
734 /* Error getting event, probably done. */
735 msg->done(msg);
736
737 /* Take off the msg flag. */
738 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
739 handle_flags(smi_info);
740 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700741 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Corey Minyardc305e3d2008-04-29 01:01:10 -0700743 /*
744 * Do this before we deliver the message
745 * because delivering the message releases the
746 * lock and something else can mess with the
747 * state.
748 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 handle_flags(smi_info);
750
751 deliver_recv_msg(smi_info, msg);
752 }
753 break;
754 }
755
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600756 case SI_CHECKING_ENABLES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 {
758 unsigned char msg[4];
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600759 u8 enables;
Corey Minyard95c97b52014-11-20 07:19:44 -0600760 bool irq_on;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* We got the flags from the SMI, now handle them. */
763 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
764 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500765 dev_warn(smi_info->dev,
766 "Couldn't get irq info: %x.\n", msg[2]);
767 dev_warn(smi_info->dev,
768 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 smi_info->si_state = SI_NORMAL;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600770 break;
771 }
Corey Minyard95c97b52014-11-20 07:19:44 -0600772 enables = current_global_enables(smi_info, 0, &irq_on);
773 if (smi_info->si_type == SI_BT)
774 /* BT has its own interrupt enable bit. */
775 check_bt_irq(smi_info, irq_on);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600776 if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) {
777 /* Enables are not correct, fix them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
779 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600780 msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 smi_info->handlers->start_transaction(
782 smi_info->si_sm, msg, 3);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600783 smi_info->si_state = SI_SETTING_ENABLES;
784 } else if (smi_info->supports_event_msg_buff) {
785 smi_info->curr_msg = ipmi_alloc_smi_msg();
786 if (!smi_info->curr_msg) {
787 smi_info->si_state = SI_NORMAL;
788 break;
789 }
790 start_getting_msg_queue(smi_info);
791 } else {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700792 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700793 }
794 break;
795 }
796
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600797 case SI_SETTING_ENABLES:
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700798 {
799 unsigned char msg[4];
800
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700801 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600802 if (msg[2] != 0)
803 dev_warn(smi_info->dev,
804 "Could not set the global enables: 0x%x.\n",
805 msg[2]);
806
807 if (smi_info->supports_event_msg_buff) {
808 smi_info->curr_msg = ipmi_alloc_smi_msg();
809 if (!smi_info->curr_msg) {
810 smi_info->si_state = SI_NORMAL;
811 break;
812 }
813 start_getting_msg_queue(smi_info);
814 } else {
815 smi_info->si_state = SI_NORMAL;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700816 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700817 break;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820}
821
Corey Minyardc305e3d2008-04-29 01:01:10 -0700822/*
823 * Called on timeouts and events. Timeouts should pass the elapsed
824 * time, interrupts should pass in zero. Must be called with
825 * si_lock held and interrupts disabled.
826 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
828 int time)
829{
830 enum si_sm_result si_sm_result;
831
832 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700833 /*
834 * There used to be a loop here that waited a little while
835 * (around 25us) before giving up. That turned out to be
836 * pointless, the minimum delays I was seeing were in the 300us
837 * range, which is far too long to wait in an interrupt. So
838 * we just run until the state machine tells us something
839 * happened or it needs a delay.
840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
842 time = 0;
843 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Corey Minyardc305e3d2008-04-29 01:01:10 -0700846 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700847 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 handle_transaction_done(smi_info);
850 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700851 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700852 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Corey Minyardc305e3d2008-04-29 01:01:10 -0700854 /*
855 * Do the before return_hosed_msg, because that
856 * releases the lock.
857 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 smi_info->si_state = SI_NORMAL;
859 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700860 /*
861 * If we were handling a user message, format
862 * a response to send to the upper layer to
863 * tell it about the error.
864 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800865 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
868 }
869
Corey Minyard4ea18422008-04-29 01:01:01 -0700870 /*
871 * We prefer handling attn over new messages. But don't do
872 * this if there is not yet an upper layer to handle anything.
873 */
Corey Minyarda8df1502014-11-19 11:47:17 -0600874 if (likely(smi_info->intf) &&
875 (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 unsigned char msg[2];
877
Corey Minyarda8df1502014-11-19 11:47:17 -0600878 if (smi_info->si_state != SI_NORMAL) {
879 /*
880 * We got an ATTN, but we are doing something else.
881 * Handle the ATTN later.
882 */
883 smi_info->got_attn = true;
884 } else {
885 smi_info->got_attn = false;
886 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Corey Minyarda8df1502014-11-19 11:47:17 -0600888 /*
889 * Got a attn, send down a get message flags to see
890 * what's causing it. It would be better to handle
891 * this in the upper layer, but due to the way
892 * interrupts work with the SMI, that's not really
893 * possible.
894 */
895 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
896 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Corey Minyard0cfec912015-09-05 17:44:13 -0500898 start_new_msg(smi_info, msg, 2);
Corey Minyarda8df1502014-11-19 11:47:17 -0600899 smi_info->si_state = SI_GETTING_FLAGS;
900 goto restart;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903
904 /* If we are currently idle, try to start the next message. */
905 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700906 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 si_sm_result = start_next_msg(smi_info);
909 if (si_sm_result != SI_SM_IDLE)
910 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700914 && (atomic_read(&smi_info->req_events))) {
915 /*
916 * We are idle and the upper layer requested that I fetch
917 * events, so do so.
918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800920
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600921 /*
922 * Take this opportunity to check the interrupt and
923 * message enable state for the BMC. The BMC can be
924 * asynchronously reset, and may thus get interrupts
925 * disable and messages disabled.
926 */
927 if (smi_info->supports_event_msg_buff || smi_info->irq) {
Corey Minyard0cfec912015-09-05 17:44:13 -0500928 start_check_enables(smi_info, true);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600929 } else {
930 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
931 if (!smi_info->curr_msg)
932 goto out;
Corey Minyard55162fb2006-12-06 20:41:04 -0800933
Corey Minyardd9b7e4f2014-11-19 04:03:26 -0600934 start_getting_events(smi_info);
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 goto restart;
937 }
Corey Minyard314ef522015-09-05 17:58:13 -0500938
939 if (si_sm_result == SI_SM_IDLE && smi_info->timer_running) {
940 /* Ok it if fails, the timer will just go off. */
941 if (del_timer(&smi_info->si_timer))
942 smi_info->timer_running = false;
943 }
944
Corey Minyard55162fb2006-12-06 20:41:04 -0800945 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return si_sm_result;
947}
948
Corey Minyard89986492014-04-14 09:46:54 -0500949static void check_start_timer_thread(struct smi_info *smi_info)
950{
951 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
952 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
953
954 if (smi_info->thread)
955 wake_up_process(smi_info->thread);
956
957 start_next_msg(smi_info);
958 smi_event_handler(smi_info, 0);
959 }
960}
961
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900962static void flush_messages(void *send_info)
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900963{
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900964 struct smi_info *smi_info = send_info;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +0900965 enum si_sm_result result;
966
967 /*
968 * Currently, this function is called only in run-to-completion
969 * mode. This means we are single-threaded, no need for locks.
970 */
971 result = smi_event_handler(smi_info, 0);
972 while (result != SI_SM_IDLE) {
973 udelay(SI_SHORT_TIMEOUT_USEC);
974 result = smi_event_handler(smi_info, SI_SHORT_TIMEOUT_USEC);
975 }
976}
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978static void sender(void *send_info,
Corey Minyard99ab32f2014-11-07 07:57:31 -0600979 struct ipmi_smi_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
John Stultzf93aae92015-01-07 14:24:28 -0800984 debug_timestamp("Enqueue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700987 /*
Hidehiro Kawai82802f92015-07-27 14:55:16 +0900988 * If we are running to completion, start it. Upper
989 * layer will call flush_messages to clear it out.
Corey Minyardbda4c302008-04-29 01:01:02 -0700990 */
Hidehiro Kawai9f812702015-04-23 11:16:44 +0900991 smi_info->waiting_msg = msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Corey Minyardf60adf42012-03-28 14:42:50 -0700995 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard1d86e292015-02-19 08:25:49 -0600996 /*
997 * The following two lines don't need to be under the lock for
998 * the lock's sake, but they do need SMP memory barriers to
999 * avoid getting things out of order. We are already claiming
1000 * the lock, anyway, so just do it under the lock to avoid the
1001 * ordering problem.
1002 */
1003 BUG_ON(smi_info->waiting_msg);
1004 smi_info->waiting_msg = msg;
Corey Minyard89986492014-04-14 09:46:54 -05001005 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -07001006 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Corey Minyard7aefac22014-04-14 09:46:56 -05001009static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 struct smi_info *smi_info = send_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 smi_info->run_to_completion = i_run_to_completion;
Hidehiro Kawaie45361d2015-07-27 14:55:16 +09001014 if (i_run_to_completion)
1015 flush_messages(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Martin Wilckae74e822010-03-10 15:23:06 -08001018/*
1019 * Use -1 in the nsec value of the busy waiting timespec to tell that
1020 * we are spinning in kipmid looking for something and not delaying
1021 * between checks
1022 */
John Stultz48862ea22015-01-07 14:24:29 -08001023static inline void ipmi_si_set_not_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001024{
1025 ts->tv_nsec = -1;
1026}
John Stultz48862ea22015-01-07 14:24:29 -08001027static inline int ipmi_si_is_busy(struct timespec64 *ts)
Martin Wilckae74e822010-03-10 15:23:06 -08001028{
1029 return ts->tv_nsec != -1;
1030}
1031
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -05001032static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
1033 const struct smi_info *smi_info,
John Stultz48862ea22015-01-07 14:24:29 -08001034 struct timespec64 *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -08001035{
1036 unsigned int max_busy_us = 0;
1037
1038 if (smi_info->intf_num < num_max_busy_us)
1039 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
1040 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
1041 ipmi_si_set_not_busy(busy_until);
1042 else if (!ipmi_si_is_busy(busy_until)) {
John Stultz48862ea22015-01-07 14:24:29 -08001043 getnstimeofday64(busy_until);
1044 timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
Martin Wilckae74e822010-03-10 15:23:06 -08001045 } else {
John Stultz48862ea22015-01-07 14:24:29 -08001046 struct timespec64 now;
1047
1048 getnstimeofday64(&now);
1049 if (unlikely(timespec64_compare(&now, busy_until) > 0)) {
Martin Wilckae74e822010-03-10 15:23:06 -08001050 ipmi_si_set_not_busy(busy_until);
1051 return 0;
1052 }
1053 }
1054 return 1;
1055}
1056
1057
1058/*
1059 * A busy-waiting loop for speeding up IPMI operation.
1060 *
1061 * Lousy hardware makes this hard. This is only enabled for systems
1062 * that are not BT and do not have interrupts. It starts spinning
1063 * when an operation is complete or until max_busy tells it to stop
1064 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1065 * Documentation/IPMI.txt for details.
1066 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001067static int ipmi_thread(void *data)
1068{
1069 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001070 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001071 enum si_sm_result smi_result;
John Stultz48862ea22015-01-07 14:24:29 -08001072 struct timespec64 busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001073
Martin Wilckae74e822010-03-10 15:23:06 -08001074 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001075 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001076 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001077 int busy_wait;
1078
Corey Minyarda9a2c442005-11-07 01:00:03 -08001079 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001080 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001081
1082 /*
1083 * If the driver is doing something, there is a possible
1084 * race with the timer. If the timer handler see idle,
1085 * and the thread here sees something else, the timer
1086 * handler won't restart the timer even though it is
1087 * required. So start it here if necessary.
1088 */
1089 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1090 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1091
Corey Minyarda9a2c442005-11-07 01:00:03 -08001092 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001093 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1094 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001095 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1096 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001097 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001098 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001099 else if (smi_result == SI_SM_IDLE) {
1100 if (atomic_read(&smi_info->need_watch)) {
1101 schedule_timeout_interruptible(100);
1102 } else {
1103 /* Wait to be woken up when we are needed. */
1104 __set_current_state(TASK_INTERRUPTIBLE);
1105 schedule();
1106 }
1107 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001108 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001109 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001110 return 0;
1111}
1112
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114static void poll(void *send_info)
1115{
1116 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001117 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001118 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Corey Minyard15c62e12006-12-06 20:41:06 -08001120 /*
1121 * Make sure there is some delay in the poll loop so we can
1122 * drive time forward and timeout things.
1123 */
1124 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001125 if (!run_to_completion)
1126 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001127 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001128 if (!run_to_completion)
1129 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132static void request_events(void *send_info)
1133{
1134 struct smi_info *smi_info = send_info;
1135
Corey Minyardb874b982014-11-06 17:01:59 -06001136 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001137 return;
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 atomic_set(&smi_info->req_events, 1);
1140}
1141
Corey Minyard7aefac22014-04-14 09:46:56 -05001142static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001143{
1144 struct smi_info *smi_info = send_info;
1145 unsigned long flags;
1146
1147 atomic_set(&smi_info->need_watch, enable);
1148 spin_lock_irqsave(&smi_info->si_lock, flags);
1149 check_start_timer_thread(smi_info);
1150 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1151}
1152
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001153static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155static void smi_timeout(unsigned long data)
1156{
1157 struct smi_info *smi_info = (struct smi_info *) data;
1158 enum si_sm_result smi_result;
1159 unsigned long flags;
1160 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001161 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001162 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 spin_lock_irqsave(&(smi_info->si_lock), flags);
John Stultzf93aae92015-01-07 14:24:28 -08001165 debug_timestamp("Timer");
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001168 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 * SI_USEC_PER_JIFFY);
1170 smi_result = smi_event_handler(smi_info, time_diff);
1171
Corey Minyardb0defcd2006-03-26 01:37:20 -08001172 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001174 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001175 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001176 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178
Corey Minyardc305e3d2008-04-29 01:01:10 -07001179 /*
1180 * If the state machine asks for a short delay, then shorten
1181 * the timer timeout.
1182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001184 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001185 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001187 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001188 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001191 do_mod_timer:
1192 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001193 smi_mod_timer(smi_info, timeout);
1194 else
1195 smi_info->timer_running = false;
1196 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
David Howells7d12e782006-10-05 14:55:46 +01001199static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct smi_info *smi_info = data;
1202 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 spin_lock_irqsave(&(smi_info->si_lock), flags);
1205
Corey Minyard64959e22008-04-29 01:01:07 -07001206 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
John Stultzf93aae92015-01-07 14:24:28 -08001208 debug_timestamp("Interrupt");
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1212 return IRQ_HANDLED;
1213}
1214
David Howells7d12e782006-10-05 14:55:46 +01001215static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001216{
1217 struct smi_info *smi_info = data;
1218 /* We need to clear the IRQ flag for the BT interface. */
1219 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1220 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1221 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001222 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001223}
1224
Corey Minyard453823b2006-03-31 02:30:39 -08001225static int smi_start_processing(void *send_info,
1226 ipmi_smi_t intf)
1227{
1228 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001229 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001230
1231 new_smi->intf = intf;
1232
1233 /* Set up the timer that drives the interface. */
1234 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001235 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001236
Jan Stancek27f972d2015-12-08 13:57:51 -05001237 /* Try to claim any interrupts. */
1238 if (new_smi->irq_setup)
1239 new_smi->irq_setup(new_smi);
1240
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001241 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001242 * Check if the user forcefully enabled the daemon.
1243 */
1244 if (new_smi->intf_num < num_force_kipmid)
1245 enable = force_kipmid[new_smi->intf_num];
1246 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001247 * The BT interface is efficient enough to not need a thread,
1248 * and there is no need for a thread if we have interrupts.
1249 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001250 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001251 enable = 1;
1252
1253 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001254 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1255 "kipmi%d", new_smi->intf_num);
1256 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001257 dev_notice(new_smi->dev, "Could not start"
1258 " kernel thread due to error %ld, only using"
1259 " timers to drive the interface\n",
1260 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001261 new_smi->thread = NULL;
1262 }
1263 }
1264
1265 return 0;
1266}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001267
Zhao Yakui16f42322010-12-08 10:10:16 +08001268static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1269{
1270 struct smi_info *smi = send_info;
1271
1272 data->addr_src = smi->addr_source;
1273 data->dev = smi->dev;
1274 data->addr_info = smi->addr_info;
1275 get_device(smi->dev);
1276
1277 return 0;
1278}
1279
Corey Minyard7aefac22014-04-14 09:46:56 -05001280static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001281{
1282 struct smi_info *smi_info = send_info;
1283
1284 if (!enable)
1285 atomic_set(&smi_info->req_events, 0);
1286}
1287
Corey Minyard81d02b72015-06-13 10:34:25 -05001288static const struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001290 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001291 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 .sender = sender,
1293 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001294 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001295 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .set_run_to_completion = set_run_to_completion,
Hidehiro Kawai82802f92015-07-27 14:55:16 +09001297 .flush_messages = flush_messages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 .poll = poll,
1299};
1300
Corey Minyardc305e3d2008-04-29 01:01:10 -07001301/*
1302 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1303 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1304 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Corey Minyardb0defcd2006-03-26 01:37:20 -08001306static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001307static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001308static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001311#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Corey Minyardd941aea2013-02-27 17:05:12 -08001313#ifdef CONFIG_ACPI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301314static bool si_tryacpi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001315#endif
1316#ifdef CONFIG_DMI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301317static bool si_trydmi = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08001318#endif
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301319static bool si_tryplatform = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001320#ifdef CONFIG_PCI
Shailendra Vermafedb25e2015-05-26 00:54:57 +05301321static bool si_trypci = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08001322#endif
Corey Minyard0dfe6e72014-04-14 09:46:53 -05001323static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324static char *si_type[SI_MAX_PARMS];
1325#define MAX_SI_TYPE_STR 30
1326static char si_type_str[MAX_SI_TYPE_STR];
1327static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001328static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001330static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001332static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001334static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001336static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001338static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001339static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001340static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Corey Minyardb361e272006-12-06 20:41:07 -08001342#define IPMI_IO_ADDR_SPACE 0
1343#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001344static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001345
1346static int hotmod_handler(const char *val, struct kernel_param *kp);
1347
1348module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1349MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1350 " Documentation/IPMI.txt in the kernel sources for the"
1351 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Corey Minyardd941aea2013-02-27 17:05:12 -08001353#ifdef CONFIG_ACPI
1354module_param_named(tryacpi, si_tryacpi, bool, 0);
1355MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1356 " default scan of the interfaces identified via ACPI");
1357#endif
1358#ifdef CONFIG_DMI
1359module_param_named(trydmi, si_trydmi, bool, 0);
1360MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1361 " default scan of the interfaces identified via DMI");
1362#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001363module_param_named(tryplatform, si_tryplatform, bool, 0);
1364MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1365 " default scan of the interfaces identified via platform"
1366 " interfaces like openfirmware");
1367#ifdef CONFIG_PCI
1368module_param_named(trypci, si_trypci, bool, 0);
1369MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1370 " default scan of the interfaces identified via pci");
1371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372module_param_named(trydefaults, si_trydefaults, bool, 0);
1373MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1374 " default scan of the KCS and SMIC interface at the standard"
1375 " address");
1376module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1377MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1378 " interface separated by commas. The types are 'kcs',"
1379 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1380 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001381module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1383 " addresses separated by commas. Only use if an interface"
1384 " is in memory. Otherwise, set it to zero or leave"
1385 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001386module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1388 " addresses separated by commas. Only use if an interface"
1389 " is a port. Otherwise, set it to zero or leave"
1390 " it blank.");
1391module_param_array(irqs, int, &num_irqs, 0);
1392MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1393 " addresses separated by commas. Only use if an interface"
1394 " has an interrupt. Otherwise, set it to zero or leave"
1395 " it blank.");
1396module_param_array(regspacings, int, &num_regspacings, 0);
1397MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1398 " and each successive register used by the interface. For"
1399 " instance, if the start address is 0xca2 and the spacing"
1400 " is 2, then the second address is at 0xca4. Defaults"
1401 " to 1.");
1402module_param_array(regsizes, int, &num_regsizes, 0);
1403MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1404 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1405 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1406 " the 8-bit IPMI register has to be read from a larger"
1407 " register.");
1408module_param_array(regshifts, int, &num_regshifts, 0);
1409MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1410 " IPMI register, in bits. For instance, if the data"
1411 " is read from a 32-bit word and the IPMI data is in"
1412 " bit 8-15, then the shift would be 8");
1413module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1414MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1415 " the controller. Normally this is 0x20, but can be"
1416 " overridden by this parm. This is an array indexed"
1417 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001418module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1419MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1420 " disabled(0). Normally the IPMI driver auto-detects"
1421 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001422module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001423MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1424 " specified or found, default is 1. Setting to 0"
1425 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001426module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1427MODULE_PARM_DESC(kipmid_max_busy_us,
1428 "Max time (in microseconds) to busy-wait for IPMI data before"
1429 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1430 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432
Corey Minyardb0defcd2006-03-26 01:37:20 -08001433static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001435 if (info->si_type == SI_BT)
1436 /* Disable the interrupt in the BT interface. */
1437 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1438 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441static int std_irq_setup(struct smi_info *info)
1442{
1443 int rv;
1444
Corey Minyardb0defcd2006-03-26 01:37:20 -08001445 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return 0;
1447
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001448 if (info->si_type == SI_BT) {
1449 rv = request_irq(info->irq,
1450 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001451 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001452 DEVICE_NAME,
1453 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001454 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001455 /* Enable the interrupt in the BT interface. */
1456 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1457 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1458 } else
1459 rv = request_irq(info->irq,
1460 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001461 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001462 DEVICE_NAME,
1463 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001465 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1466 " running polled\n",
1467 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 info->irq = 0;
1469 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001470 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001471 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473
1474 return rv;
1475}
1476
Corey Minyard81d02b72015-06-13 10:34:25 -05001477static unsigned char port_inb(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001479 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Corey Minyardb0defcd2006-03-26 01:37:20 -08001481 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Corey Minyard81d02b72015-06-13 10:34:25 -05001484static void port_outb(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 unsigned char b)
1486{
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 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Corey Minyard81d02b72015-06-13 10:34:25 -05001492static unsigned char port_inw(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001494 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Corey Minyardb0defcd2006-03-26 01:37:20 -08001496 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Corey Minyard81d02b72015-06-13 10:34:25 -05001499static void port_outw(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 unsigned char b)
1501{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001502 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Corey Minyardb0defcd2006-03-26 01:37:20 -08001504 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Corey Minyard81d02b72015-06-13 10:34:25 -05001507static unsigned char port_inl(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001509 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Corey Minyardb0defcd2006-03-26 01:37:20 -08001511 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Corey Minyard81d02b72015-06-13 10:34:25 -05001514static void port_outl(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 unsigned char b)
1516{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001517 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Corey Minyardb0defcd2006-03-26 01:37:20 -08001519 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522static void port_cleanup(struct smi_info *info)
1523{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001524 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001525 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Corey Minyardb0defcd2006-03-26 01:37:20 -08001527 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001528 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001529 release_region(addr + idx * info->io.regspacing,
1530 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534static int port_setup(struct smi_info *info)
1535{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001536 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001537 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Corey Minyardb0defcd2006-03-26 01:37:20 -08001539 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return -ENODEV;
1541
1542 info->io_cleanup = port_cleanup;
1543
Corey Minyardc305e3d2008-04-29 01:01:10 -07001544 /*
1545 * Figure out the actual inb/inw/inl/etc routine to use based
1546 * upon the register size.
1547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 switch (info->io.regsize) {
1549 case 1:
1550 info->io.inputb = port_inb;
1551 info->io.outputb = port_outb;
1552 break;
1553 case 2:
1554 info->io.inputb = port_inw;
1555 info->io.outputb = port_outw;
1556 break;
1557 case 4:
1558 info->io.inputb = port_inl;
1559 info->io.outputb = port_outl;
1560 break;
1561 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001562 dev_warn(info->dev, "Invalid register size: %d\n",
1563 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 return -EINVAL;
1565 }
1566
Corey Minyardc305e3d2008-04-29 01:01:10 -07001567 /*
1568 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001569 * tables. This causes problems when trying to register the
1570 * entire I/O region. Therefore we must register each I/O
1571 * port separately.
1572 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001573 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001574 if (request_region(addr + idx * info->io.regspacing,
1575 info->io.regsize, DEVICE_NAME) == NULL) {
1576 /* Undo allocations */
1577 while (idx--) {
1578 release_region(addr + idx * info->io.regspacing,
1579 info->io.regsize);
1580 }
1581 return -EIO;
1582 }
1583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return 0;
1585}
1586
Corey Minyard81d02b72015-06-13 10:34:25 -05001587static unsigned char intf_mem_inb(const struct si_sm_io *io,
1588 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 return readb((io->addr)+(offset * io->regspacing));
1591}
1592
Corey Minyard81d02b72015-06-13 10:34:25 -05001593static void intf_mem_outb(const struct si_sm_io *io, unsigned int offset,
1594 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 writeb(b, (io->addr)+(offset * io->regspacing));
1597}
1598
Corey Minyard81d02b72015-06-13 10:34:25 -05001599static unsigned char intf_mem_inw(const struct si_sm_io *io,
1600 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001603 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Corey Minyard81d02b72015-06-13 10:34:25 -05001606static void intf_mem_outw(const struct si_sm_io *io, unsigned int offset,
1607 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
1609 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1610}
1611
Corey Minyard81d02b72015-06-13 10:34:25 -05001612static unsigned char intf_mem_inl(const struct si_sm_io *io,
1613 unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001616 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Corey Minyard81d02b72015-06-13 10:34:25 -05001619static void intf_mem_outl(const struct si_sm_io *io, unsigned int offset,
1620 unsigned char b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1623}
1624
1625#ifdef readq
Corey Minyard81d02b72015-06-13 10:34:25 -05001626static unsigned char mem_inq(const struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001629 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
Corey Minyard81d02b72015-06-13 10:34:25 -05001632static void mem_outq(const struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 unsigned char b)
1634{
1635 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1636}
1637#endif
1638
1639static void mem_cleanup(struct smi_info *info)
1640{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001641 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 int mapsize;
1643
1644 if (info->io.addr) {
1645 iounmap(info->io.addr);
1646
1647 mapsize = ((info->io_size * info->io.regspacing)
1648 - (info->io.regspacing - info->io.regsize));
1649
Corey Minyardb0defcd2006-03-26 01:37:20 -08001650 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
1654static int mem_setup(struct smi_info *info)
1655{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001656 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 int mapsize;
1658
Corey Minyardb0defcd2006-03-26 01:37:20 -08001659 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return -ENODEV;
1661
1662 info->io_cleanup = mem_cleanup;
1663
Corey Minyardc305e3d2008-04-29 01:01:10 -07001664 /*
1665 * Figure out the actual readb/readw/readl/etc routine to use based
1666 * upon the register size.
1667 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 switch (info->io.regsize) {
1669 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001670 info->io.inputb = intf_mem_inb;
1671 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 break;
1673 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001674 info->io.inputb = intf_mem_inw;
1675 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
1677 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001678 info->io.inputb = intf_mem_inl;
1679 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 break;
1681#ifdef readq
1682 case 8:
1683 info->io.inputb = mem_inq;
1684 info->io.outputb = mem_outq;
1685 break;
1686#endif
1687 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001688 dev_warn(info->dev, "Invalid register size: %d\n",
1689 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return -EINVAL;
1691 }
1692
Corey Minyardc305e3d2008-04-29 01:01:10 -07001693 /*
1694 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 * unusual looking calculation, but it avoids claiming any
1696 * more memory than it has to. It will claim everything
1697 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001698 * register.
1699 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 mapsize = ((info->io_size * info->io.regspacing)
1701 - (info->io.regspacing - info->io.regsize));
1702
Corey Minyardb0defcd2006-03-26 01:37:20 -08001703 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 return -EIO;
1705
Corey Minyardb0defcd2006-03-26 01:37:20 -08001706 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001708 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return -EIO;
1710 }
1711 return 0;
1712}
1713
Corey Minyardb361e272006-12-06 20:41:07 -08001714/*
1715 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1716 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1717 * Options are:
1718 * rsp=<regspacing>
1719 * rsi=<regsize>
1720 * rsh=<regshift>
1721 * irq=<irq>
1722 * ipmb=<ipmb addr>
1723 */
1724enum hotmod_op { HM_ADD, HM_REMOVE };
1725struct hotmod_vals {
1726 char *name;
1727 int val;
1728};
1729static struct hotmod_vals hotmod_ops[] = {
1730 { "add", HM_ADD },
1731 { "remove", HM_REMOVE },
1732 { NULL }
1733};
1734static struct hotmod_vals hotmod_si[] = {
1735 { "kcs", SI_KCS },
1736 { "smic", SI_SMIC },
1737 { "bt", SI_BT },
1738 { NULL }
1739};
1740static struct hotmod_vals hotmod_as[] = {
1741 { "mem", IPMI_MEM_ADDR_SPACE },
1742 { "i/o", IPMI_IO_ADDR_SPACE },
1743 { NULL }
1744};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001745
Corey Minyardb361e272006-12-06 20:41:07 -08001746static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1747{
1748 char *s;
1749 int i;
1750
1751 s = strchr(*curr, ',');
1752 if (!s) {
1753 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1754 return -EINVAL;
1755 }
1756 *s = '\0';
1757 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001758 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001759 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001760 *val = v[i].val;
1761 *curr = s;
1762 return 0;
1763 }
1764 }
1765
1766 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1767 return -EINVAL;
1768}
1769
Corey Minyard1d5636c2006-12-10 02:19:08 -08001770static int check_hotmod_int_op(const char *curr, const char *option,
1771 const char *name, int *val)
1772{
1773 char *n;
1774
1775 if (strcmp(curr, name) == 0) {
1776 if (!option) {
1777 printk(KERN_WARNING PFX
1778 "No option given for '%s'\n",
1779 curr);
1780 return -EINVAL;
1781 }
1782 *val = simple_strtoul(option, &n, 0);
1783 if ((*n != '\0') || (*option == '\0')) {
1784 printk(KERN_WARNING PFX
1785 "Bad option given for '%s'\n",
1786 curr);
1787 return -EINVAL;
1788 }
1789 return 1;
1790 }
1791 return 0;
1792}
1793
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001794static struct smi_info *smi_info_alloc(void)
1795{
1796 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1797
Corey Minyardf60adf42012-03-28 14:42:50 -07001798 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001799 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001800 return info;
1801}
1802
Corey Minyardb361e272006-12-06 20:41:07 -08001803static int hotmod_handler(const char *val, struct kernel_param *kp)
1804{
1805 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001806 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001807 char *next, *curr, *s, *n, *o;
1808 enum hotmod_op op;
1809 enum si_type si_type;
1810 int addr_space;
1811 unsigned long addr;
1812 int regspacing;
1813 int regsize;
1814 int regshift;
1815 int irq;
1816 int ipmb;
1817 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001818 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001819 struct smi_info *info;
1820
1821 if (!str)
1822 return -ENOMEM;
1823
1824 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001825 len = strlen(str);
1826 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001827 while ((ival >= 0) && isspace(str[ival])) {
1828 str[ival] = '\0';
1829 ival--;
1830 }
1831
1832 for (curr = str; curr; curr = next) {
1833 regspacing = 1;
1834 regsize = 1;
1835 regshift = 0;
1836 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001837 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001838
1839 next = strchr(curr, ':');
1840 if (next) {
1841 *next = '\0';
1842 next++;
1843 }
1844
1845 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1846 if (rv)
1847 break;
1848 op = ival;
1849
1850 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1851 if (rv)
1852 break;
1853 si_type = ival;
1854
1855 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1856 if (rv)
1857 break;
1858
1859 s = strchr(curr, ',');
1860 if (s) {
1861 *s = '\0';
1862 s++;
1863 }
1864 addr = simple_strtoul(curr, &n, 0);
1865 if ((*n != '\0') || (*curr == '\0')) {
1866 printk(KERN_WARNING PFX "Invalid hotmod address"
1867 " '%s'\n", curr);
1868 break;
1869 }
1870
1871 while (s) {
1872 curr = s;
1873 s = strchr(curr, ',');
1874 if (s) {
1875 *s = '\0';
1876 s++;
1877 }
1878 o = strchr(curr, '=');
1879 if (o) {
1880 *o = '\0';
1881 o++;
1882 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001883 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1884 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001885 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001886 else if (rv)
1887 continue;
1888 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1889 if (rv < 0)
1890 goto out;
1891 else if (rv)
1892 continue;
1893 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1894 if (rv < 0)
1895 goto out;
1896 else if (rv)
1897 continue;
1898 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1899 if (rv < 0)
1900 goto out;
1901 else if (rv)
1902 continue;
1903 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1904 if (rv < 0)
1905 goto out;
1906 else if (rv)
1907 continue;
1908
1909 rv = -EINVAL;
1910 printk(KERN_WARNING PFX
1911 "Invalid hotmod option '%s'\n",
1912 curr);
1913 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001914 }
1915
1916 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001917 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001918 if (!info) {
1919 rv = -ENOMEM;
1920 goto out;
1921 }
1922
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001923 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001924 info->si_type = si_type;
1925 info->io.addr_data = addr;
1926 info->io.addr_type = addr_space;
1927 if (addr_space == IPMI_MEM_ADDR_SPACE)
1928 info->io_setup = mem_setup;
1929 else
1930 info->io_setup = port_setup;
1931
1932 info->io.addr = NULL;
1933 info->io.regspacing = regspacing;
1934 if (!info->io.regspacing)
1935 info->io.regspacing = DEFAULT_REGSPACING;
1936 info->io.regsize = regsize;
1937 if (!info->io.regsize)
1938 info->io.regsize = DEFAULT_REGSPACING;
1939 info->io.regshift = regshift;
1940 info->irq = irq;
1941 if (info->irq)
1942 info->irq_setup = std_irq_setup;
1943 info->slave_addr = ipmb;
1944
Corey Minyardd02b3702014-01-24 14:00:53 -06001945 rv = add_smi(info);
1946 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001947 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001948 goto out;
1949 }
1950 rv = try_smi_init(info);
1951 if (rv) {
1952 cleanup_one_si(info);
1953 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001954 }
Corey Minyardb361e272006-12-06 20:41:07 -08001955 } else {
1956 /* remove */
1957 struct smi_info *e, *tmp_e;
1958
1959 mutex_lock(&smi_infos_lock);
1960 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1961 if (e->io.addr_type != addr_space)
1962 continue;
1963 if (e->si_type != si_type)
1964 continue;
1965 if (e->io.addr_data == addr)
1966 cleanup_one_si(e);
1967 }
1968 mutex_unlock(&smi_infos_lock);
1969 }
1970 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001971 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001972 out:
1973 kfree(str);
1974 return rv;
1975}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001976
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001977static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001979 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001980 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 struct smi_info *info;
1982
Corey Minyardb0defcd2006-03-26 01:37:20 -08001983 for (i = 0; i < SI_MAX_PARMS; i++) {
1984 if (!ports[i] && !addrs[i])
1985 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001987 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001988 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001989 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001991 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001992 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001993
Corey Minyard1d5636c2006-12-10 02:19:08 -08001994 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001995 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001996 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001997 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001998 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001999 info->si_type = SI_BT;
2000 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002001 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08002002 "for interface %d, was invalid: %s\n",
2003 i, si_type[i]);
2004 kfree(info);
2005 continue;
2006 }
2007
2008 if (ports[i]) {
2009 /* An I/O port */
2010 info->io_setup = port_setup;
2011 info->io.addr_data = ports[i];
2012 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2013 } else if (addrs[i]) {
2014 /* A memory port */
2015 info->io_setup = mem_setup;
2016 info->io.addr_data = addrs[i];
2017 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2018 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002019 printk(KERN_WARNING PFX "Interface type specified "
2020 "for interface %d, but port and address were "
2021 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002022 kfree(info);
2023 continue;
2024 }
2025
2026 info->io.addr = NULL;
2027 info->io.regspacing = regspacings[i];
2028 if (!info->io.regspacing)
2029 info->io.regspacing = DEFAULT_REGSPACING;
2030 info->io.regsize = regsizes[i];
2031 if (!info->io.regsize)
2032 info->io.regsize = DEFAULT_REGSPACING;
2033 info->io.regshift = regshifts[i];
2034 info->irq = irqs[i];
2035 if (info->irq)
2036 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08002037 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08002038
Yinghai Lu7faefea2010-08-10 18:03:10 -07002039 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07002040 if (try_smi_init(info))
2041 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002042 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002043 } else {
2044 kfree(info);
2045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002047 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Len Brown84663612005-08-24 12:09:07 -04002050#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052#include <linux/acpi.h>
2053
Corey Minyardc305e3d2008-04-29 01:01:10 -07002054/*
2055 * Once we get an ACPI failure, we don't try any more, because we go
2056 * through the tables sequentially. Once we don't find a table, there
2057 * are no more.
2058 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002059static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002062static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2063 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 struct smi_info *smi_info = context;
2066 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 spin_lock_irqsave(&(smi_info->si_lock), flags);
2069
Corey Minyard64959e22008-04-29 01:01:07 -07002070 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
John Stultzf93aae92015-01-07 14:24:28 -08002072 debug_timestamp("ACPI_GPE");
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2076
2077 return ACPI_INTERRUPT_HANDLED;
2078}
2079
Corey Minyardb0defcd2006-03-26 01:37:20 -08002080static void acpi_gpe_irq_cleanup(struct smi_info *info)
2081{
2082 if (!info->irq)
2083 return;
2084
2085 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2086}
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088static int acpi_gpe_irq_setup(struct smi_info *info)
2089{
2090 acpi_status status;
2091
Corey Minyardb0defcd2006-03-26 01:37:20 -08002092 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return 0;
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 status = acpi_install_gpe_handler(NULL,
2096 info->irq,
2097 ACPI_GPE_LEVEL_TRIGGERED,
2098 &ipmi_acpi_gpe,
2099 info);
2100 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002101 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2102 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 info->irq = 0;
2104 return -EINVAL;
2105 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002106 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002107 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return 0;
2109 }
2110}
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/*
2113 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002114 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
2116struct SPMITable {
2117 s8 Signature[4];
2118 u32 Length;
2119 u8 Revision;
2120 u8 Checksum;
2121 s8 OEMID[6];
2122 s8 OEMTableID[8];
2123 s8 OEMRevision[4];
2124 s8 CreatorID[4];
2125 s8 CreatorRevision[4];
2126 u8 InterfaceType;
2127 u8 IPMIlegacy;
2128 s16 SpecificationRevision;
2129
2130 /*
2131 * Bit 0 - SCI interrupt supported
2132 * Bit 1 - I/O APIC/SAPIC
2133 */
2134 u8 InterruptType;
2135
Corey Minyardc305e3d2008-04-29 01:01:10 -07002136 /*
2137 * If bit 0 of InterruptType is set, then this is the SCI
2138 * interrupt in the GPEx_STS register.
2139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 u8 GPE;
2141
2142 s16 Reserved;
2143
Corey Minyardc305e3d2008-04-29 01:01:10 -07002144 /*
2145 * If bit 1 of InterruptType is set, then this is the I/O
2146 * APIC/SAPIC interrupt.
2147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 u32 GlobalSystemInterrupt;
2149
2150 /* The actual register address. */
2151 struct acpi_generic_address addr;
2152
2153 u8 UID[4];
2154
2155 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2156};
2157
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002158static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002161 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002164 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2165 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 }
2167
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002168 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002169 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002170 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002171 return -ENOMEM;
2172 }
2173
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002174 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002175 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002178 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002180 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002183 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002186 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002188 case 4: /* SSIF, just ignore */
2189 kfree(info);
2190 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002192 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2193 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002194 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return -EIO;
2196 }
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (spmi->InterruptType & 1) {
2199 /* We've got a GPE interrupt. */
2200 info->irq = spmi->GPE;
2201 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 } else if (spmi->InterruptType & 2) {
2203 /* We've got an APIC/SAPIC interrupt. */
2204 info->irq = spmi->GlobalSystemInterrupt;
2205 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 } else {
2207 /* Use the default interrupt setting. */
2208 info->irq = 0;
2209 info->irq_setup = NULL;
2210 }
2211
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002212 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002213 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002214 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002215 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002216 info->io.regspacing = DEFAULT_REGSPACING;
2217 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002218 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002219 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002221 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002223 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002224 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002226 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 } else {
2228 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002229 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 return -EIO;
2231 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002232 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002234 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2235 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2236 info->io.addr_data, info->io.regsize, info->io.regspacing,
2237 info->irq);
2238
Corey Minyardd02b3702014-01-24 14:00:53 -06002239 rv = add_smi(info);
2240 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002241 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Corey Minyardd02b3702014-01-24 14:00:53 -06002243 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002245
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002246static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002247{
2248 acpi_status status;
2249 struct SPMITable *spmi;
2250 int i;
2251
2252 if (acpi_disabled)
2253 return;
2254
2255 if (acpi_failure)
2256 return;
2257
2258 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002259 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2260 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002261 if (status != AE_OK)
2262 return;
2263
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002264 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002265 }
2266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267#endif
2268
Matt Domscha9fad4c2006-01-11 12:17:44 -08002269#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002270struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 u8 type;
2272 u8 addr_space;
2273 unsigned long base_addr;
2274 u8 irq;
2275 u8 offset;
2276 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002277};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002279static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002280 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Jeff Garzik18552562007-10-03 15:15:40 -04002282 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 unsigned long base_addr;
2284 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002285 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Corey Minyardb0defcd2006-03-26 01:37:20 -08002287 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 memcpy(&base_addr, data+8, sizeof(unsigned long));
2290 if (len >= 0x11) {
2291 if (base_addr & 1) {
2292 /* I/O */
2293 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002294 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002295 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002297 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2300 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002301 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Corey Minyardb0defcd2006-03-26 01:37:20 -08002303 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002306 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002307 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002309 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 break;
2311 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002312 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 break;
2314 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002315 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 break;
2317 default:
2318 /* Some other interface, just ignore it. */
2319 return -EIO;
2320 }
2321 } else {
2322 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002323 /*
2324 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002325 * address should be 1 if the address is I/O and 0 if
2326 * the address is in memory. So many systems get that
2327 * wrong (and all that I have seen are I/O) so we just
2328 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002329 * memory should use the newer spec, anyway.
2330 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002331 dmi->base_addr = base_addr & 0xfffe;
2332 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2333 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
2335
Corey Minyardb0defcd2006-03-26 01:37:20 -08002336 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Corey Minyardb0defcd2006-03-26 01:37:20 -08002338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002341static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
Corey Minyarde8b33612005-09-06 15:18:45 -07002343 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002345 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002346 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002347 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002348 return;
2349 }
2350
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002351 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002352 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Corey Minyarde8b33612005-09-06 15:18:45 -07002354 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002355 case 0x01: /* KCS */
2356 info->si_type = SI_KCS;
2357 break;
2358 case 0x02: /* SMIC */
2359 info->si_type = SI_SMIC;
2360 break;
2361 case 0x03: /* BT */
2362 info->si_type = SI_BT;
2363 break;
2364 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002365 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002366 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368
Corey Minyardb0defcd2006-03-26 01:37:20 -08002369 switch (ipmi_data->addr_space) {
2370 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002372 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Corey Minyardb0defcd2006-03-26 01:37:20 -08002375 case IPMI_IO_ADDR_SPACE:
2376 info->io_setup = port_setup;
2377 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2378 break;
2379
2380 default:
2381 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002382 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002383 ipmi_data->addr_space);
2384 return;
2385 }
2386 info->io.addr_data = ipmi_data->base_addr;
2387
2388 info->io.regspacing = ipmi_data->offset;
2389 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 info->io.regspacing = DEFAULT_REGSPACING;
2391 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002392 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 info->slave_addr = ipmi_data->slave_addr;
2395
Corey Minyardb0defcd2006-03-26 01:37:20 -08002396 info->irq = ipmi_data->irq;
2397 if (info->irq)
2398 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002400 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2401 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2402 info->io.addr_data, info->io.regsize, info->io.regspacing,
2403 info->irq);
2404
Yinghai Lu7faefea2010-08-10 18:03:10 -07002405 if (add_smi(info))
2406 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002407}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002409static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002410{
Jeff Garzik18552562007-10-03 15:15:40 -04002411 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002412 struct dmi_ipmi_data data;
2413 int rv;
2414
2415 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002416 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002417 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2418 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002419 if (!rv)
2420 try_init_dmi(&data);
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002423#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425#ifdef CONFIG_PCI
2426
Corey Minyardb0defcd2006-03-26 01:37:20 -08002427#define PCI_ERMC_CLASSCODE 0x0C0700
2428#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2429#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2430#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2431#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2432#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434#define PCI_HP_VENDOR_ID 0x103C
2435#define PCI_MMC_DEVICE_ID 0x121A
2436#define PCI_MMC_ADDR_CW 0x10
2437
Corey Minyardb0defcd2006-03-26 01:37:20 -08002438static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002440 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Corey Minyardb0defcd2006-03-26 01:37:20 -08002442 pci_disable_device(pdev);
2443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002445static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002446{
2447 if (info->si_type == SI_KCS) {
2448 unsigned char status;
2449 int regspacing;
2450
2451 info->io.regsize = DEFAULT_REGSIZE;
2452 info->io.regshift = 0;
2453 info->io_size = 2;
2454 info->handlers = &kcs_smi_handlers;
2455
2456 /* detect 1, 4, 16byte spacing */
2457 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2458 info->io.regspacing = regspacing;
2459 if (info->io_setup(info)) {
2460 dev_err(info->dev,
2461 "Could not setup I/O space\n");
2462 return DEFAULT_REGSPACING;
2463 }
2464 /* write invalid cmd */
2465 info->io.outputb(&info->io, 1, 0x10);
2466 /* read status back */
2467 status = info->io.inputb(&info->io, 1);
2468 info->io_cleanup(info);
2469 if (status)
2470 return regspacing;
2471 regspacing *= 4;
2472 }
2473 }
2474 return DEFAULT_REGSPACING;
2475}
2476
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002477static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002478 const struct pci_device_id *ent)
2479{
2480 int rv;
2481 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2482 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002484 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002485 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002486 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002487
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002488 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002489 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002490
2491 switch (class_type) {
2492 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2493 info->si_type = SI_SMIC;
2494 break;
2495
2496 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2497 info->si_type = SI_KCS;
2498 break;
2499
2500 case PCI_ERMC_CLASSCODE_TYPE_BT:
2501 info->si_type = SI_BT;
2502 break;
2503
2504 default:
2505 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002506 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002507 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Corey Minyardb0defcd2006-03-26 01:37:20 -08002510 rv = pci_enable_device(pdev);
2511 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002512 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002513 kfree(info);
2514 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
2516
Corey Minyardb0defcd2006-03-26 01:37:20 -08002517 info->addr_source_cleanup = ipmi_pci_cleanup;
2518 info->addr_source_data = pdev;
2519
Corey Minyardb0defcd2006-03-26 01:37:20 -08002520 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2521 info->io_setup = port_setup;
2522 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2523 } else {
2524 info->io_setup = mem_setup;
2525 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002527 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Corey Minyarda6c16c22012-10-16 15:53:40 -05002529 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2530 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002531 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Corey Minyardb0defcd2006-03-26 01:37:20 -08002533 info->irq = pdev->irq;
2534 if (info->irq)
2535 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Corey Minyard50c812b2006-03-26 01:37:21 -08002537 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002538 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002539
Myron Stowe279fbd02010-05-26 14:43:52 -07002540 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2541 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2542 info->irq);
2543
Corey Minyardd02b3702014-01-24 14:00:53 -06002544 rv = add_smi(info);
2545 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002546 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002547 pci_disable_device(pdev);
2548 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002549
Corey Minyardd02b3702014-01-24 14:00:53 -06002550 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002551}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Bill Pemberton39af33f2012-11-19 13:26:26 -05002553static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002554{
Corey Minyardfca3b742007-05-08 00:23:59 -07002555 struct smi_info *info = pci_get_drvdata(pdev);
2556 cleanup_one_si(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002557 pci_disable_device(pdev);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Corey Minyard81d02b72015-06-13 10:34:25 -05002560static const struct pci_device_id ipmi_pci_devices[] = {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002561 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002562 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2563 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002564};
2565MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2566
2567static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002568 .name = DEVICE_NAME,
2569 .id_table = ipmi_pci_devices,
2570 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002571 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002572};
2573#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002575#ifdef CONFIG_OF
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002576static const struct of_device_id of_ipmi_match[] = {
2577 { .type = "ipmi", .compatible = "ipmi-kcs",
2578 .data = (void *)(unsigned long) SI_KCS },
2579 { .type = "ipmi", .compatible = "ipmi-smic",
2580 .data = (void *)(unsigned long) SI_SMIC },
2581 { .type = "ipmi", .compatible = "ipmi-bt",
2582 .data = (void *)(unsigned long) SI_BT },
2583 {},
2584};
Luis de Bethencourt66f44012015-09-19 16:43:23 +01002585MODULE_DEVICE_TABLE(of, of_ipmi_match);
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002586
2587static int of_ipmi_probe(struct platform_device *dev)
2588{
Grant Likelyb1608d62011-05-18 11:19:24 -06002589 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002590 struct smi_info *info;
2591 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002592 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002593 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002594 int ret;
2595 int proplen;
2596
Myron Stowe279fbd02010-05-26 14:43:52 -07002597 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002598
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002599 match = of_match_device(of_ipmi_match, &dev->dev);
Grant Likelyb1608d62011-05-18 11:19:24 -06002600 if (!match)
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002601 return -ENODEV;
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002602
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002603 if (!of_device_is_available(np))
2604 return -EINVAL;
2605
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002606 ret = of_address_to_resource(np, 0, &resource);
2607 if (ret) {
2608 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2609 return ret;
2610 }
2611
Stephen Rothwell9c250992007-08-15 16:42:12 +10002612 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002613 if (regsize && proplen != 4) {
2614 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2615 return -EINVAL;
2616 }
2617
Stephen Rothwell9c250992007-08-15 16:42:12 +10002618 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002619 if (regspacing && proplen != 4) {
2620 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2621 return -EINVAL;
2622 }
2623
Stephen Rothwell9c250992007-08-15 16:42:12 +10002624 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002625 if (regshift && proplen != 4) {
2626 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2627 return -EINVAL;
2628 }
2629
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002630 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002631
2632 if (!info) {
2633 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002634 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002635 return -ENOMEM;
2636 }
2637
Grant Likelyb1608d62011-05-18 11:19:24 -06002638 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002639 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002640 info->irq_setup = std_irq_setup;
2641
Nate Case3b7ec112008-05-14 16:05:39 -07002642 if (resource.flags & IORESOURCE_IO) {
2643 info->io_setup = port_setup;
2644 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2645 } else {
2646 info->io_setup = mem_setup;
2647 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2648 }
2649
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002650 info->io.addr_data = resource.start;
2651
Rob Herringda81c3b2010-11-16 14:33:50 -06002652 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2653 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2654 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002655
Grant Likely61c7a082010-04-13 16:12:29 -07002656 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002657 info->dev = &dev->dev;
2658
Myron Stowe279fbd02010-05-26 14:43:52 -07002659 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002660 info->io.addr_data, info->io.regsize, info->io.regspacing,
2661 info->irq);
2662
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002663 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002664
Corey Minyardd02b3702014-01-24 14:00:53 -06002665 ret = add_smi(info);
2666 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002667 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002668 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002669 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002670 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002671}
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002672#else
2673#define of_ipmi_match NULL
2674static int of_ipmi_probe(struct platform_device *dev)
2675{
2676 return -ENODEV;
2677}
2678#endif
2679
2680#ifdef CONFIG_ACPI
2681static int acpi_ipmi_probe(struct platform_device *dev)
2682{
2683 struct smi_info *info;
2684 struct resource *res, *res_second;
2685 acpi_handle handle;
2686 acpi_status status;
2687 unsigned long long tmp;
2688 int rv = -EINVAL;
2689
2690 handle = ACPI_HANDLE(&dev->dev);
2691 if (!handle)
2692 return -ENODEV;
2693
2694 info = smi_info_alloc();
2695 if (!info)
2696 return -ENOMEM;
2697
2698 info->addr_source = SI_ACPI;
2699 dev_info(&dev->dev, PFX "probing via ACPI\n");
2700
2701 info->addr_info.acpi_info.acpi_handle = handle;
2702
2703 /* _IFT tells us the interface type: KCS, BT, etc */
2704 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2705 if (ACPI_FAILURE(status)) {
2706 dev_err(&dev->dev, "Could not find ACPI IPMI interface type\n");
2707 goto err_free;
2708 }
2709
2710 switch (tmp) {
2711 case 1:
2712 info->si_type = SI_KCS;
2713 break;
2714 case 2:
2715 info->si_type = SI_SMIC;
2716 break;
2717 case 3:
2718 info->si_type = SI_BT;
2719 break;
2720 case 4: /* SSIF, just ignore */
2721 rv = -ENODEV;
2722 goto err_free;
2723 default:
2724 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
2725 goto err_free;
2726 }
2727
2728 res = platform_get_resource(dev, IORESOURCE_IO, 0);
2729 if (res) {
2730 info->io_setup = port_setup;
2731 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2732 } else {
2733 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2734 if (res) {
2735 info->io_setup = mem_setup;
2736 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2737 }
2738 }
2739 if (!res) {
2740 dev_err(&dev->dev, "no I/O or memory address\n");
2741 goto err_free;
2742 }
2743 info->io.addr_data = res->start;
2744
2745 info->io.regspacing = DEFAULT_REGSPACING;
2746 res_second = platform_get_resource(dev,
2747 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2748 IORESOURCE_IO : IORESOURCE_MEM,
2749 1);
2750 if (res_second) {
2751 if (res_second->start > info->io.addr_data)
2752 info->io.regspacing =
2753 res_second->start - info->io.addr_data;
2754 }
2755 info->io.regsize = DEFAULT_REGSPACING;
2756 info->io.regshift = 0;
2757
2758 /* If _GPE exists, use it; otherwise use standard interrupts */
2759 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2760 if (ACPI_SUCCESS(status)) {
2761 info->irq = tmp;
2762 info->irq_setup = acpi_gpe_irq_setup;
2763 } else {
2764 int irq = platform_get_irq(dev, 0);
2765
2766 if (irq > 0) {
2767 info->irq = irq;
2768 info->irq_setup = std_irq_setup;
2769 }
2770 }
2771
2772 info->dev = &dev->dev;
2773 platform_set_drvdata(dev, info);
2774
2775 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2776 res, info->io.regsize, info->io.regspacing,
2777 info->irq);
2778
2779 rv = add_smi(info);
2780 if (rv)
2781 kfree(info);
2782
2783 return rv;
2784
2785err_free:
2786 kfree(info);
2787 return rv;
2788}
2789
Corey Minyard81d02b72015-06-13 10:34:25 -05002790static const struct acpi_device_id acpi_ipmi_match[] = {
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002791 { "IPI0001", 0 },
2792 { },
2793};
2794MODULE_DEVICE_TABLE(acpi, acpi_ipmi_match);
2795#else
2796static int acpi_ipmi_probe(struct platform_device *dev)
2797{
2798 return -ENODEV;
2799}
2800#endif
2801
2802static int ipmi_probe(struct platform_device *dev)
2803{
2804 if (of_ipmi_probe(dev) == 0)
2805 return 0;
2806
2807 return acpi_ipmi_probe(dev);
2808}
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002809
Bill Pemberton39af33f2012-11-19 13:26:26 -05002810static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002811{
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002812 struct smi_info *info = dev_get_drvdata(&dev->dev);
2813
Markus Elfringa7930892015-06-27 18:12:14 +02002814 cleanup_one_si(info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002815 return 0;
2816}
2817
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002818static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002819 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002820 .name = DEVICE_NAME,
Corey Minyard0fbcf4a2015-06-09 16:51:46 -05002821 .of_match_table = of_ipmi_match,
2822 .acpi_match_table = ACPI_PTR(acpi_ipmi_match),
Grant Likely40182942010-04-13 16:13:02 -07002823 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002824 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002825 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002826};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002827
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002828#ifdef CONFIG_PARISC
2829static int ipmi_parisc_probe(struct parisc_device *dev)
2830{
2831 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002832 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002833
2834 info = smi_info_alloc();
2835
2836 if (!info) {
2837 dev_err(&dev->dev,
2838 "could not allocate memory for PARISC probe\n");
2839 return -ENOMEM;
2840 }
2841
2842 info->si_type = SI_KCS;
2843 info->addr_source = SI_DEVICETREE;
2844 info->io_setup = mem_setup;
2845 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2846 info->io.addr_data = dev->hpa.start;
2847 info->io.regsize = 1;
2848 info->io.regspacing = 1;
2849 info->io.regshift = 0;
2850 info->irq = 0; /* no interrupt */
2851 info->irq_setup = NULL;
2852 info->dev = &dev->dev;
2853
2854 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2855
2856 dev_set_drvdata(&dev->dev, info);
2857
Corey Minyardd02b3702014-01-24 14:00:53 -06002858 rv = add_smi(info);
2859 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002860 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002861 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002862 }
2863
2864 return 0;
2865}
2866
2867static int ipmi_parisc_remove(struct parisc_device *dev)
2868{
2869 cleanup_one_si(dev_get_drvdata(&dev->dev));
2870 return 0;
2871}
2872
2873static struct parisc_device_id ipmi_parisc_tbl[] = {
2874 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2875 { 0, }
2876};
2877
2878static struct parisc_driver ipmi_parisc_driver = {
2879 .name = "ipmi",
2880 .id_table = ipmi_parisc_tbl,
2881 .probe = ipmi_parisc_probe,
2882 .remove = ipmi_parisc_remove,
2883};
2884#endif /* CONFIG_PARISC */
2885
Corey Minyard40112ae2009-04-21 12:24:03 -07002886static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
Corey Minyard50c812b2006-03-26 01:37:21 -08002888 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002891 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002892 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2893 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002894 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002896 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002897 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 smi_result = smi_info->handlers->event(
2899 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002900 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 break;
2902 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002903 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002904 /*
2905 * We couldn't get the state machine to run, so whatever's at
2906 * the port is probably not an IPMI SMI interface.
2907 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002908 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Corey Minyard40112ae2009-04-21 12:24:03 -07002910 return 0;
2911}
2912
2913static int try_get_dev_id(struct smi_info *smi_info)
2914{
2915 unsigned char msg[2];
2916 unsigned char *resp;
2917 unsigned long resp_len;
2918 int rv = 0;
2919
2920 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2921 if (!resp)
2922 return -ENOMEM;
2923
2924 /*
2925 * Do a Get Device ID command, since it comes back with some
2926 * useful info.
2927 */
2928 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2929 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2930 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2931
2932 rv = wait_for_msg_done(smi_info);
2933 if (rv)
2934 goto out;
2935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2937 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Corey Minyardd8c98612007-10-18 03:07:11 -07002939 /* Check and record info from the get device id, in case we need it. */
2940 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 out:
2943 kfree(resp);
2944 return rv;
2945}
2946
Corey Minyardd0882892015-08-18 14:29:10 -05002947static int get_global_enables(struct smi_info *smi_info, u8 *enables)
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002948{
2949 unsigned char msg[3];
2950 unsigned char *resp;
2951 unsigned long resp_len;
2952 int rv;
2953
2954 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
Corey Minyardd0882892015-08-18 14:29:10 -05002955 if (!resp)
2956 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002957
2958 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2959 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2960 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2961
2962 rv = wait_for_msg_done(smi_info);
2963 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05002964 dev_warn(smi_info->dev,
2965 "Error getting response from get global enables command: %d\n",
2966 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002967 goto out;
2968 }
2969
2970 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2971 resp, IPMI_MAX_MSG_LENGTH);
2972
2973 if (resp_len < 4 ||
2974 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2975 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2976 resp[2] != 0) {
Corey Minyardd0882892015-08-18 14:29:10 -05002977 dev_warn(smi_info->dev,
2978 "Invalid return from get global enables command: %ld %x %x %x\n",
2979 resp_len, resp[0], resp[1], resp[2]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002980 rv = -EINVAL;
2981 goto out;
Corey Minyardd0882892015-08-18 14:29:10 -05002982 } else {
2983 *enables = resp[3];
Corey Minyard1e7d6a42015-04-03 12:13:48 -05002984 }
2985
Corey Minyardd0882892015-08-18 14:29:10 -05002986out:
2987 kfree(resp);
2988 return rv;
2989}
2990
2991/*
2992 * Returns 1 if it gets an error from the command.
2993 */
2994static int set_global_enables(struct smi_info *smi_info, u8 enables)
2995{
2996 unsigned char msg[3];
2997 unsigned char *resp;
2998 unsigned long resp_len;
2999 int rv;
3000
3001 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3002 if (!resp)
3003 return -ENOMEM;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003004
3005 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3006 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardd0882892015-08-18 14:29:10 -05003007 msg[2] = enables;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003008 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3009
3010 rv = wait_for_msg_done(smi_info);
3011 if (rv) {
Corey Minyardd0882892015-08-18 14:29:10 -05003012 dev_warn(smi_info->dev,
3013 "Error getting response from set global enables command: %d\n",
3014 rv);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003015 goto out;
3016 }
3017
3018 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3019 resp, IPMI_MAX_MSG_LENGTH);
3020
3021 if (resp_len < 3 ||
3022 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3023 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Corey Minyardd0882892015-08-18 14:29:10 -05003024 dev_warn(smi_info->dev,
3025 "Invalid return from set global enables command: %ld %x %x\n",
3026 resp_len, resp[0], resp[1]);
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003027 rv = -EINVAL;
3028 goto out;
3029 }
3030
Corey Minyardd0882892015-08-18 14:29:10 -05003031 if (resp[2] != 0)
3032 rv = 1;
3033
3034out:
3035 kfree(resp);
3036 return rv;
3037}
3038
3039/*
3040 * Some BMCs do not support clearing the receive irq bit in the global
3041 * enables (even if they don't support interrupts on the BMC). Check
3042 * for this and handle it properly.
3043 */
3044static void check_clr_rcv_irq(struct smi_info *smi_info)
3045{
3046 u8 enables = 0;
3047 int rv;
3048
3049 rv = get_global_enables(smi_info, &enables);
3050 if (!rv) {
3051 if ((enables & IPMI_BMC_RCV_MSG_INTR) == 0)
3052 /* Already clear, should work ok. */
3053 return;
3054
3055 enables &= ~IPMI_BMC_RCV_MSG_INTR;
3056 rv = set_global_enables(smi_info, enables);
3057 }
3058
3059 if (rv < 0) {
3060 dev_err(smi_info->dev,
3061 "Cannot check clearing the rcv irq: %d\n", rv);
3062 return;
3063 }
3064
3065 if (rv) {
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003066 /*
3067 * An error when setting the event buffer bit means
3068 * clearing the bit is not supported.
3069 */
Corey Minyardd0882892015-08-18 14:29:10 -05003070 dev_warn(smi_info->dev,
3071 "The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3072 smi_info->cannot_disable_irq = true;
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003073 }
Corey Minyardd0882892015-08-18 14:29:10 -05003074}
3075
3076/*
3077 * Some BMCs do not support setting the interrupt bits in the global
3078 * enables even if they support interrupts. Clearly bad, but we can
3079 * compensate.
3080 */
3081static void check_set_rcv_irq(struct smi_info *smi_info)
3082{
3083 u8 enables = 0;
3084 int rv;
3085
3086 if (!smi_info->irq)
3087 return;
3088
3089 rv = get_global_enables(smi_info, &enables);
3090 if (!rv) {
3091 enables |= IPMI_BMC_RCV_MSG_INTR;
3092 rv = set_global_enables(smi_info, enables);
3093 }
3094
3095 if (rv < 0) {
3096 dev_err(smi_info->dev,
3097 "Cannot check setting the rcv irq: %d\n", rv);
3098 return;
3099 }
3100
3101 if (rv) {
3102 /*
3103 * An error when setting the event buffer bit means
3104 * setting the bit is not supported.
3105 */
3106 dev_warn(smi_info->dev,
3107 "The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.\n");
3108 smi_info->cannot_disable_irq = true;
3109 smi_info->irq_enable_broken = true;
3110 }
Corey Minyard1e7d6a42015-04-03 12:13:48 -05003111}
3112
Corey Minyard40112ae2009-04-21 12:24:03 -07003113static int try_enable_event_buffer(struct smi_info *smi_info)
3114{
3115 unsigned char msg[3];
3116 unsigned char *resp;
3117 unsigned long resp_len;
3118 int rv = 0;
3119
3120 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
3121 if (!resp)
3122 return -ENOMEM;
3123
3124 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3125 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
3126 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
3127
3128 rv = wait_for_msg_done(smi_info);
3129 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003130 printk(KERN_WARNING PFX "Error getting response from get"
3131 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003132 " enabled.\n");
3133 goto out;
3134 }
3135
3136 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3137 resp, IPMI_MAX_MSG_LENGTH);
3138
3139 if (resp_len < 4 ||
3140 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3141 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
3142 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003143 printk(KERN_WARNING PFX "Invalid return from get global"
3144 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003145 rv = -EINVAL;
3146 goto out;
3147 }
3148
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003149 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) {
Corey Minyard40112ae2009-04-21 12:24:03 -07003150 /* buffer is already enabled, nothing to do. */
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003151 smi_info->supports_event_msg_buff = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003152 goto out;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003153 }
Corey Minyard40112ae2009-04-21 12:24:03 -07003154
3155 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
3156 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
3157 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
3158 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
3159
3160 rv = wait_for_msg_done(smi_info);
3161 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003162 printk(KERN_WARNING PFX "Error getting response from set"
3163 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07003164 " enabled.\n");
3165 goto out;
3166 }
3167
3168 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
3169 resp, IPMI_MAX_MSG_LENGTH);
3170
3171 if (resp_len < 3 ||
3172 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
3173 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003174 printk(KERN_WARNING PFX "Invalid return from get global,"
3175 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07003176 rv = -EINVAL;
3177 goto out;
3178 }
3179
3180 if (resp[2] != 0)
3181 /*
3182 * An error when setting the event buffer bit means
3183 * that the event buffer is not supported.
3184 */
3185 rv = -ENOENT;
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003186 else
3187 smi_info->supports_event_msg_buff = true;
3188
Corey Minyard40112ae2009-04-21 12:24:03 -07003189 out:
3190 kfree(resp);
3191 return rv;
3192}
3193
Alexey Dobriyan07412732011-05-26 16:25:55 -07003194static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195{
Alexey Dobriyan07412732011-05-26 16:25:55 -07003196 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003198 seq_printf(m, "%s\n", si_to_str[smi->si_type]);
3199
Joe Perches5e33cd02015-02-22 10:21:07 -08003200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
Alexey Dobriyan07412732011-05-26 16:25:55 -07003203static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
Al Virod9dda782013-03-31 18:16:14 -04003205 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003206}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Alexey Dobriyan07412732011-05-26 16:25:55 -07003208static const struct file_operations smi_type_proc_ops = {
3209 .open = smi_type_proc_open,
3210 .read = seq_read,
3211 .llseek = seq_lseek,
3212 .release = single_release,
3213};
3214
3215static int smi_si_stats_proc_show(struct seq_file *m, void *v)
3216{
3217 struct smi_info *smi = m->private;
3218
3219 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08003220 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07003221 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003222 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003223 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003224 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003225 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003226 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003227 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003228 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003229 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003230 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003231 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003232 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003233 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003234 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003235 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003236 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003237 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003238 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003239 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003240 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003241 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003242 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003243 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003244}
3245
Alexey Dobriyan07412732011-05-26 16:25:55 -07003246static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003247{
Al Virod9dda782013-03-31 18:16:14 -04003248 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003249}
Corey Minyardb361e272006-12-06 20:41:07 -08003250
Alexey Dobriyan07412732011-05-26 16:25:55 -07003251static const struct file_operations smi_si_stats_proc_ops = {
3252 .open = smi_si_stats_proc_open,
3253 .read = seq_read,
3254 .llseek = seq_lseek,
3255 .release = single_release,
3256};
3257
3258static int smi_params_proc_show(struct seq_file *m, void *v)
3259{
3260 struct smi_info *smi = m->private;
3261
Joe Perchesd6c5dc12015-02-17 11:10:56 -08003262 seq_printf(m,
3263 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3264 si_to_str[smi->si_type],
3265 addr_space_to_str[smi->io.addr_type],
3266 smi->io.addr_data,
3267 smi->io.regspacing,
3268 smi->io.regsize,
3269 smi->io.regshift,
3270 smi->irq,
3271 smi->slave_addr);
3272
Joe Perches5e33cd02015-02-22 10:21:07 -08003273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274}
3275
Alexey Dobriyan07412732011-05-26 16:25:55 -07003276static int smi_params_proc_open(struct inode *inode, struct file *file)
3277{
Al Virod9dda782013-03-31 18:16:14 -04003278 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003279}
3280
3281static const struct file_operations smi_params_proc_ops = {
3282 .open = smi_params_proc_open,
3283 .read = seq_read,
3284 .llseek = seq_lseek,
3285 .release = single_release,
3286};
3287
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003288/*
3289 * oem_data_avail_to_receive_msg_avail
3290 * @info - smi_info structure with msg_flags set
3291 *
3292 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3293 * Returns 1 indicating need to re-run handle_flags().
3294 */
3295static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3296{
Corey Minyarde8b33612005-09-06 15:18:45 -07003297 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003298 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003299 return 1;
3300}
3301
3302/*
3303 * setup_dell_poweredge_oem_data_handler
3304 * @info - smi_info.device_id must be populated
3305 *
3306 * Systems that match, but have firmware version < 1.40 may assert
3307 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3308 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3309 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3310 * as RECEIVE_MSG_AVAIL instead.
3311 *
3312 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3313 * assert the OEM[012] bits, and if it did, the driver would have to
3314 * change to handle that properly, we don't actually check for the
3315 * firmware version.
3316 * Device ID = 0x20 BMC on PowerEdge 8G servers
3317 * Device Revision = 0x80
3318 * Firmware Revision1 = 0x01 BMC version 1.40
3319 * Firmware Revision2 = 0x40 BCD encoded
3320 * IPMI Version = 0x51 IPMI 1.5
3321 * Manufacturer ID = A2 02 00 Dell IANA
3322 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003323 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3324 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3325 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003326 */
3327#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3328#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3329#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003330#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003331static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3332{
3333 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003334 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003335 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3336 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003337 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003338 smi_info->oem_data_avail_handler =
3339 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003340 } else if (ipmi_version_major(id) < 1 ||
3341 (ipmi_version_major(id) == 1 &&
3342 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003343 smi_info->oem_data_avail_handler =
3344 oem_data_avail_to_receive_msg_avail;
3345 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003346 }
3347}
3348
Corey Minyardea940272005-11-07 00:59:59 -08003349#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3350static void return_hosed_msg_badsize(struct smi_info *smi_info)
3351{
3352 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3353
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003354 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003355 msg->rsp[0] = msg->data[0] | 4;
3356 msg->rsp[1] = msg->data[1];
3357 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3358 msg->rsp_size = 3;
3359 smi_info->curr_msg = NULL;
3360 deliver_recv_msg(smi_info, msg);
3361}
3362
3363/*
3364 * dell_poweredge_bt_xaction_handler
3365 * @info - smi_info.device_id must be populated
3366 *
3367 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3368 * not respond to a Get SDR command if the length of the data
3369 * requested is exactly 0x3A, which leads to command timeouts and no
3370 * data returned. This intercepts such commands, and causes userspace
3371 * callers to try again with a different-sized buffer, which succeeds.
3372 */
3373
3374#define STORAGE_NETFN 0x0A
3375#define STORAGE_CMD_GET_SDR 0x23
3376static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3377 unsigned long unused,
3378 void *in)
3379{
3380 struct smi_info *smi_info = in;
3381 unsigned char *data = smi_info->curr_msg->data;
3382 unsigned int size = smi_info->curr_msg->data_size;
3383 if (size >= 8 &&
3384 (data[0]>>2) == STORAGE_NETFN &&
3385 data[1] == STORAGE_CMD_GET_SDR &&
3386 data[7] == 0x3A) {
3387 return_hosed_msg_badsize(smi_info);
3388 return NOTIFY_STOP;
3389 }
3390 return NOTIFY_DONE;
3391}
3392
3393static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3394 .notifier_call = dell_poweredge_bt_xaction_handler,
3395};
3396
3397/*
3398 * setup_dell_poweredge_bt_xaction_handler
3399 * @info - smi_info.device_id must be filled in already
3400 *
3401 * Fills in smi_info.device_id.start_transaction_pre_hook
3402 * when we know what function to use there.
3403 */
3404static void
3405setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3406{
3407 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003408 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003409 smi_info->si_type == SI_BT)
3410 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3411}
3412
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003413/*
3414 * setup_oem_data_handler
3415 * @info - smi_info.device_id must be filled in already
3416 *
3417 * Fills in smi_info.device_id.oem_data_available_handler
3418 * when we know what function to use there.
3419 */
3420
3421static void setup_oem_data_handler(struct smi_info *smi_info)
3422{
3423 setup_dell_poweredge_oem_data_handler(smi_info);
3424}
3425
Corey Minyardea940272005-11-07 00:59:59 -08003426static void setup_xaction_handlers(struct smi_info *smi_info)
3427{
3428 setup_dell_poweredge_bt_xaction_handler(smi_info);
3429}
3430
Corey Minyardd0882892015-08-18 14:29:10 -05003431static void check_for_broken_irqs(struct smi_info *smi_info)
3432{
3433 check_clr_rcv_irq(smi_info);
3434 check_set_rcv_irq(smi_info);
3435}
3436
Corey Minyarda9a2c442005-11-07 01:00:03 -08003437static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3438{
Corey Minyardb874b982014-11-06 17:01:59 -06003439 if (smi_info->thread != NULL)
3440 kthread_stop(smi_info->thread);
3441 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003442 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003443}
3444
Corey Minyard81d02b72015-06-13 10:34:25 -05003445static const struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003447 int type;
3448 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003449} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003450{
3451 { .type = SI_KCS, .port = 0xca2 },
3452 { .type = SI_SMIC, .port = 0xca9 },
3453 { .type = SI_BT, .port = 0xe4 },
3454 { .port = 0 }
3455};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003457static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003458{
3459 struct smi_info *info;
3460 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Corey Minyardb0defcd2006-03-26 01:37:20 -08003462 for (i = 0; ; i++) {
3463 if (!ipmi_defaults[i].port)
3464 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003465#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003466 if (check_legacy_ioport(ipmi_defaults[i].port))
3467 continue;
3468#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003469 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003470 if (!info)
3471 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003472
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003473 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003474
3475 info->si_type = ipmi_defaults[i].type;
3476 info->io_setup = port_setup;
3477 info->io.addr_data = ipmi_defaults[i].port;
3478 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3479
3480 info->io.addr = NULL;
3481 info->io.regspacing = DEFAULT_REGSPACING;
3482 info->io.regsize = DEFAULT_REGSPACING;
3483 info->io.regshift = 0;
3484
Matthew Garrett2407d772010-05-26 14:43:46 -07003485 if (add_smi(info) == 0) {
3486 if ((try_smi_init(info)) == 0) {
3487 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003488 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003489 " state machine at %s address 0x%lx\n",
3490 si_to_str[info->si_type],
3491 addr_space_to_str[info->io.addr_type],
3492 info->io.addr_data);
3493 } else
3494 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003495 } else {
3496 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003497 }
3498 }
3499}
3500
3501static int is_new_interface(struct smi_info *info)
3502{
3503 struct smi_info *e;
3504
3505 list_for_each_entry(e, &smi_infos, link) {
3506 if (e->io.addr_type != info->io.addr_type)
3507 continue;
3508 if (e->io.addr_data == info->io.addr_data)
3509 return 0;
3510 }
3511
3512 return 1;
3513}
3514
Matthew Garrett2407d772010-05-26 14:43:46 -07003515static int add_smi(struct smi_info *new_smi)
3516{
3517 int rv = 0;
3518
Myron Stowe279fbd02010-05-26 14:43:52 -07003519 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003520 ipmi_addr_src_to_str(new_smi->addr_source),
3521 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003522 mutex_lock(&smi_infos_lock);
3523 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003524 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003525 rv = -EBUSY;
3526 goto out_err;
3527 }
3528
3529 printk(KERN_CONT "\n");
3530
3531 /* So we know not to free it unless we have allocated one. */
3532 new_smi->intf = NULL;
3533 new_smi->si_sm = NULL;
3534 new_smi->handlers = NULL;
3535
3536 list_add_tail(&new_smi->link, &smi_infos);
3537
3538out_err:
3539 mutex_unlock(&smi_infos_lock);
3540 return rv;
3541}
3542
Corey Minyardb0defcd2006-03-26 01:37:20 -08003543static int try_smi_init(struct smi_info *new_smi)
3544{
Matthew Garrett2407d772010-05-26 14:43:46 -07003545 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003546 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003547
Myron Stowe279fbd02010-05-26 14:43:52 -07003548 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003549 " machine at %s address 0x%lx, slave address 0x%x,"
3550 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003551 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003552 si_to_str[new_smi->si_type],
3553 addr_space_to_str[new_smi->io.addr_type],
3554 new_smi->io.addr_data,
3555 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003556
Corey Minyardb0defcd2006-03-26 01:37:20 -08003557 switch (new_smi->si_type) {
3558 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003560 break;
3561
3562 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003564 break;
3565
3566 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003568 break;
3569
3570 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 /* No support for anything else yet. */
3572 rv = -EIO;
3573 goto out_err;
3574 }
3575
3576 /* Allocate the state machine's data and initialize it. */
3577 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003578 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003579 printk(KERN_ERR PFX
3580 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 rv = -ENOMEM;
3582 goto out_err;
3583 }
3584 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3585 &new_smi->io);
3586
3587 /* Now that we know the I/O size, we can set up the I/O. */
3588 rv = new_smi->io_setup(new_smi);
3589 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003590 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 goto out_err;
3592 }
3593
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 /* Do low-level detection first. */
3595 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003596 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003597 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 rv = -ENODEV;
3599 goto out_err;
3600 }
3601
Corey Minyardc305e3d2008-04-29 01:01:10 -07003602 /*
3603 * Attempt a get device id command. If it fails, we probably
3604 * don't have a BMC here.
3605 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003607 if (rv) {
3608 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003609 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003610 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003614 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003615 setup_xaction_handlers(new_smi);
Corey Minyardd0882892015-08-18 14:29:10 -05003616 check_for_broken_irqs(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003617
Corey Minyardb874b982014-11-06 17:01:59 -06003618 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 new_smi->curr_msg = NULL;
3620 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003621 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003622 for (i = 0; i < SI_NUM_STATS; i++)
3623 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Corey Minyard7aefac22014-04-14 09:46:56 -05003625 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003626 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003627 new_smi->intf_num = smi_num;
3628 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Corey Minyard40112ae2009-04-21 12:24:03 -07003630 rv = try_enable_event_buffer(new_smi);
3631 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003632 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003633
Corey Minyardc305e3d2008-04-29 01:01:10 -07003634 /*
3635 * Start clearing the flags before we enable interrupts or the
3636 * timer to avoid racing with the timer.
3637 */
Corey Minyard0cfec912015-09-05 17:44:13 -05003638 start_clear_flags(new_smi, false);
Corey Minyardd9b7e4f2014-11-19 04:03:26 -06003639
3640 /*
3641 * IRQ is defined to be set when non-zero. req_events will
3642 * cause a global flags check that will enable interrupts.
3643 */
3644 if (new_smi->irq) {
3645 new_smi->interrupt_disabled = false;
3646 atomic_set(&new_smi->req_events, 1);
3647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Corey Minyard50c812b2006-03-26 01:37:21 -08003649 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003650 /*
3651 * If we don't already have a device from something
3652 * else (like PCI), then register a new one.
3653 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003654 new_smi->pdev = platform_device_alloc("ipmi_si",
3655 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003656 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003657 printk(KERN_ERR PFX
3658 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003659 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003660 }
3661 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003662 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003663
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003664 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003665 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003666 printk(KERN_ERR PFX
3667 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003668 " %d\n",
3669 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003670 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003671 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003672 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003673 }
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 rv = ipmi_register_smi(&handlers,
3676 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003677 &new_smi->device_id,
3678 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003679 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003681 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3682 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 goto out_err_stop_timer;
3684 }
3685
3686 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003687 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003688 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003690 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 goto out_err_stop_timer;
3692 }
3693
3694 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003695 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003696 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003698 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 goto out_err_stop_timer;
3700 }
3701
Corey Minyardb361e272006-12-06 20:41:07 -08003702 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003703 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003704 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003705 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003706 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003707 goto out_err_stop_timer;
3708 }
3709
Myron Stowe279fbd02010-05-26 14:43:52 -07003710 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3711 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
3713 return 0;
3714
3715 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003716 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
3718 out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003719 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Matthew Garrett2407d772010-05-26 14:43:46 -07003721 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003722 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003723 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003724 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003725 }
3726
3727 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003728 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003729 new_smi->irq_cleanup = NULL;
3730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Corey Minyardc305e3d2008-04-29 01:01:10 -07003732 /*
3733 * Wait until we know that we are out of any interrupt
3734 * handlers might have been running before we freed the
3735 * interrupt.
3736 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003737 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
3739 if (new_smi->si_sm) {
3740 if (new_smi->handlers)
3741 new_smi->handlers->cleanup(new_smi->si_sm);
3742 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003743 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003745 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003746 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003747 new_smi->addr_source_cleanup = NULL;
3748 }
3749 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003750 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003751 new_smi->io_cleanup = NULL;
3752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Matthew Garrett2407d772010-05-26 14:43:46 -07003754 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003755 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003756 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003757 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 return rv;
3760}
3761
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003762static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 int i;
3765 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003766 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003767 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003768 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
3770 if (initialized)
3771 return 0;
3772 initialized = 1;
3773
Corey Minyardf2afae42013-02-27 17:05:13 -08003774 if (si_tryplatform) {
3775 rv = platform_driver_register(&ipmi_driver);
3776 if (rv) {
3777 printk(KERN_ERR PFX "Unable to register "
3778 "driver: %d\n", rv);
3779 return rv;
3780 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003781 }
3782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 /* Parse out the si_type string into its components. */
3784 str = si_type_str;
3785 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003786 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 si_type[i] = str;
3788 str = strchr(str, ',');
3789 if (str) {
3790 *str = '\0';
3791 str++;
3792 } else {
3793 break;
3794 }
3795 }
3796 }
3797
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003798 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003800 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003801 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003802 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003803
Corey Minyardb0defcd2006-03-26 01:37:20 -08003804#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003805 if (si_trypci) {
3806 rv = pci_register_driver(&ipmi_pci_driver);
3807 if (rv)
3808 printk(KERN_ERR PFX "Unable to register "
3809 "PCI driver: %d\n", rv);
3810 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003811 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003812 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003813#endif
3814
Matthew Garrett754d4532010-05-26 14:43:47 -07003815#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003816 if (si_trydmi)
3817 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003818#endif
3819
3820#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003821 if (si_tryacpi)
3822 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003823#endif
3824
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003825#ifdef CONFIG_PARISC
3826 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003827 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003828 /* poking PC IO addresses will crash machine, don't do it */
3829 si_trydefaults = 0;
3830#endif
3831
Matthew Garrett06ee4592010-05-26 14:43:49 -07003832 /* We prefer devices with interrupts, but in the case of a machine
3833 with multiple BMCs we assume that there will be several instances
3834 of a given type so if we succeed in registering a type then also
3835 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003836
Matthew Garrett2407d772010-05-26 14:43:46 -07003837 mutex_lock(&smi_infos_lock);
3838 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003839 /* Try to register a device if it has an IRQ and we either
3840 haven't successfully registered a device yet or this
3841 device has the same type as one we successfully registered */
3842 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003843 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003844 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003845 }
3846 }
3847 }
3848
Matthew Garrett06ee4592010-05-26 14:43:49 -07003849 /* type will only have been set if we successfully registered an si */
3850 if (type) {
3851 mutex_unlock(&smi_infos_lock);
3852 return 0;
3853 }
3854
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003855 /* Fall back to the preferred device */
3856
3857 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003858 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003859 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003860 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003861 }
3862 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003863 }
3864 mutex_unlock(&smi_infos_lock);
3865
Matthew Garrett06ee4592010-05-26 14:43:49 -07003866 if (type)
3867 return 0;
3868
Corey Minyardb0defcd2006-03-26 01:37:20 -08003869 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003870 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003871 if (list_empty(&smi_infos)) {
3872 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003873 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003874 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003875 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003876 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Corey Minyardd6dfd132006-03-31 02:30:41 -08003879 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003880 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003881 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003882 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003883 printk(KERN_WARNING PFX
3884 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003886 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003887 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890}
3891module_init(init_ipmi_si);
3892
Corey Minyardb361e272006-12-06 20:41:07 -08003893static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894{
Matthew Garrett2407d772010-05-26 14:43:46 -07003895 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Corey Minyardb0defcd2006-03-26 01:37:20 -08003897 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 return;
3899
Corey Minyardb874b982014-11-06 17:01:59 -06003900 if (to_clean->intf) {
3901 ipmi_smi_t intf = to_clean->intf;
3902
3903 to_clean->intf = NULL;
3904 rv = ipmi_unregister_smi(intf);
3905 if (rv) {
3906 pr_err(PFX "Unable to unregister device: errno=%d\n",
3907 rv);
3908 }
3909 }
3910
Takao Indoh567eded2014-10-06 14:17:53 -05003911 if (to_clean->dev)
3912 dev_set_drvdata(to_clean->dev, NULL);
3913
Corey Minyardb0defcd2006-03-26 01:37:20 -08003914 list_del(&to_clean->link);
3915
Corey Minyardc305e3d2008-04-29 01:01:10 -07003916 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003917 * Make sure that interrupts, the timer and the thread are
3918 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003919 */
Corey Minyardb874b982014-11-06 17:01:59 -06003920 if (to_clean->irq_cleanup)
3921 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003922 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Corey Minyardc305e3d2008-04-29 01:01:10 -07003924 /*
3925 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003926 * in the BMC. Note that timers and CPU interrupts are off,
3927 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003928 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003929 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003930 poll(to_clean);
3931 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003932 }
Corey Minyard0cfec912015-09-05 17:44:13 -05003933 disable_si_irq(to_clean, false);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003934 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3935 poll(to_clean);
3936 schedule_timeout_uninterruptible(1);
3937 }
3938
Matthew Garrett2407d772010-05-26 14:43:46 -07003939 if (to_clean->handlers)
3940 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
3942 kfree(to_clean->si_sm);
3943
Corey Minyardb0defcd2006-03-26 01:37:20 -08003944 if (to_clean->addr_source_cleanup)
3945 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003946 if (to_clean->io_cleanup)
3947 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003948
3949 if (to_clean->dev_registered)
3950 platform_device_unregister(to_clean->pdev);
3951
3952 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953}
3954
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003955static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003957 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Corey Minyardb0defcd2006-03-26 01:37:20 -08003959 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 return;
3961
Corey Minyardb0defcd2006-03-26 01:37:20 -08003962#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003963 if (pci_registered)
3964 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003965#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003966#ifdef CONFIG_PARISC
3967 if (parisc_registered)
3968 unregister_parisc_driver(&ipmi_parisc_driver);
3969#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003970
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003971 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003972
Corey Minyardd6dfd132006-03-31 02:30:41 -08003973 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003974 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3975 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003976 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978module_exit(cleanup_ipmi_si);
3979
3980MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003981MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003982MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3983 " system interfaces.");