blob: d31a7fce2260189afbefef2750717d5814e3fb70 [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>
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -070067#include <linux/pnp.h>
Stephen Rothwell11c675c2008-05-23 16:22:42 +100068#include <linux/of_device.h>
69#include <linux/of_platform.h>
Rob Herring672d8ea2010-11-16 14:33:51 -060070#include <linux/of_address.h>
71#include <linux/of_irq.h>
Corey Minyarddba9b4f2007-05-08 00:23:51 -070072
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -050073#ifdef CONFIG_PARISC
74#include <asm/hardware.h> /* for register_parisc_driver() stuff */
75#include <asm/parisc-device.h>
76#endif
77
Corey Minyardb361e272006-12-06 20:41:07 -080078#define PFX "ipmi_si: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* Measure times between events in the driver. */
81#undef DEBUG_TIMING
82
83/* Call every 10 ms. */
84#define SI_TIMEOUT_TIME_USEC 10000
85#define SI_USEC_PER_JIFFY (1000000/HZ)
86#define SI_TIMEOUT_JIFFIES (SI_TIMEOUT_TIME_USEC/SI_USEC_PER_JIFFY)
87#define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a
Corey Minyardc305e3d2008-04-29 01:01:10 -070088 short timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90enum si_intf_state {
91 SI_NORMAL,
92 SI_GETTING_FLAGS,
93 SI_GETTING_EVENTS,
94 SI_CLEARING_FLAGS,
95 SI_CLEARING_FLAGS_THEN_SET_IRQ,
96 SI_GETTING_MESSAGES,
97 SI_ENABLE_INTERRUPTS1,
Corey Minyardee6cd5f2007-05-08 00:23:54 -070098 SI_ENABLE_INTERRUPTS2,
99 SI_DISABLE_INTERRUPTS1,
100 SI_DISABLE_INTERRUPTS2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* FIXME - add watchdog stuff. */
102};
103
Corey Minyard9dbf68f2005-05-01 08:59:11 -0700104/* Some BT-specific defines we need here. */
105#define IPMI_BT_INTMASK_REG 2
106#define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2
107#define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109enum si_type {
110 SI_KCS, SI_SMIC, SI_BT
111};
Corey Minyardb361e272006-12-06 20:41:07 -0800112static char *si_to_str[] = { "kcs", "smic", "bt" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Corey Minyard50c812b2006-03-26 01:37:21 -0800114#define DEVICE_NAME "ipmi_si"
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700115
Rob Herringa1e9c9d2011-02-23 15:37:59 -0600116static struct platform_driver ipmi_driver;
Corey Minyard64959e22008-04-29 01:01:07 -0700117
118/*
119 * Indexes into stats[] in smi_info below.
120 */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700121enum si_stat_indexes {
122 /*
123 * Number of times the driver requested a timer while an operation
124 * was in progress.
125 */
126 SI_STAT_short_timeouts = 0,
Corey Minyard64959e22008-04-29 01:01:07 -0700127
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700128 /*
129 * Number of times the driver requested a timer while nothing was in
130 * progress.
131 */
132 SI_STAT_long_timeouts,
Corey Minyard64959e22008-04-29 01:01:07 -0700133
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700134 /* Number of times the interface was idle while being polled. */
135 SI_STAT_idles,
136
137 /* Number of interrupts the driver handled. */
138 SI_STAT_interrupts,
139
140 /* Number of time the driver got an ATTN from the hardware. */
141 SI_STAT_attentions,
142
143 /* Number of times the driver requested flags from the hardware. */
144 SI_STAT_flag_fetches,
145
146 /* Number of times the hardware didn't follow the state machine. */
147 SI_STAT_hosed_count,
148
149 /* Number of completed messages. */
150 SI_STAT_complete_transactions,
151
152 /* Number of IPMI events received from the hardware. */
153 SI_STAT_events,
154
155 /* Number of watchdog pretimeouts. */
156 SI_STAT_watchdog_pretimeouts,
157
Adam Buchbinderb3834be2012-09-19 21:48:02 -0400158 /* Number of asynchronous messages received. */
Corey Minyardba8ff1c2008-04-29 01:01:08 -0700159 SI_STAT_incoming_messages,
160
161
162 /* This *must* remain last, add new values above this. */
163 SI_NUM_STATS
164};
Corey Minyard64959e22008-04-29 01:01:07 -0700165
Corey Minyardc305e3d2008-04-29 01:01:10 -0700166struct smi_info {
Corey Minyarda9a2c442005-11-07 01:00:03 -0800167 int intf_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ipmi_smi_t intf;
169 struct si_sm_data *si_sm;
170 struct si_sm_handlers *handlers;
171 enum si_type si_type;
172 spinlock_t si_lock;
Corey Minyardb874b982014-11-06 17:01:59 -0600173 struct ipmi_smi_msg *waiting_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct ipmi_smi_msg *curr_msg;
175 enum si_intf_state si_state;
176
Corey Minyardc305e3d2008-04-29 01:01:10 -0700177 /*
178 * Used to handle the various types of I/O that can occur with
179 * IPMI
180 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct si_sm_io io;
182 int (*io_setup)(struct smi_info *info);
183 void (*io_cleanup)(struct smi_info *info);
184 int (*irq_setup)(struct smi_info *info);
185 void (*irq_cleanup)(struct smi_info *info);
186 unsigned int io_size;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -0700187 enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
Corey Minyardb0defcd2006-03-26 01:37:20 -0800188 void (*addr_source_cleanup)(struct smi_info *info);
189 void *addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Corey Minyardc305e3d2008-04-29 01:01:10 -0700191 /*
192 * Per-OEM handler, called from handle_flags(). Returns 1
193 * when handle_flags() needs to be re-run or 0 indicating it
194 * set si_state itself.
195 */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700196 int (*oem_data_avail_handler)(struct smi_info *smi_info);
197
Corey Minyardc305e3d2008-04-29 01:01:10 -0700198 /*
199 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
200 * is set to hold the flags until we are done handling everything
201 * from the flags.
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#define RECEIVE_MSG_AVAIL 0x01
204#define EVENT_MSG_BUFFER_FULL 0x02
205#define WDT_PRE_TIMEOUT_INT 0x08
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700206#define OEM0_DATA_AVAIL 0x20
207#define OEM1_DATA_AVAIL 0x40
208#define OEM2_DATA_AVAIL 0x80
209#define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \
Corey Minyardc305e3d2008-04-29 01:01:10 -0700210 OEM1_DATA_AVAIL | \
211 OEM2_DATA_AVAIL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned char msg_flags;
213
Corey Minyard40112ae2009-04-21 12:24:03 -0700214 /* Does the BMC have an event buffer? */
Corey Minyard7aefac22014-04-14 09:46:56 -0500215 bool has_event_buffer;
Corey Minyard40112ae2009-04-21 12:24:03 -0700216
Corey Minyardc305e3d2008-04-29 01:01:10 -0700217 /*
218 * If set to true, this will request events the next time the
219 * state machine is idle.
220 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 atomic_t req_events;
222
Corey Minyardc305e3d2008-04-29 01:01:10 -0700223 /*
224 * If true, run the state machine to completion on every send
225 * call. Generally used after a panic to make sure stuff goes
226 * out.
227 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500228 bool run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /* The I/O port of an SI interface. */
231 int port;
232
Corey Minyardc305e3d2008-04-29 01:01:10 -0700233 /*
234 * The space between start addresses of the two ports. For
235 * instance, if the first port is 0xca2 and the spacing is 4, then
236 * the second port is 0xca6.
237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 unsigned int spacing;
239
240 /* zero if no irq; */
241 int irq;
242
243 /* The timer for this si. */
244 struct timer_list si_timer;
245
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500246 /* This flag is set, if the timer is running (timer_pending() isn't enough) */
247 bool timer_running;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* The time (in jiffies) the last timeout occurred at. */
250 unsigned long last_timeout_jiffies;
251
Corey Minyard89986492014-04-14 09:46:54 -0500252 /* Are we waiting for the events, pretimeouts, received msgs? */
253 atomic_t need_watch;
254
Corey Minyardc305e3d2008-04-29 01:01:10 -0700255 /*
256 * The driver will disable interrupts when it gets into a
257 * situation where it cannot handle messages due to lack of
258 * memory. Once that situation clears up, it will re-enable
259 * interrupts.
260 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500261 bool interrupt_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Corey Minyard50c812b2006-03-26 01:37:21 -0800263 /* From the get device id response... */
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700264 struct ipmi_device_id device_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Corey Minyard50c812b2006-03-26 01:37:21 -0800266 /* Driver model stuff. */
267 struct device *dev;
268 struct platform_device *pdev;
269
Corey Minyardc305e3d2008-04-29 01:01:10 -0700270 /*
271 * True if we allocated the device, false if it came from
272 * someplace else (like PCI).
273 */
Corey Minyard7aefac22014-04-14 09:46:56 -0500274 bool dev_registered;
Corey Minyard50c812b2006-03-26 01:37:21 -0800275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Slave address, could be reported from DMI. */
277 unsigned char slave_addr;
278
279 /* Counters and things for the proc filesystem. */
Corey Minyard64959e22008-04-29 01:01:07 -0700280 atomic_t stats[SI_NUM_STATS];
Corey Minyarda9a2c442005-11-07 01:00:03 -0800281
Corey Minyardc305e3d2008-04-29 01:01:10 -0700282 struct task_struct *thread;
Corey Minyardb0defcd2006-03-26 01:37:20 -0800283
284 struct list_head link;
Zhao Yakui16f42322010-12-08 10:10:16 +0800285 union ipmi_smi_info_union addr_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
Corey Minyard64959e22008-04-29 01:01:07 -0700288#define smi_inc_stat(smi, stat) \
289 atomic_inc(&(smi)->stats[SI_STAT_ ## stat])
290#define smi_get_stat(smi, stat) \
291 ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat]))
292
Corey Minyarda51f4a82006-10-03 01:13:59 -0700293#define SI_MAX_PARMS 4
294
295static int force_kipmid[SI_MAX_PARMS];
296static int num_force_kipmid;
Matthew Garrett56480282010-06-29 15:05:29 -0700297#ifdef CONFIG_PCI
Corey Minyard7aefac22014-04-14 09:46:56 -0500298static bool pci_registered;
Matthew Garrett56480282010-06-29 15:05:29 -0700299#endif
Yinghai Lu561f8182010-09-22 13:05:15 -0700300#ifdef CONFIG_ACPI
Corey Minyard7aefac22014-04-14 09:46:56 -0500301static bool pnp_registered;
Yinghai Lu561f8182010-09-22 13:05:15 -0700302#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500303#ifdef CONFIG_PARISC
Corey Minyard7aefac22014-04-14 09:46:56 -0500304static bool parisc_registered;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -0500305#endif
Corey Minyarda51f4a82006-10-03 01:13:59 -0700306
Martin Wilckae74e822010-03-10 15:23:06 -0800307static unsigned int kipmid_max_busy_us[SI_MAX_PARMS];
308static int num_max_busy_us;
309
Corey Minyard7aefac22014-04-14 09:46:56 -0500310static bool unload_when_empty = true;
Corey Minyardb361e272006-12-06 20:41:07 -0800311
Matthew Garrett2407d772010-05-26 14:43:46 -0700312static int add_smi(struct smi_info *smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800313static int try_smi_init(struct smi_info *smi);
Corey Minyardb361e272006-12-06 20:41:07 -0800314static void cleanup_one_si(struct smi_info *to_clean);
Corey Minyardd2478522011-02-10 16:08:38 -0600315static void cleanup_ipmi_si(void);
Corey Minyardb0defcd2006-03-26 01:37:20 -0800316
Alan Sterne041c682006-03-27 01:16:30 -0800317static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700318static int register_xaction_notifier(struct notifier_block *nb)
Corey Minyardea940272005-11-07 00:59:59 -0800319{
Alan Sterne041c682006-03-27 01:16:30 -0800320 return atomic_notifier_chain_register(&xaction_notifier_list, nb);
Corey Minyardea940272005-11-07 00:59:59 -0800321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static void deliver_recv_msg(struct smi_info *smi_info,
324 struct ipmi_smi_msg *msg)
325{
Corey Minyard7adf5792012-03-28 14:42:49 -0700326 /* Deliver the message to the upper layer. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600327 if (smi_info->intf)
328 ipmi_smi_msg_received(smi_info->intf, msg);
329 else
330 ipmi_free_smi_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800333static void return_hosed_msg(struct smi_info *smi_info, int cCode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct ipmi_smi_msg *msg = smi_info->curr_msg;
336
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800337 if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED)
338 cCode = IPMI_ERR_UNSPECIFIED;
339 /* else use it as is */
340
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300341 /* Make it a response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 msg->rsp[0] = msg->data[0] | 4;
343 msg->rsp[1] = msg->data[1];
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800344 msg->rsp[2] = cCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 msg->rsp_size = 3;
346
347 smi_info->curr_msg = NULL;
348 deliver_recv_msg(smi_info, msg);
349}
350
351static enum si_sm_result start_next_msg(struct smi_info *smi_info)
352{
353 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#ifdef DEBUG_TIMING
355 struct timeval t;
356#endif
357
Corey Minyardb874b982014-11-06 17:01:59 -0600358 if (!smi_info->waiting_msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 smi_info->curr_msg = NULL;
360 rv = SI_SM_IDLE;
361 } else {
362 int err;
363
Corey Minyardb874b982014-11-06 17:01:59 -0600364 smi_info->curr_msg = smi_info->waiting_msg;
365 smi_info->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#ifdef DEBUG_TIMING
367 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700368 printk(KERN_DEBUG "**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#endif
Alan Sterne041c682006-03-27 01:16:30 -0800370 err = atomic_notifier_call_chain(&xaction_notifier_list,
371 0, smi_info);
Corey Minyardea940272005-11-07 00:59:59 -0800372 if (err & NOTIFY_STOP_MASK) {
373 rv = SI_SM_CALL_WITHOUT_DELAY;
374 goto out;
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 err = smi_info->handlers->start_transaction(
377 smi_info->si_sm,
378 smi_info->curr_msg->data,
379 smi_info->curr_msg->data_size);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700380 if (err)
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800381 return_hosed_msg(smi_info, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 rv = SI_SM_CALL_WITHOUT_DELAY;
384 }
Corey Minyardc305e3d2008-04-29 01:01:10 -0700385 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return rv;
387}
388
389static void start_enable_irq(struct smi_info *smi_info)
390{
391 unsigned char msg[2];
392
Corey Minyardc305e3d2008-04-29 01:01:10 -0700393 /*
394 * If we are enabling interrupts, we have to tell the
395 * BMC to use them.
396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
398 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
399
400 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
401 smi_info->si_state = SI_ENABLE_INTERRUPTS1;
402}
403
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700404static void start_disable_irq(struct smi_info *smi_info)
405{
406 unsigned char msg[2];
407
408 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
409 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
410
411 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
412 smi_info->si_state = SI_DISABLE_INTERRUPTS1;
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static void start_clear_flags(struct smi_info *smi_info)
416{
417 unsigned char msg[3];
418
419 /* Make sure the watchdog pre-timeout flag is not set at startup. */
420 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
421 msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD;
422 msg[2] = WDT_PRE_TIMEOUT_INT;
423
424 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
425 smi_info->si_state = SI_CLEARING_FLAGS;
426}
427
Corey Minyard968bf7c2014-11-06 19:06:00 -0600428static void start_getting_msg_queue(struct smi_info *smi_info)
429{
430 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
431 smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD;
432 smi_info->curr_msg->data_size = 2;
433
434 smi_info->handlers->start_transaction(
435 smi_info->si_sm,
436 smi_info->curr_msg->data,
437 smi_info->curr_msg->data_size);
438 smi_info->si_state = SI_GETTING_MESSAGES;
439}
440
441static void start_getting_events(struct smi_info *smi_info)
442{
443 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
444 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
445 smi_info->curr_msg->data_size = 2;
446
447 smi_info->handlers->start_transaction(
448 smi_info->si_sm,
449 smi_info->curr_msg->data,
450 smi_info->curr_msg->data_size);
451 smi_info->si_state = SI_GETTING_EVENTS;
452}
453
Bodo Stroesser48e8ac22014-04-14 09:46:51 -0500454static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val)
455{
456 smi_info->last_timeout_jiffies = jiffies;
457 mod_timer(&smi_info->si_timer, new_val);
458 smi_info->timer_running = true;
459}
460
Corey Minyardc305e3d2008-04-29 01:01:10 -0700461/*
462 * When we have a situtaion where we run out of memory and cannot
463 * allocate messages, we just leave them in the BMC and run the system
464 * polled until we can allocate some memory. Once we have some
465 * memory, we will re-enable the interrupt.
466 */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600467static inline bool disable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Corey Minyardb0defcd2006-03-26 01:37:20 -0800469 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700470 start_disable_irq(smi_info);
Corey Minyard7aefac22014-04-14 09:46:56 -0500471 smi_info->interrupt_disabled = true;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600472 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600474 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Corey Minyard968bf7c2014-11-06 19:06:00 -0600477static inline bool enable_si_irq(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 if ((smi_info->irq) && (smi_info->interrupt_disabled)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700480 start_enable_irq(smi_info);
Corey Minyard7aefac22014-04-14 09:46:56 -0500481 smi_info->interrupt_disabled = false;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600482 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Corey Minyard968bf7c2014-11-06 19:06:00 -0600484 return false;
485}
486
487/*
488 * Allocate a message. If unable to allocate, start the interrupt
489 * disable process and return NULL. If able to allocate but
490 * interrupts are disabled, free the message and return NULL after
491 * starting the interrupt enable process.
492 */
493static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info)
494{
495 struct ipmi_smi_msg *msg;
496
497 msg = ipmi_alloc_smi_msg();
498 if (!msg) {
499 if (!disable_si_irq(smi_info))
500 smi_info->si_state = SI_NORMAL;
501 } else if (enable_si_irq(smi_info)) {
502 ipmi_free_smi_msg(msg);
503 msg = NULL;
504 }
505 return msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508static void handle_flags(struct smi_info *smi_info)
509{
Corey Minyard3ae0e0f2005-09-06 15:18:41 -0700510 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) {
512 /* Watchdog pre-timeout */
Corey Minyard64959e22008-04-29 01:01:07 -0700513 smi_inc_stat(smi_info, watchdog_pretimeouts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 start_clear_flags(smi_info);
516 smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600517 if (smi_info->intf)
518 ipmi_smi_watchdog_pretimeout(smi_info->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) {
520 /* Messages available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600521 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
522 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Corey Minyard968bf7c2014-11-06 19:06:00 -0600525 start_getting_msg_queue(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) {
527 /* Events available. */
Corey Minyard968bf7c2014-11-06 19:06:00 -0600528 smi_info->curr_msg = alloc_msg_handle_irq(smi_info);
529 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Corey Minyard968bf7c2014-11-06 19:06:00 -0600532 start_getting_events(smi_info);
Corey Minyard4064d5e2006-09-16 12:15:41 -0700533 } else if (smi_info->msg_flags & OEM_DATA_AVAIL &&
Corey Minyardc305e3d2008-04-29 01:01:10 -0700534 smi_info->oem_data_avail_handler) {
Corey Minyard4064d5e2006-09-16 12:15:41 -0700535 if (smi_info->oem_data_avail_handler(smi_info))
536 goto retry;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700537 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 smi_info->si_state = SI_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static void handle_transaction_done(struct smi_info *smi_info)
542{
543 struct ipmi_smi_msg *msg;
544#ifdef DEBUG_TIMING
545 struct timeval t;
546
547 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700548 printk(KERN_DEBUG "**Done: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
550 switch (smi_info->si_state) {
551 case SI_NORMAL:
Corey Minyardb0defcd2006-03-26 01:37:20 -0800552 if (!smi_info->curr_msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 break;
554
555 smi_info->curr_msg->rsp_size
556 = smi_info->handlers->get_result(
557 smi_info->si_sm,
558 smi_info->curr_msg->rsp,
559 IPMI_MAX_MSG_LENGTH);
560
Corey Minyardc305e3d2008-04-29 01:01:10 -0700561 /*
562 * Do this here becase deliver_recv_msg() releases the
563 * lock, and a new message can be put in during the
564 * time the lock is released.
565 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 msg = smi_info->curr_msg;
567 smi_info->curr_msg = NULL;
568 deliver_recv_msg(smi_info, msg);
569 break;
570
571 case SI_GETTING_FLAGS:
572 {
573 unsigned char msg[4];
574 unsigned int len;
575
576 /* We got the flags from the SMI, now handle them. */
577 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
578 if (msg[2] != 0) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700579 /* Error fetching flags, just give up for now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 smi_info->si_state = SI_NORMAL;
581 } else if (len < 4) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700582 /*
583 * Hmm, no flags. That's technically illegal, but
584 * don't use uninitialized data.
585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 smi_info->si_state = SI_NORMAL;
587 } else {
588 smi_info->msg_flags = msg[3];
589 handle_flags(smi_info);
590 }
591 break;
592 }
593
594 case SI_CLEARING_FLAGS:
595 case SI_CLEARING_FLAGS_THEN_SET_IRQ:
596 {
597 unsigned char msg[3];
598
599 /* We cleared the flags. */
600 smi_info->handlers->get_result(smi_info->si_sm, msg, 3);
601 if (msg[2] != 0) {
602 /* Error clearing flags */
Myron Stowe279fbd02010-05-26 14:43:52 -0700603 dev_warn(smi_info->dev,
604 "Error clearing flags: %2.2x\n", msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 if (smi_info->si_state == SI_CLEARING_FLAGS_THEN_SET_IRQ)
607 start_enable_irq(smi_info);
608 else
609 smi_info->si_state = SI_NORMAL;
610 break;
611 }
612
613 case SI_GETTING_EVENTS:
614 {
615 smi_info->curr_msg->rsp_size
616 = smi_info->handlers->get_result(
617 smi_info->si_sm,
618 smi_info->curr_msg->rsp,
619 IPMI_MAX_MSG_LENGTH);
620
Corey Minyardc305e3d2008-04-29 01:01:10 -0700621 /*
622 * Do this here becase deliver_recv_msg() releases the
623 * lock, and a new message can be put in during the
624 * time the lock is released.
625 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 msg = smi_info->curr_msg;
627 smi_info->curr_msg = NULL;
628 if (msg->rsp[2] != 0) {
629 /* Error getting event, probably done. */
630 msg->done(msg);
631
632 /* Take off the event flag. */
633 smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL;
634 handle_flags(smi_info);
635 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700636 smi_inc_stat(smi_info, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Corey Minyardc305e3d2008-04-29 01:01:10 -0700638 /*
639 * Do this before we deliver the message
640 * because delivering the message releases the
641 * lock and something else can mess with the
642 * state.
643 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 handle_flags(smi_info);
645
646 deliver_recv_msg(smi_info, msg);
647 }
648 break;
649 }
650
651 case SI_GETTING_MESSAGES:
652 {
653 smi_info->curr_msg->rsp_size
654 = smi_info->handlers->get_result(
655 smi_info->si_sm,
656 smi_info->curr_msg->rsp,
657 IPMI_MAX_MSG_LENGTH);
658
Corey Minyardc305e3d2008-04-29 01:01:10 -0700659 /*
660 * Do this here becase deliver_recv_msg() releases the
661 * lock, and a new message can be put in during the
662 * time the lock is released.
663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 msg = smi_info->curr_msg;
665 smi_info->curr_msg = NULL;
666 if (msg->rsp[2] != 0) {
667 /* Error getting event, probably done. */
668 msg->done(msg);
669
670 /* Take off the msg flag. */
671 smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL;
672 handle_flags(smi_info);
673 } else {
Corey Minyard64959e22008-04-29 01:01:07 -0700674 smi_inc_stat(smi_info, incoming_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Corey Minyardc305e3d2008-04-29 01:01:10 -0700676 /*
677 * Do this before we deliver the message
678 * because delivering the message releases the
679 * lock and something else can mess with the
680 * state.
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 handle_flags(smi_info);
683
684 deliver_recv_msg(smi_info, msg);
685 }
686 break;
687 }
688
689 case SI_ENABLE_INTERRUPTS1:
690 {
691 unsigned char msg[4];
692
693 /* We got the flags from the SMI, now handle them. */
694 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
695 if (msg[2] != 0) {
Corey Minyard0849bfe2013-05-16 14:04:26 -0500696 dev_warn(smi_info->dev,
697 "Couldn't get irq info: %x.\n", msg[2]);
698 dev_warn(smi_info->dev,
699 "Maybe ok, but ipmi might run very slowly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 smi_info->si_state = SI_NORMAL;
701 } else {
702 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
703 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700704 msg[2] = (msg[3] |
705 IPMI_BMC_RCV_MSG_INTR |
706 IPMI_BMC_EVT_MSG_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 smi_info->handlers->start_transaction(
708 smi_info->si_sm, msg, 3);
709 smi_info->si_state = SI_ENABLE_INTERRUPTS2;
710 }
711 break;
712 }
713
714 case SI_ENABLE_INTERRUPTS2:
715 {
716 unsigned char msg[4];
717
718 /* We got the flags from the SMI, now handle them. */
719 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
Corey Minyard0849bfe2013-05-16 14:04:26 -0500720 if (msg[2] != 0) {
721 dev_warn(smi_info->dev,
722 "Couldn't set irq info: %x.\n", msg[2]);
723 dev_warn(smi_info->dev,
724 "Maybe ok, but ipmi might run very slowly.\n");
725 } else
Corey Minyard7aefac22014-04-14 09:46:56 -0500726 smi_info->interrupt_disabled = false;
Corey Minyard968bf7c2014-11-06 19:06:00 -0600727
728 /* We enabled interrupts, flags may be pending. */
729 handle_flags(smi_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 break;
731 }
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700732
733 case SI_DISABLE_INTERRUPTS1:
734 {
735 unsigned char msg[4];
736
737 /* We got the flags from the SMI, now handle them. */
738 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
739 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700740 dev_warn(smi_info->dev, "Could not disable interrupts"
741 ", failed get.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700742 smi_info->si_state = SI_NORMAL;
743 } else {
744 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
745 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
746 msg[2] = (msg[3] &
747 ~(IPMI_BMC_RCV_MSG_INTR |
748 IPMI_BMC_EVT_MSG_INTR));
749 smi_info->handlers->start_transaction(
750 smi_info->si_sm, msg, 3);
751 smi_info->si_state = SI_DISABLE_INTERRUPTS2;
752 }
753 break;
754 }
755
756 case SI_DISABLE_INTERRUPTS2:
757 {
758 unsigned char msg[4];
759
760 /* We got the flags from the SMI, now handle them. */
761 smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
762 if (msg[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -0700763 dev_warn(smi_info->dev, "Could not disable interrupts"
764 ", failed set.\n");
Corey Minyardee6cd5f2007-05-08 00:23:54 -0700765 }
766 smi_info->si_state = SI_NORMAL;
767 break;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770}
771
Corey Minyardc305e3d2008-04-29 01:01:10 -0700772/*
773 * Called on timeouts and events. Timeouts should pass the elapsed
774 * time, interrupts should pass in zero. Must be called with
775 * si_lock held and interrupts disabled.
776 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777static enum si_sm_result smi_event_handler(struct smi_info *smi_info,
778 int time)
779{
780 enum si_sm_result si_sm_result;
781
782 restart:
Corey Minyardc305e3d2008-04-29 01:01:10 -0700783 /*
784 * There used to be a loop here that waited a little while
785 * (around 25us) before giving up. That turned out to be
786 * pointless, the minimum delays I was seeing were in the 300us
787 * range, which is far too long to wait in an interrupt. So
788 * we just run until the state machine tells us something
789 * happened or it needs a delay.
790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 si_sm_result = smi_info->handlers->event(smi_info->si_sm, time);
792 time = 0;
793 while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Corey Minyardc305e3d2008-04-29 01:01:10 -0700796 if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700797 smi_inc_stat(smi_info, complete_transactions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 handle_transaction_done(smi_info);
800 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -0700801 } else if (si_sm_result == SI_SM_HOSED) {
Corey Minyard64959e22008-04-29 01:01:07 -0700802 smi_inc_stat(smi_info, hosed_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Corey Minyardc305e3d2008-04-29 01:01:10 -0700804 /*
805 * Do the before return_hosed_msg, because that
806 * releases the lock.
807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 smi_info->si_state = SI_NORMAL;
809 if (smi_info->curr_msg != NULL) {
Corey Minyardc305e3d2008-04-29 01:01:10 -0700810 /*
811 * If we were handling a user message, format
812 * a response to send to the upper layer to
813 * tell it about the error.
814 */
Corey Minyard4d7cbac2006-12-06 20:41:14 -0800815 return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0);
818 }
819
Corey Minyard4ea18422008-04-29 01:01:01 -0700820 /*
821 * We prefer handling attn over new messages. But don't do
822 * this if there is not yet an upper layer to handle anything.
823 */
Corey Minyardc305e3d2008-04-29 01:01:10 -0700824 if (likely(smi_info->intf) && si_sm_result == SI_SM_ATTN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 unsigned char msg[2];
826
Corey Minyard64959e22008-04-29 01:01:07 -0700827 smi_inc_stat(smi_info, attentions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Corey Minyardc305e3d2008-04-29 01:01:10 -0700829 /*
830 * Got a attn, send down a get message flags to see
831 * what's causing it. It would be better to handle
832 * this in the upper layer, but due to the way
833 * interrupts work with the SMI, that's not really
834 * possible.
835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 msg[0] = (IPMI_NETFN_APP_REQUEST << 2);
837 msg[1] = IPMI_GET_MSG_FLAGS_CMD;
838
839 smi_info->handlers->start_transaction(
840 smi_info->si_sm, msg, 2);
841 smi_info->si_state = SI_GETTING_FLAGS;
842 goto restart;
843 }
844
845 /* If we are currently idle, try to start the next message. */
846 if (si_sm_result == SI_SM_IDLE) {
Corey Minyard64959e22008-04-29 01:01:07 -0700847 smi_inc_stat(smi_info, idles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 si_sm_result = start_next_msg(smi_info);
850 if (si_sm_result != SI_SM_IDLE)
851 goto restart;
Corey Minyardc305e3d2008-04-29 01:01:10 -0700852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 if ((si_sm_result == SI_SM_IDLE)
Corey Minyardc305e3d2008-04-29 01:01:10 -0700855 && (atomic_read(&smi_info->req_events))) {
856 /*
857 * We are idle and the upper layer requested that I fetch
858 * events, so do so.
859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 atomic_set(&smi_info->req_events, 0);
Corey Minyard55162fb2006-12-06 20:41:04 -0800861
862 smi_info->curr_msg = ipmi_alloc_smi_msg();
863 if (!smi_info->curr_msg)
864 goto out;
865
866 smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2);
867 smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD;
868 smi_info->curr_msg->data_size = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 smi_info->handlers->start_transaction(
Corey Minyard55162fb2006-12-06 20:41:04 -0800871 smi_info->si_sm,
872 smi_info->curr_msg->data,
873 smi_info->curr_msg->data_size);
874 smi_info->si_state = SI_GETTING_EVENTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto restart;
876 }
Corey Minyard55162fb2006-12-06 20:41:04 -0800877 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return si_sm_result;
879}
880
Corey Minyard89986492014-04-14 09:46:54 -0500881static void check_start_timer_thread(struct smi_info *smi_info)
882{
883 if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) {
884 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
885
886 if (smi_info->thread)
887 wake_up_process(smi_info->thread);
888
889 start_next_msg(smi_info);
890 smi_event_handler(smi_info, 0);
891 }
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894static void sender(void *send_info,
895 struct ipmi_smi_msg *msg,
896 int priority)
897{
898 struct smi_info *smi_info = send_info;
899 enum si_sm_result result;
900 unsigned long flags;
901#ifdef DEBUG_TIMING
902 struct timeval t;
903#endif
904
Corey Minyardb874b982014-11-06 17:01:59 -0600905 BUG_ON(smi_info->waiting_msg);
906 smi_info->waiting_msg = msg;
Corey Minyardb361e272006-12-06 20:41:07 -0800907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908#ifdef DEBUG_TIMING
909 do_gettimeofday(&t);
910 printk("**Enqueue: %d.%9.9d\n", t.tv_sec, t.tv_usec);
911#endif
912
913 if (smi_info->run_to_completion) {
Corey Minyardbda4c302008-04-29 01:01:02 -0700914 /*
Corey Minyardb874b982014-11-06 17:01:59 -0600915 * If we are running to completion, start it and run
916 * transactions until everything is clear.
Corey Minyardbda4c302008-04-29 01:01:02 -0700917 */
Corey Minyardb874b982014-11-06 17:01:59 -0600918 smi_info->curr_msg = smi_info->waiting_msg;
919 smi_info->waiting_msg = NULL;
Corey Minyardbda4c302008-04-29 01:01:02 -0700920
921 /*
922 * Run to completion means we are single-threaded, no
923 * need for locks.
924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 result = smi_event_handler(smi_info, 0);
927 while (result != SI_SM_IDLE) {
928 udelay(SI_SHORT_TIMEOUT_USEC);
929 result = smi_event_handler(smi_info,
930 SI_SHORT_TIMEOUT_USEC);
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Corey Minyardf60adf42012-03-28 14:42:50 -0700935 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard89986492014-04-14 09:46:54 -0500936 check_start_timer_thread(smi_info);
Corey Minyardbda4c302008-04-29 01:01:02 -0700937 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Corey Minyard7aefac22014-04-14 09:46:56 -0500940static void set_run_to_completion(void *send_info, bool i_run_to_completion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 struct smi_info *smi_info = send_info;
943 enum si_sm_result result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 smi_info->run_to_completion = i_run_to_completion;
946 if (i_run_to_completion) {
947 result = smi_event_handler(smi_info, 0);
948 while (result != SI_SM_IDLE) {
949 udelay(SI_SHORT_TIMEOUT_USEC);
950 result = smi_event_handler(smi_info,
951 SI_SHORT_TIMEOUT_USEC);
952 }
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Martin Wilckae74e822010-03-10 15:23:06 -0800956/*
957 * Use -1 in the nsec value of the busy waiting timespec to tell that
958 * we are spinning in kipmid looking for something and not delaying
959 * between checks
960 */
961static inline void ipmi_si_set_not_busy(struct timespec *ts)
962{
963 ts->tv_nsec = -1;
964}
965static inline int ipmi_si_is_busy(struct timespec *ts)
966{
967 return ts->tv_nsec != -1;
968}
969
Arnd Bergmanncc4cbe92014-10-06 14:17:52 -0500970static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
971 const struct smi_info *smi_info,
972 struct timespec *busy_until)
Martin Wilckae74e822010-03-10 15:23:06 -0800973{
974 unsigned int max_busy_us = 0;
975
976 if (smi_info->intf_num < num_max_busy_us)
977 max_busy_us = kipmid_max_busy_us[smi_info->intf_num];
978 if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
979 ipmi_si_set_not_busy(busy_until);
980 else if (!ipmi_si_is_busy(busy_until)) {
981 getnstimeofday(busy_until);
982 timespec_add_ns(busy_until, max_busy_us*NSEC_PER_USEC);
983 } else {
984 struct timespec now;
985 getnstimeofday(&now);
986 if (unlikely(timespec_compare(&now, busy_until) > 0)) {
987 ipmi_si_set_not_busy(busy_until);
988 return 0;
989 }
990 }
991 return 1;
992}
993
994
995/*
996 * A busy-waiting loop for speeding up IPMI operation.
997 *
998 * Lousy hardware makes this hard. This is only enabled for systems
999 * that are not BT and do not have interrupts. It starts spinning
1000 * when an operation is complete or until max_busy tells it to stop
1001 * (if that is enabled). See the paragraph on kimid_max_busy_us in
1002 * Documentation/IPMI.txt for details.
1003 */
Corey Minyarda9a2c442005-11-07 01:00:03 -08001004static int ipmi_thread(void *data)
1005{
1006 struct smi_info *smi_info = data;
Matt Domsche9a705a2005-11-07 01:00:04 -08001007 unsigned long flags;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001008 enum si_sm_result smi_result;
Martin Wilckae74e822010-03-10 15:23:06 -08001009 struct timespec busy_until;
Corey Minyarda9a2c442005-11-07 01:00:03 -08001010
Martin Wilckae74e822010-03-10 15:23:06 -08001011 ipmi_si_set_not_busy(&busy_until);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001012 set_user_nice(current, MAX_NICE);
Matt Domsche9a705a2005-11-07 01:00:04 -08001013 while (!kthread_should_stop()) {
Martin Wilckae74e822010-03-10 15:23:06 -08001014 int busy_wait;
1015
Corey Minyarda9a2c442005-11-07 01:00:03 -08001016 spin_lock_irqsave(&(smi_info->si_lock), flags);
Corey Minyard8a3628d2006-03-31 02:30:40 -08001017 smi_result = smi_event_handler(smi_info, 0);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001018
1019 /*
1020 * If the driver is doing something, there is a possible
1021 * race with the timer. If the timer handler see idle,
1022 * and the thread here sees something else, the timer
1023 * handler won't restart the timer even though it is
1024 * required. So start it here if necessary.
1025 */
1026 if (smi_result != SI_SM_IDLE && !smi_info->timer_running)
1027 smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES);
1028
Corey Minyarda9a2c442005-11-07 01:00:03 -08001029 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Martin Wilckae74e822010-03-10 15:23:06 -08001030 busy_wait = ipmi_thread_busy_wait(smi_result, smi_info,
1031 &busy_until);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001032 if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
1033 ; /* do nothing */
Martin Wilckae74e822010-03-10 15:23:06 -08001034 else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait)
akpm@osdl.org33979732006-06-27 02:54:04 -07001035 schedule();
Corey Minyard89986492014-04-14 09:46:54 -05001036 else if (smi_result == SI_SM_IDLE) {
1037 if (atomic_read(&smi_info->need_watch)) {
1038 schedule_timeout_interruptible(100);
1039 } else {
1040 /* Wait to be woken up when we are needed. */
1041 __set_current_state(TASK_INTERRUPTIBLE);
1042 schedule();
1043 }
1044 } else
Martin Wilck8d1f66d2010-06-29 15:05:31 -07001045 schedule_timeout_interruptible(1);
Corey Minyarda9a2c442005-11-07 01:00:03 -08001046 }
Corey Minyarda9a2c442005-11-07 01:00:03 -08001047 return 0;
1048}
1049
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051static void poll(void *send_info)
1052{
1053 struct smi_info *smi_info = send_info;
Corey Minyardf60adf42012-03-28 14:42:50 -07001054 unsigned long flags = 0;
Corey Minyard7aefac22014-04-14 09:46:56 -05001055 bool run_to_completion = smi_info->run_to_completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Corey Minyard15c62e12006-12-06 20:41:06 -08001057 /*
1058 * Make sure there is some delay in the poll loop so we can
1059 * drive time forward and timeout things.
1060 */
1061 udelay(10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001062 if (!run_to_completion)
1063 spin_lock_irqsave(&smi_info->si_lock, flags);
Corey Minyard15c62e12006-12-06 20:41:06 -08001064 smi_event_handler(smi_info, 10);
Corey Minyardf60adf42012-03-28 14:42:50 -07001065 if (!run_to_completion)
1066 spin_unlock_irqrestore(&smi_info->si_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069static void request_events(void *send_info)
1070{
1071 struct smi_info *smi_info = send_info;
1072
Corey Minyardb874b982014-11-06 17:01:59 -06001073 if (!smi_info->has_event_buffer)
Corey Minyardb361e272006-12-06 20:41:07 -08001074 return;
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 atomic_set(&smi_info->req_events, 1);
1077}
1078
Corey Minyard7aefac22014-04-14 09:46:56 -05001079static void set_need_watch(void *send_info, bool enable)
Corey Minyard89986492014-04-14 09:46:54 -05001080{
1081 struct smi_info *smi_info = send_info;
1082 unsigned long flags;
1083
1084 atomic_set(&smi_info->need_watch, enable);
1085 spin_lock_irqsave(&smi_info->si_lock, flags);
1086 check_start_timer_thread(smi_info);
1087 spin_unlock_irqrestore(&smi_info->si_lock, flags);
1088}
1089
Randy Dunlap0c8204b2006-12-10 02:19:06 -08001090static int initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092static void smi_timeout(unsigned long data)
1093{
1094 struct smi_info *smi_info = (struct smi_info *) data;
1095 enum si_sm_result smi_result;
1096 unsigned long flags;
1097 unsigned long jiffies_now;
Corey Minyardc4edff12005-11-07 00:59:56 -08001098 long time_diff;
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001099 long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#ifdef DEBUG_TIMING
1101 struct timeval t;
1102#endif
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 spin_lock_irqsave(&(smi_info->si_lock), flags);
1105#ifdef DEBUG_TIMING
1106 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001107 printk(KERN_DEBUG "**Timer: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#endif
1109 jiffies_now = jiffies;
Corey Minyardc4edff12005-11-07 00:59:56 -08001110 time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * SI_USEC_PER_JIFFY);
1112 smi_result = smi_event_handler(smi_info, time_diff);
1113
Corey Minyardb0defcd2006-03-26 01:37:20 -08001114 if ((smi_info->irq) && (!smi_info->interrupt_disabled)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 /* Running with interrupts, only do long timeouts. */
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001116 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Corey Minyard64959e22008-04-29 01:01:07 -07001117 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001118 goto do_mod_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Corey Minyardc305e3d2008-04-29 01:01:10 -07001121 /*
1122 * If the state machine asks for a short delay, then shorten
1123 * the timer timeout.
1124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (smi_result == SI_SM_CALL_WITH_DELAY) {
Corey Minyard64959e22008-04-29 01:01:07 -07001126 smi_inc_stat(smi_info, short_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001127 timeout = jiffies + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 } else {
Corey Minyard64959e22008-04-29 01:01:07 -07001129 smi_inc_stat(smi_info, long_timeouts);
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001130 timeout = jiffies + SI_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
Matthew Garrett3326f4f2010-05-26 14:43:49 -07001133 do_mod_timer:
1134 if (smi_result != SI_SM_IDLE)
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001135 smi_mod_timer(smi_info, timeout);
1136 else
1137 smi_info->timer_running = false;
1138 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
David Howells7d12e782006-10-05 14:55:46 +01001141static irqreturn_t si_irq_handler(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 struct smi_info *smi_info = data;
1144 unsigned long flags;
1145#ifdef DEBUG_TIMING
1146 struct timeval t;
1147#endif
1148
1149 spin_lock_irqsave(&(smi_info->si_lock), flags);
1150
Corey Minyard64959e22008-04-29 01:01:07 -07001151 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#ifdef DEBUG_TIMING
1154 do_gettimeofday(&t);
Corey Minyardc305e3d2008-04-29 01:01:10 -07001155 printk(KERN_DEBUG "**Interrupt: %d.%9.9d\n", t.tv_sec, t.tv_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156#endif
1157 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
1159 return IRQ_HANDLED;
1160}
1161
David Howells7d12e782006-10-05 14:55:46 +01001162static irqreturn_t si_bt_irq_handler(int irq, void *data)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001163{
1164 struct smi_info *smi_info = data;
1165 /* We need to clear the IRQ flag for the BT interface. */
1166 smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG,
1167 IPMI_BT_INTMASK_CLEAR_IRQ_BIT
1168 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
David Howells7d12e782006-10-05 14:55:46 +01001169 return si_irq_handler(irq, data);
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001170}
1171
Corey Minyard453823b2006-03-31 02:30:39 -08001172static int smi_start_processing(void *send_info,
1173 ipmi_smi_t intf)
1174{
1175 struct smi_info *new_smi = send_info;
Corey Minyarda51f4a82006-10-03 01:13:59 -07001176 int enable = 0;
Corey Minyard453823b2006-03-31 02:30:39 -08001177
1178 new_smi->intf = intf;
1179
Corey Minyardc45adc32007-10-18 03:07:08 -07001180 /* Try to claim any interrupts. */
1181 if (new_smi->irq_setup)
1182 new_smi->irq_setup(new_smi);
1183
Corey Minyard453823b2006-03-31 02:30:39 -08001184 /* Set up the timer that drives the interface. */
1185 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi);
Bodo Stroesser48e8ac22014-04-14 09:46:51 -05001186 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES);
Corey Minyard453823b2006-03-31 02:30:39 -08001187
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001188 /*
Corey Minyarda51f4a82006-10-03 01:13:59 -07001189 * Check if the user forcefully enabled the daemon.
1190 */
1191 if (new_smi->intf_num < num_force_kipmid)
1192 enable = force_kipmid[new_smi->intf_num];
1193 /*
Corey Minyarddf3fe8d2006-09-30 23:28:20 -07001194 * The BT interface is efficient enough to not need a thread,
1195 * and there is no need for a thread if we have interrupts.
1196 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001197 else if ((new_smi->si_type != SI_BT) && (!new_smi->irq))
Corey Minyarda51f4a82006-10-03 01:13:59 -07001198 enable = 1;
1199
1200 if (enable) {
Corey Minyard453823b2006-03-31 02:30:39 -08001201 new_smi->thread = kthread_run(ipmi_thread, new_smi,
1202 "kipmi%d", new_smi->intf_num);
1203 if (IS_ERR(new_smi->thread)) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001204 dev_notice(new_smi->dev, "Could not start"
1205 " kernel thread due to error %ld, only using"
1206 " timers to drive the interface\n",
1207 PTR_ERR(new_smi->thread));
Corey Minyard453823b2006-03-31 02:30:39 -08001208 new_smi->thread = NULL;
1209 }
1210 }
1211
1212 return 0;
1213}
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001214
Zhao Yakui16f42322010-12-08 10:10:16 +08001215static int get_smi_info(void *send_info, struct ipmi_smi_info *data)
1216{
1217 struct smi_info *smi = send_info;
1218
1219 data->addr_src = smi->addr_source;
1220 data->dev = smi->dev;
1221 data->addr_info = smi->addr_info;
1222 get_device(smi->dev);
1223
1224 return 0;
1225}
1226
Corey Minyard7aefac22014-04-14 09:46:56 -05001227static void set_maintenance_mode(void *send_info, bool enable)
Corey Minyardb9675132006-12-06 20:41:02 -08001228{
1229 struct smi_info *smi_info = send_info;
1230
1231 if (!enable)
1232 atomic_set(&smi_info->req_events, 0);
1233}
1234
Corey Minyardc305e3d2008-04-29 01:01:10 -07001235static struct ipmi_smi_handlers handlers = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .owner = THIS_MODULE,
Corey Minyard453823b2006-03-31 02:30:39 -08001237 .start_processing = smi_start_processing,
Zhao Yakui16f42322010-12-08 10:10:16 +08001238 .get_smi_info = get_smi_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 .sender = sender,
1240 .request_events = request_events,
Corey Minyard89986492014-04-14 09:46:54 -05001241 .set_need_watch = set_need_watch,
Corey Minyardb9675132006-12-06 20:41:02 -08001242 .set_maintenance_mode = set_maintenance_mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 .set_run_to_completion = set_run_to_completion,
1244 .poll = poll,
1245};
1246
Corey Minyardc305e3d2008-04-29 01:01:10 -07001247/*
1248 * There can be 4 IO ports passed in (with or without IRQs), 4 addresses,
1249 * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS.
1250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Corey Minyardb0defcd2006-03-26 01:37:20 -08001252static LIST_HEAD(smi_infos);
Corey Minyardd6dfd132006-03-31 02:30:41 -08001253static DEFINE_MUTEX(smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001254static int smi_num; /* Used to sequence the SMIs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256#define DEFAULT_REGSPACING 1
Corey Minyarddba9b4f2007-05-08 00:23:51 -07001257#define DEFAULT_REGSIZE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Corey Minyardd941aea2013-02-27 17:05:12 -08001259#ifdef CONFIG_ACPI
1260static bool si_tryacpi = 1;
1261#endif
1262#ifdef CONFIG_DMI
1263static bool si_trydmi = 1;
1264#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001265static bool si_tryplatform = 1;
1266#ifdef CONFIG_PCI
1267static bool si_trypci = 1;
1268#endif
Corey Minyard0dfe6e72014-04-14 09:46:53 -05001269static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270static char *si_type[SI_MAX_PARMS];
1271#define MAX_SI_TYPE_STR 30
1272static char si_type_str[MAX_SI_TYPE_STR];
1273static unsigned long addrs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001274static unsigned int num_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275static unsigned int ports[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001276static unsigned int num_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static int irqs[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001278static unsigned int num_irqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279static int regspacings[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001280static unsigned int num_regspacings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281static int regsizes[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001282static unsigned int num_regsizes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283static int regshifts[SI_MAX_PARMS];
Al Viro64a6f952007-10-14 19:35:30 +01001284static unsigned int num_regshifts;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001285static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */
Al Viro64a6f952007-10-14 19:35:30 +01001286static unsigned int num_slave_addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Corey Minyardb361e272006-12-06 20:41:07 -08001288#define IPMI_IO_ADDR_SPACE 0
1289#define IPMI_MEM_ADDR_SPACE 1
Corey Minyard1d5636c2006-12-10 02:19:08 -08001290static char *addr_space_to_str[] = { "i/o", "mem" };
Corey Minyardb361e272006-12-06 20:41:07 -08001291
1292static int hotmod_handler(const char *val, struct kernel_param *kp);
1293
1294module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200);
1295MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See"
1296 " Documentation/IPMI.txt in the kernel sources for the"
1297 " gory details.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Corey Minyardd941aea2013-02-27 17:05:12 -08001299#ifdef CONFIG_ACPI
1300module_param_named(tryacpi, si_tryacpi, bool, 0);
1301MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1302 " default scan of the interfaces identified via ACPI");
1303#endif
1304#ifdef CONFIG_DMI
1305module_param_named(trydmi, si_trydmi, bool, 0);
1306MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the"
1307 " default scan of the interfaces identified via DMI");
1308#endif
Corey Minyardf2afae42013-02-27 17:05:13 -08001309module_param_named(tryplatform, si_tryplatform, bool, 0);
1310MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1311 " default scan of the interfaces identified via platform"
1312 " interfaces like openfirmware");
1313#ifdef CONFIG_PCI
1314module_param_named(trypci, si_trypci, bool, 0);
1315MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the"
1316 " default scan of the interfaces identified via pci");
1317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318module_param_named(trydefaults, si_trydefaults, bool, 0);
1319MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the"
1320 " default scan of the KCS and SMIC interface at the standard"
1321 " address");
1322module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0);
1323MODULE_PARM_DESC(type, "Defines the type of each interface, each"
1324 " interface separated by commas. The types are 'kcs',"
1325 " 'smic', and 'bt'. For example si_type=kcs,bt will set"
1326 " the first interface to kcs and the second to bt");
Al Viro64a6f952007-10-14 19:35:30 +01001327module_param_array(addrs, ulong, &num_addrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the"
1329 " addresses separated by commas. Only use if an interface"
1330 " is in memory. Otherwise, set it to zero or leave"
1331 " it blank.");
Al Viro64a6f952007-10-14 19:35:30 +01001332module_param_array(ports, uint, &num_ports, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333MODULE_PARM_DESC(ports, "Sets the port address of each interface, the"
1334 " addresses separated by commas. Only use if an interface"
1335 " is a port. Otherwise, set it to zero or leave"
1336 " it blank.");
1337module_param_array(irqs, int, &num_irqs, 0);
1338MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the"
1339 " addresses separated by commas. Only use if an interface"
1340 " has an interrupt. Otherwise, set it to zero or leave"
1341 " it blank.");
1342module_param_array(regspacings, int, &num_regspacings, 0);
1343MODULE_PARM_DESC(regspacings, "The number of bytes between the start address"
1344 " and each successive register used by the interface. For"
1345 " instance, if the start address is 0xca2 and the spacing"
1346 " is 2, then the second address is at 0xca4. Defaults"
1347 " to 1.");
1348module_param_array(regsizes, int, &num_regsizes, 0);
1349MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes."
1350 " This should generally be 1, 2, 4, or 8 for an 8-bit,"
1351 " 16-bit, 32-bit, or 64-bit register. Use this if you"
1352 " the 8-bit IPMI register has to be read from a larger"
1353 " register.");
1354module_param_array(regshifts, int, &num_regshifts, 0);
1355MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the."
1356 " IPMI register, in bits. For instance, if the data"
1357 " is read from a 32-bit word and the IPMI data is in"
1358 " bit 8-15, then the shift would be 8");
1359module_param_array(slave_addrs, int, &num_slave_addrs, 0);
1360MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for"
1361 " the controller. Normally this is 0x20, but can be"
1362 " overridden by this parm. This is an array indexed"
1363 " by interface number.");
Corey Minyarda51f4a82006-10-03 01:13:59 -07001364module_param_array(force_kipmid, int, &num_force_kipmid, 0);
1365MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or"
1366 " disabled(0). Normally the IPMI driver auto-detects"
1367 " this, but the value may be overridden by this parm.");
Corey Minyard7aefac22014-04-14 09:46:56 -05001368module_param(unload_when_empty, bool, 0);
Corey Minyardb361e272006-12-06 20:41:07 -08001369MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are"
1370 " specified or found, default is 1. Setting to 0"
1371 " is useful for hot add of devices using hotmod.");
Martin Wilckae74e822010-03-10 15:23:06 -08001372module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644);
1373MODULE_PARM_DESC(kipmid_max_busy_us,
1374 "Max time (in microseconds) to busy-wait for IPMI data before"
1375 " sleeping. 0 (default) means to wait forever. Set to 100-500"
1376 " if kipmid is using up a lot of CPU time.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378
Corey Minyardb0defcd2006-03-26 01:37:20 -08001379static void std_irq_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001381 if (info->si_type == SI_BT)
1382 /* Disable the interrupt in the BT interface. */
1383 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0);
1384 free_irq(info->irq, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387static int std_irq_setup(struct smi_info *info)
1388{
1389 int rv;
1390
Corey Minyardb0defcd2006-03-26 01:37:20 -08001391 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return 0;
1393
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001394 if (info->si_type == SI_BT) {
1395 rv = request_irq(info->irq,
1396 si_bt_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001397 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001398 DEVICE_NAME,
1399 info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001400 if (!rv)
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001401 /* Enable the interrupt in the BT interface. */
1402 info->io.outputb(&info->io, IPMI_BT_INTMASK_REG,
1403 IPMI_BT_INTMASK_ENABLE_IRQ_BIT);
1404 } else
1405 rv = request_irq(info->irq,
1406 si_irq_handler,
Michael Opdenackeraa5b2ba2014-01-24 14:00:50 -06001407 IRQF_SHARED,
Corey Minyard9dbf68f2005-05-01 08:59:11 -07001408 DEVICE_NAME,
1409 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07001411 dev_warn(info->dev, "%s unable to claim interrupt %d,"
1412 " running polled\n",
1413 DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 info->irq = 0;
1415 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001416 info->irq_cleanup = std_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07001417 dev_info(info->dev, "Using irq %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419
1420 return rv;
1421}
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423static unsigned char port_inb(struct si_sm_io *io, unsigned int offset)
1424{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001425 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Corey Minyardb0defcd2006-03-26 01:37:20 -08001427 return inb(addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
1430static void port_outb(struct si_sm_io *io, unsigned int offset,
1431 unsigned char b)
1432{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001433 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Corey Minyardb0defcd2006-03-26 01:37:20 -08001435 outb(b, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438static unsigned char port_inw(struct si_sm_io *io, unsigned int offset)
1439{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001440 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Corey Minyardb0defcd2006-03-26 01:37:20 -08001442 return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445static void port_outw(struct si_sm_io *io, unsigned int offset,
1446 unsigned char b)
1447{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001448 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Corey Minyardb0defcd2006-03-26 01:37:20 -08001450 outw(b << io->regshift, addr + (offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
1453static unsigned char port_inl(struct si_sm_io *io, unsigned int offset)
1454{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001455 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Corey Minyardb0defcd2006-03-26 01:37:20 -08001457 return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
1460static void port_outl(struct si_sm_io *io, unsigned int offset,
1461 unsigned char b)
1462{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001463 unsigned int addr = io->addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Corey Minyardb0defcd2006-03-26 01:37:20 -08001465 outl(b << io->regshift, addr+(offset * io->regspacing));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468static void port_cleanup(struct smi_info *info)
1469{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001470 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001471 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Corey Minyardb0defcd2006-03-26 01:37:20 -08001473 if (addr) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07001474 for (idx = 0; idx < info->io_size; idx++)
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001475 release_region(addr + idx * info->io.regspacing,
1476 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480static int port_setup(struct smi_info *info)
1481{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001482 unsigned int addr = info->io.addr_data;
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001483 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Corey Minyardb0defcd2006-03-26 01:37:20 -08001485 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return -ENODEV;
1487
1488 info->io_cleanup = port_cleanup;
1489
Corey Minyardc305e3d2008-04-29 01:01:10 -07001490 /*
1491 * Figure out the actual inb/inw/inl/etc routine to use based
1492 * upon the register size.
1493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 switch (info->io.regsize) {
1495 case 1:
1496 info->io.inputb = port_inb;
1497 info->io.outputb = port_outb;
1498 break;
1499 case 2:
1500 info->io.inputb = port_inw;
1501 info->io.outputb = port_outw;
1502 break;
1503 case 4:
1504 info->io.inputb = port_inl;
1505 info->io.outputb = port_outl;
1506 break;
1507 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001508 dev_warn(info->dev, "Invalid register size: %d\n",
1509 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return -EINVAL;
1511 }
1512
Corey Minyardc305e3d2008-04-29 01:01:10 -07001513 /*
1514 * Some BIOSes reserve disjoint I/O regions in their ACPI
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001515 * tables. This causes problems when trying to register the
1516 * entire I/O region. Therefore we must register each I/O
1517 * port separately.
1518 */
Corey Minyardc305e3d2008-04-29 01:01:10 -07001519 for (idx = 0; idx < info->io_size; idx++) {
Corey Minyardd61a3ea2006-05-30 21:25:57 -07001520 if (request_region(addr + idx * info->io.regspacing,
1521 info->io.regsize, DEVICE_NAME) == NULL) {
1522 /* Undo allocations */
1523 while (idx--) {
1524 release_region(addr + idx * info->io.regspacing,
1525 info->io.regsize);
1526 }
1527 return -EIO;
1528 }
1529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 return 0;
1531}
1532
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001533static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 return readb((io->addr)+(offset * io->regspacing));
1536}
1537
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001538static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 unsigned char b)
1540{
1541 writeb(b, (io->addr)+(offset * io->regspacing));
1542}
1543
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001544static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001547 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001550static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 unsigned char b)
1552{
1553 writeb(b << io->regshift, (io->addr)+(offset * io->regspacing));
1554}
1555
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001556static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001559 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001562static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 unsigned char b)
1564{
1565 writel(b << io->regshift, (io->addr)+(offset * io->regspacing));
1566}
1567
1568#ifdef readq
1569static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
1570{
1571 return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
Alexey Dobriyan64d9fe62006-11-08 17:44:56 -08001572 & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575static void mem_outq(struct si_sm_io *io, unsigned int offset,
1576 unsigned char b)
1577{
1578 writeq(b << io->regshift, (io->addr)+(offset * io->regspacing));
1579}
1580#endif
1581
1582static void mem_cleanup(struct smi_info *info)
1583{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001584 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int mapsize;
1586
1587 if (info->io.addr) {
1588 iounmap(info->io.addr);
1589
1590 mapsize = ((info->io_size * info->io.regspacing)
1591 - (info->io.regspacing - info->io.regsize));
1592
Corey Minyardb0defcd2006-03-26 01:37:20 -08001593 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
1597static int mem_setup(struct smi_info *info)
1598{
Corey Minyardb0defcd2006-03-26 01:37:20 -08001599 unsigned long addr = info->io.addr_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 int mapsize;
1601
Corey Minyardb0defcd2006-03-26 01:37:20 -08001602 if (!addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return -ENODEV;
1604
1605 info->io_cleanup = mem_cleanup;
1606
Corey Minyardc305e3d2008-04-29 01:01:10 -07001607 /*
1608 * Figure out the actual readb/readw/readl/etc routine to use based
1609 * upon the register size.
1610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 switch (info->io.regsize) {
1612 case 1:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001613 info->io.inputb = intf_mem_inb;
1614 info->io.outputb = intf_mem_outb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 break;
1616 case 2:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001617 info->io.inputb = intf_mem_inw;
1618 info->io.outputb = intf_mem_outw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 break;
1620 case 4:
Alexey Dobriyan546cfdf2006-02-03 03:04:40 -08001621 info->io.inputb = intf_mem_inl;
1622 info->io.outputb = intf_mem_outl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 break;
1624#ifdef readq
1625 case 8:
1626 info->io.inputb = mem_inq;
1627 info->io.outputb = mem_outq;
1628 break;
1629#endif
1630 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07001631 dev_warn(info->dev, "Invalid register size: %d\n",
1632 info->io.regsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return -EINVAL;
1634 }
1635
Corey Minyardc305e3d2008-04-29 01:01:10 -07001636 /*
1637 * Calculate the total amount of memory to claim. This is an
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 * unusual looking calculation, but it avoids claiming any
1639 * more memory than it has to. It will claim everything
1640 * between the first address to the end of the last full
Corey Minyardc305e3d2008-04-29 01:01:10 -07001641 * register.
1642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 mapsize = ((info->io_size * info->io.regspacing)
1644 - (info->io.regspacing - info->io.regsize));
1645
Corey Minyardb0defcd2006-03-26 01:37:20 -08001646 if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return -EIO;
1648
Corey Minyardb0defcd2006-03-26 01:37:20 -08001649 info->io.addr = ioremap(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (info->io.addr == NULL) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001651 release_mem_region(addr, mapsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return -EIO;
1653 }
1654 return 0;
1655}
1656
Corey Minyardb361e272006-12-06 20:41:07 -08001657/*
1658 * Parms come in as <op1>[:op2[:op3...]]. ops are:
1659 * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]]
1660 * Options are:
1661 * rsp=<regspacing>
1662 * rsi=<regsize>
1663 * rsh=<regshift>
1664 * irq=<irq>
1665 * ipmb=<ipmb addr>
1666 */
1667enum hotmod_op { HM_ADD, HM_REMOVE };
1668struct hotmod_vals {
1669 char *name;
1670 int val;
1671};
1672static struct hotmod_vals hotmod_ops[] = {
1673 { "add", HM_ADD },
1674 { "remove", HM_REMOVE },
1675 { NULL }
1676};
1677static struct hotmod_vals hotmod_si[] = {
1678 { "kcs", SI_KCS },
1679 { "smic", SI_SMIC },
1680 { "bt", SI_BT },
1681 { NULL }
1682};
1683static struct hotmod_vals hotmod_as[] = {
1684 { "mem", IPMI_MEM_ADDR_SPACE },
1685 { "i/o", IPMI_IO_ADDR_SPACE },
1686 { NULL }
1687};
Corey Minyard1d5636c2006-12-10 02:19:08 -08001688
Corey Minyardb361e272006-12-06 20:41:07 -08001689static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr)
1690{
1691 char *s;
1692 int i;
1693
1694 s = strchr(*curr, ',');
1695 if (!s) {
1696 printk(KERN_WARNING PFX "No hotmod %s given.\n", name);
1697 return -EINVAL;
1698 }
1699 *s = '\0';
1700 s++;
Corey Minyardceb51ca2014-10-10 17:45:45 -05001701 for (i = 0; v[i].name; i++) {
Corey Minyard1d5636c2006-12-10 02:19:08 -08001702 if (strcmp(*curr, v[i].name) == 0) {
Corey Minyardb361e272006-12-06 20:41:07 -08001703 *val = v[i].val;
1704 *curr = s;
1705 return 0;
1706 }
1707 }
1708
1709 printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr);
1710 return -EINVAL;
1711}
1712
Corey Minyard1d5636c2006-12-10 02:19:08 -08001713static int check_hotmod_int_op(const char *curr, const char *option,
1714 const char *name, int *val)
1715{
1716 char *n;
1717
1718 if (strcmp(curr, name) == 0) {
1719 if (!option) {
1720 printk(KERN_WARNING PFX
1721 "No option given for '%s'\n",
1722 curr);
1723 return -EINVAL;
1724 }
1725 *val = simple_strtoul(option, &n, 0);
1726 if ((*n != '\0') || (*option == '\0')) {
1727 printk(KERN_WARNING PFX
1728 "Bad option given for '%s'\n",
1729 curr);
1730 return -EINVAL;
1731 }
1732 return 1;
1733 }
1734 return 0;
1735}
1736
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001737static struct smi_info *smi_info_alloc(void)
1738{
1739 struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL);
1740
Corey Minyardf60adf42012-03-28 14:42:50 -07001741 if (info)
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001742 spin_lock_init(&info->si_lock);
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001743 return info;
1744}
1745
Corey Minyardb361e272006-12-06 20:41:07 -08001746static int hotmod_handler(const char *val, struct kernel_param *kp)
1747{
1748 char *str = kstrdup(val, GFP_KERNEL);
Corey Minyard1d5636c2006-12-10 02:19:08 -08001749 int rv;
Corey Minyardb361e272006-12-06 20:41:07 -08001750 char *next, *curr, *s, *n, *o;
1751 enum hotmod_op op;
1752 enum si_type si_type;
1753 int addr_space;
1754 unsigned long addr;
1755 int regspacing;
1756 int regsize;
1757 int regshift;
1758 int irq;
1759 int ipmb;
1760 int ival;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001761 int len;
Corey Minyardb361e272006-12-06 20:41:07 -08001762 struct smi_info *info;
1763
1764 if (!str)
1765 return -ENOMEM;
1766
1767 /* Kill any trailing spaces, as we can get a "\n" from echo. */
Corey Minyard1d5636c2006-12-10 02:19:08 -08001768 len = strlen(str);
1769 ival = len - 1;
Corey Minyardb361e272006-12-06 20:41:07 -08001770 while ((ival >= 0) && isspace(str[ival])) {
1771 str[ival] = '\0';
1772 ival--;
1773 }
1774
1775 for (curr = str; curr; curr = next) {
1776 regspacing = 1;
1777 regsize = 1;
1778 regshift = 0;
1779 irq = 0;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001780 ipmb = 0; /* Choose the default if not specified */
Corey Minyardb361e272006-12-06 20:41:07 -08001781
1782 next = strchr(curr, ':');
1783 if (next) {
1784 *next = '\0';
1785 next++;
1786 }
1787
1788 rv = parse_str(hotmod_ops, &ival, "operation", &curr);
1789 if (rv)
1790 break;
1791 op = ival;
1792
1793 rv = parse_str(hotmod_si, &ival, "interface type", &curr);
1794 if (rv)
1795 break;
1796 si_type = ival;
1797
1798 rv = parse_str(hotmod_as, &addr_space, "address space", &curr);
1799 if (rv)
1800 break;
1801
1802 s = strchr(curr, ',');
1803 if (s) {
1804 *s = '\0';
1805 s++;
1806 }
1807 addr = simple_strtoul(curr, &n, 0);
1808 if ((*n != '\0') || (*curr == '\0')) {
1809 printk(KERN_WARNING PFX "Invalid hotmod address"
1810 " '%s'\n", curr);
1811 break;
1812 }
1813
1814 while (s) {
1815 curr = s;
1816 s = strchr(curr, ',');
1817 if (s) {
1818 *s = '\0';
1819 s++;
1820 }
1821 o = strchr(curr, '=');
1822 if (o) {
1823 *o = '\0';
1824 o++;
1825 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001826 rv = check_hotmod_int_op(curr, o, "rsp", &regspacing);
1827 if (rv < 0)
Corey Minyardb361e272006-12-06 20:41:07 -08001828 goto out;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001829 else if (rv)
1830 continue;
1831 rv = check_hotmod_int_op(curr, o, "rsi", &regsize);
1832 if (rv < 0)
1833 goto out;
1834 else if (rv)
1835 continue;
1836 rv = check_hotmod_int_op(curr, o, "rsh", &regshift);
1837 if (rv < 0)
1838 goto out;
1839 else if (rv)
1840 continue;
1841 rv = check_hotmod_int_op(curr, o, "irq", &irq);
1842 if (rv < 0)
1843 goto out;
1844 else if (rv)
1845 continue;
1846 rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb);
1847 if (rv < 0)
1848 goto out;
1849 else if (rv)
1850 continue;
1851
1852 rv = -EINVAL;
1853 printk(KERN_WARNING PFX
1854 "Invalid hotmod option '%s'\n",
1855 curr);
1856 goto out;
Corey Minyardb361e272006-12-06 20:41:07 -08001857 }
1858
1859 if (op == HM_ADD) {
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001860 info = smi_info_alloc();
Corey Minyardb361e272006-12-06 20:41:07 -08001861 if (!info) {
1862 rv = -ENOMEM;
1863 goto out;
1864 }
1865
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001866 info->addr_source = SI_HOTMOD;
Corey Minyardb361e272006-12-06 20:41:07 -08001867 info->si_type = si_type;
1868 info->io.addr_data = addr;
1869 info->io.addr_type = addr_space;
1870 if (addr_space == IPMI_MEM_ADDR_SPACE)
1871 info->io_setup = mem_setup;
1872 else
1873 info->io_setup = port_setup;
1874
1875 info->io.addr = NULL;
1876 info->io.regspacing = regspacing;
1877 if (!info->io.regspacing)
1878 info->io.regspacing = DEFAULT_REGSPACING;
1879 info->io.regsize = regsize;
1880 if (!info->io.regsize)
1881 info->io.regsize = DEFAULT_REGSPACING;
1882 info->io.regshift = regshift;
1883 info->irq = irq;
1884 if (info->irq)
1885 info->irq_setup = std_irq_setup;
1886 info->slave_addr = ipmb;
1887
Corey Minyardd02b3702014-01-24 14:00:53 -06001888 rv = add_smi(info);
1889 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07001890 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06001891 goto out;
1892 }
1893 rv = try_smi_init(info);
1894 if (rv) {
1895 cleanup_one_si(info);
1896 goto out;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001897 }
Corey Minyardb361e272006-12-06 20:41:07 -08001898 } else {
1899 /* remove */
1900 struct smi_info *e, *tmp_e;
1901
1902 mutex_lock(&smi_infos_lock);
1903 list_for_each_entry_safe(e, tmp_e, &smi_infos, link) {
1904 if (e->io.addr_type != addr_space)
1905 continue;
1906 if (e->si_type != si_type)
1907 continue;
1908 if (e->io.addr_data == addr)
1909 cleanup_one_si(e);
1910 }
1911 mutex_unlock(&smi_infos_lock);
1912 }
1913 }
Corey Minyard1d5636c2006-12-10 02:19:08 -08001914 rv = len;
Corey Minyardb361e272006-12-06 20:41:07 -08001915 out:
1916 kfree(str);
1917 return rv;
1918}
Corey Minyardb0defcd2006-03-26 01:37:20 -08001919
Bill Pemberton2223cbe2012-11-19 13:22:51 -05001920static int hardcode_find_bmc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001922 int ret = -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08001923 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 struct smi_info *info;
1925
Corey Minyardb0defcd2006-03-26 01:37:20 -08001926 for (i = 0; i < SI_MAX_PARMS; i++) {
1927 if (!ports[i] && !addrs[i])
1928 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07001930 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08001931 if (!info)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001932 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07001934 info->addr_source = SI_HARDCODED;
Myron Stowe279fbd02010-05-26 14:43:52 -07001935 printk(KERN_INFO PFX "probing via hardcoded address\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08001936
Corey Minyard1d5636c2006-12-10 02:19:08 -08001937 if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001938 info->si_type = SI_KCS;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001939 } else if (strcmp(si_type[i], "smic") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001940 info->si_type = SI_SMIC;
Corey Minyard1d5636c2006-12-10 02:19:08 -08001941 } else if (strcmp(si_type[i], "bt") == 0) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08001942 info->si_type = SI_BT;
1943 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001944 printk(KERN_WARNING PFX "Interface type specified "
Corey Minyardb0defcd2006-03-26 01:37:20 -08001945 "for interface %d, was invalid: %s\n",
1946 i, si_type[i]);
1947 kfree(info);
1948 continue;
1949 }
1950
1951 if (ports[i]) {
1952 /* An I/O port */
1953 info->io_setup = port_setup;
1954 info->io.addr_data = ports[i];
1955 info->io.addr_type = IPMI_IO_ADDR_SPACE;
1956 } else if (addrs[i]) {
1957 /* A memory port */
1958 info->io_setup = mem_setup;
1959 info->io.addr_data = addrs[i];
1960 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
1961 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07001962 printk(KERN_WARNING PFX "Interface type specified "
1963 "for interface %d, but port and address were "
1964 "not set or set to zero.\n", i);
Corey Minyardb0defcd2006-03-26 01:37:20 -08001965 kfree(info);
1966 continue;
1967 }
1968
1969 info->io.addr = NULL;
1970 info->io.regspacing = regspacings[i];
1971 if (!info->io.regspacing)
1972 info->io.regspacing = DEFAULT_REGSPACING;
1973 info->io.regsize = regsizes[i];
1974 if (!info->io.regsize)
1975 info->io.regsize = DEFAULT_REGSPACING;
1976 info->io.regshift = regshifts[i];
1977 info->irq = irqs[i];
1978 if (info->irq)
1979 info->irq_setup = std_irq_setup;
Bela Lubkin2f95d512010-03-10 15:23:07 -08001980 info->slave_addr = slave_addrs[i];
Corey Minyardb0defcd2006-03-26 01:37:20 -08001981
Yinghai Lu7faefea2010-08-10 18:03:10 -07001982 if (!add_smi(info)) {
Matthew Garrett2407d772010-05-26 14:43:46 -07001983 if (try_smi_init(info))
1984 cleanup_one_si(info);
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001985 ret = 0;
Yinghai Lu7faefea2010-08-10 18:03:10 -07001986 } else {
1987 kfree(info);
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06001990 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
Len Brown84663612005-08-24 12:09:07 -04001993#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995#include <linux/acpi.h>
1996
Corey Minyardc305e3d2008-04-29 01:01:10 -07001997/*
1998 * Once we get an ACPI failure, we don't try any more, because we go
1999 * through the tables sequentially. Once we don't find a table, there
2000 * are no more.
2001 */
Randy Dunlap0c8204b2006-12-10 02:19:06 -08002002static int acpi_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004/* For GPE-type interrupts. */
Lin Ming8b6cd8a2010-12-13 13:38:46 +08002005static u32 ipmi_acpi_gpe(acpi_handle gpe_device,
2006 u32 gpe_number, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
2008 struct smi_info *smi_info = context;
2009 unsigned long flags;
2010#ifdef DEBUG_TIMING
2011 struct timeval t;
2012#endif
2013
2014 spin_lock_irqsave(&(smi_info->si_lock), flags);
2015
Corey Minyard64959e22008-04-29 01:01:07 -07002016 smi_inc_stat(smi_info, interrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018#ifdef DEBUG_TIMING
2019 do_gettimeofday(&t);
2020 printk("**ACPI_GPE: %d.%9.9d\n", t.tv_sec, t.tv_usec);
2021#endif
2022 smi_event_handler(smi_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 spin_unlock_irqrestore(&(smi_info->si_lock), flags);
2024
2025 return ACPI_INTERRUPT_HANDLED;
2026}
2027
Corey Minyardb0defcd2006-03-26 01:37:20 -08002028static void acpi_gpe_irq_cleanup(struct smi_info *info)
2029{
2030 if (!info->irq)
2031 return;
2032
2033 acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe);
2034}
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036static int acpi_gpe_irq_setup(struct smi_info *info)
2037{
2038 acpi_status status;
2039
Corey Minyardb0defcd2006-03-26 01:37:20 -08002040 if (!info->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 return 0;
2042
2043 /* FIXME - is level triggered right? */
2044 status = acpi_install_gpe_handler(NULL,
2045 info->irq,
2046 ACPI_GPE_LEVEL_TRIGGERED,
2047 &ipmi_acpi_gpe,
2048 info);
2049 if (status != AE_OK) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002050 dev_warn(info->dev, "%s unable to claim ACPI GPE %d,"
2051 " running polled\n", DEVICE_NAME, info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 info->irq = 0;
2053 return -EINVAL;
2054 } else {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002055 info->irq_cleanup = acpi_gpe_irq_cleanup;
Myron Stowe279fbd02010-05-26 14:43:52 -07002056 dev_info(info->dev, "Using ACPI GPE %d\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return 0;
2058 }
2059}
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061/*
2062 * Defined at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02002063 * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 */
2065struct SPMITable {
2066 s8 Signature[4];
2067 u32 Length;
2068 u8 Revision;
2069 u8 Checksum;
2070 s8 OEMID[6];
2071 s8 OEMTableID[8];
2072 s8 OEMRevision[4];
2073 s8 CreatorID[4];
2074 s8 CreatorRevision[4];
2075 u8 InterfaceType;
2076 u8 IPMIlegacy;
2077 s16 SpecificationRevision;
2078
2079 /*
2080 * Bit 0 - SCI interrupt supported
2081 * Bit 1 - I/O APIC/SAPIC
2082 */
2083 u8 InterruptType;
2084
Corey Minyardc305e3d2008-04-29 01:01:10 -07002085 /*
2086 * If bit 0 of InterruptType is set, then this is the SCI
2087 * interrupt in the GPEx_STS register.
2088 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 u8 GPE;
2090
2091 s16 Reserved;
2092
Corey Minyardc305e3d2008-04-29 01:01:10 -07002093 /*
2094 * If bit 1 of InterruptType is set, then this is the I/O
2095 * APIC/SAPIC interrupt.
2096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 u32 GlobalSystemInterrupt;
2098
2099 /* The actual register address. */
2100 struct acpi_generic_address addr;
2101
2102 u8 UID[4];
2103
2104 s8 spmi_id[1]; /* A '\0' terminated array starts here. */
2105};
2106
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002107static int try_init_spmi(struct SPMITable *spmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
2109 struct smi_info *info;
Corey Minyardd02b3702014-01-24 14:00:53 -06002110 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (spmi->IPMIlegacy != 1) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002113 printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy);
2114 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002117 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002118 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002119 printk(KERN_ERR PFX "Could not allocate SI data (3)\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002120 return -ENOMEM;
2121 }
2122
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002123 info->addr_source = SI_SPMI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002124 printk(KERN_INFO PFX "probing via SPMI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /* Figure out the interface type. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002127 switch (spmi->InterfaceType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 case 1: /* KCS */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002129 info->si_type = SI_KCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 case 2: /* SMIC */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002132 info->si_type = SI_SMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 case 3: /* BT */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002135 info->si_type = SI_BT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002137 case 4: /* SSIF, just ignore */
2138 kfree(info);
2139 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002141 printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n",
2142 spmi->InterfaceType);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002143 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 return -EIO;
2145 }
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (spmi->InterruptType & 1) {
2148 /* We've got a GPE interrupt. */
2149 info->irq = spmi->GPE;
2150 info->irq_setup = acpi_gpe_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 } else if (spmi->InterruptType & 2) {
2152 /* We've got an APIC/SAPIC interrupt. */
2153 info->irq = spmi->GlobalSystemInterrupt;
2154 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 } else {
2156 /* Use the default interrupt setting. */
2157 info->irq = 0;
2158 info->irq_setup = NULL;
2159 }
2160
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002161 if (spmi->addr.bit_width) {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002162 /* A (hopefully) properly formed register bit width. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002163 info->io.regspacing = spmi->addr.bit_width / 8;
Corey Minyard35bc37a2005-05-01 08:59:10 -07002164 } else {
Corey Minyard35bc37a2005-05-01 08:59:10 -07002165 info->io.regspacing = DEFAULT_REGSPACING;
2166 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002167 info->io.regsize = info->io.regspacing;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002168 info->io.regshift = spmi->addr.bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002170 if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 info->io_setup = mem_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002172 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002173 } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 info->io_setup = port_setup;
Corey Minyard8fe14252007-05-12 10:36:58 -07002175 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 } else {
2177 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002178 printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return -EIO;
2180 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002181 info->io.addr_data = spmi->addr.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002183 pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n",
2184 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2185 info->io.addr_data, info->io.regsize, info->io.regspacing,
2186 info->irq);
2187
Corey Minyardd02b3702014-01-24 14:00:53 -06002188 rv = add_smi(info);
2189 if (rv)
Yinghai Lu7faefea2010-08-10 18:03:10 -07002190 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Corey Minyardd02b3702014-01-24 14:00:53 -06002192 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193}
Corey Minyardb0defcd2006-03-26 01:37:20 -08002194
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002195static void spmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002196{
2197 acpi_status status;
2198 struct SPMITable *spmi;
2199 int i;
2200
2201 if (acpi_disabled)
2202 return;
2203
2204 if (acpi_failure)
2205 return;
2206
2207 for (i = 0; ; i++) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03002208 status = acpi_get_table(ACPI_SIG_SPMI, i+1,
2209 (struct acpi_table_header **)&spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002210 if (status != AE_OK)
2211 return;
2212
Bjorn Helgaas18a3e0b2009-11-17 17:05:29 -07002213 try_init_spmi(spmi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002214 }
2215}
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002216
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002217static int ipmi_pnp_probe(struct pnp_dev *dev,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002218 const struct pnp_device_id *dev_id)
2219{
2220 struct acpi_device *acpi_dev;
2221 struct smi_info *info;
Yinghai Lua9e31762010-09-22 13:04:53 -07002222 struct resource *res, *res_second;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002223 acpi_handle handle;
2224 acpi_status status;
2225 unsigned long long tmp;
Corey Minyardd02b3702014-01-24 14:00:53 -06002226 int rv;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002227
2228 acpi_dev = pnp_acpi_device(dev);
2229 if (!acpi_dev)
2230 return -ENODEV;
2231
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002232 info = smi_info_alloc();
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002233 if (!info)
2234 return -ENOMEM;
2235
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002236 info->addr_source = SI_ACPI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002237 printk(KERN_INFO PFX "probing via ACPI\n");
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002238
2239 handle = acpi_dev->handle;
Zhao Yakui16f42322010-12-08 10:10:16 +08002240 info->addr_info.acpi_info.acpi_handle = handle;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002241
2242 /* _IFT tells us the interface type: KCS, BT, etc */
2243 status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp);
2244 if (ACPI_FAILURE(status))
2245 goto err_free;
2246
2247 switch (tmp) {
2248 case 1:
2249 info->si_type = SI_KCS;
2250 break;
2251 case 2:
2252 info->si_type = SI_SMIC;
2253 break;
2254 case 3:
2255 info->si_type = SI_BT;
2256 break;
Corey Minyardab42bf22014-10-09 07:12:08 -05002257 case 4: /* SSIF, just ignore */
2258 goto err_free;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002259 default:
Myron Stowe279fbd02010-05-26 14:43:52 -07002260 dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002261 goto err_free;
2262 }
2263
Myron Stowe279fbd02010-05-26 14:43:52 -07002264 res = pnp_get_resource(dev, IORESOURCE_IO, 0);
2265 if (res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002266 info->io_setup = port_setup;
2267 info->io.addr_type = IPMI_IO_ADDR_SPACE;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002268 } else {
Myron Stowe279fbd02010-05-26 14:43:52 -07002269 res = pnp_get_resource(dev, IORESOURCE_MEM, 0);
2270 if (res) {
2271 info->io_setup = mem_setup;
2272 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2273 }
2274 }
2275 if (!res) {
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002276 dev_err(&dev->dev, "no I/O or memory address\n");
2277 goto err_free;
2278 }
Myron Stowe279fbd02010-05-26 14:43:52 -07002279 info->io.addr_data = res->start;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002280
2281 info->io.regspacing = DEFAULT_REGSPACING;
Yinghai Lua9e31762010-09-22 13:04:53 -07002282 res_second = pnp_get_resource(dev,
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002283 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ?
2284 IORESOURCE_IO : IORESOURCE_MEM,
2285 1);
Yinghai Lua9e31762010-09-22 13:04:53 -07002286 if (res_second) {
2287 if (res_second->start > info->io.addr_data)
2288 info->io.regspacing = res_second->start - info->io.addr_data;
Yinghai Lud9e1b6c2010-08-09 17:18:22 -07002289 }
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002290 info->io.regsize = DEFAULT_REGSPACING;
2291 info->io.regshift = 0;
2292
2293 /* If _GPE exists, use it; otherwise use standard interrupts */
2294 status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp);
2295 if (ACPI_SUCCESS(status)) {
2296 info->irq = tmp;
2297 info->irq_setup = acpi_gpe_irq_setup;
2298 } else if (pnp_irq_valid(dev, 0)) {
2299 info->irq = pnp_irq(dev, 0);
2300 info->irq_setup = std_irq_setup;
2301 }
2302
Myron Stowe8c8eae22010-05-26 14:43:51 -07002303 info->dev = &dev->dev;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002304 pnp_set_drvdata(dev, info);
2305
Myron Stowe279fbd02010-05-26 14:43:52 -07002306 dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n",
2307 res, info->io.regsize, info->io.regspacing,
2308 info->irq);
2309
Corey Minyardd02b3702014-01-24 14:00:53 -06002310 rv = add_smi(info);
2311 if (rv)
2312 kfree(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07002313
Corey Minyardd02b3702014-01-24 14:00:53 -06002314 return rv;
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002315
2316err_free:
2317 kfree(info);
2318 return -EINVAL;
2319}
2320
Bill Pemberton39af33f2012-11-19 13:26:26 -05002321static void ipmi_pnp_remove(struct pnp_dev *dev)
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002322{
2323 struct smi_info *info = pnp_get_drvdata(dev);
2324
2325 cleanup_one_si(info);
2326}
2327
2328static const struct pnp_device_id pnp_dev_table[] = {
2329 {"IPI0001", 0},
2330 {"", 0},
2331};
2332
2333static struct pnp_driver ipmi_pnp_driver = {
2334 .name = DEVICE_NAME,
2335 .probe = ipmi_pnp_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002336 .remove = ipmi_pnp_remove,
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07002337 .id_table = pnp_dev_table,
2338};
Jordan_Hargrave@Dell.coma798e2d2013-09-05 06:36:35 -05002339
2340MODULE_DEVICE_TABLE(pnp, pnp_dev_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341#endif
2342
Matt Domscha9fad4c2006-01-11 12:17:44 -08002343#ifdef CONFIG_DMI
Corey Minyardc305e3d2008-04-29 01:01:10 -07002344struct dmi_ipmi_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 u8 type;
2346 u8 addr_space;
2347 unsigned long base_addr;
2348 u8 irq;
2349 u8 offset;
2350 u8 slave_addr;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002351};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002353static int decode_dmi(const struct dmi_header *dm,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002354 struct dmi_ipmi_data *dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Jeff Garzik18552562007-10-03 15:15:40 -04002356 const u8 *data = (const u8 *)dm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 unsigned long base_addr;
2358 u8 reg_spacing;
Andrey Paninb224cd32005-09-06 15:18:37 -07002359 u8 len = dm->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Corey Minyardb0defcd2006-03-26 01:37:20 -08002361 dmi->type = data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 memcpy(&base_addr, data+8, sizeof(unsigned long));
2364 if (len >= 0x11) {
2365 if (base_addr & 1) {
2366 /* I/O */
2367 base_addr &= 0xFFFE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002368 dmi->addr_space = IPMI_IO_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002369 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 /* Memory */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002371 dmi->addr_space = IPMI_MEM_ADDR_SPACE;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 /* If bit 4 of byte 0x10 is set, then the lsb for the address
2374 is odd. */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002375 dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Corey Minyardb0defcd2006-03-26 01:37:20 -08002377 dmi->irq = data[0x11];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 /* The top two bits of byte 0x10 hold the register spacing. */
Andrey Paninb224cd32005-09-06 15:18:37 -07002380 reg_spacing = (data[0x10] & 0xC0) >> 6;
Corey Minyardc305e3d2008-04-29 01:01:10 -07002381 switch (reg_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 case 0x00: /* Byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002383 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 break;
2385 case 0x01: /* 32-bit boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002386 dmi->offset = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 break;
2388 case 0x02: /* 16-byte boundaries */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002389 dmi->offset = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 break;
2391 default:
2392 /* Some other interface, just ignore it. */
2393 return -EIO;
2394 }
2395 } else {
2396 /* Old DMI spec. */
Corey Minyardc305e3d2008-04-29 01:01:10 -07002397 /*
2398 * Note that technically, the lower bit of the base
Corey Minyard92068802005-05-01 08:59:10 -07002399 * address should be 1 if the address is I/O and 0 if
2400 * the address is in memory. So many systems get that
2401 * wrong (and all that I have seen are I/O) so we just
2402 * ignore that bit and assume I/O. Systems that use
Corey Minyardc305e3d2008-04-29 01:01:10 -07002403 * memory should use the newer spec, anyway.
2404 */
Corey Minyardb0defcd2006-03-26 01:37:20 -08002405 dmi->base_addr = base_addr & 0xfffe;
2406 dmi->addr_space = IPMI_IO_ADDR_SPACE;
2407 dmi->offset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409
Corey Minyardb0defcd2006-03-26 01:37:20 -08002410 dmi->slave_addr = data[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Corey Minyardb0defcd2006-03-26 01:37:20 -08002412 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002415static void try_init_dmi(struct dmi_ipmi_data *ipmi_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Corey Minyarde8b33612005-09-06 15:18:45 -07002417 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002419 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002420 if (!info) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002421 printk(KERN_ERR PFX "Could not allocate SI data\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002422 return;
2423 }
2424
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002425 info->addr_source = SI_SMBIOS;
Myron Stowe279fbd02010-05-26 14:43:52 -07002426 printk(KERN_INFO PFX "probing via SMBIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Corey Minyarde8b33612005-09-06 15:18:45 -07002428 switch (ipmi_data->type) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08002429 case 0x01: /* KCS */
2430 info->si_type = SI_KCS;
2431 break;
2432 case 0x02: /* SMIC */
2433 info->si_type = SI_SMIC;
2434 break;
2435 case 0x03: /* BT */
2436 info->si_type = SI_BT;
2437 break;
2438 default:
Jesper Juhl80cd6922007-07-31 00:39:05 -07002439 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 }
2442
Corey Minyardb0defcd2006-03-26 01:37:20 -08002443 switch (ipmi_data->addr_space) {
2444 case IPMI_MEM_ADDR_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 info->io_setup = mem_setup;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002446 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2447 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Corey Minyardb0defcd2006-03-26 01:37:20 -08002449 case IPMI_IO_ADDR_SPACE:
2450 info->io_setup = port_setup;
2451 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2452 break;
2453
2454 default:
2455 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002456 printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002457 ipmi_data->addr_space);
2458 return;
2459 }
2460 info->io.addr_data = ipmi_data->base_addr;
2461
2462 info->io.regspacing = ipmi_data->offset;
2463 if (!info->io.regspacing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 info->io.regspacing = DEFAULT_REGSPACING;
2465 info->io.regsize = DEFAULT_REGSPACING;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002466 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 info->slave_addr = ipmi_data->slave_addr;
2469
Corey Minyardb0defcd2006-03-26 01:37:20 -08002470 info->irq = ipmi_data->irq;
2471 if (info->irq)
2472 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Yinghai Lu7bb671e2010-08-10 18:03:10 -07002474 pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n",
2475 (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem",
2476 info->io.addr_data, info->io.regsize, info->io.regspacing,
2477 info->irq);
2478
Yinghai Lu7faefea2010-08-10 18:03:10 -07002479 if (add_smi(info))
2480 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002483static void dmi_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002484{
Jeff Garzik18552562007-10-03 15:15:40 -04002485 const struct dmi_device *dev = NULL;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002486 struct dmi_ipmi_data data;
2487 int rv;
2488
2489 while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) {
Jeff Garzik397f4eb2006-10-03 01:13:52 -07002490 memset(&data, 0, sizeof(data));
Jeff Garzik18552562007-10-03 15:15:40 -04002491 rv = decode_dmi((const struct dmi_header *) dev->device_data,
2492 &data);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002493 if (!rv)
2494 try_init_dmi(&data);
2495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
Matt Domscha9fad4c2006-01-11 12:17:44 -08002497#endif /* CONFIG_DMI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499#ifdef CONFIG_PCI
2500
Corey Minyardb0defcd2006-03-26 01:37:20 -08002501#define PCI_ERMC_CLASSCODE 0x0C0700
2502#define PCI_ERMC_CLASSCODE_MASK 0xffffff00
2503#define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff
2504#define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00
2505#define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01
2506#define PCI_ERMC_CLASSCODE_TYPE_BT 0x02
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508#define PCI_HP_VENDOR_ID 0x103C
2509#define PCI_MMC_DEVICE_ID 0x121A
2510#define PCI_MMC_ADDR_CW 0x10
2511
Corey Minyardb0defcd2006-03-26 01:37:20 -08002512static void ipmi_pci_cleanup(struct smi_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Corey Minyardb0defcd2006-03-26 01:37:20 -08002514 struct pci_dev *pdev = info->addr_source_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Corey Minyardb0defcd2006-03-26 01:37:20 -08002516 pci_disable_device(pdev);
2517}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002519static int ipmi_pci_probe_regspacing(struct smi_info *info)
Corey Minyarda6c16c22012-10-16 15:53:40 -05002520{
2521 if (info->si_type == SI_KCS) {
2522 unsigned char status;
2523 int regspacing;
2524
2525 info->io.regsize = DEFAULT_REGSIZE;
2526 info->io.regshift = 0;
2527 info->io_size = 2;
2528 info->handlers = &kcs_smi_handlers;
2529
2530 /* detect 1, 4, 16byte spacing */
2531 for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) {
2532 info->io.regspacing = regspacing;
2533 if (info->io_setup(info)) {
2534 dev_err(info->dev,
2535 "Could not setup I/O space\n");
2536 return DEFAULT_REGSPACING;
2537 }
2538 /* write invalid cmd */
2539 info->io.outputb(&info->io, 1, 0x10);
2540 /* read status back */
2541 status = info->io.inputb(&info->io, 1);
2542 info->io_cleanup(info);
2543 if (status)
2544 return regspacing;
2545 regspacing *= 4;
2546 }
2547 }
2548 return DEFAULT_REGSPACING;
2549}
2550
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002551static int ipmi_pci_probe(struct pci_dev *pdev,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002552 const struct pci_device_id *ent)
2553{
2554 int rv;
2555 int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK;
2556 struct smi_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002558 info = smi_info_alloc();
Corey Minyardb0defcd2006-03-26 01:37:20 -08002559 if (!info)
Dave Jones1cd441f2006-10-19 23:29:09 -07002560 return -ENOMEM;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002561
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002562 info->addr_source = SI_PCI;
Myron Stowe279fbd02010-05-26 14:43:52 -07002563 dev_info(&pdev->dev, "probing via PCI");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002564
2565 switch (class_type) {
2566 case PCI_ERMC_CLASSCODE_TYPE_SMIC:
2567 info->si_type = SI_SMIC;
2568 break;
2569
2570 case PCI_ERMC_CLASSCODE_TYPE_KCS:
2571 info->si_type = SI_KCS;
2572 break;
2573
2574 case PCI_ERMC_CLASSCODE_TYPE_BT:
2575 info->si_type = SI_BT;
2576 break;
2577
2578 default:
2579 kfree(info);
Myron Stowe279fbd02010-05-26 14:43:52 -07002580 dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type);
Dave Jones1cd441f2006-10-19 23:29:09 -07002581 return -ENOMEM;
Corey Minyarde8b33612005-09-06 15:18:45 -07002582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Corey Minyardb0defcd2006-03-26 01:37:20 -08002584 rv = pci_enable_device(pdev);
2585 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002586 dev_err(&pdev->dev, "couldn't enable PCI device\n");
Corey Minyardb0defcd2006-03-26 01:37:20 -08002587 kfree(info);
2588 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 }
2590
Corey Minyardb0defcd2006-03-26 01:37:20 -08002591 info->addr_source_cleanup = ipmi_pci_cleanup;
2592 info->addr_source_data = pdev;
2593
Corey Minyardb0defcd2006-03-26 01:37:20 -08002594 if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) {
2595 info->io_setup = port_setup;
2596 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2597 } else {
2598 info->io_setup = mem_setup;
2599 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002601 info->io.addr_data = pci_resource_start(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Corey Minyarda6c16c22012-10-16 15:53:40 -05002603 info->io.regspacing = ipmi_pci_probe_regspacing(info);
2604 info->io.regsize = DEFAULT_REGSIZE;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002605 info->io.regshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Corey Minyardb0defcd2006-03-26 01:37:20 -08002607 info->irq = pdev->irq;
2608 if (info->irq)
2609 info->irq_setup = std_irq_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Corey Minyard50c812b2006-03-26 01:37:21 -08002611 info->dev = &pdev->dev;
Corey Minyardfca3b742007-05-08 00:23:59 -07002612 pci_set_drvdata(pdev, info);
Corey Minyard50c812b2006-03-26 01:37:21 -08002613
Myron Stowe279fbd02010-05-26 14:43:52 -07002614 dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n",
2615 &pdev->resource[0], info->io.regsize, info->io.regspacing,
2616 info->irq);
2617
Corey Minyardd02b3702014-01-24 14:00:53 -06002618 rv = add_smi(info);
2619 if (rv) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002620 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002621 pci_disable_device(pdev);
2622 }
Yinghai Lu7faefea2010-08-10 18:03:10 -07002623
Corey Minyardd02b3702014-01-24 14:00:53 -06002624 return rv;
Corey Minyardb0defcd2006-03-26 01:37:20 -08002625}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Bill Pemberton39af33f2012-11-19 13:26:26 -05002627static void ipmi_pci_remove(struct pci_dev *pdev)
Corey Minyardb0defcd2006-03-26 01:37:20 -08002628{
Corey Minyardfca3b742007-05-08 00:23:59 -07002629 struct smi_info *info = pci_get_drvdata(pdev);
2630 cleanup_one_si(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002631 pci_disable_device(pdev);
Corey Minyardb0defcd2006-03-26 01:37:20 -08002632}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Corey Minyardb0defcd2006-03-26 01:37:20 -08002634static struct pci_device_id ipmi_pci_devices[] = {
2635 { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) },
Kees Cook248bdd52007-09-18 22:46:32 -07002636 { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) },
2637 { 0, }
Corey Minyardb0defcd2006-03-26 01:37:20 -08002638};
2639MODULE_DEVICE_TABLE(pci, ipmi_pci_devices);
2640
2641static struct pci_driver ipmi_pci_driver = {
Corey Minyardc305e3d2008-04-29 01:01:10 -07002642 .name = DEVICE_NAME,
2643 .id_table = ipmi_pci_devices,
2644 .probe = ipmi_pci_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002645 .remove = ipmi_pci_remove,
Corey Minyardb0defcd2006-03-26 01:37:20 -08002646};
2647#endif /* CONFIG_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Grant Likelyb1608d62011-05-18 11:19:24 -06002649static struct of_device_id ipmi_match[];
Bill Pemberton2223cbe2012-11-19 13:22:51 -05002650static int ipmi_probe(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002651{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002652#ifdef CONFIG_OF
Grant Likelyb1608d62011-05-18 11:19:24 -06002653 const struct of_device_id *match;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002654 struct smi_info *info;
2655 struct resource resource;
Rob Herringda81c3b2010-11-16 14:33:50 -06002656 const __be32 *regsize, *regspacing, *regshift;
Grant Likely61c7a082010-04-13 16:12:29 -07002657 struct device_node *np = dev->dev.of_node;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002658 int ret;
2659 int proplen;
2660
Myron Stowe279fbd02010-05-26 14:43:52 -07002661 dev_info(&dev->dev, "probing via device tree\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002662
Grant Likelyb1608d62011-05-18 11:19:24 -06002663 match = of_match_device(ipmi_match, &dev->dev);
2664 if (!match)
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002665 return -EINVAL;
2666
Benjamin Herrenschmidt08dc4162014-10-06 14:17:51 -05002667 if (!of_device_is_available(np))
2668 return -EINVAL;
2669
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002670 ret = of_address_to_resource(np, 0, &resource);
2671 if (ret) {
2672 dev_warn(&dev->dev, PFX "invalid address from OF\n");
2673 return ret;
2674 }
2675
Stephen Rothwell9c250992007-08-15 16:42:12 +10002676 regsize = of_get_property(np, "reg-size", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002677 if (regsize && proplen != 4) {
2678 dev_warn(&dev->dev, PFX "invalid regsize from OF\n");
2679 return -EINVAL;
2680 }
2681
Stephen Rothwell9c250992007-08-15 16:42:12 +10002682 regspacing = of_get_property(np, "reg-spacing", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002683 if (regspacing && proplen != 4) {
2684 dev_warn(&dev->dev, PFX "invalid regspacing from OF\n");
2685 return -EINVAL;
2686 }
2687
Stephen Rothwell9c250992007-08-15 16:42:12 +10002688 regshift = of_get_property(np, "reg-shift", &proplen);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002689 if (regshift && proplen != 4) {
2690 dev_warn(&dev->dev, PFX "invalid regshift from OF\n");
2691 return -EINVAL;
2692 }
2693
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07002694 info = smi_info_alloc();
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002695
2696 if (!info) {
2697 dev_err(&dev->dev,
Myron Stowe279fbd02010-05-26 14:43:52 -07002698 "could not allocate memory for OF probe\n");
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002699 return -ENOMEM;
2700 }
2701
Grant Likelyb1608d62011-05-18 11:19:24 -06002702 info->si_type = (enum si_type) match->data;
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07002703 info->addr_source = SI_DEVICETREE;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002704 info->irq_setup = std_irq_setup;
2705
Nate Case3b7ec112008-05-14 16:05:39 -07002706 if (resource.flags & IORESOURCE_IO) {
2707 info->io_setup = port_setup;
2708 info->io.addr_type = IPMI_IO_ADDR_SPACE;
2709 } else {
2710 info->io_setup = mem_setup;
2711 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2712 }
2713
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002714 info->io.addr_data = resource.start;
2715
Rob Herringda81c3b2010-11-16 14:33:50 -06002716 info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE;
2717 info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING;
2718 info->io.regshift = regshift ? be32_to_cpup(regshift) : 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002719
Grant Likely61c7a082010-04-13 16:12:29 -07002720 info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002721 info->dev = &dev->dev;
2722
Myron Stowe279fbd02010-05-26 14:43:52 -07002723 dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n",
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002724 info->io.addr_data, info->io.regsize, info->io.regspacing,
2725 info->irq);
2726
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002727 dev_set_drvdata(&dev->dev, info);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002728
Corey Minyardd02b3702014-01-24 14:00:53 -06002729 ret = add_smi(info);
2730 if (ret) {
Yinghai Lu7faefea2010-08-10 18:03:10 -07002731 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002732 return ret;
Yinghai Lu7faefea2010-08-10 18:03:10 -07002733 }
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002734#endif
Yinghai Lu7faefea2010-08-10 18:03:10 -07002735 return 0;
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002736}
2737
Bill Pemberton39af33f2012-11-19 13:26:26 -05002738static int ipmi_remove(struct platform_device *dev)
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002739{
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002740#ifdef CONFIG_OF
Greg Kroah-Hartman9de33df2009-05-04 12:40:54 -07002741 cleanup_one_si(dev_get_drvdata(&dev->dev));
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002742#endif
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002743 return 0;
2744}
2745
2746static struct of_device_id ipmi_match[] =
2747{
Corey Minyardc305e3d2008-04-29 01:01:10 -07002748 { .type = "ipmi", .compatible = "ipmi-kcs",
2749 .data = (void *)(unsigned long) SI_KCS },
2750 { .type = "ipmi", .compatible = "ipmi-smic",
2751 .data = (void *)(unsigned long) SI_SMIC },
2752 { .type = "ipmi", .compatible = "ipmi-bt",
2753 .data = (void *)(unsigned long) SI_BT },
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002754 {},
2755};
2756
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002757static struct platform_driver ipmi_driver = {
Grant Likely40182942010-04-13 16:13:02 -07002758 .driver = {
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002759 .name = DEVICE_NAME,
Grant Likely40182942010-04-13 16:13:02 -07002760 .owner = THIS_MODULE,
2761 .of_match_table = ipmi_match,
2762 },
Rob Herringa1e9c9d2011-02-23 15:37:59 -06002763 .probe = ipmi_probe,
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -08002764 .remove = ipmi_remove,
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002765};
Corey Minyarddba9b4f2007-05-08 00:23:51 -07002766
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002767#ifdef CONFIG_PARISC
2768static int ipmi_parisc_probe(struct parisc_device *dev)
2769{
2770 struct smi_info *info;
Geert Uytterhoevendfa19422014-01-28 20:12:35 +01002771 int rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002772
2773 info = smi_info_alloc();
2774
2775 if (!info) {
2776 dev_err(&dev->dev,
2777 "could not allocate memory for PARISC probe\n");
2778 return -ENOMEM;
2779 }
2780
2781 info->si_type = SI_KCS;
2782 info->addr_source = SI_DEVICETREE;
2783 info->io_setup = mem_setup;
2784 info->io.addr_type = IPMI_MEM_ADDR_SPACE;
2785 info->io.addr_data = dev->hpa.start;
2786 info->io.regsize = 1;
2787 info->io.regspacing = 1;
2788 info->io.regshift = 0;
2789 info->irq = 0; /* no interrupt */
2790 info->irq_setup = NULL;
2791 info->dev = &dev->dev;
2792
2793 dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data);
2794
2795 dev_set_drvdata(&dev->dev, info);
2796
Corey Minyardd02b3702014-01-24 14:00:53 -06002797 rv = add_smi(info);
2798 if (rv) {
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002799 kfree(info);
Corey Minyardd02b3702014-01-24 14:00:53 -06002800 return rv;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05002801 }
2802
2803 return 0;
2804}
2805
2806static int ipmi_parisc_remove(struct parisc_device *dev)
2807{
2808 cleanup_one_si(dev_get_drvdata(&dev->dev));
2809 return 0;
2810}
2811
2812static struct parisc_device_id ipmi_parisc_tbl[] = {
2813 { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 },
2814 { 0, }
2815};
2816
2817static struct parisc_driver ipmi_parisc_driver = {
2818 .name = "ipmi",
2819 .id_table = ipmi_parisc_tbl,
2820 .probe = ipmi_parisc_probe,
2821 .remove = ipmi_parisc_remove,
2822};
2823#endif /* CONFIG_PARISC */
2824
Corey Minyard40112ae2009-04-21 12:24:03 -07002825static int wait_for_msg_done(struct smi_info *smi_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
Corey Minyard50c812b2006-03-26 01:37:21 -08002827 enum si_sm_result smi_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829 smi_result = smi_info->handlers->event(smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002830 for (;;) {
Corey Minyardc3e7e792005-11-07 01:00:02 -08002831 if (smi_result == SI_SM_CALL_WITH_DELAY ||
2832 smi_result == SI_SM_CALL_WITH_TICK_DELAY) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002833 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 smi_result = smi_info->handlers->event(
Xie XiuQie21404d2014-01-24 14:00:52 -06002835 smi_info->si_sm, jiffies_to_usecs(1));
Corey Minyardc305e3d2008-04-29 01:01:10 -07002836 } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 smi_result = smi_info->handlers->event(
2838 smi_info->si_sm, 0);
Corey Minyardc305e3d2008-04-29 01:01:10 -07002839 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 break;
2841 }
Corey Minyard40112ae2009-04-21 12:24:03 -07002842 if (smi_result == SI_SM_HOSED)
Corey Minyardc305e3d2008-04-29 01:01:10 -07002843 /*
2844 * We couldn't get the state machine to run, so whatever's at
2845 * the port is probably not an IPMI SMI interface.
2846 */
Corey Minyard40112ae2009-04-21 12:24:03 -07002847 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Corey Minyard40112ae2009-04-21 12:24:03 -07002849 return 0;
2850}
2851
2852static int try_get_dev_id(struct smi_info *smi_info)
2853{
2854 unsigned char msg[2];
2855 unsigned char *resp;
2856 unsigned long resp_len;
2857 int rv = 0;
2858
2859 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2860 if (!resp)
2861 return -ENOMEM;
2862
2863 /*
2864 * Do a Get Device ID command, since it comes back with some
2865 * useful info.
2866 */
2867 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2868 msg[1] = IPMI_GET_DEVICE_ID_CMD;
2869 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2870
2871 rv = wait_for_msg_done(smi_info);
2872 if (rv)
2873 goto out;
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2876 resp, IPMI_MAX_MSG_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Corey Minyardd8c98612007-10-18 03:07:11 -07002878 /* Check and record info from the get device id, in case we need it. */
2879 rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881 out:
2882 kfree(resp);
2883 return rv;
2884}
2885
Corey Minyard40112ae2009-04-21 12:24:03 -07002886static int try_enable_event_buffer(struct smi_info *smi_info)
2887{
2888 unsigned char msg[3];
2889 unsigned char *resp;
2890 unsigned long resp_len;
2891 int rv = 0;
2892
2893 resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
2894 if (!resp)
2895 return -ENOMEM;
2896
2897 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2898 msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD;
2899 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
2900
2901 rv = wait_for_msg_done(smi_info);
2902 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002903 printk(KERN_WARNING PFX "Error getting response from get"
2904 " global enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002905 " enabled.\n");
2906 goto out;
2907 }
2908
2909 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2910 resp, IPMI_MAX_MSG_LENGTH);
2911
2912 if (resp_len < 4 ||
2913 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2914 resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD ||
2915 resp[2] != 0) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002916 printk(KERN_WARNING PFX "Invalid return from get global"
2917 " enables command, cannot enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002918 rv = -EINVAL;
2919 goto out;
2920 }
2921
2922 if (resp[3] & IPMI_BMC_EVT_MSG_BUFF)
2923 /* buffer is already enabled, nothing to do. */
2924 goto out;
2925
2926 msg[0] = IPMI_NETFN_APP_REQUEST << 2;
2927 msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD;
2928 msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF;
2929 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
2930
2931 rv = wait_for_msg_done(smi_info);
2932 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002933 printk(KERN_WARNING PFX "Error getting response from set"
2934 " global, enables command, the event buffer is not"
Corey Minyard40112ae2009-04-21 12:24:03 -07002935 " enabled.\n");
2936 goto out;
2937 }
2938
2939 resp_len = smi_info->handlers->get_result(smi_info->si_sm,
2940 resp, IPMI_MAX_MSG_LENGTH);
2941
2942 if (resp_len < 3 ||
2943 resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 ||
2944 resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) {
Myron Stowe279fbd02010-05-26 14:43:52 -07002945 printk(KERN_WARNING PFX "Invalid return from get global,"
2946 "enables command, not enable the event buffer.\n");
Corey Minyard40112ae2009-04-21 12:24:03 -07002947 rv = -EINVAL;
2948 goto out;
2949 }
2950
2951 if (resp[2] != 0)
2952 /*
2953 * An error when setting the event buffer bit means
2954 * that the event buffer is not supported.
2955 */
2956 rv = -ENOENT;
2957 out:
2958 kfree(resp);
2959 return rv;
2960}
2961
Alexey Dobriyan07412732011-05-26 16:25:55 -07002962static int smi_type_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
Alexey Dobriyan07412732011-05-26 16:25:55 -07002964 struct smi_info *smi = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Alexey Dobriyan07412732011-05-26 16:25:55 -07002966 return seq_printf(m, "%s\n", si_to_str[smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
2968
Alexey Dobriyan07412732011-05-26 16:25:55 -07002969static int smi_type_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Al Virod9dda782013-03-31 18:16:14 -04002971 return single_open(file, smi_type_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002972}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Alexey Dobriyan07412732011-05-26 16:25:55 -07002974static const struct file_operations smi_type_proc_ops = {
2975 .open = smi_type_proc_open,
2976 .read = seq_read,
2977 .llseek = seq_lseek,
2978 .release = single_release,
2979};
2980
2981static int smi_si_stats_proc_show(struct seq_file *m, void *v)
2982{
2983 struct smi_info *smi = m->private;
2984
2985 seq_printf(m, "interrupts_enabled: %d\n",
Corey Minyardb0defcd2006-03-26 01:37:20 -08002986 smi->irq && !smi->interrupt_disabled);
Alexey Dobriyan07412732011-05-26 16:25:55 -07002987 seq_printf(m, "short_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002988 smi_get_stat(smi, short_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002989 seq_printf(m, "long_timeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002990 smi_get_stat(smi, long_timeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002991 seq_printf(m, "idles: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002992 smi_get_stat(smi, idles));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002993 seq_printf(m, "interrupts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002994 smi_get_stat(smi, interrupts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002995 seq_printf(m, "attentions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002996 smi_get_stat(smi, attentions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002997 seq_printf(m, "flag_fetches: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07002998 smi_get_stat(smi, flag_fetches));
Alexey Dobriyan07412732011-05-26 16:25:55 -07002999 seq_printf(m, "hosed_count: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003000 smi_get_stat(smi, hosed_count));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003001 seq_printf(m, "complete_transactions: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003002 smi_get_stat(smi, complete_transactions));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003003 seq_printf(m, "events: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003004 smi_get_stat(smi, events));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003005 seq_printf(m, "watchdog_pretimeouts: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003006 smi_get_stat(smi, watchdog_pretimeouts));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003007 seq_printf(m, "incoming_messages: %u\n",
Corey Minyard64959e22008-04-29 01:01:07 -07003008 smi_get_stat(smi, incoming_messages));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003009 return 0;
Corey Minyardb361e272006-12-06 20:41:07 -08003010}
3011
Alexey Dobriyan07412732011-05-26 16:25:55 -07003012static int smi_si_stats_proc_open(struct inode *inode, struct file *file)
Corey Minyardb361e272006-12-06 20:41:07 -08003013{
Al Virod9dda782013-03-31 18:16:14 -04003014 return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003015}
Corey Minyardb361e272006-12-06 20:41:07 -08003016
Alexey Dobriyan07412732011-05-26 16:25:55 -07003017static const struct file_operations smi_si_stats_proc_ops = {
3018 .open = smi_si_stats_proc_open,
3019 .read = seq_read,
3020 .llseek = seq_lseek,
3021 .release = single_release,
3022};
3023
3024static int smi_params_proc_show(struct seq_file *m, void *v)
3025{
3026 struct smi_info *smi = m->private;
3027
3028 return seq_printf(m,
Corey Minyardb361e272006-12-06 20:41:07 -08003029 "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n",
3030 si_to_str[smi->si_type],
3031 addr_space_to_str[smi->io.addr_type],
3032 smi->io.addr_data,
3033 smi->io.regspacing,
3034 smi->io.regsize,
3035 smi->io.regshift,
3036 smi->irq,
3037 smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
3039
Alexey Dobriyan07412732011-05-26 16:25:55 -07003040static int smi_params_proc_open(struct inode *inode, struct file *file)
3041{
Al Virod9dda782013-03-31 18:16:14 -04003042 return single_open(file, smi_params_proc_show, PDE_DATA(inode));
Alexey Dobriyan07412732011-05-26 16:25:55 -07003043}
3044
3045static const struct file_operations smi_params_proc_ops = {
3046 .open = smi_params_proc_open,
3047 .read = seq_read,
3048 .llseek = seq_lseek,
3049 .release = single_release,
3050};
3051
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003052/*
3053 * oem_data_avail_to_receive_msg_avail
3054 * @info - smi_info structure with msg_flags set
3055 *
3056 * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL
3057 * Returns 1 indicating need to re-run handle_flags().
3058 */
3059static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info)
3060{
Corey Minyarde8b33612005-09-06 15:18:45 -07003061 smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) |
Corey Minyardc305e3d2008-04-29 01:01:10 -07003062 RECEIVE_MSG_AVAIL);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003063 return 1;
3064}
3065
3066/*
3067 * setup_dell_poweredge_oem_data_handler
3068 * @info - smi_info.device_id must be populated
3069 *
3070 * Systems that match, but have firmware version < 1.40 may assert
3071 * OEM0_DATA_AVAIL on their own, without being told via Set Flags that
3072 * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL
3073 * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags
3074 * as RECEIVE_MSG_AVAIL instead.
3075 *
3076 * As Dell has no plans to release IPMI 1.5 firmware that *ever*
3077 * assert the OEM[012] bits, and if it did, the driver would have to
3078 * change to handle that properly, we don't actually check for the
3079 * firmware version.
3080 * Device ID = 0x20 BMC on PowerEdge 8G servers
3081 * Device Revision = 0x80
3082 * Firmware Revision1 = 0x01 BMC version 1.40
3083 * Firmware Revision2 = 0x40 BCD encoded
3084 * IPMI Version = 0x51 IPMI 1.5
3085 * Manufacturer ID = A2 02 00 Dell IANA
3086 *
Corey Minyardd5a2b892005-11-07 00:59:58 -08003087 * Additionally, PowerEdge systems with IPMI < 1.5 may also assert
3088 * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL.
3089 *
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003090 */
3091#define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20
3092#define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80
3093#define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51
Corey Minyard50c812b2006-03-26 01:37:21 -08003094#define DELL_IANA_MFR_ID 0x0002a2
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003095static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info)
3096{
3097 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003098 if (id->manufacturer_id == DELL_IANA_MFR_ID) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003099 if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID &&
3100 id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV &&
Corey Minyard50c812b2006-03-26 01:37:21 -08003101 id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003102 smi_info->oem_data_avail_handler =
3103 oem_data_avail_to_receive_msg_avail;
Corey Minyardc305e3d2008-04-29 01:01:10 -07003104 } else if (ipmi_version_major(id) < 1 ||
3105 (ipmi_version_major(id) == 1 &&
3106 ipmi_version_minor(id) < 5)) {
Corey Minyardd5a2b892005-11-07 00:59:58 -08003107 smi_info->oem_data_avail_handler =
3108 oem_data_avail_to_receive_msg_avail;
3109 }
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003110 }
3111}
3112
Corey Minyardea940272005-11-07 00:59:59 -08003113#define CANNOT_RETURN_REQUESTED_LENGTH 0xCA
3114static void return_hosed_msg_badsize(struct smi_info *smi_info)
3115{
3116 struct ipmi_smi_msg *msg = smi_info->curr_msg;
3117
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003118 /* Make it a response */
Corey Minyardea940272005-11-07 00:59:59 -08003119 msg->rsp[0] = msg->data[0] | 4;
3120 msg->rsp[1] = msg->data[1];
3121 msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH;
3122 msg->rsp_size = 3;
3123 smi_info->curr_msg = NULL;
3124 deliver_recv_msg(smi_info, msg);
3125}
3126
3127/*
3128 * dell_poweredge_bt_xaction_handler
3129 * @info - smi_info.device_id must be populated
3130 *
3131 * Dell PowerEdge servers with the BT interface (x6xx and 1750) will
3132 * not respond to a Get SDR command if the length of the data
3133 * requested is exactly 0x3A, which leads to command timeouts and no
3134 * data returned. This intercepts such commands, and causes userspace
3135 * callers to try again with a different-sized buffer, which succeeds.
3136 */
3137
3138#define STORAGE_NETFN 0x0A
3139#define STORAGE_CMD_GET_SDR 0x23
3140static int dell_poweredge_bt_xaction_handler(struct notifier_block *self,
3141 unsigned long unused,
3142 void *in)
3143{
3144 struct smi_info *smi_info = in;
3145 unsigned char *data = smi_info->curr_msg->data;
3146 unsigned int size = smi_info->curr_msg->data_size;
3147 if (size >= 8 &&
3148 (data[0]>>2) == STORAGE_NETFN &&
3149 data[1] == STORAGE_CMD_GET_SDR &&
3150 data[7] == 0x3A) {
3151 return_hosed_msg_badsize(smi_info);
3152 return NOTIFY_STOP;
3153 }
3154 return NOTIFY_DONE;
3155}
3156
3157static struct notifier_block dell_poweredge_bt_xaction_notifier = {
3158 .notifier_call = dell_poweredge_bt_xaction_handler,
3159};
3160
3161/*
3162 * setup_dell_poweredge_bt_xaction_handler
3163 * @info - smi_info.device_id must be filled in already
3164 *
3165 * Fills in smi_info.device_id.start_transaction_pre_hook
3166 * when we know what function to use there.
3167 */
3168static void
3169setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info)
3170{
3171 struct ipmi_device_id *id = &smi_info->device_id;
Corey Minyard50c812b2006-03-26 01:37:21 -08003172 if (id->manufacturer_id == DELL_IANA_MFR_ID &&
Corey Minyardea940272005-11-07 00:59:59 -08003173 smi_info->si_type == SI_BT)
3174 register_xaction_notifier(&dell_poweredge_bt_xaction_notifier);
3175}
3176
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003177/*
3178 * setup_oem_data_handler
3179 * @info - smi_info.device_id must be filled in already
3180 *
3181 * Fills in smi_info.device_id.oem_data_available_handler
3182 * when we know what function to use there.
3183 */
3184
3185static void setup_oem_data_handler(struct smi_info *smi_info)
3186{
3187 setup_dell_poweredge_oem_data_handler(smi_info);
3188}
3189
Corey Minyardea940272005-11-07 00:59:59 -08003190static void setup_xaction_handlers(struct smi_info *smi_info)
3191{
3192 setup_dell_poweredge_bt_xaction_handler(smi_info);
3193}
3194
Corey Minyarda9a2c442005-11-07 01:00:03 -08003195static inline void wait_for_timer_and_thread(struct smi_info *smi_info)
3196{
Corey Minyardb874b982014-11-06 17:01:59 -06003197 if (smi_info->thread != NULL)
3198 kthread_stop(smi_info->thread);
3199 if (smi_info->timer_running)
Corey Minyard453823b2006-03-31 02:30:39 -08003200 del_timer_sync(&smi_info->si_timer);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003201}
3202
Bill Pemberton0bbed202012-11-19 13:24:36 -05003203static struct ipmi_default_vals
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003205 int type;
3206 int port;
Randy Dunlap74208842006-04-18 22:21:52 -07003207} ipmi_defaults[] =
Corey Minyardb0defcd2006-03-26 01:37:20 -08003208{
3209 { .type = SI_KCS, .port = 0xca2 },
3210 { .type = SI_SMIC, .port = 0xca9 },
3211 { .type = SI_BT, .port = 0xe4 },
3212 { .port = 0 }
3213};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003215static void default_find_bmc(void)
Corey Minyardb0defcd2006-03-26 01:37:20 -08003216{
3217 struct smi_info *info;
3218 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Corey Minyardb0defcd2006-03-26 01:37:20 -08003220 for (i = 0; ; i++) {
3221 if (!ipmi_defaults[i].port)
3222 break;
Kumar Gala68e1ee62008-09-22 14:41:31 -07003223#ifdef CONFIG_PPC
Christian Krafft4ff31d72007-03-05 00:30:48 -08003224 if (check_legacy_ioport(ipmi_defaults[i].port))
3225 continue;
3226#endif
Eric Dumazetde5e2dd2010-10-26 14:21:17 -07003227 info = smi_info_alloc();
Andrew Mortona09f4852008-08-20 14:09:14 -07003228 if (!info)
3229 return;
Christian Krafft4ff31d72007-03-05 00:30:48 -08003230
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003231 info->addr_source = SI_DEFAULT;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003232
3233 info->si_type = ipmi_defaults[i].type;
3234 info->io_setup = port_setup;
3235 info->io.addr_data = ipmi_defaults[i].port;
3236 info->io.addr_type = IPMI_IO_ADDR_SPACE;
3237
3238 info->io.addr = NULL;
3239 info->io.regspacing = DEFAULT_REGSPACING;
3240 info->io.regsize = DEFAULT_REGSPACING;
3241 info->io.regshift = 0;
3242
Matthew Garrett2407d772010-05-26 14:43:46 -07003243 if (add_smi(info) == 0) {
3244 if ((try_smi_init(info)) == 0) {
3245 /* Found one... */
Myron Stowe279fbd02010-05-26 14:43:52 -07003246 printk(KERN_INFO PFX "Found default %s"
Matthew Garrett2407d772010-05-26 14:43:46 -07003247 " state machine at %s address 0x%lx\n",
3248 si_to_str[info->si_type],
3249 addr_space_to_str[info->io.addr_type],
3250 info->io.addr_data);
3251 } else
3252 cleanup_one_si(info);
Yinghai Lu7faefea2010-08-10 18:03:10 -07003253 } else {
3254 kfree(info);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003255 }
3256 }
3257}
3258
3259static int is_new_interface(struct smi_info *info)
3260{
3261 struct smi_info *e;
3262
3263 list_for_each_entry(e, &smi_infos, link) {
3264 if (e->io.addr_type != info->io.addr_type)
3265 continue;
3266 if (e->io.addr_data == info->io.addr_data)
3267 return 0;
3268 }
3269
3270 return 1;
3271}
3272
Matthew Garrett2407d772010-05-26 14:43:46 -07003273static int add_smi(struct smi_info *new_smi)
3274{
3275 int rv = 0;
3276
Myron Stowe279fbd02010-05-26 14:43:52 -07003277 printk(KERN_INFO PFX "Adding %s-specified %s state machine",
Corey Minyard7e503872014-10-09 07:20:32 -05003278 ipmi_addr_src_to_str(new_smi->addr_source),
3279 si_to_str[new_smi->si_type]);
Matthew Garrett2407d772010-05-26 14:43:46 -07003280 mutex_lock(&smi_infos_lock);
3281 if (!is_new_interface(new_smi)) {
Yinghai Lu7bb671e2010-08-10 18:03:10 -07003282 printk(KERN_CONT " duplicate interface\n");
Matthew Garrett2407d772010-05-26 14:43:46 -07003283 rv = -EBUSY;
3284 goto out_err;
3285 }
3286
3287 printk(KERN_CONT "\n");
3288
3289 /* So we know not to free it unless we have allocated one. */
3290 new_smi->intf = NULL;
3291 new_smi->si_sm = NULL;
3292 new_smi->handlers = NULL;
3293
3294 list_add_tail(&new_smi->link, &smi_infos);
3295
3296out_err:
3297 mutex_unlock(&smi_infos_lock);
3298 return rv;
3299}
3300
Corey Minyardb0defcd2006-03-26 01:37:20 -08003301static int try_smi_init(struct smi_info *new_smi)
3302{
Matthew Garrett2407d772010-05-26 14:43:46 -07003303 int rv = 0;
Corey Minyard64959e22008-04-29 01:01:07 -07003304 int i;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003305
Myron Stowe279fbd02010-05-26 14:43:52 -07003306 printk(KERN_INFO PFX "Trying %s-specified %s state"
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003307 " machine at %s address 0x%lx, slave address 0x%x,"
3308 " irq %d\n",
Corey Minyard7e503872014-10-09 07:20:32 -05003309 ipmi_addr_src_to_str(new_smi->addr_source),
Matthew Garrett5fedc4a2010-05-26 14:43:45 -07003310 si_to_str[new_smi->si_type],
3311 addr_space_to_str[new_smi->io.addr_type],
3312 new_smi->io.addr_data,
3313 new_smi->slave_addr, new_smi->irq);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003314
Corey Minyardb0defcd2006-03-26 01:37:20 -08003315 switch (new_smi->si_type) {
3316 case SI_KCS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 new_smi->handlers = &kcs_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003318 break;
3319
3320 case SI_SMIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 new_smi->handlers = &smic_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003322 break;
3323
3324 case SI_BT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 new_smi->handlers = &bt_smi_handlers;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003326 break;
3327
3328 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 /* No support for anything else yet. */
3330 rv = -EIO;
3331 goto out_err;
3332 }
3333
3334 /* Allocate the state machine's data and initialize it. */
3335 new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003336 if (!new_smi->si_sm) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003337 printk(KERN_ERR PFX
3338 "Could not allocate state machine memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 rv = -ENOMEM;
3340 goto out_err;
3341 }
3342 new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm,
3343 &new_smi->io);
3344
3345 /* Now that we know the I/O size, we can set up the I/O. */
3346 rv = new_smi->io_setup(new_smi);
3347 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003348 printk(KERN_ERR PFX "Could not set up I/O space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 goto out_err;
3350 }
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 /* Do low-level detection first. */
3353 if (new_smi->handlers->detect(new_smi->si_sm)) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003354 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003355 printk(KERN_INFO PFX "Interface detection failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 rv = -ENODEV;
3357 goto out_err;
3358 }
3359
Corey Minyardc305e3d2008-04-29 01:01:10 -07003360 /*
3361 * Attempt a get device id command. If it fails, we probably
3362 * don't have a BMC here.
3363 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 rv = try_get_dev_id(new_smi);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003365 if (rv) {
3366 if (new_smi->addr_source)
Myron Stowe279fbd02010-05-26 14:43:52 -07003367 printk(KERN_INFO PFX "There appears to be no BMC"
Corey Minyardb0defcd2006-03-26 01:37:20 -08003368 " at this location\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 goto out_err;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003372 setup_oem_data_handler(new_smi);
Corey Minyardea940272005-11-07 00:59:59 -08003373 setup_xaction_handlers(new_smi);
Corey Minyard3ae0e0f2005-09-06 15:18:41 -07003374
Corey Minyardb874b982014-11-06 17:01:59 -06003375 new_smi->waiting_msg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 new_smi->curr_msg = NULL;
3377 atomic_set(&new_smi->req_events, 0);
Corey Minyard7aefac22014-04-14 09:46:56 -05003378 new_smi->run_to_completion = false;
Corey Minyard64959e22008-04-29 01:01:07 -07003379 for (i = 0; i < SI_NUM_STATS; i++)
3380 atomic_set(&new_smi->stats[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Corey Minyard7aefac22014-04-14 09:46:56 -05003382 new_smi->interrupt_disabled = true;
Corey Minyard89986492014-04-14 09:46:54 -05003383 atomic_set(&new_smi->need_watch, 0);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003384 new_smi->intf_num = smi_num;
3385 smi_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Corey Minyard40112ae2009-04-21 12:24:03 -07003387 rv = try_enable_event_buffer(new_smi);
3388 if (rv == 0)
Corey Minyard7aefac22014-04-14 09:46:56 -05003389 new_smi->has_event_buffer = true;
Corey Minyard40112ae2009-04-21 12:24:03 -07003390
Corey Minyardc305e3d2008-04-29 01:01:10 -07003391 /*
3392 * Start clearing the flags before we enable interrupts or the
3393 * timer to avoid racing with the timer.
3394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 start_clear_flags(new_smi);
3396 /* IRQ is defined to be set when non-zero. */
3397 if (new_smi->irq)
3398 new_smi->si_state = SI_CLEARING_FLAGS_THEN_SET_IRQ;
3399
Corey Minyard50c812b2006-03-26 01:37:21 -08003400 if (!new_smi->dev) {
Corey Minyardc305e3d2008-04-29 01:01:10 -07003401 /*
3402 * If we don't already have a device from something
3403 * else (like PCI), then register a new one.
3404 */
Corey Minyard50c812b2006-03-26 01:37:21 -08003405 new_smi->pdev = platform_device_alloc("ipmi_si",
3406 new_smi->intf_num);
Corey Minyard8b32b5d2009-04-21 12:24:02 -07003407 if (!new_smi->pdev) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003408 printk(KERN_ERR PFX
3409 "Unable to allocate platform device\n");
Corey Minyard453823b2006-03-31 02:30:39 -08003410 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003411 }
3412 new_smi->dev = &new_smi->pdev->dev;
Darrick J. Wongfe2d5ff2008-11-12 13:25:00 -08003413 new_smi->dev->driver = &ipmi_driver.driver;
Corey Minyard50c812b2006-03-26 01:37:21 -08003414
Zhang, Yanminb48f5452006-11-16 01:19:08 -08003415 rv = platform_device_add(new_smi->pdev);
Corey Minyard50c812b2006-03-26 01:37:21 -08003416 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003417 printk(KERN_ERR PFX
3418 "Unable to register system interface device:"
Corey Minyard50c812b2006-03-26 01:37:21 -08003419 " %d\n",
3420 rv);
Corey Minyard453823b2006-03-31 02:30:39 -08003421 goto out_err;
Corey Minyard50c812b2006-03-26 01:37:21 -08003422 }
Corey Minyard7aefac22014-04-14 09:46:56 -05003423 new_smi->dev_registered = true;
Corey Minyard50c812b2006-03-26 01:37:21 -08003424 }
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 rv = ipmi_register_smi(&handlers,
3427 new_smi,
Corey Minyard50c812b2006-03-26 01:37:21 -08003428 &new_smi->device_id,
3429 new_smi->dev,
Corey Minyard453823b2006-03-31 02:30:39 -08003430 new_smi->slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003432 dev_err(new_smi->dev, "Unable to register device: error %d\n",
3433 rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 goto out_err_stop_timer;
3435 }
3436
3437 rv = ipmi_smi_add_proc_entry(new_smi->intf, "type",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003438 &smi_type_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003439 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003441 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 goto out_err_stop_timer;
3443 }
3444
3445 rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003446 &smi_si_stats_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003447 new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003449 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 goto out_err_stop_timer;
3451 }
3452
Corey Minyardb361e272006-12-06 20:41:07 -08003453 rv = ipmi_smi_add_proc_entry(new_smi->intf, "params",
Alexey Dobriyan07412732011-05-26 16:25:55 -07003454 &smi_params_proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003455 new_smi);
Corey Minyardb361e272006-12-06 20:41:07 -08003456 if (rv) {
Myron Stowe279fbd02010-05-26 14:43:52 -07003457 dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv);
Corey Minyardb361e272006-12-06 20:41:07 -08003458 goto out_err_stop_timer;
3459 }
3460
Myron Stowe279fbd02010-05-26 14:43:52 -07003461 dev_info(new_smi->dev, "IPMI %s interface initialized\n",
3462 si_to_str[new_smi->si_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464 return 0;
3465
3466 out_err_stop_timer:
Corey Minyarda9a2c442005-11-07 01:00:03 -08003467 wait_for_timer_and_thread(new_smi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
3469 out_err:
Corey Minyard7aefac22014-04-14 09:46:56 -05003470 new_smi->interrupt_disabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Matthew Garrett2407d772010-05-26 14:43:46 -07003472 if (new_smi->intf) {
Corey Minyardb874b982014-11-06 17:01:59 -06003473 ipmi_smi_t intf = new_smi->intf;
Matthew Garrett2407d772010-05-26 14:43:46 -07003474 new_smi->intf = NULL;
Corey Minyardb874b982014-11-06 17:01:59 -06003475 ipmi_unregister_smi(intf);
Matthew Garrett2407d772010-05-26 14:43:46 -07003476 }
3477
3478 if (new_smi->irq_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003479 new_smi->irq_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003480 new_smi->irq_cleanup = NULL;
3481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Corey Minyardc305e3d2008-04-29 01:01:10 -07003483 /*
3484 * Wait until we know that we are out of any interrupt
3485 * handlers might have been running before we freed the
3486 * interrupt.
3487 */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003488 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
3490 if (new_smi->si_sm) {
3491 if (new_smi->handlers)
3492 new_smi->handlers->cleanup(new_smi->si_sm);
3493 kfree(new_smi->si_sm);
Matthew Garrett2407d772010-05-26 14:43:46 -07003494 new_smi->si_sm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003496 if (new_smi->addr_source_cleanup) {
Corey Minyardb0defcd2006-03-26 01:37:20 -08003497 new_smi->addr_source_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003498 new_smi->addr_source_cleanup = NULL;
3499 }
3500 if (new_smi->io_cleanup) {
Paolo Galtieri7767e122005-12-15 12:34:28 -08003501 new_smi->io_cleanup(new_smi);
Matthew Garrett2407d772010-05-26 14:43:46 -07003502 new_smi->io_cleanup = NULL;
3503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Matthew Garrett2407d772010-05-26 14:43:46 -07003505 if (new_smi->dev_registered) {
Corey Minyard50c812b2006-03-26 01:37:21 -08003506 platform_device_unregister(new_smi->pdev);
Corey Minyard7aefac22014-04-14 09:46:56 -05003507 new_smi->dev_registered = false;
Matthew Garrett2407d772010-05-26 14:43:46 -07003508 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return rv;
3511}
3512
Bill Pemberton2223cbe2012-11-19 13:22:51 -05003513static int init_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 int i;
3516 char *str;
Corey Minyard50c812b2006-03-26 01:37:21 -08003517 int rv;
Matthew Garrett2407d772010-05-26 14:43:46 -07003518 struct smi_info *e;
Matthew Garrett06ee4592010-05-26 14:43:49 -07003519 enum ipmi_addr_src type = SI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521 if (initialized)
3522 return 0;
3523 initialized = 1;
3524
Corey Minyardf2afae42013-02-27 17:05:13 -08003525 if (si_tryplatform) {
3526 rv = platform_driver_register(&ipmi_driver);
3527 if (rv) {
3528 printk(KERN_ERR PFX "Unable to register "
3529 "driver: %d\n", rv);
3530 return rv;
3531 }
Corey Minyard50c812b2006-03-26 01:37:21 -08003532 }
3533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 /* Parse out the si_type string into its components. */
3535 str = si_type_str;
3536 if (*str != '\0') {
Corey Minyarde8b33612005-09-06 15:18:45 -07003537 for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 si_type[i] = str;
3539 str = strchr(str, ',');
3540 if (str) {
3541 *str = '\0';
3542 str++;
3543 } else {
3544 break;
3545 }
3546 }
3547 }
3548
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003549 printk(KERN_INFO "IPMI System Interface driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003551 /* If the user gave us a device, they presumably want us to use it */
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003552 if (!hardcode_find_bmc())
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003553 return 0;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003554
Corey Minyardb0defcd2006-03-26 01:37:20 -08003555#ifdef CONFIG_PCI
Corey Minyardf2afae42013-02-27 17:05:13 -08003556 if (si_trypci) {
3557 rv = pci_register_driver(&ipmi_pci_driver);
3558 if (rv)
3559 printk(KERN_ERR PFX "Unable to register "
3560 "PCI driver: %d\n", rv);
3561 else
Corey Minyard7aefac22014-04-14 09:46:56 -05003562 pci_registered = true;
Corey Minyardf2afae42013-02-27 17:05:13 -08003563 }
Corey Minyardb0defcd2006-03-26 01:37:20 -08003564#endif
3565
Matthew Garrett754d4532010-05-26 14:43:47 -07003566#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003567 if (si_tryacpi) {
3568 pnp_register_driver(&ipmi_pnp_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003569 pnp_registered = true;
Corey Minyardd941aea2013-02-27 17:05:12 -08003570 }
Matthew Garrett754d4532010-05-26 14:43:47 -07003571#endif
3572
3573#ifdef CONFIG_DMI
Corey Minyardd941aea2013-02-27 17:05:12 -08003574 if (si_trydmi)
3575 dmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003576#endif
3577
3578#ifdef CONFIG_ACPI
Corey Minyardd941aea2013-02-27 17:05:12 -08003579 if (si_tryacpi)
3580 spmi_find_bmc();
Matthew Garrett754d4532010-05-26 14:43:47 -07003581#endif
3582
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003583#ifdef CONFIG_PARISC
3584 register_parisc_driver(&ipmi_parisc_driver);
Corey Minyard7aefac22014-04-14 09:46:56 -05003585 parisc_registered = true;
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003586 /* poking PC IO addresses will crash machine, don't do it */
3587 si_trydefaults = 0;
3588#endif
3589
Matthew Garrett06ee4592010-05-26 14:43:49 -07003590 /* We prefer devices with interrupts, but in the case of a machine
3591 with multiple BMCs we assume that there will be several instances
3592 of a given type so if we succeed in registering a type then also
3593 try to register everything else of the same type */
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003594
Matthew Garrett2407d772010-05-26 14:43:46 -07003595 mutex_lock(&smi_infos_lock);
3596 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003597 /* Try to register a device if it has an IRQ and we either
3598 haven't successfully registered a device yet or this
3599 device has the same type as one we successfully registered */
3600 if (e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003601 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003602 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003603 }
3604 }
3605 }
3606
Matthew Garrett06ee4592010-05-26 14:43:49 -07003607 /* type will only have been set if we successfully registered an si */
3608 if (type) {
3609 mutex_unlock(&smi_infos_lock);
3610 return 0;
3611 }
3612
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003613 /* Fall back to the preferred device */
3614
3615 list_for_each_entry(e, &smi_infos, link) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003616 if (!e->irq && (!type || e->addr_source == type)) {
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003617 if (!try_smi_init(e)) {
Matthew Garrett06ee4592010-05-26 14:43:49 -07003618 type = e->addr_source;
Matthew Garrettd8cc5262010-05-26 14:43:46 -07003619 }
3620 }
Matthew Garrett2407d772010-05-26 14:43:46 -07003621 }
3622 mutex_unlock(&smi_infos_lock);
3623
Matthew Garrett06ee4592010-05-26 14:43:49 -07003624 if (type)
3625 return 0;
3626
Corey Minyardb0defcd2006-03-26 01:37:20 -08003627 if (si_trydefaults) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003628 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003629 if (list_empty(&smi_infos)) {
3630 /* No BMC was found, try defaults. */
Corey Minyardd6dfd132006-03-31 02:30:41 -08003631 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003632 default_find_bmc();
Matthew Garrett2407d772010-05-26 14:43:46 -07003633 } else
Corey Minyardd6dfd132006-03-31 02:30:41 -08003634 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Corey Minyardd6dfd132006-03-31 02:30:41 -08003637 mutex_lock(&smi_infos_lock);
Corey Minyardb361e272006-12-06 20:41:07 -08003638 if (unload_when_empty && list_empty(&smi_infos)) {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003639 mutex_unlock(&smi_infos_lock);
Corey Minyardd2478522011-02-10 16:08:38 -06003640 cleanup_ipmi_si();
Myron Stowe279fbd02010-05-26 14:43:52 -07003641 printk(KERN_WARNING PFX
3642 "Unable to find any System Interface(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 return -ENODEV;
Corey Minyardb0defcd2006-03-26 01:37:20 -08003644 } else {
Corey Minyardd6dfd132006-03-31 02:30:41 -08003645 mutex_unlock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648}
3649module_init(init_ipmi_si);
3650
Corey Minyardb361e272006-12-06 20:41:07 -08003651static void cleanup_one_si(struct smi_info *to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
Matthew Garrett2407d772010-05-26 14:43:46 -07003653 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Corey Minyardb0defcd2006-03-26 01:37:20 -08003655 if (!to_clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 return;
3657
Corey Minyardb874b982014-11-06 17:01:59 -06003658 if (to_clean->intf) {
3659 ipmi_smi_t intf = to_clean->intf;
3660
3661 to_clean->intf = NULL;
3662 rv = ipmi_unregister_smi(intf);
3663 if (rv) {
3664 pr_err(PFX "Unable to unregister device: errno=%d\n",
3665 rv);
3666 }
3667 }
3668
Takao Indoh567eded2014-10-06 14:17:53 -05003669 if (to_clean->dev)
3670 dev_set_drvdata(to_clean->dev, NULL);
3671
Corey Minyardb0defcd2006-03-26 01:37:20 -08003672 list_del(&to_clean->link);
3673
Corey Minyardc305e3d2008-04-29 01:01:10 -07003674 /*
Corey Minyardb874b982014-11-06 17:01:59 -06003675 * Make sure that interrupts, the timer and the thread are
3676 * stopped and will not run again.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003677 */
Corey Minyardb874b982014-11-06 17:01:59 -06003678 if (to_clean->irq_cleanup)
3679 to_clean->irq_cleanup(to_clean);
Corey Minyarda9a2c442005-11-07 01:00:03 -08003680 wait_for_timer_and_thread(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Corey Minyardc305e3d2008-04-29 01:01:10 -07003682 /*
3683 * Timeouts are stopped, now make sure the interrupts are off
Corey Minyardb874b982014-11-06 17:01:59 -06003684 * in the BMC. Note that timers and CPU interrupts are off,
3685 * so no need for locks.
Corey Minyardc305e3d2008-04-29 01:01:10 -07003686 */
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003687 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003688 poll(to_clean);
3689 schedule_timeout_uninterruptible(1);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003690 }
3691 disable_si_irq(to_clean);
Corey Minyardee6cd5f2007-05-08 00:23:54 -07003692 while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) {
3693 poll(to_clean);
3694 schedule_timeout_uninterruptible(1);
3695 }
3696
Matthew Garrett2407d772010-05-26 14:43:46 -07003697 if (to_clean->handlers)
3698 to_clean->handlers->cleanup(to_clean->si_sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
3700 kfree(to_clean->si_sm);
3701
Corey Minyardb0defcd2006-03-26 01:37:20 -08003702 if (to_clean->addr_source_cleanup)
3703 to_clean->addr_source_cleanup(to_clean);
Paolo Galtieri7767e122005-12-15 12:34:28 -08003704 if (to_clean->io_cleanup)
3705 to_clean->io_cleanup(to_clean);
Corey Minyard50c812b2006-03-26 01:37:21 -08003706
3707 if (to_clean->dev_registered)
3708 platform_device_unregister(to_clean->pdev);
3709
3710 kfree(to_clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711}
3712
Sergey Senozhatsky0dcf3342011-03-23 16:42:54 -07003713static void cleanup_ipmi_si(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714{
Corey Minyardb0defcd2006-03-26 01:37:20 -08003715 struct smi_info *e, *tmp_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
Corey Minyardb0defcd2006-03-26 01:37:20 -08003717 if (!initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 return;
3719
Corey Minyardb0defcd2006-03-26 01:37:20 -08003720#ifdef CONFIG_PCI
Matthew Garrett56480282010-06-29 15:05:29 -07003721 if (pci_registered)
3722 pci_unregister_driver(&ipmi_pci_driver);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003723#endif
Ingo Molnar27d05672009-12-17 08:50:25 +01003724#ifdef CONFIG_ACPI
Yinghai Lu561f8182010-09-22 13:05:15 -07003725 if (pnp_registered)
3726 pnp_unregister_driver(&ipmi_pnp_driver);
Bjorn Helgaas9e368fa2009-11-17 17:05:34 -07003727#endif
Thomas Bogendoerferfdbeb7d2013-09-05 06:36:36 -05003728#ifdef CONFIG_PARISC
3729 if (parisc_registered)
3730 unregister_parisc_driver(&ipmi_parisc_driver);
3731#endif
Corey Minyardb0defcd2006-03-26 01:37:20 -08003732
Rob Herringa1e9c9d2011-02-23 15:37:59 -06003733 platform_driver_unregister(&ipmi_driver);
Corey Minyarddba9b4f2007-05-08 00:23:51 -07003734
Corey Minyardd6dfd132006-03-31 02:30:41 -08003735 mutex_lock(&smi_infos_lock);
Corey Minyardb0defcd2006-03-26 01:37:20 -08003736 list_for_each_entry_safe(e, tmp_e, &smi_infos, link)
3737 cleanup_one_si(e);
Corey Minyardd6dfd132006-03-31 02:30:41 -08003738 mutex_unlock(&smi_infos_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739}
3740module_exit(cleanup_ipmi_si);
3741
3742MODULE_LICENSE("GPL");
Corey Minyard1fdd75b2005-09-06 15:18:42 -07003743MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>");
Corey Minyardc305e3d2008-04-29 01:01:10 -07003744MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT"
3745 " system interfaces.");