Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 12 | * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/module.h> |
| 43 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/sched.h> |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 45 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #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 Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 54 | #include <linux/notifier.h> |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 55 | #include <linux/mutex.h> |
Matt Domsch | e9a705a | 2005-11-07 01:00:04 -0800 | [diff] [blame] | 56 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/interrupt.h> |
| 59 | #include <linux/rcupdate.h> |
Zhao Yakui | 16f4232 | 2010-12-08 10:10:16 +0800 | [diff] [blame] | 60 | #include <linux/ipmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/ipmi_smi.h> |
| 62 | #include <asm/io.h> |
| 63 | #include "ipmi_si_sm.h" |
Andrey Panin | b224cd3 | 2005-09-06 15:18:37 -0700 | [diff] [blame] | 64 | #include <linux/dmi.h> |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 65 | #include <linux/string.h> |
| 66 | #include <linux/ctype.h> |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 67 | #include <linux/pnp.h> |
Stephen Rothwell | 11c675c | 2008-05-23 16:22:42 +1000 | [diff] [blame] | 68 | #include <linux/of_device.h> |
| 69 | #include <linux/of_platform.h> |
Rob Herring | 672d8ea | 2010-11-16 14:33:51 -0600 | [diff] [blame] | 70 | #include <linux/of_address.h> |
| 71 | #include <linux/of_irq.h> |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 72 | |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 73 | #ifdef CONFIG_PARISC |
| 74 | #include <asm/hardware.h> /* for register_parisc_driver() stuff */ |
| 75 | #include <asm/parisc-device.h> |
| 76 | #endif |
| 77 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 78 | #define PFX "ipmi_si: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 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 Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 88 | short timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | enum si_intf_state { |
| 91 | SI_NORMAL, |
| 92 | SI_GETTING_FLAGS, |
| 93 | SI_GETTING_EVENTS, |
| 94 | SI_CLEARING_FLAGS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | SI_GETTING_MESSAGES, |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 96 | SI_CHECKING_ENABLES, |
| 97 | SI_SETTING_ENABLES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | /* FIXME - add watchdog stuff. */ |
| 99 | }; |
| 100 | |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 101 | /* Some BT-specific defines we need here. */ |
| 102 | #define IPMI_BT_INTMASK_REG 2 |
| 103 | #define IPMI_BT_INTMASK_CLEAR_IRQ_BIT 2 |
| 104 | #define IPMI_BT_INTMASK_ENABLE_IRQ_BIT 1 |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | enum si_type { |
| 107 | SI_KCS, SI_SMIC, SI_BT |
| 108 | }; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 109 | static char *si_to_str[] = { "kcs", "smic", "bt" }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 111 | #define DEVICE_NAME "ipmi_si" |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 112 | |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 113 | static struct platform_driver ipmi_driver; |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 114 | |
| 115 | /* |
| 116 | * Indexes into stats[] in smi_info below. |
| 117 | */ |
Corey Minyard | ba8ff1c | 2008-04-29 01:01:08 -0700 | [diff] [blame] | 118 | enum si_stat_indexes { |
| 119 | /* |
| 120 | * Number of times the driver requested a timer while an operation |
| 121 | * was in progress. |
| 122 | */ |
| 123 | SI_STAT_short_timeouts = 0, |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 124 | |
Corey Minyard | ba8ff1c | 2008-04-29 01:01:08 -0700 | [diff] [blame] | 125 | /* |
| 126 | * Number of times the driver requested a timer while nothing was in |
| 127 | * progress. |
| 128 | */ |
| 129 | SI_STAT_long_timeouts, |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 130 | |
Corey Minyard | ba8ff1c | 2008-04-29 01:01:08 -0700 | [diff] [blame] | 131 | /* Number of times the interface was idle while being polled. */ |
| 132 | SI_STAT_idles, |
| 133 | |
| 134 | /* Number of interrupts the driver handled. */ |
| 135 | SI_STAT_interrupts, |
| 136 | |
| 137 | /* Number of time the driver got an ATTN from the hardware. */ |
| 138 | SI_STAT_attentions, |
| 139 | |
| 140 | /* Number of times the driver requested flags from the hardware. */ |
| 141 | SI_STAT_flag_fetches, |
| 142 | |
| 143 | /* Number of times the hardware didn't follow the state machine. */ |
| 144 | SI_STAT_hosed_count, |
| 145 | |
| 146 | /* Number of completed messages. */ |
| 147 | SI_STAT_complete_transactions, |
| 148 | |
| 149 | /* Number of IPMI events received from the hardware. */ |
| 150 | SI_STAT_events, |
| 151 | |
| 152 | /* Number of watchdog pretimeouts. */ |
| 153 | SI_STAT_watchdog_pretimeouts, |
| 154 | |
Adam Buchbinder | b3834be | 2012-09-19 21:48:02 -0400 | [diff] [blame] | 155 | /* Number of asynchronous messages received. */ |
Corey Minyard | ba8ff1c | 2008-04-29 01:01:08 -0700 | [diff] [blame] | 156 | SI_STAT_incoming_messages, |
| 157 | |
| 158 | |
| 159 | /* This *must* remain last, add new values above this. */ |
| 160 | SI_NUM_STATS |
| 161 | }; |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 162 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 163 | struct smi_info { |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 164 | int intf_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | ipmi_smi_t intf; |
| 166 | struct si_sm_data *si_sm; |
| 167 | struct si_sm_handlers *handlers; |
| 168 | enum si_type si_type; |
| 169 | spinlock_t si_lock; |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 170 | struct ipmi_smi_msg *waiting_msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | struct ipmi_smi_msg *curr_msg; |
| 172 | enum si_intf_state si_state; |
| 173 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 174 | /* |
| 175 | * Used to handle the various types of I/O that can occur with |
| 176 | * IPMI |
| 177 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | struct si_sm_io io; |
| 179 | int (*io_setup)(struct smi_info *info); |
| 180 | void (*io_cleanup)(struct smi_info *info); |
| 181 | int (*irq_setup)(struct smi_info *info); |
| 182 | void (*irq_cleanup)(struct smi_info *info); |
| 183 | unsigned int io_size; |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 184 | enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 185 | void (*addr_source_cleanup)(struct smi_info *info); |
| 186 | void *addr_source_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 188 | /* |
| 189 | * Per-OEM handler, called from handle_flags(). Returns 1 |
| 190 | * when handle_flags() needs to be re-run or 0 indicating it |
| 191 | * set si_state itself. |
| 192 | */ |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 193 | int (*oem_data_avail_handler)(struct smi_info *smi_info); |
| 194 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 195 | /* |
| 196 | * Flags from the last GET_MSG_FLAGS command, used when an ATTN |
| 197 | * is set to hold the flags until we are done handling everything |
| 198 | * from the flags. |
| 199 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | #define RECEIVE_MSG_AVAIL 0x01 |
| 201 | #define EVENT_MSG_BUFFER_FULL 0x02 |
| 202 | #define WDT_PRE_TIMEOUT_INT 0x08 |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 203 | #define OEM0_DATA_AVAIL 0x20 |
| 204 | #define OEM1_DATA_AVAIL 0x40 |
| 205 | #define OEM2_DATA_AVAIL 0x80 |
| 206 | #define OEM_DATA_AVAIL (OEM0_DATA_AVAIL | \ |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 207 | OEM1_DATA_AVAIL | \ |
| 208 | OEM2_DATA_AVAIL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | unsigned char msg_flags; |
| 210 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 211 | /* Does the BMC have an event buffer? */ |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 212 | bool has_event_buffer; |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 213 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 214 | /* |
| 215 | * If set to true, this will request events the next time the |
| 216 | * state machine is idle. |
| 217 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | atomic_t req_events; |
| 219 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 220 | /* |
| 221 | * If true, run the state machine to completion on every send |
| 222 | * call. Generally used after a panic to make sure stuff goes |
| 223 | * out. |
| 224 | */ |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 225 | bool run_to_completion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | /* The I/O port of an SI interface. */ |
| 228 | int port; |
| 229 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 230 | /* |
| 231 | * The space between start addresses of the two ports. For |
| 232 | * instance, if the first port is 0xca2 and the spacing is 4, then |
| 233 | * the second port is 0xca6. |
| 234 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | unsigned int spacing; |
| 236 | |
| 237 | /* zero if no irq; */ |
| 238 | int irq; |
| 239 | |
| 240 | /* The timer for this si. */ |
| 241 | struct timer_list si_timer; |
| 242 | |
Bodo Stroesser | 48e8ac2 | 2014-04-14 09:46:51 -0500 | [diff] [blame] | 243 | /* This flag is set, if the timer is running (timer_pending() isn't enough) */ |
| 244 | bool timer_running; |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | /* The time (in jiffies) the last timeout occurred at. */ |
| 247 | unsigned long last_timeout_jiffies; |
| 248 | |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 249 | /* Are we waiting for the events, pretimeouts, received msgs? */ |
| 250 | atomic_t need_watch; |
| 251 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 252 | /* |
| 253 | * The driver will disable interrupts when it gets into a |
| 254 | * situation where it cannot handle messages due to lack of |
| 255 | * memory. Once that situation clears up, it will re-enable |
| 256 | * interrupts. |
| 257 | */ |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 258 | bool interrupt_disabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 260 | /* |
| 261 | * Does the BMC support events? |
| 262 | */ |
| 263 | bool supports_event_msg_buff; |
| 264 | |
Corey Minyard | a8df150 | 2014-11-19 11:47:17 -0600 | [diff] [blame] | 265 | /* |
| 266 | * Did we get an attention that we did not handle? |
| 267 | */ |
| 268 | bool got_attn; |
| 269 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 270 | /* From the get device id response... */ |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 271 | struct ipmi_device_id device_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 273 | /* Driver model stuff. */ |
| 274 | struct device *dev; |
| 275 | struct platform_device *pdev; |
| 276 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 277 | /* |
| 278 | * True if we allocated the device, false if it came from |
| 279 | * someplace else (like PCI). |
| 280 | */ |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 281 | bool dev_registered; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /* Slave address, could be reported from DMI. */ |
| 284 | unsigned char slave_addr; |
| 285 | |
| 286 | /* Counters and things for the proc filesystem. */ |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 287 | atomic_t stats[SI_NUM_STATS]; |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 288 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 289 | struct task_struct *thread; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 290 | |
| 291 | struct list_head link; |
Zhao Yakui | 16f4232 | 2010-12-08 10:10:16 +0800 | [diff] [blame] | 292 | union ipmi_smi_info_union addr_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | }; |
| 294 | |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 295 | #define smi_inc_stat(smi, stat) \ |
| 296 | atomic_inc(&(smi)->stats[SI_STAT_ ## stat]) |
| 297 | #define smi_get_stat(smi, stat) \ |
| 298 | ((unsigned int) atomic_read(&(smi)->stats[SI_STAT_ ## stat])) |
| 299 | |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 300 | #define SI_MAX_PARMS 4 |
| 301 | |
| 302 | static int force_kipmid[SI_MAX_PARMS]; |
| 303 | static int num_force_kipmid; |
Matthew Garrett | 5648028 | 2010-06-29 15:05:29 -0700 | [diff] [blame] | 304 | #ifdef CONFIG_PCI |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 305 | static bool pci_registered; |
Matthew Garrett | 5648028 | 2010-06-29 15:05:29 -0700 | [diff] [blame] | 306 | #endif |
Yinghai Lu | 561f818 | 2010-09-22 13:05:15 -0700 | [diff] [blame] | 307 | #ifdef CONFIG_ACPI |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 308 | static bool pnp_registered; |
Yinghai Lu | 561f818 | 2010-09-22 13:05:15 -0700 | [diff] [blame] | 309 | #endif |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 310 | #ifdef CONFIG_PARISC |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 311 | static bool parisc_registered; |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 312 | #endif |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 313 | |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 314 | static unsigned int kipmid_max_busy_us[SI_MAX_PARMS]; |
| 315 | static int num_max_busy_us; |
| 316 | |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 317 | static bool unload_when_empty = true; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 318 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 319 | static int add_smi(struct smi_info *smi); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 320 | static int try_smi_init(struct smi_info *smi); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 321 | static void cleanup_one_si(struct smi_info *to_clean); |
Corey Minyard | d247852 | 2011-02-10 16:08:38 -0600 | [diff] [blame] | 322 | static void cleanup_ipmi_si(void); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 323 | |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 324 | #ifdef DEBUG_TIMING |
| 325 | void debug_timestamp(char *msg) |
| 326 | { |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 327 | struct timespec64 t; |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 328 | |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 329 | getnstimeofday64(&t); |
| 330 | pr_debug("**%s: %lld.%9.9ld\n", msg, (long long) t.tv_sec, t.tv_nsec); |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 331 | } |
| 332 | #else |
| 333 | #define debug_timestamp(x) |
| 334 | #endif |
| 335 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 336 | static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 337 | static int register_xaction_notifier(struct notifier_block *nb) |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 338 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 339 | return atomic_notifier_chain_register(&xaction_notifier_list, nb); |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 340 | } |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | static void deliver_recv_msg(struct smi_info *smi_info, |
| 343 | struct ipmi_smi_msg *msg) |
| 344 | { |
Corey Minyard | 7adf579 | 2012-03-28 14:42:49 -0700 | [diff] [blame] | 345 | /* Deliver the message to the upper layer. */ |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 346 | if (smi_info->intf) |
| 347 | ipmi_smi_msg_received(smi_info->intf, msg); |
| 348 | else |
| 349 | ipmi_free_smi_msg(msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Corey Minyard | 4d7cbac | 2006-12-06 20:41:14 -0800 | [diff] [blame] | 352 | static void return_hosed_msg(struct smi_info *smi_info, int cCode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
| 354 | struct ipmi_smi_msg *msg = smi_info->curr_msg; |
| 355 | |
Corey Minyard | 4d7cbac | 2006-12-06 20:41:14 -0800 | [diff] [blame] | 356 | if (cCode < 0 || cCode > IPMI_ERR_UNSPECIFIED) |
| 357 | cCode = IPMI_ERR_UNSPECIFIED; |
| 358 | /* else use it as is */ |
| 359 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 360 | /* Make it a response */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | msg->rsp[0] = msg->data[0] | 4; |
| 362 | msg->rsp[1] = msg->data[1]; |
Corey Minyard | 4d7cbac | 2006-12-06 20:41:14 -0800 | [diff] [blame] | 363 | msg->rsp[2] = cCode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | msg->rsp_size = 3; |
| 365 | |
| 366 | smi_info->curr_msg = NULL; |
| 367 | deliver_recv_msg(smi_info, msg); |
| 368 | } |
| 369 | |
| 370 | static enum si_sm_result start_next_msg(struct smi_info *smi_info) |
| 371 | { |
| 372 | int rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 374 | if (!smi_info->waiting_msg) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | smi_info->curr_msg = NULL; |
| 376 | rv = SI_SM_IDLE; |
| 377 | } else { |
| 378 | int err; |
| 379 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 380 | smi_info->curr_msg = smi_info->waiting_msg; |
| 381 | smi_info->waiting_msg = NULL; |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 382 | debug_timestamp("Start2"); |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 383 | err = atomic_notifier_call_chain(&xaction_notifier_list, |
| 384 | 0, smi_info); |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 385 | if (err & NOTIFY_STOP_MASK) { |
| 386 | rv = SI_SM_CALL_WITHOUT_DELAY; |
| 387 | goto out; |
| 388 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | err = smi_info->handlers->start_transaction( |
| 390 | smi_info->si_sm, |
| 391 | smi_info->curr_msg->data, |
| 392 | smi_info->curr_msg->data_size); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 393 | if (err) |
Corey Minyard | 4d7cbac | 2006-12-06 20:41:14 -0800 | [diff] [blame] | 394 | return_hosed_msg(smi_info, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
| 396 | rv = SI_SM_CALL_WITHOUT_DELAY; |
| 397 | } |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 398 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return rv; |
| 400 | } |
| 401 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 402 | static void start_check_enables(struct smi_info *smi_info) |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 403 | { |
| 404 | unsigned char msg[2]; |
| 405 | |
| 406 | msg[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 407 | msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD; |
| 408 | |
| 409 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 410 | smi_info->si_state = SI_CHECKING_ENABLES; |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | static void start_clear_flags(struct smi_info *smi_info) |
| 414 | { |
| 415 | unsigned char msg[3]; |
| 416 | |
| 417 | /* Make sure the watchdog pre-timeout flag is not set at startup. */ |
| 418 | msg[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 419 | msg[1] = IPMI_CLEAR_MSG_FLAGS_CMD; |
| 420 | msg[2] = WDT_PRE_TIMEOUT_INT; |
| 421 | |
| 422 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3); |
| 423 | smi_info->si_state = SI_CLEARING_FLAGS; |
| 424 | } |
| 425 | |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 426 | static void start_getting_msg_queue(struct smi_info *smi_info) |
| 427 | { |
| 428 | smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 429 | smi_info->curr_msg->data[1] = IPMI_GET_MSG_CMD; |
| 430 | smi_info->curr_msg->data_size = 2; |
| 431 | |
| 432 | smi_info->handlers->start_transaction( |
| 433 | smi_info->si_sm, |
| 434 | smi_info->curr_msg->data, |
| 435 | smi_info->curr_msg->data_size); |
| 436 | smi_info->si_state = SI_GETTING_MESSAGES; |
| 437 | } |
| 438 | |
| 439 | static void start_getting_events(struct smi_info *smi_info) |
| 440 | { |
| 441 | smi_info->curr_msg->data[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 442 | smi_info->curr_msg->data[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD; |
| 443 | smi_info->curr_msg->data_size = 2; |
| 444 | |
| 445 | smi_info->handlers->start_transaction( |
| 446 | smi_info->si_sm, |
| 447 | smi_info->curr_msg->data, |
| 448 | smi_info->curr_msg->data_size); |
| 449 | smi_info->si_state = SI_GETTING_EVENTS; |
| 450 | } |
| 451 | |
Bodo Stroesser | 48e8ac2 | 2014-04-14 09:46:51 -0500 | [diff] [blame] | 452 | static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val) |
| 453 | { |
| 454 | smi_info->last_timeout_jiffies = jiffies; |
| 455 | mod_timer(&smi_info->si_timer, new_val); |
| 456 | smi_info->timer_running = true; |
| 457 | } |
| 458 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 459 | /* |
| 460 | * When we have a situtaion where we run out of memory and cannot |
| 461 | * allocate messages, we just leave them in the BMC and run the system |
| 462 | * polled until we can allocate some memory. Once we have some |
| 463 | * memory, we will re-enable the interrupt. |
| 464 | */ |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 465 | static inline bool disable_si_irq(struct smi_info *smi_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 467 | if ((smi_info->irq) && (!smi_info->interrupt_disabled)) { |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 468 | smi_info->interrupt_disabled = true; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 469 | start_check_enables(smi_info); |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 470 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 472 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 475 | static inline bool enable_si_irq(struct smi_info *smi_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { |
| 477 | if ((smi_info->irq) && (smi_info->interrupt_disabled)) { |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 478 | smi_info->interrupt_disabled = false; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 479 | start_check_enables(smi_info); |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 480 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 482 | return false; |
| 483 | } |
| 484 | |
| 485 | /* |
| 486 | * Allocate a message. If unable to allocate, start the interrupt |
| 487 | * disable process and return NULL. If able to allocate but |
| 488 | * interrupts are disabled, free the message and return NULL after |
| 489 | * starting the interrupt enable process. |
| 490 | */ |
| 491 | static struct ipmi_smi_msg *alloc_msg_handle_irq(struct smi_info *smi_info) |
| 492 | { |
| 493 | struct ipmi_smi_msg *msg; |
| 494 | |
| 495 | msg = ipmi_alloc_smi_msg(); |
| 496 | if (!msg) { |
| 497 | if (!disable_si_irq(smi_info)) |
| 498 | smi_info->si_state = SI_NORMAL; |
| 499 | } else if (enable_si_irq(smi_info)) { |
| 500 | ipmi_free_smi_msg(msg); |
| 501 | msg = NULL; |
| 502 | } |
| 503 | return msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | static void handle_flags(struct smi_info *smi_info) |
| 507 | { |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 508 | retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | if (smi_info->msg_flags & WDT_PRE_TIMEOUT_INT) { |
| 510 | /* Watchdog pre-timeout */ |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 511 | smi_inc_stat(smi_info, watchdog_pretimeouts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
| 513 | start_clear_flags(smi_info); |
| 514 | smi_info->msg_flags &= ~WDT_PRE_TIMEOUT_INT; |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 515 | if (smi_info->intf) |
| 516 | ipmi_smi_watchdog_pretimeout(smi_info->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } else if (smi_info->msg_flags & RECEIVE_MSG_AVAIL) { |
| 518 | /* Messages available. */ |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 519 | smi_info->curr_msg = alloc_msg_handle_irq(smi_info); |
| 520 | if (!smi_info->curr_msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 523 | start_getting_msg_queue(smi_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } else if (smi_info->msg_flags & EVENT_MSG_BUFFER_FULL) { |
| 525 | /* Events available. */ |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 526 | smi_info->curr_msg = alloc_msg_handle_irq(smi_info); |
| 527 | if (!smi_info->curr_msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Corey Minyard | 968bf7c | 2014-11-06 19:06:00 -0600 | [diff] [blame] | 530 | start_getting_events(smi_info); |
Corey Minyard | 4064d5e | 2006-09-16 12:15:41 -0700 | [diff] [blame] | 531 | } else if (smi_info->msg_flags & OEM_DATA_AVAIL && |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 532 | smi_info->oem_data_avail_handler) { |
Corey Minyard | 4064d5e | 2006-09-16 12:15:41 -0700 | [diff] [blame] | 533 | if (smi_info->oem_data_avail_handler(smi_info)) |
| 534 | goto retry; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 535 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | smi_info->si_state = SI_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | } |
| 538 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 539 | /* |
| 540 | * Global enables we care about. |
| 541 | */ |
| 542 | #define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \ |
| 543 | IPMI_BMC_EVT_MSG_INTR) |
| 544 | |
Corey Minyard | 95c97b5 | 2014-11-20 07:19:44 -0600 | [diff] [blame] | 545 | static u8 current_global_enables(struct smi_info *smi_info, u8 base, |
| 546 | bool *irq_on) |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 547 | { |
| 548 | u8 enables = 0; |
| 549 | |
| 550 | if (smi_info->supports_event_msg_buff) |
| 551 | enables |= IPMI_BMC_EVT_MSG_BUFF; |
| 552 | else |
| 553 | enables &= ~IPMI_BMC_EVT_MSG_BUFF; |
| 554 | |
| 555 | if (smi_info->irq && !smi_info->interrupt_disabled) |
| 556 | enables |= IPMI_BMC_RCV_MSG_INTR; |
| 557 | else |
| 558 | enables &= ~IPMI_BMC_RCV_MSG_INTR; |
| 559 | |
| 560 | if (smi_info->supports_event_msg_buff && |
| 561 | smi_info->irq && !smi_info->interrupt_disabled) |
| 562 | |
| 563 | enables |= IPMI_BMC_EVT_MSG_INTR; |
| 564 | else |
| 565 | enables &= ~IPMI_BMC_EVT_MSG_INTR; |
| 566 | |
Corey Minyard | 95c97b5 | 2014-11-20 07:19:44 -0600 | [diff] [blame] | 567 | *irq_on = enables & (IPMI_BMC_EVT_MSG_INTR | IPMI_BMC_RCV_MSG_INTR); |
| 568 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 569 | return enables; |
| 570 | } |
| 571 | |
Corey Minyard | 95c97b5 | 2014-11-20 07:19:44 -0600 | [diff] [blame] | 572 | static void check_bt_irq(struct smi_info *smi_info, bool irq_on) |
| 573 | { |
| 574 | u8 irqstate = smi_info->io.inputb(&smi_info->io, IPMI_BT_INTMASK_REG); |
| 575 | |
| 576 | irqstate &= IPMI_BT_INTMASK_ENABLE_IRQ_BIT; |
| 577 | |
| 578 | if ((bool)irqstate == irq_on) |
| 579 | return; |
| 580 | |
| 581 | if (irq_on) |
| 582 | smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, |
| 583 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT); |
| 584 | else |
| 585 | smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, 0); |
| 586 | } |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | static void handle_transaction_done(struct smi_info *smi_info) |
| 589 | { |
| 590 | struct ipmi_smi_msg *msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 592 | debug_timestamp("Done"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | switch (smi_info->si_state) { |
| 594 | case SI_NORMAL: |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 595 | if (!smi_info->curr_msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | break; |
| 597 | |
| 598 | smi_info->curr_msg->rsp_size |
| 599 | = smi_info->handlers->get_result( |
| 600 | smi_info->si_sm, |
| 601 | smi_info->curr_msg->rsp, |
| 602 | IPMI_MAX_MSG_LENGTH); |
| 603 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 604 | /* |
| 605 | * Do this here becase deliver_recv_msg() releases the |
| 606 | * lock, and a new message can be put in during the |
| 607 | * time the lock is released. |
| 608 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | msg = smi_info->curr_msg; |
| 610 | smi_info->curr_msg = NULL; |
| 611 | deliver_recv_msg(smi_info, msg); |
| 612 | break; |
| 613 | |
| 614 | case SI_GETTING_FLAGS: |
| 615 | { |
| 616 | unsigned char msg[4]; |
| 617 | unsigned int len; |
| 618 | |
| 619 | /* We got the flags from the SMI, now handle them. */ |
| 620 | len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4); |
| 621 | if (msg[2] != 0) { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 622 | /* Error fetching flags, just give up for now. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | smi_info->si_state = SI_NORMAL; |
| 624 | } else if (len < 4) { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 625 | /* |
| 626 | * Hmm, no flags. That's technically illegal, but |
| 627 | * don't use uninitialized data. |
| 628 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | smi_info->si_state = SI_NORMAL; |
| 630 | } else { |
| 631 | smi_info->msg_flags = msg[3]; |
| 632 | handle_flags(smi_info); |
| 633 | } |
| 634 | break; |
| 635 | } |
| 636 | |
| 637 | case SI_CLEARING_FLAGS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
| 639 | unsigned char msg[3]; |
| 640 | |
| 641 | /* We cleared the flags. */ |
| 642 | smi_info->handlers->get_result(smi_info->si_sm, msg, 3); |
| 643 | if (msg[2] != 0) { |
| 644 | /* Error clearing flags */ |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 645 | dev_warn(smi_info->dev, |
| 646 | "Error clearing flags: %2.2x\n", msg[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 648 | smi_info->si_state = SI_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | break; |
| 650 | } |
| 651 | |
| 652 | case SI_GETTING_EVENTS: |
| 653 | { |
| 654 | smi_info->curr_msg->rsp_size |
| 655 | = smi_info->handlers->get_result( |
| 656 | smi_info->si_sm, |
| 657 | smi_info->curr_msg->rsp, |
| 658 | IPMI_MAX_MSG_LENGTH); |
| 659 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 660 | /* |
| 661 | * Do this here becase deliver_recv_msg() releases the |
| 662 | * lock, and a new message can be put in during the |
| 663 | * time the lock is released. |
| 664 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | msg = smi_info->curr_msg; |
| 666 | smi_info->curr_msg = NULL; |
| 667 | if (msg->rsp[2] != 0) { |
| 668 | /* Error getting event, probably done. */ |
| 669 | msg->done(msg); |
| 670 | |
| 671 | /* Take off the event flag. */ |
| 672 | smi_info->msg_flags &= ~EVENT_MSG_BUFFER_FULL; |
| 673 | handle_flags(smi_info); |
| 674 | } else { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 675 | smi_inc_stat(smi_info, events); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 677 | /* |
| 678 | * Do this before we deliver the message |
| 679 | * because delivering the message releases the |
| 680 | * lock and something else can mess with the |
| 681 | * state. |
| 682 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | handle_flags(smi_info); |
| 684 | |
| 685 | deliver_recv_msg(smi_info, msg); |
| 686 | } |
| 687 | break; |
| 688 | } |
| 689 | |
| 690 | case SI_GETTING_MESSAGES: |
| 691 | { |
| 692 | smi_info->curr_msg->rsp_size |
| 693 | = smi_info->handlers->get_result( |
| 694 | smi_info->si_sm, |
| 695 | smi_info->curr_msg->rsp, |
| 696 | IPMI_MAX_MSG_LENGTH); |
| 697 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 698 | /* |
| 699 | * Do this here becase deliver_recv_msg() releases the |
| 700 | * lock, and a new message can be put in during the |
| 701 | * time the lock is released. |
| 702 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | msg = smi_info->curr_msg; |
| 704 | smi_info->curr_msg = NULL; |
| 705 | if (msg->rsp[2] != 0) { |
| 706 | /* Error getting event, probably done. */ |
| 707 | msg->done(msg); |
| 708 | |
| 709 | /* Take off the msg flag. */ |
| 710 | smi_info->msg_flags &= ~RECEIVE_MSG_AVAIL; |
| 711 | handle_flags(smi_info); |
| 712 | } else { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 713 | smi_inc_stat(smi_info, incoming_messages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 715 | /* |
| 716 | * Do this before we deliver the message |
| 717 | * because delivering the message releases the |
| 718 | * lock and something else can mess with the |
| 719 | * state. |
| 720 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | handle_flags(smi_info); |
| 722 | |
| 723 | deliver_recv_msg(smi_info, msg); |
| 724 | } |
| 725 | break; |
| 726 | } |
| 727 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 728 | case SI_CHECKING_ENABLES: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | { |
| 730 | unsigned char msg[4]; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 731 | u8 enables; |
Corey Minyard | 95c97b5 | 2014-11-20 07:19:44 -0600 | [diff] [blame] | 732 | bool irq_on; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
| 734 | /* We got the flags from the SMI, now handle them. */ |
| 735 | smi_info->handlers->get_result(smi_info->si_sm, msg, 4); |
| 736 | if (msg[2] != 0) { |
Corey Minyard | 0849bfe | 2013-05-16 14:04:26 -0500 | [diff] [blame] | 737 | dev_warn(smi_info->dev, |
| 738 | "Couldn't get irq info: %x.\n", msg[2]); |
| 739 | dev_warn(smi_info->dev, |
| 740 | "Maybe ok, but ipmi might run very slowly.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | smi_info->si_state = SI_NORMAL; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 742 | break; |
| 743 | } |
Corey Minyard | 95c97b5 | 2014-11-20 07:19:44 -0600 | [diff] [blame] | 744 | enables = current_global_enables(smi_info, 0, &irq_on); |
| 745 | if (smi_info->si_type == SI_BT) |
| 746 | /* BT has its own interrupt enable bit. */ |
| 747 | check_bt_irq(smi_info, irq_on); |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 748 | if (enables != (msg[3] & GLOBAL_ENABLES_MASK)) { |
| 749 | /* Enables are not correct, fix them. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | msg[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 751 | msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 752 | msg[2] = enables | (msg[3] & ~GLOBAL_ENABLES_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | smi_info->handlers->start_transaction( |
| 754 | smi_info->si_sm, msg, 3); |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 755 | smi_info->si_state = SI_SETTING_ENABLES; |
| 756 | } else if (smi_info->supports_event_msg_buff) { |
| 757 | smi_info->curr_msg = ipmi_alloc_smi_msg(); |
| 758 | if (!smi_info->curr_msg) { |
| 759 | smi_info->si_state = SI_NORMAL; |
| 760 | break; |
| 761 | } |
| 762 | start_getting_msg_queue(smi_info); |
| 763 | } else { |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 764 | smi_info->si_state = SI_NORMAL; |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 765 | } |
| 766 | break; |
| 767 | } |
| 768 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 769 | case SI_SETTING_ENABLES: |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 770 | { |
| 771 | unsigned char msg[4]; |
| 772 | |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 773 | smi_info->handlers->get_result(smi_info->si_sm, msg, 4); |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 774 | if (msg[2] != 0) |
| 775 | dev_warn(smi_info->dev, |
| 776 | "Could not set the global enables: 0x%x.\n", |
| 777 | msg[2]); |
| 778 | |
| 779 | if (smi_info->supports_event_msg_buff) { |
| 780 | smi_info->curr_msg = ipmi_alloc_smi_msg(); |
| 781 | if (!smi_info->curr_msg) { |
| 782 | smi_info->si_state = SI_NORMAL; |
| 783 | break; |
| 784 | } |
| 785 | start_getting_msg_queue(smi_info); |
| 786 | } else { |
| 787 | smi_info->si_state = SI_NORMAL; |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 788 | } |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 789 | break; |
| 790 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } |
| 792 | } |
| 793 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 794 | /* |
| 795 | * Called on timeouts and events. Timeouts should pass the elapsed |
| 796 | * time, interrupts should pass in zero. Must be called with |
| 797 | * si_lock held and interrupts disabled. |
| 798 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | static enum si_sm_result smi_event_handler(struct smi_info *smi_info, |
| 800 | int time) |
| 801 | { |
| 802 | enum si_sm_result si_sm_result; |
| 803 | |
| 804 | restart: |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 805 | /* |
| 806 | * There used to be a loop here that waited a little while |
| 807 | * (around 25us) before giving up. That turned out to be |
| 808 | * pointless, the minimum delays I was seeing were in the 300us |
| 809 | * range, which is far too long to wait in an interrupt. So |
| 810 | * we just run until the state machine tells us something |
| 811 | * happened or it needs a delay. |
| 812 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | si_sm_result = smi_info->handlers->event(smi_info->si_sm, time); |
| 814 | time = 0; |
| 815 | while (si_sm_result == SI_SM_CALL_WITHOUT_DELAY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 818 | if (si_sm_result == SI_SM_TRANSACTION_COMPLETE) { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 819 | smi_inc_stat(smi_info, complete_transactions); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | handle_transaction_done(smi_info); |
| 822 | si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 823 | } else if (si_sm_result == SI_SM_HOSED) { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 824 | smi_inc_stat(smi_info, hosed_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 826 | /* |
| 827 | * Do the before return_hosed_msg, because that |
| 828 | * releases the lock. |
| 829 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | smi_info->si_state = SI_NORMAL; |
| 831 | if (smi_info->curr_msg != NULL) { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 832 | /* |
| 833 | * If we were handling a user message, format |
| 834 | * a response to send to the upper layer to |
| 835 | * tell it about the error. |
| 836 | */ |
Corey Minyard | 4d7cbac | 2006-12-06 20:41:14 -0800 | [diff] [blame] | 837 | return_hosed_msg(smi_info, IPMI_ERR_UNSPECIFIED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | si_sm_result = smi_info->handlers->event(smi_info->si_sm, 0); |
| 840 | } |
| 841 | |
Corey Minyard | 4ea1842 | 2008-04-29 01:01:01 -0700 | [diff] [blame] | 842 | /* |
| 843 | * We prefer handling attn over new messages. But don't do |
| 844 | * this if there is not yet an upper layer to handle anything. |
| 845 | */ |
Corey Minyard | a8df150 | 2014-11-19 11:47:17 -0600 | [diff] [blame] | 846 | if (likely(smi_info->intf) && |
| 847 | (si_sm_result == SI_SM_ATTN || smi_info->got_attn)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | unsigned char msg[2]; |
| 849 | |
Corey Minyard | a8df150 | 2014-11-19 11:47:17 -0600 | [diff] [blame] | 850 | if (smi_info->si_state != SI_NORMAL) { |
| 851 | /* |
| 852 | * We got an ATTN, but we are doing something else. |
| 853 | * Handle the ATTN later. |
| 854 | */ |
| 855 | smi_info->got_attn = true; |
| 856 | } else { |
| 857 | smi_info->got_attn = false; |
| 858 | smi_inc_stat(smi_info, attentions); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Corey Minyard | a8df150 | 2014-11-19 11:47:17 -0600 | [diff] [blame] | 860 | /* |
| 861 | * Got a attn, send down a get message flags to see |
| 862 | * what's causing it. It would be better to handle |
| 863 | * this in the upper layer, but due to the way |
| 864 | * interrupts work with the SMI, that's not really |
| 865 | * possible. |
| 866 | */ |
| 867 | msg[0] = (IPMI_NETFN_APP_REQUEST << 2); |
| 868 | msg[1] = IPMI_GET_MSG_FLAGS_CMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
Corey Minyard | a8df150 | 2014-11-19 11:47:17 -0600 | [diff] [blame] | 870 | smi_info->handlers->start_transaction( |
| 871 | smi_info->si_sm, msg, 2); |
| 872 | smi_info->si_state = SI_GETTING_FLAGS; |
| 873 | goto restart; |
| 874 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | /* If we are currently idle, try to start the next message. */ |
| 878 | if (si_sm_result == SI_SM_IDLE) { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 879 | smi_inc_stat(smi_info, idles); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
| 881 | si_sm_result = start_next_msg(smi_info); |
| 882 | if (si_sm_result != SI_SM_IDLE) |
| 883 | goto restart; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 884 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
| 886 | if ((si_sm_result == SI_SM_IDLE) |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 887 | && (atomic_read(&smi_info->req_events))) { |
| 888 | /* |
| 889 | * We are idle and the upper layer requested that I fetch |
| 890 | * events, so do so. |
| 891 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | atomic_set(&smi_info->req_events, 0); |
Corey Minyard | 55162fb | 2006-12-06 20:41:04 -0800 | [diff] [blame] | 893 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 894 | /* |
| 895 | * Take this opportunity to check the interrupt and |
| 896 | * message enable state for the BMC. The BMC can be |
| 897 | * asynchronously reset, and may thus get interrupts |
| 898 | * disable and messages disabled. |
| 899 | */ |
| 900 | if (smi_info->supports_event_msg_buff || smi_info->irq) { |
| 901 | start_check_enables(smi_info); |
| 902 | } else { |
| 903 | smi_info->curr_msg = alloc_msg_handle_irq(smi_info); |
| 904 | if (!smi_info->curr_msg) |
| 905 | goto out; |
Corey Minyard | 55162fb | 2006-12-06 20:41:04 -0800 | [diff] [blame] | 906 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 907 | start_getting_events(smi_info); |
| 908 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | goto restart; |
| 910 | } |
Corey Minyard | 55162fb | 2006-12-06 20:41:04 -0800 | [diff] [blame] | 911 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | return si_sm_result; |
| 913 | } |
| 914 | |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 915 | static void check_start_timer_thread(struct smi_info *smi_info) |
| 916 | { |
| 917 | if (smi_info->si_state == SI_NORMAL && smi_info->curr_msg == NULL) { |
| 918 | smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES); |
| 919 | |
| 920 | if (smi_info->thread) |
| 921 | wake_up_process(smi_info->thread); |
| 922 | |
| 923 | start_next_msg(smi_info); |
| 924 | smi_event_handler(smi_info, 0); |
| 925 | } |
| 926 | } |
| 927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | static void sender(void *send_info, |
Corey Minyard | 99ab32f | 2014-11-07 07:57:31 -0600 | [diff] [blame] | 929 | struct ipmi_smi_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | { |
| 931 | struct smi_info *smi_info = send_info; |
| 932 | enum si_sm_result result; |
| 933 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 935 | BUG_ON(smi_info->waiting_msg); |
| 936 | smi_info->waiting_msg = msg; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 937 | |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 938 | debug_timestamp("Enqueue"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | if (smi_info->run_to_completion) { |
Corey Minyard | bda4c30 | 2008-04-29 01:01:02 -0700 | [diff] [blame] | 941 | /* |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 942 | * If we are running to completion, start it and run |
| 943 | * transactions until everything is clear. |
Corey Minyard | bda4c30 | 2008-04-29 01:01:02 -0700 | [diff] [blame] | 944 | */ |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 945 | smi_info->curr_msg = smi_info->waiting_msg; |
| 946 | smi_info->waiting_msg = NULL; |
Corey Minyard | bda4c30 | 2008-04-29 01:01:02 -0700 | [diff] [blame] | 947 | |
| 948 | /* |
| 949 | * Run to completion means we are single-threaded, no |
| 950 | * need for locks. |
| 951 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | result = smi_event_handler(smi_info, 0); |
| 954 | while (result != SI_SM_IDLE) { |
| 955 | udelay(SI_SHORT_TIMEOUT_USEC); |
| 956 | result = smi_event_handler(smi_info, |
| 957 | SI_SHORT_TIMEOUT_USEC); |
| 958 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
Corey Minyard | f60adf4 | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 962 | spin_lock_irqsave(&smi_info->si_lock, flags); |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 963 | check_start_timer_thread(smi_info); |
Corey Minyard | bda4c30 | 2008-04-29 01:01:02 -0700 | [diff] [blame] | 964 | spin_unlock_irqrestore(&smi_info->si_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | } |
| 966 | |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 967 | static void set_run_to_completion(void *send_info, bool i_run_to_completion) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | { |
| 969 | struct smi_info *smi_info = send_info; |
| 970 | enum si_sm_result result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
| 972 | smi_info->run_to_completion = i_run_to_completion; |
| 973 | if (i_run_to_completion) { |
| 974 | result = smi_event_handler(smi_info, 0); |
| 975 | while (result != SI_SM_IDLE) { |
| 976 | udelay(SI_SHORT_TIMEOUT_USEC); |
| 977 | result = smi_event_handler(smi_info, |
| 978 | SI_SHORT_TIMEOUT_USEC); |
| 979 | } |
| 980 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 983 | /* |
| 984 | * Use -1 in the nsec value of the busy waiting timespec to tell that |
| 985 | * we are spinning in kipmid looking for something and not delaying |
| 986 | * between checks |
| 987 | */ |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 988 | static inline void ipmi_si_set_not_busy(struct timespec64 *ts) |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 989 | { |
| 990 | ts->tv_nsec = -1; |
| 991 | } |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 992 | static inline int ipmi_si_is_busy(struct timespec64 *ts) |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 993 | { |
| 994 | return ts->tv_nsec != -1; |
| 995 | } |
| 996 | |
Arnd Bergmann | cc4cbe9 | 2014-10-06 14:17:52 -0500 | [diff] [blame] | 997 | static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result, |
| 998 | const struct smi_info *smi_info, |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 999 | struct timespec64 *busy_until) |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1000 | { |
| 1001 | unsigned int max_busy_us = 0; |
| 1002 | |
| 1003 | if (smi_info->intf_num < num_max_busy_us) |
| 1004 | max_busy_us = kipmid_max_busy_us[smi_info->intf_num]; |
| 1005 | if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY) |
| 1006 | ipmi_si_set_not_busy(busy_until); |
| 1007 | else if (!ipmi_si_is_busy(busy_until)) { |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 1008 | getnstimeofday64(busy_until); |
| 1009 | timespec64_add_ns(busy_until, max_busy_us*NSEC_PER_USEC); |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1010 | } else { |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 1011 | struct timespec64 now; |
| 1012 | |
| 1013 | getnstimeofday64(&now); |
| 1014 | if (unlikely(timespec64_compare(&now, busy_until) > 0)) { |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1015 | ipmi_si_set_not_busy(busy_until); |
| 1016 | return 0; |
| 1017 | } |
| 1018 | } |
| 1019 | return 1; |
| 1020 | } |
| 1021 | |
| 1022 | |
| 1023 | /* |
| 1024 | * A busy-waiting loop for speeding up IPMI operation. |
| 1025 | * |
| 1026 | * Lousy hardware makes this hard. This is only enabled for systems |
| 1027 | * that are not BT and do not have interrupts. It starts spinning |
| 1028 | * when an operation is complete or until max_busy tells it to stop |
| 1029 | * (if that is enabled). See the paragraph on kimid_max_busy_us in |
| 1030 | * Documentation/IPMI.txt for details. |
| 1031 | */ |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1032 | static int ipmi_thread(void *data) |
| 1033 | { |
| 1034 | struct smi_info *smi_info = data; |
Matt Domsch | e9a705a | 2005-11-07 01:00:04 -0800 | [diff] [blame] | 1035 | unsigned long flags; |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1036 | enum si_sm_result smi_result; |
John Stultz | 48862ea2 | 2015-01-07 14:24:29 -0800 | [diff] [blame^] | 1037 | struct timespec64 busy_until; |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1038 | |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1039 | ipmi_si_set_not_busy(&busy_until); |
Dongsheng Yang | 8698a74 | 2014-03-11 18:09:12 +0800 | [diff] [blame] | 1040 | set_user_nice(current, MAX_NICE); |
Matt Domsch | e9a705a | 2005-11-07 01:00:04 -0800 | [diff] [blame] | 1041 | while (!kthread_should_stop()) { |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1042 | int busy_wait; |
| 1043 | |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1044 | spin_lock_irqsave(&(smi_info->si_lock), flags); |
Corey Minyard | 8a3628d | 2006-03-31 02:30:40 -0800 | [diff] [blame] | 1045 | smi_result = smi_event_handler(smi_info, 0); |
Bodo Stroesser | 48e8ac2 | 2014-04-14 09:46:51 -0500 | [diff] [blame] | 1046 | |
| 1047 | /* |
| 1048 | * If the driver is doing something, there is a possible |
| 1049 | * race with the timer. If the timer handler see idle, |
| 1050 | * and the thread here sees something else, the timer |
| 1051 | * handler won't restart the timer even though it is |
| 1052 | * required. So start it here if necessary. |
| 1053 | */ |
| 1054 | if (smi_result != SI_SM_IDLE && !smi_info->timer_running) |
| 1055 | smi_mod_timer(smi_info, jiffies + SI_TIMEOUT_JIFFIES); |
| 1056 | |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1057 | spin_unlock_irqrestore(&(smi_info->si_lock), flags); |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1058 | busy_wait = ipmi_thread_busy_wait(smi_result, smi_info, |
| 1059 | &busy_until); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1060 | if (smi_result == SI_SM_CALL_WITHOUT_DELAY) |
| 1061 | ; /* do nothing */ |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1062 | else if (smi_result == SI_SM_CALL_WITH_DELAY && busy_wait) |
akpm@osdl.org | 3397973 | 2006-06-27 02:54:04 -0700 | [diff] [blame] | 1063 | schedule(); |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 1064 | else if (smi_result == SI_SM_IDLE) { |
| 1065 | if (atomic_read(&smi_info->need_watch)) { |
| 1066 | schedule_timeout_interruptible(100); |
| 1067 | } else { |
| 1068 | /* Wait to be woken up when we are needed. */ |
| 1069 | __set_current_state(TASK_INTERRUPTIBLE); |
| 1070 | schedule(); |
| 1071 | } |
| 1072 | } else |
Martin Wilck | 8d1f66d | 2010-06-29 15:05:31 -0700 | [diff] [blame] | 1073 | schedule_timeout_interruptible(1); |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1074 | } |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 1075 | return 0; |
| 1076 | } |
| 1077 | |
| 1078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | static void poll(void *send_info) |
| 1080 | { |
| 1081 | struct smi_info *smi_info = send_info; |
Corey Minyard | f60adf4 | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1082 | unsigned long flags = 0; |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 1083 | bool run_to_completion = smi_info->run_to_completion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
Corey Minyard | 15c62e1 | 2006-12-06 20:41:06 -0800 | [diff] [blame] | 1085 | /* |
| 1086 | * Make sure there is some delay in the poll loop so we can |
| 1087 | * drive time forward and timeout things. |
| 1088 | */ |
| 1089 | udelay(10); |
Corey Minyard | f60adf4 | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1090 | if (!run_to_completion) |
| 1091 | spin_lock_irqsave(&smi_info->si_lock, flags); |
Corey Minyard | 15c62e1 | 2006-12-06 20:41:06 -0800 | [diff] [blame] | 1092 | smi_event_handler(smi_info, 10); |
Corey Minyard | f60adf4 | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1093 | if (!run_to_completion) |
| 1094 | spin_unlock_irqrestore(&smi_info->si_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | static void request_events(void *send_info) |
| 1098 | { |
| 1099 | struct smi_info *smi_info = send_info; |
| 1100 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 1101 | if (!smi_info->has_event_buffer) |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1102 | return; |
| 1103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | atomic_set(&smi_info->req_events, 1); |
| 1105 | } |
| 1106 | |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 1107 | static void set_need_watch(void *send_info, bool enable) |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 1108 | { |
| 1109 | struct smi_info *smi_info = send_info; |
| 1110 | unsigned long flags; |
| 1111 | |
| 1112 | atomic_set(&smi_info->need_watch, enable); |
| 1113 | spin_lock_irqsave(&smi_info->si_lock, flags); |
| 1114 | check_start_timer_thread(smi_info); |
| 1115 | spin_unlock_irqrestore(&smi_info->si_lock, flags); |
| 1116 | } |
| 1117 | |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 1118 | static int initialized; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | static void smi_timeout(unsigned long data) |
| 1121 | { |
| 1122 | struct smi_info *smi_info = (struct smi_info *) data; |
| 1123 | enum si_sm_result smi_result; |
| 1124 | unsigned long flags; |
| 1125 | unsigned long jiffies_now; |
Corey Minyard | c4edff1 | 2005-11-07 00:59:56 -0800 | [diff] [blame] | 1126 | long time_diff; |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1127 | long timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | spin_lock_irqsave(&(smi_info->si_lock), flags); |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 1130 | debug_timestamp("Timer"); |
| 1131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | jiffies_now = jiffies; |
Corey Minyard | c4edff1 | 2005-11-07 00:59:56 -0800 | [diff] [blame] | 1133 | time_diff = (((long)jiffies_now - (long)smi_info->last_timeout_jiffies) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | * SI_USEC_PER_JIFFY); |
| 1135 | smi_result = smi_event_handler(smi_info, time_diff); |
| 1136 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1137 | if ((smi_info->irq) && (!smi_info->interrupt_disabled)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | /* Running with interrupts, only do long timeouts. */ |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1139 | timeout = jiffies + SI_TIMEOUT_JIFFIES; |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 1140 | smi_inc_stat(smi_info, long_timeouts); |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1141 | goto do_mod_timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1144 | /* |
| 1145 | * If the state machine asks for a short delay, then shorten |
| 1146 | * the timer timeout. |
| 1147 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | if (smi_result == SI_SM_CALL_WITH_DELAY) { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 1149 | smi_inc_stat(smi_info, short_timeouts); |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1150 | timeout = jiffies + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } else { |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 1152 | smi_inc_stat(smi_info, long_timeouts); |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1153 | timeout = jiffies + SI_TIMEOUT_JIFFIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | } |
| 1155 | |
Matthew Garrett | 3326f4f | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 1156 | do_mod_timer: |
| 1157 | if (smi_result != SI_SM_IDLE) |
Bodo Stroesser | 48e8ac2 | 2014-04-14 09:46:51 -0500 | [diff] [blame] | 1158 | smi_mod_timer(smi_info, timeout); |
| 1159 | else |
| 1160 | smi_info->timer_running = false; |
| 1161 | spin_unlock_irqrestore(&(smi_info->si_lock), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | } |
| 1163 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1164 | static irqreturn_t si_irq_handler(int irq, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | { |
| 1166 | struct smi_info *smi_info = data; |
| 1167 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
| 1169 | spin_lock_irqsave(&(smi_info->si_lock), flags); |
| 1170 | |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 1171 | smi_inc_stat(smi_info, interrupts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 1173 | debug_timestamp("Interrupt"); |
| 1174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | smi_event_handler(smi_info, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | spin_unlock_irqrestore(&(smi_info->si_lock), flags); |
| 1177 | return IRQ_HANDLED; |
| 1178 | } |
| 1179 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1180 | static irqreturn_t si_bt_irq_handler(int irq, void *data) |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1181 | { |
| 1182 | struct smi_info *smi_info = data; |
| 1183 | /* We need to clear the IRQ flag for the BT interface. */ |
| 1184 | smi_info->io.outputb(&smi_info->io, IPMI_BT_INTMASK_REG, |
| 1185 | IPMI_BT_INTMASK_CLEAR_IRQ_BIT |
| 1186 | | IPMI_BT_INTMASK_ENABLE_IRQ_BIT); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1187 | return si_irq_handler(irq, data); |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1188 | } |
| 1189 | |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1190 | static int smi_start_processing(void *send_info, |
| 1191 | ipmi_smi_t intf) |
| 1192 | { |
| 1193 | struct smi_info *new_smi = send_info; |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 1194 | int enable = 0; |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1195 | |
| 1196 | new_smi->intf = intf; |
| 1197 | |
Corey Minyard | c45adc3 | 2007-10-18 03:07:08 -0700 | [diff] [blame] | 1198 | /* Try to claim any interrupts. */ |
| 1199 | if (new_smi->irq_setup) |
| 1200 | new_smi->irq_setup(new_smi); |
| 1201 | |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1202 | /* Set up the timer that drives the interface. */ |
| 1203 | setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi); |
Bodo Stroesser | 48e8ac2 | 2014-04-14 09:46:51 -0500 | [diff] [blame] | 1204 | smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES); |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1205 | |
Corey Minyard | df3fe8d | 2006-09-30 23:28:20 -0700 | [diff] [blame] | 1206 | /* |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 1207 | * Check if the user forcefully enabled the daemon. |
| 1208 | */ |
| 1209 | if (new_smi->intf_num < num_force_kipmid) |
| 1210 | enable = force_kipmid[new_smi->intf_num]; |
| 1211 | /* |
Corey Minyard | df3fe8d | 2006-09-30 23:28:20 -0700 | [diff] [blame] | 1212 | * The BT interface is efficient enough to not need a thread, |
| 1213 | * and there is no need for a thread if we have interrupts. |
| 1214 | */ |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1215 | else if ((new_smi->si_type != SI_BT) && (!new_smi->irq)) |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 1216 | enable = 1; |
| 1217 | |
| 1218 | if (enable) { |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1219 | new_smi->thread = kthread_run(ipmi_thread, new_smi, |
| 1220 | "kipmi%d", new_smi->intf_num); |
| 1221 | if (IS_ERR(new_smi->thread)) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1222 | dev_notice(new_smi->dev, "Could not start" |
| 1223 | " kernel thread due to error %ld, only using" |
| 1224 | " timers to drive the interface\n", |
| 1225 | PTR_ERR(new_smi->thread)); |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1226 | new_smi->thread = NULL; |
| 1227 | } |
| 1228 | } |
| 1229 | |
| 1230 | return 0; |
| 1231 | } |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1232 | |
Zhao Yakui | 16f4232 | 2010-12-08 10:10:16 +0800 | [diff] [blame] | 1233 | static int get_smi_info(void *send_info, struct ipmi_smi_info *data) |
| 1234 | { |
| 1235 | struct smi_info *smi = send_info; |
| 1236 | |
| 1237 | data->addr_src = smi->addr_source; |
| 1238 | data->dev = smi->dev; |
| 1239 | data->addr_info = smi->addr_info; |
| 1240 | get_device(smi->dev); |
| 1241 | |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 1245 | static void set_maintenance_mode(void *send_info, bool enable) |
Corey Minyard | b967513 | 2006-12-06 20:41:02 -0800 | [diff] [blame] | 1246 | { |
| 1247 | struct smi_info *smi_info = send_info; |
| 1248 | |
| 1249 | if (!enable) |
| 1250 | atomic_set(&smi_info->req_events, 0); |
| 1251 | } |
| 1252 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1253 | static struct ipmi_smi_handlers handlers = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | .owner = THIS_MODULE, |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 1255 | .start_processing = smi_start_processing, |
Zhao Yakui | 16f4232 | 2010-12-08 10:10:16 +0800 | [diff] [blame] | 1256 | .get_smi_info = get_smi_info, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | .sender = sender, |
| 1258 | .request_events = request_events, |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 1259 | .set_need_watch = set_need_watch, |
Corey Minyard | b967513 | 2006-12-06 20:41:02 -0800 | [diff] [blame] | 1260 | .set_maintenance_mode = set_maintenance_mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | .set_run_to_completion = set_run_to_completion, |
| 1262 | .poll = poll, |
| 1263 | }; |
| 1264 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1265 | /* |
| 1266 | * There can be 4 IO ports passed in (with or without IRQs), 4 addresses, |
| 1267 | * a default IO port, and 1 ACPI/SPMI address. That sets SI_MAX_DRIVERS. |
| 1268 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1270 | static LIST_HEAD(smi_infos); |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 1271 | static DEFINE_MUTEX(smi_infos_lock); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1272 | static int smi_num; /* Used to sequence the SMIs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | #define DEFAULT_REGSPACING 1 |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 1275 | #define DEFAULT_REGSIZE 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 1277 | #ifdef CONFIG_ACPI |
| 1278 | static bool si_tryacpi = 1; |
| 1279 | #endif |
| 1280 | #ifdef CONFIG_DMI |
| 1281 | static bool si_trydmi = 1; |
| 1282 | #endif |
Corey Minyard | f2afae4 | 2013-02-27 17:05:13 -0800 | [diff] [blame] | 1283 | static bool si_tryplatform = 1; |
| 1284 | #ifdef CONFIG_PCI |
| 1285 | static bool si_trypci = 1; |
| 1286 | #endif |
Corey Minyard | 0dfe6e7 | 2014-04-14 09:46:53 -0500 | [diff] [blame] | 1287 | static bool si_trydefaults = IS_ENABLED(CONFIG_IPMI_SI_PROBE_DEFAULTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | static char *si_type[SI_MAX_PARMS]; |
| 1289 | #define MAX_SI_TYPE_STR 30 |
| 1290 | static char si_type_str[MAX_SI_TYPE_STR]; |
| 1291 | static unsigned long addrs[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1292 | static unsigned int num_addrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | static unsigned int ports[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1294 | static unsigned int num_ports; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | static int irqs[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1296 | static unsigned int num_irqs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | static int regspacings[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1298 | static unsigned int num_regspacings; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | static int regsizes[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1300 | static unsigned int num_regsizes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | static int regshifts[SI_MAX_PARMS]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1302 | static unsigned int num_regshifts; |
Bela Lubkin | 2f95d51 | 2010-03-10 15:23:07 -0800 | [diff] [blame] | 1303 | static int slave_addrs[SI_MAX_PARMS]; /* Leaving 0 chooses the default value */ |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1304 | static unsigned int num_slave_addrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1306 | #define IPMI_IO_ADDR_SPACE 0 |
| 1307 | #define IPMI_MEM_ADDR_SPACE 1 |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1308 | static char *addr_space_to_str[] = { "i/o", "mem" }; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1309 | |
| 1310 | static int hotmod_handler(const char *val, struct kernel_param *kp); |
| 1311 | |
| 1312 | module_param_call(hotmod, hotmod_handler, NULL, NULL, 0200); |
| 1313 | MODULE_PARM_DESC(hotmod, "Add and remove interfaces. See" |
| 1314 | " Documentation/IPMI.txt in the kernel sources for the" |
| 1315 | " gory details."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 1317 | #ifdef CONFIG_ACPI |
| 1318 | module_param_named(tryacpi, si_tryacpi, bool, 0); |
| 1319 | MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the" |
| 1320 | " default scan of the interfaces identified via ACPI"); |
| 1321 | #endif |
| 1322 | #ifdef CONFIG_DMI |
| 1323 | module_param_named(trydmi, si_trydmi, bool, 0); |
| 1324 | MODULE_PARM_DESC(trydmi, "Setting this to zero will disable the" |
| 1325 | " default scan of the interfaces identified via DMI"); |
| 1326 | #endif |
Corey Minyard | f2afae4 | 2013-02-27 17:05:13 -0800 | [diff] [blame] | 1327 | module_param_named(tryplatform, si_tryplatform, bool, 0); |
| 1328 | MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the" |
| 1329 | " default scan of the interfaces identified via platform" |
| 1330 | " interfaces like openfirmware"); |
| 1331 | #ifdef CONFIG_PCI |
| 1332 | module_param_named(trypci, si_trypci, bool, 0); |
| 1333 | MODULE_PARM_DESC(tryacpi, "Setting this to zero will disable the" |
| 1334 | " default scan of the interfaces identified via pci"); |
| 1335 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | module_param_named(trydefaults, si_trydefaults, bool, 0); |
| 1337 | MODULE_PARM_DESC(trydefaults, "Setting this to 'false' will disable the" |
| 1338 | " default scan of the KCS and SMIC interface at the standard" |
| 1339 | " address"); |
| 1340 | module_param_string(type, si_type_str, MAX_SI_TYPE_STR, 0); |
| 1341 | MODULE_PARM_DESC(type, "Defines the type of each interface, each" |
| 1342 | " interface separated by commas. The types are 'kcs'," |
| 1343 | " 'smic', and 'bt'. For example si_type=kcs,bt will set" |
| 1344 | " the first interface to kcs and the second to bt"); |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1345 | module_param_array(addrs, ulong, &num_addrs, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | MODULE_PARM_DESC(addrs, "Sets the memory address of each interface, the" |
| 1347 | " addresses separated by commas. Only use if an interface" |
| 1348 | " is in memory. Otherwise, set it to zero or leave" |
| 1349 | " it blank."); |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 1350 | module_param_array(ports, uint, &num_ports, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | MODULE_PARM_DESC(ports, "Sets the port address of each interface, the" |
| 1352 | " addresses separated by commas. Only use if an interface" |
| 1353 | " is a port. Otherwise, set it to zero or leave" |
| 1354 | " it blank."); |
| 1355 | module_param_array(irqs, int, &num_irqs, 0); |
| 1356 | MODULE_PARM_DESC(irqs, "Sets the interrupt of each interface, the" |
| 1357 | " addresses separated by commas. Only use if an interface" |
| 1358 | " has an interrupt. Otherwise, set it to zero or leave" |
| 1359 | " it blank."); |
| 1360 | module_param_array(regspacings, int, &num_regspacings, 0); |
| 1361 | MODULE_PARM_DESC(regspacings, "The number of bytes between the start address" |
| 1362 | " and each successive register used by the interface. For" |
| 1363 | " instance, if the start address is 0xca2 and the spacing" |
| 1364 | " is 2, then the second address is at 0xca4. Defaults" |
| 1365 | " to 1."); |
| 1366 | module_param_array(regsizes, int, &num_regsizes, 0); |
| 1367 | MODULE_PARM_DESC(regsizes, "The size of the specific IPMI register in bytes." |
| 1368 | " This should generally be 1, 2, 4, or 8 for an 8-bit," |
| 1369 | " 16-bit, 32-bit, or 64-bit register. Use this if you" |
| 1370 | " the 8-bit IPMI register has to be read from a larger" |
| 1371 | " register."); |
| 1372 | module_param_array(regshifts, int, &num_regshifts, 0); |
| 1373 | MODULE_PARM_DESC(regshifts, "The amount to shift the data read from the." |
| 1374 | " IPMI register, in bits. For instance, if the data" |
| 1375 | " is read from a 32-bit word and the IPMI data is in" |
| 1376 | " bit 8-15, then the shift would be 8"); |
| 1377 | module_param_array(slave_addrs, int, &num_slave_addrs, 0); |
| 1378 | MODULE_PARM_DESC(slave_addrs, "Set the default IPMB slave address for" |
| 1379 | " the controller. Normally this is 0x20, but can be" |
| 1380 | " overridden by this parm. This is an array indexed" |
| 1381 | " by interface number."); |
Corey Minyard | a51f4a8 | 2006-10-03 01:13:59 -0700 | [diff] [blame] | 1382 | module_param_array(force_kipmid, int, &num_force_kipmid, 0); |
| 1383 | MODULE_PARM_DESC(force_kipmid, "Force the kipmi daemon to be enabled (1) or" |
| 1384 | " disabled(0). Normally the IPMI driver auto-detects" |
| 1385 | " this, but the value may be overridden by this parm."); |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 1386 | module_param(unload_when_empty, bool, 0); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1387 | MODULE_PARM_DESC(unload_when_empty, "Unload the module if no interfaces are" |
| 1388 | " specified or found, default is 1. Setting to 0" |
| 1389 | " is useful for hot add of devices using hotmod."); |
Martin Wilck | ae74e82 | 2010-03-10 15:23:06 -0800 | [diff] [blame] | 1390 | module_param_array(kipmid_max_busy_us, uint, &num_max_busy_us, 0644); |
| 1391 | MODULE_PARM_DESC(kipmid_max_busy_us, |
| 1392 | "Max time (in microseconds) to busy-wait for IPMI data before" |
| 1393 | " sleeping. 0 (default) means to wait forever. Set to 100-500" |
| 1394 | " if kipmid is using up a lot of CPU time."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | |
| 1396 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1397 | static void std_irq_cleanup(struct smi_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1399 | if (info->si_type == SI_BT) |
| 1400 | /* Disable the interrupt in the BT interface. */ |
| 1401 | info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, 0); |
| 1402 | free_irq(info->irq, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | |
| 1405 | static int std_irq_setup(struct smi_info *info) |
| 1406 | { |
| 1407 | int rv; |
| 1408 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1409 | if (!info->irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | return 0; |
| 1411 | |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1412 | if (info->si_type == SI_BT) { |
| 1413 | rv = request_irq(info->irq, |
| 1414 | si_bt_irq_handler, |
Michael Opdenacker | aa5b2ba | 2014-01-24 14:00:50 -0600 | [diff] [blame] | 1415 | IRQF_SHARED, |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1416 | DEVICE_NAME, |
| 1417 | info); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1418 | if (!rv) |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1419 | /* Enable the interrupt in the BT interface. */ |
| 1420 | info->io.outputb(&info->io, IPMI_BT_INTMASK_REG, |
| 1421 | IPMI_BT_INTMASK_ENABLE_IRQ_BIT); |
| 1422 | } else |
| 1423 | rv = request_irq(info->irq, |
| 1424 | si_irq_handler, |
Michael Opdenacker | aa5b2ba | 2014-01-24 14:00:50 -0600 | [diff] [blame] | 1425 | IRQF_SHARED, |
Corey Minyard | 9dbf68f | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 1426 | DEVICE_NAME, |
| 1427 | info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1429 | dev_warn(info->dev, "%s unable to claim interrupt %d," |
| 1430 | " running polled\n", |
| 1431 | DEVICE_NAME, info->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | info->irq = 0; |
| 1433 | } else { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1434 | info->irq_cleanup = std_irq_cleanup; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1435 | dev_info(info->dev, "Using irq %d\n", info->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } |
| 1437 | |
| 1438 | return rv; |
| 1439 | } |
| 1440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | static unsigned char port_inb(struct si_sm_io *io, unsigned int offset) |
| 1442 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1443 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1445 | return inb(addr + (offset * io->regspacing)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | static void port_outb(struct si_sm_io *io, unsigned int offset, |
| 1449 | unsigned char b) |
| 1450 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1451 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1453 | outb(b, addr + (offset * io->regspacing)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | static unsigned char port_inw(struct si_sm_io *io, unsigned int offset) |
| 1457 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1458 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1460 | return (inw(addr + (offset * io->regspacing)) >> io->regshift) & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | } |
| 1462 | |
| 1463 | static void port_outw(struct si_sm_io *io, unsigned int offset, |
| 1464 | unsigned char b) |
| 1465 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1466 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1468 | outw(b << io->regshift, addr + (offset * io->regspacing)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | } |
| 1470 | |
| 1471 | static unsigned char port_inl(struct si_sm_io *io, unsigned int offset) |
| 1472 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1473 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1475 | return (inl(addr + (offset * io->regspacing)) >> io->regshift) & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | static void port_outl(struct si_sm_io *io, unsigned int offset, |
| 1479 | unsigned char b) |
| 1480 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1481 | unsigned int addr = io->addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1483 | outl(b << io->regshift, addr+(offset * io->regspacing)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | } |
| 1485 | |
| 1486 | static void port_cleanup(struct smi_info *info) |
| 1487 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1488 | unsigned int addr = info->io.addr_data; |
Corey Minyard | d61a3ea | 2006-05-30 21:25:57 -0700 | [diff] [blame] | 1489 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1491 | if (addr) { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1492 | for (idx = 0; idx < info->io_size; idx++) |
Corey Minyard | d61a3ea | 2006-05-30 21:25:57 -0700 | [diff] [blame] | 1493 | release_region(addr + idx * info->io.regspacing, |
| 1494 | info->io.regsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | static int port_setup(struct smi_info *info) |
| 1499 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1500 | unsigned int addr = info->io.addr_data; |
Corey Minyard | d61a3ea | 2006-05-30 21:25:57 -0700 | [diff] [blame] | 1501 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1503 | if (!addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | return -ENODEV; |
| 1505 | |
| 1506 | info->io_cleanup = port_cleanup; |
| 1507 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1508 | /* |
| 1509 | * Figure out the actual inb/inw/inl/etc routine to use based |
| 1510 | * upon the register size. |
| 1511 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | switch (info->io.regsize) { |
| 1513 | case 1: |
| 1514 | info->io.inputb = port_inb; |
| 1515 | info->io.outputb = port_outb; |
| 1516 | break; |
| 1517 | case 2: |
| 1518 | info->io.inputb = port_inw; |
| 1519 | info->io.outputb = port_outw; |
| 1520 | break; |
| 1521 | case 4: |
| 1522 | info->io.inputb = port_inl; |
| 1523 | info->io.outputb = port_outl; |
| 1524 | break; |
| 1525 | default: |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1526 | dev_warn(info->dev, "Invalid register size: %d\n", |
| 1527 | info->io.regsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | return -EINVAL; |
| 1529 | } |
| 1530 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1531 | /* |
| 1532 | * Some BIOSes reserve disjoint I/O regions in their ACPI |
Corey Minyard | d61a3ea | 2006-05-30 21:25:57 -0700 | [diff] [blame] | 1533 | * tables. This causes problems when trying to register the |
| 1534 | * entire I/O region. Therefore we must register each I/O |
| 1535 | * port separately. |
| 1536 | */ |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1537 | for (idx = 0; idx < info->io_size; idx++) { |
Corey Minyard | d61a3ea | 2006-05-30 21:25:57 -0700 | [diff] [blame] | 1538 | if (request_region(addr + idx * info->io.regspacing, |
| 1539 | info->io.regsize, DEVICE_NAME) == NULL) { |
| 1540 | /* Undo allocations */ |
| 1541 | while (idx--) { |
| 1542 | release_region(addr + idx * info->io.regspacing, |
| 1543 | info->io.regsize); |
| 1544 | } |
| 1545 | return -EIO; |
| 1546 | } |
| 1547 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | return 0; |
| 1549 | } |
| 1550 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1551 | static unsigned char intf_mem_inb(struct si_sm_io *io, unsigned int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | { |
| 1553 | return readb((io->addr)+(offset * io->regspacing)); |
| 1554 | } |
| 1555 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1556 | static void intf_mem_outb(struct si_sm_io *io, unsigned int offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | unsigned char b) |
| 1558 | { |
| 1559 | writeb(b, (io->addr)+(offset * io->regspacing)); |
| 1560 | } |
| 1561 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1562 | static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | { |
| 1564 | return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift) |
Alexey Dobriyan | 64d9fe6 | 2006-11-08 17:44:56 -0800 | [diff] [blame] | 1565 | & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | } |
| 1567 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1568 | static void intf_mem_outw(struct si_sm_io *io, unsigned int offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | unsigned char b) |
| 1570 | { |
| 1571 | writeb(b << io->regshift, (io->addr)+(offset * io->regspacing)); |
| 1572 | } |
| 1573 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1574 | static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | { |
| 1576 | return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift) |
Alexey Dobriyan | 64d9fe6 | 2006-11-08 17:44:56 -0800 | [diff] [blame] | 1577 | & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | } |
| 1579 | |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1580 | static void intf_mem_outl(struct si_sm_io *io, unsigned int offset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | unsigned char b) |
| 1582 | { |
| 1583 | writel(b << io->regshift, (io->addr)+(offset * io->regspacing)); |
| 1584 | } |
| 1585 | |
| 1586 | #ifdef readq |
| 1587 | static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset) |
| 1588 | { |
| 1589 | return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift) |
Alexey Dobriyan | 64d9fe6 | 2006-11-08 17:44:56 -0800 | [diff] [blame] | 1590 | & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | static void mem_outq(struct si_sm_io *io, unsigned int offset, |
| 1594 | unsigned char b) |
| 1595 | { |
| 1596 | writeq(b << io->regshift, (io->addr)+(offset * io->regspacing)); |
| 1597 | } |
| 1598 | #endif |
| 1599 | |
| 1600 | static void mem_cleanup(struct smi_info *info) |
| 1601 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1602 | unsigned long addr = info->io.addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | int mapsize; |
| 1604 | |
| 1605 | if (info->io.addr) { |
| 1606 | iounmap(info->io.addr); |
| 1607 | |
| 1608 | mapsize = ((info->io_size * info->io.regspacing) |
| 1609 | - (info->io.regspacing - info->io.regsize)); |
| 1610 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1611 | release_mem_region(addr, mapsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | } |
| 1614 | |
| 1615 | static int mem_setup(struct smi_info *info) |
| 1616 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1617 | unsigned long addr = info->io.addr_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | int mapsize; |
| 1619 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1620 | if (!addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | return -ENODEV; |
| 1622 | |
| 1623 | info->io_cleanup = mem_cleanup; |
| 1624 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1625 | /* |
| 1626 | * Figure out the actual readb/readw/readl/etc routine to use based |
| 1627 | * upon the register size. |
| 1628 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | switch (info->io.regsize) { |
| 1630 | case 1: |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1631 | info->io.inputb = intf_mem_inb; |
| 1632 | info->io.outputb = intf_mem_outb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | break; |
| 1634 | case 2: |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1635 | info->io.inputb = intf_mem_inw; |
| 1636 | info->io.outputb = intf_mem_outw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | break; |
| 1638 | case 4: |
Alexey Dobriyan | 546cfdf | 2006-02-03 03:04:40 -0800 | [diff] [blame] | 1639 | info->io.inputb = intf_mem_inl; |
| 1640 | info->io.outputb = intf_mem_outl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | break; |
| 1642 | #ifdef readq |
| 1643 | case 8: |
| 1644 | info->io.inputb = mem_inq; |
| 1645 | info->io.outputb = mem_outq; |
| 1646 | break; |
| 1647 | #endif |
| 1648 | default: |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1649 | dev_warn(info->dev, "Invalid register size: %d\n", |
| 1650 | info->io.regsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | return -EINVAL; |
| 1652 | } |
| 1653 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1654 | /* |
| 1655 | * Calculate the total amount of memory to claim. This is an |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | * unusual looking calculation, but it avoids claiming any |
| 1657 | * more memory than it has to. It will claim everything |
| 1658 | * between the first address to the end of the last full |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 1659 | * register. |
| 1660 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | mapsize = ((info->io_size * info->io.regspacing) |
| 1662 | - (info->io.regspacing - info->io.regsize)); |
| 1663 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1664 | if (request_mem_region(addr, mapsize, DEVICE_NAME) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | return -EIO; |
| 1666 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1667 | info->io.addr = ioremap(addr, mapsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | if (info->io.addr == NULL) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1669 | release_mem_region(addr, mapsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | return -EIO; |
| 1671 | } |
| 1672 | return 0; |
| 1673 | } |
| 1674 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1675 | /* |
| 1676 | * Parms come in as <op1>[:op2[:op3...]]. ops are: |
| 1677 | * add|remove,kcs|bt|smic,mem|i/o,<address>[,<opt1>[,<opt2>[,...]]] |
| 1678 | * Options are: |
| 1679 | * rsp=<regspacing> |
| 1680 | * rsi=<regsize> |
| 1681 | * rsh=<regshift> |
| 1682 | * irq=<irq> |
| 1683 | * ipmb=<ipmb addr> |
| 1684 | */ |
| 1685 | enum hotmod_op { HM_ADD, HM_REMOVE }; |
| 1686 | struct hotmod_vals { |
| 1687 | char *name; |
| 1688 | int val; |
| 1689 | }; |
| 1690 | static struct hotmod_vals hotmod_ops[] = { |
| 1691 | { "add", HM_ADD }, |
| 1692 | { "remove", HM_REMOVE }, |
| 1693 | { NULL } |
| 1694 | }; |
| 1695 | static struct hotmod_vals hotmod_si[] = { |
| 1696 | { "kcs", SI_KCS }, |
| 1697 | { "smic", SI_SMIC }, |
| 1698 | { "bt", SI_BT }, |
| 1699 | { NULL } |
| 1700 | }; |
| 1701 | static struct hotmod_vals hotmod_as[] = { |
| 1702 | { "mem", IPMI_MEM_ADDR_SPACE }, |
| 1703 | { "i/o", IPMI_IO_ADDR_SPACE }, |
| 1704 | { NULL } |
| 1705 | }; |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1706 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1707 | static int parse_str(struct hotmod_vals *v, int *val, char *name, char **curr) |
| 1708 | { |
| 1709 | char *s; |
| 1710 | int i; |
| 1711 | |
| 1712 | s = strchr(*curr, ','); |
| 1713 | if (!s) { |
| 1714 | printk(KERN_WARNING PFX "No hotmod %s given.\n", name); |
| 1715 | return -EINVAL; |
| 1716 | } |
| 1717 | *s = '\0'; |
| 1718 | s++; |
Corey Minyard | ceb51ca | 2014-10-10 17:45:45 -0500 | [diff] [blame] | 1719 | for (i = 0; v[i].name; i++) { |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1720 | if (strcmp(*curr, v[i].name) == 0) { |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1721 | *val = v[i].val; |
| 1722 | *curr = s; |
| 1723 | return 0; |
| 1724 | } |
| 1725 | } |
| 1726 | |
| 1727 | printk(KERN_WARNING PFX "Invalid hotmod %s '%s'\n", name, *curr); |
| 1728 | return -EINVAL; |
| 1729 | } |
| 1730 | |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1731 | static int check_hotmod_int_op(const char *curr, const char *option, |
| 1732 | const char *name, int *val) |
| 1733 | { |
| 1734 | char *n; |
| 1735 | |
| 1736 | if (strcmp(curr, name) == 0) { |
| 1737 | if (!option) { |
| 1738 | printk(KERN_WARNING PFX |
| 1739 | "No option given for '%s'\n", |
| 1740 | curr); |
| 1741 | return -EINVAL; |
| 1742 | } |
| 1743 | *val = simple_strtoul(option, &n, 0); |
| 1744 | if ((*n != '\0') || (*option == '\0')) { |
| 1745 | printk(KERN_WARNING PFX |
| 1746 | "Bad option given for '%s'\n", |
| 1747 | curr); |
| 1748 | return -EINVAL; |
| 1749 | } |
| 1750 | return 1; |
| 1751 | } |
| 1752 | return 0; |
| 1753 | } |
| 1754 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 1755 | static struct smi_info *smi_info_alloc(void) |
| 1756 | { |
| 1757 | struct smi_info *info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 1758 | |
Corey Minyard | f60adf4 | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1759 | if (info) |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 1760 | spin_lock_init(&info->si_lock); |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 1761 | return info; |
| 1762 | } |
| 1763 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1764 | static int hotmod_handler(const char *val, struct kernel_param *kp) |
| 1765 | { |
| 1766 | char *str = kstrdup(val, GFP_KERNEL); |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1767 | int rv; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1768 | char *next, *curr, *s, *n, *o; |
| 1769 | enum hotmod_op op; |
| 1770 | enum si_type si_type; |
| 1771 | int addr_space; |
| 1772 | unsigned long addr; |
| 1773 | int regspacing; |
| 1774 | int regsize; |
| 1775 | int regshift; |
| 1776 | int irq; |
| 1777 | int ipmb; |
| 1778 | int ival; |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1779 | int len; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1780 | struct smi_info *info; |
| 1781 | |
| 1782 | if (!str) |
| 1783 | return -ENOMEM; |
| 1784 | |
| 1785 | /* Kill any trailing spaces, as we can get a "\n" from echo. */ |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1786 | len = strlen(str); |
| 1787 | ival = len - 1; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1788 | while ((ival >= 0) && isspace(str[ival])) { |
| 1789 | str[ival] = '\0'; |
| 1790 | ival--; |
| 1791 | } |
| 1792 | |
| 1793 | for (curr = str; curr; curr = next) { |
| 1794 | regspacing = 1; |
| 1795 | regsize = 1; |
| 1796 | regshift = 0; |
| 1797 | irq = 0; |
Bela Lubkin | 2f95d51 | 2010-03-10 15:23:07 -0800 | [diff] [blame] | 1798 | ipmb = 0; /* Choose the default if not specified */ |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1799 | |
| 1800 | next = strchr(curr, ':'); |
| 1801 | if (next) { |
| 1802 | *next = '\0'; |
| 1803 | next++; |
| 1804 | } |
| 1805 | |
| 1806 | rv = parse_str(hotmod_ops, &ival, "operation", &curr); |
| 1807 | if (rv) |
| 1808 | break; |
| 1809 | op = ival; |
| 1810 | |
| 1811 | rv = parse_str(hotmod_si, &ival, "interface type", &curr); |
| 1812 | if (rv) |
| 1813 | break; |
| 1814 | si_type = ival; |
| 1815 | |
| 1816 | rv = parse_str(hotmod_as, &addr_space, "address space", &curr); |
| 1817 | if (rv) |
| 1818 | break; |
| 1819 | |
| 1820 | s = strchr(curr, ','); |
| 1821 | if (s) { |
| 1822 | *s = '\0'; |
| 1823 | s++; |
| 1824 | } |
| 1825 | addr = simple_strtoul(curr, &n, 0); |
| 1826 | if ((*n != '\0') || (*curr == '\0')) { |
| 1827 | printk(KERN_WARNING PFX "Invalid hotmod address" |
| 1828 | " '%s'\n", curr); |
| 1829 | break; |
| 1830 | } |
| 1831 | |
| 1832 | while (s) { |
| 1833 | curr = s; |
| 1834 | s = strchr(curr, ','); |
| 1835 | if (s) { |
| 1836 | *s = '\0'; |
| 1837 | s++; |
| 1838 | } |
| 1839 | o = strchr(curr, '='); |
| 1840 | if (o) { |
| 1841 | *o = '\0'; |
| 1842 | o++; |
| 1843 | } |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1844 | rv = check_hotmod_int_op(curr, o, "rsp", ®spacing); |
| 1845 | if (rv < 0) |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1846 | goto out; |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1847 | else if (rv) |
| 1848 | continue; |
| 1849 | rv = check_hotmod_int_op(curr, o, "rsi", ®size); |
| 1850 | if (rv < 0) |
| 1851 | goto out; |
| 1852 | else if (rv) |
| 1853 | continue; |
| 1854 | rv = check_hotmod_int_op(curr, o, "rsh", ®shift); |
| 1855 | if (rv < 0) |
| 1856 | goto out; |
| 1857 | else if (rv) |
| 1858 | continue; |
| 1859 | rv = check_hotmod_int_op(curr, o, "irq", &irq); |
| 1860 | if (rv < 0) |
| 1861 | goto out; |
| 1862 | else if (rv) |
| 1863 | continue; |
| 1864 | rv = check_hotmod_int_op(curr, o, "ipmb", &ipmb); |
| 1865 | if (rv < 0) |
| 1866 | goto out; |
| 1867 | else if (rv) |
| 1868 | continue; |
| 1869 | |
| 1870 | rv = -EINVAL; |
| 1871 | printk(KERN_WARNING PFX |
| 1872 | "Invalid hotmod option '%s'\n", |
| 1873 | curr); |
| 1874 | goto out; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1875 | } |
| 1876 | |
| 1877 | if (op == HM_ADD) { |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 1878 | info = smi_info_alloc(); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1879 | if (!info) { |
| 1880 | rv = -ENOMEM; |
| 1881 | goto out; |
| 1882 | } |
| 1883 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 1884 | info->addr_source = SI_HOTMOD; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1885 | info->si_type = si_type; |
| 1886 | info->io.addr_data = addr; |
| 1887 | info->io.addr_type = addr_space; |
| 1888 | if (addr_space == IPMI_MEM_ADDR_SPACE) |
| 1889 | info->io_setup = mem_setup; |
| 1890 | else |
| 1891 | info->io_setup = port_setup; |
| 1892 | |
| 1893 | info->io.addr = NULL; |
| 1894 | info->io.regspacing = regspacing; |
| 1895 | if (!info->io.regspacing) |
| 1896 | info->io.regspacing = DEFAULT_REGSPACING; |
| 1897 | info->io.regsize = regsize; |
| 1898 | if (!info->io.regsize) |
| 1899 | info->io.regsize = DEFAULT_REGSPACING; |
| 1900 | info->io.regshift = regshift; |
| 1901 | info->irq = irq; |
| 1902 | if (info->irq) |
| 1903 | info->irq_setup = std_irq_setup; |
| 1904 | info->slave_addr = ipmb; |
| 1905 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 1906 | rv = add_smi(info); |
| 1907 | if (rv) { |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 1908 | kfree(info); |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 1909 | goto out; |
| 1910 | } |
| 1911 | rv = try_smi_init(info); |
| 1912 | if (rv) { |
| 1913 | cleanup_one_si(info); |
| 1914 | goto out; |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 1915 | } |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1916 | } else { |
| 1917 | /* remove */ |
| 1918 | struct smi_info *e, *tmp_e; |
| 1919 | |
| 1920 | mutex_lock(&smi_infos_lock); |
| 1921 | list_for_each_entry_safe(e, tmp_e, &smi_infos, link) { |
| 1922 | if (e->io.addr_type != addr_space) |
| 1923 | continue; |
| 1924 | if (e->si_type != si_type) |
| 1925 | continue; |
| 1926 | if (e->io.addr_data == addr) |
| 1927 | cleanup_one_si(e); |
| 1928 | } |
| 1929 | mutex_unlock(&smi_infos_lock); |
| 1930 | } |
| 1931 | } |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1932 | rv = len; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 1933 | out: |
| 1934 | kfree(str); |
| 1935 | return rv; |
| 1936 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1937 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 1938 | static int hardcode_find_bmc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | { |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 1940 | int ret = -ENODEV; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1941 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | struct smi_info *info; |
| 1943 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1944 | for (i = 0; i < SI_MAX_PARMS; i++) { |
| 1945 | if (!ports[i] && !addrs[i]) |
| 1946 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 1948 | info = smi_info_alloc(); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1949 | if (!info) |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 1950 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 1952 | info->addr_source = SI_HARDCODED; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1953 | printk(KERN_INFO PFX "probing via hardcoded address\n"); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1954 | |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1955 | if (!si_type[i] || strcmp(si_type[i], "kcs") == 0) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1956 | info->si_type = SI_KCS; |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1957 | } else if (strcmp(si_type[i], "smic") == 0) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1958 | info->si_type = SI_SMIC; |
Corey Minyard | 1d5636c | 2006-12-10 02:19:08 -0800 | [diff] [blame] | 1959 | } else if (strcmp(si_type[i], "bt") == 0) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1960 | info->si_type = SI_BT; |
| 1961 | } else { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1962 | printk(KERN_WARNING PFX "Interface type specified " |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1963 | "for interface %d, was invalid: %s\n", |
| 1964 | i, si_type[i]); |
| 1965 | kfree(info); |
| 1966 | continue; |
| 1967 | } |
| 1968 | |
| 1969 | if (ports[i]) { |
| 1970 | /* An I/O port */ |
| 1971 | info->io_setup = port_setup; |
| 1972 | info->io.addr_data = ports[i]; |
| 1973 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
| 1974 | } else if (addrs[i]) { |
| 1975 | /* A memory port */ |
| 1976 | info->io_setup = mem_setup; |
| 1977 | info->io.addr_data = addrs[i]; |
| 1978 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
| 1979 | } else { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 1980 | printk(KERN_WARNING PFX "Interface type specified " |
| 1981 | "for interface %d, but port and address were " |
| 1982 | "not set or set to zero.\n", i); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1983 | kfree(info); |
| 1984 | continue; |
| 1985 | } |
| 1986 | |
| 1987 | info->io.addr = NULL; |
| 1988 | info->io.regspacing = regspacings[i]; |
| 1989 | if (!info->io.regspacing) |
| 1990 | info->io.regspacing = DEFAULT_REGSPACING; |
| 1991 | info->io.regsize = regsizes[i]; |
| 1992 | if (!info->io.regsize) |
| 1993 | info->io.regsize = DEFAULT_REGSPACING; |
| 1994 | info->io.regshift = regshifts[i]; |
| 1995 | info->irq = irqs[i]; |
| 1996 | if (info->irq) |
| 1997 | info->irq_setup = std_irq_setup; |
Bela Lubkin | 2f95d51 | 2010-03-10 15:23:07 -0800 | [diff] [blame] | 1998 | info->slave_addr = slave_addrs[i]; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 1999 | |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2000 | if (!add_smi(info)) { |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 2001 | if (try_smi_init(info)) |
| 2002 | cleanup_one_si(info); |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2003 | ret = 0; |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2004 | } else { |
| 2005 | kfree(info); |
| 2006 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | } |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2008 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | } |
| 2010 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 2011 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | |
| 2013 | #include <linux/acpi.h> |
| 2014 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2015 | /* |
| 2016 | * Once we get an ACPI failure, we don't try any more, because we go |
| 2017 | * through the tables sequentially. Once we don't find a table, there |
| 2018 | * are no more. |
| 2019 | */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 2020 | static int acpi_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | |
| 2022 | /* For GPE-type interrupts. */ |
Lin Ming | 8b6cd8a | 2010-12-13 13:38:46 +0800 | [diff] [blame] | 2023 | static u32 ipmi_acpi_gpe(acpi_handle gpe_device, |
| 2024 | u32 gpe_number, void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | { |
| 2026 | struct smi_info *smi_info = context; |
| 2027 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | |
| 2029 | spin_lock_irqsave(&(smi_info->si_lock), flags); |
| 2030 | |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 2031 | smi_inc_stat(smi_info, interrupts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | |
John Stultz | f93aae9 | 2015-01-07 14:24:28 -0800 | [diff] [blame] | 2033 | debug_timestamp("ACPI_GPE"); |
| 2034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | smi_event_handler(smi_info, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | spin_unlock_irqrestore(&(smi_info->si_lock), flags); |
| 2037 | |
| 2038 | return ACPI_INTERRUPT_HANDLED; |
| 2039 | } |
| 2040 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2041 | static void acpi_gpe_irq_cleanup(struct smi_info *info) |
| 2042 | { |
| 2043 | if (!info->irq) |
| 2044 | return; |
| 2045 | |
| 2046 | acpi_remove_gpe_handler(NULL, info->irq, &ipmi_acpi_gpe); |
| 2047 | } |
| 2048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | static int acpi_gpe_irq_setup(struct smi_info *info) |
| 2050 | { |
| 2051 | acpi_status status; |
| 2052 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2053 | if (!info->irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | return 0; |
| 2055 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | status = acpi_install_gpe_handler(NULL, |
| 2057 | info->irq, |
| 2058 | ACPI_GPE_LEVEL_TRIGGERED, |
| 2059 | &ipmi_acpi_gpe, |
| 2060 | info); |
| 2061 | if (status != AE_OK) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2062 | dev_warn(info->dev, "%s unable to claim ACPI GPE %d," |
| 2063 | " running polled\n", DEVICE_NAME, info->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | info->irq = 0; |
| 2065 | return -EINVAL; |
| 2066 | } else { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2067 | info->irq_cleanup = acpi_gpe_irq_cleanup; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2068 | dev_info(info->dev, "Using ACPI GPE %d\n", info->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | return 0; |
| 2070 | } |
| 2071 | } |
| 2072 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | /* |
| 2074 | * Defined at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 2075 | * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | */ |
| 2077 | struct SPMITable { |
| 2078 | s8 Signature[4]; |
| 2079 | u32 Length; |
| 2080 | u8 Revision; |
| 2081 | u8 Checksum; |
| 2082 | s8 OEMID[6]; |
| 2083 | s8 OEMTableID[8]; |
| 2084 | s8 OEMRevision[4]; |
| 2085 | s8 CreatorID[4]; |
| 2086 | s8 CreatorRevision[4]; |
| 2087 | u8 InterfaceType; |
| 2088 | u8 IPMIlegacy; |
| 2089 | s16 SpecificationRevision; |
| 2090 | |
| 2091 | /* |
| 2092 | * Bit 0 - SCI interrupt supported |
| 2093 | * Bit 1 - I/O APIC/SAPIC |
| 2094 | */ |
| 2095 | u8 InterruptType; |
| 2096 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2097 | /* |
| 2098 | * If bit 0 of InterruptType is set, then this is the SCI |
| 2099 | * interrupt in the GPEx_STS register. |
| 2100 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | u8 GPE; |
| 2102 | |
| 2103 | s16 Reserved; |
| 2104 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2105 | /* |
| 2106 | * If bit 1 of InterruptType is set, then this is the I/O |
| 2107 | * APIC/SAPIC interrupt. |
| 2108 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | u32 GlobalSystemInterrupt; |
| 2110 | |
| 2111 | /* The actual register address. */ |
| 2112 | struct acpi_generic_address addr; |
| 2113 | |
| 2114 | u8 UID[4]; |
| 2115 | |
| 2116 | s8 spmi_id[1]; /* A '\0' terminated array starts here. */ |
| 2117 | }; |
| 2118 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2119 | static int try_init_spmi(struct SPMITable *spmi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | { |
| 2121 | struct smi_info *info; |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2122 | int rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | if (spmi->IPMIlegacy != 1) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2125 | printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy); |
| 2126 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | } |
| 2128 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 2129 | info = smi_info_alloc(); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2130 | if (!info) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2131 | printk(KERN_ERR PFX "Could not allocate SI data (3)\n"); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2132 | return -ENOMEM; |
| 2133 | } |
| 2134 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 2135 | info->addr_source = SI_SPMI; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2136 | printk(KERN_INFO PFX "probing via SPMI\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | /* Figure out the interface type. */ |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2139 | switch (spmi->InterfaceType) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | case 1: /* KCS */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2141 | info->si_type = SI_KCS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | case 2: /* SMIC */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2144 | info->si_type = SI_SMIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | case 3: /* BT */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2147 | info->si_type = SI_BT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | break; |
Corey Minyard | ab42bf2 | 2014-10-09 07:12:08 -0500 | [diff] [blame] | 2149 | case 4: /* SSIF, just ignore */ |
| 2150 | kfree(info); |
| 2151 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | default: |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2153 | printk(KERN_INFO PFX "Unknown ACPI/SPMI SI type %d\n", |
| 2154 | spmi->InterfaceType); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2155 | kfree(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | return -EIO; |
| 2157 | } |
| 2158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | if (spmi->InterruptType & 1) { |
| 2160 | /* We've got a GPE interrupt. */ |
| 2161 | info->irq = spmi->GPE; |
| 2162 | info->irq_setup = acpi_gpe_irq_setup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | } else if (spmi->InterruptType & 2) { |
| 2164 | /* We've got an APIC/SAPIC interrupt. */ |
| 2165 | info->irq = spmi->GlobalSystemInterrupt; |
| 2166 | info->irq_setup = std_irq_setup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | } else { |
| 2168 | /* Use the default interrupt setting. */ |
| 2169 | info->irq = 0; |
| 2170 | info->irq_setup = NULL; |
| 2171 | } |
| 2172 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2173 | if (spmi->addr.bit_width) { |
Corey Minyard | 35bc37a | 2005-05-01 08:59:10 -0700 | [diff] [blame] | 2174 | /* A (hopefully) properly formed register bit width. */ |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2175 | info->io.regspacing = spmi->addr.bit_width / 8; |
Corey Minyard | 35bc37a | 2005-05-01 08:59:10 -0700 | [diff] [blame] | 2176 | } else { |
Corey Minyard | 35bc37a | 2005-05-01 08:59:10 -0700 | [diff] [blame] | 2177 | info->io.regspacing = DEFAULT_REGSPACING; |
| 2178 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2179 | info->io.regsize = info->io.regspacing; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2180 | info->io.regshift = spmi->addr.bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2182 | if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | info->io_setup = mem_setup; |
Corey Minyard | 8fe1425 | 2007-05-12 10:36:58 -0700 | [diff] [blame] | 2184 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2185 | } else if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_IO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | info->io_setup = port_setup; |
Corey Minyard | 8fe1425 | 2007-05-12 10:36:58 -0700 | [diff] [blame] | 2187 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | } else { |
| 2189 | kfree(info); |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2190 | printk(KERN_WARNING PFX "Unknown ACPI I/O Address type\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | return -EIO; |
| 2192 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2193 | info->io.addr_data = spmi->addr.address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | |
Yinghai Lu | 7bb671e | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2195 | pr_info("ipmi_si: SPMI: %s %#lx regsize %d spacing %d irq %d\n", |
| 2196 | (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem", |
| 2197 | info->io.addr_data, info->io.regsize, info->io.regspacing, |
| 2198 | info->irq); |
| 2199 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2200 | rv = add_smi(info); |
| 2201 | if (rv) |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2202 | kfree(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2204 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2206 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2207 | static void spmi_find_bmc(void) |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2208 | { |
| 2209 | acpi_status status; |
| 2210 | struct SPMITable *spmi; |
| 2211 | int i; |
| 2212 | |
| 2213 | if (acpi_disabled) |
| 2214 | return; |
| 2215 | |
| 2216 | if (acpi_failure) |
| 2217 | return; |
| 2218 | |
| 2219 | for (i = 0; ; i++) { |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 2220 | status = acpi_get_table(ACPI_SIG_SPMI, i+1, |
| 2221 | (struct acpi_table_header **)&spmi); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2222 | if (status != AE_OK) |
| 2223 | return; |
| 2224 | |
Bjorn Helgaas | 18a3e0b | 2009-11-17 17:05:29 -0700 | [diff] [blame] | 2225 | try_init_spmi(spmi); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2226 | } |
| 2227 | } |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2228 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2229 | static int ipmi_pnp_probe(struct pnp_dev *dev, |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2230 | const struct pnp_device_id *dev_id) |
| 2231 | { |
| 2232 | struct acpi_device *acpi_dev; |
| 2233 | struct smi_info *info; |
Yinghai Lu | a9e3176 | 2010-09-22 13:04:53 -0700 | [diff] [blame] | 2234 | struct resource *res, *res_second; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2235 | acpi_handle handle; |
| 2236 | acpi_status status; |
| 2237 | unsigned long long tmp; |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2238 | int rv; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2239 | |
| 2240 | acpi_dev = pnp_acpi_device(dev); |
| 2241 | if (!acpi_dev) |
| 2242 | return -ENODEV; |
| 2243 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 2244 | info = smi_info_alloc(); |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2245 | if (!info) |
| 2246 | return -ENOMEM; |
| 2247 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 2248 | info->addr_source = SI_ACPI; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2249 | printk(KERN_INFO PFX "probing via ACPI\n"); |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2250 | |
| 2251 | handle = acpi_dev->handle; |
Zhao Yakui | 16f4232 | 2010-12-08 10:10:16 +0800 | [diff] [blame] | 2252 | info->addr_info.acpi_info.acpi_handle = handle; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2253 | |
| 2254 | /* _IFT tells us the interface type: KCS, BT, etc */ |
| 2255 | status = acpi_evaluate_integer(handle, "_IFT", NULL, &tmp); |
| 2256 | if (ACPI_FAILURE(status)) |
| 2257 | goto err_free; |
| 2258 | |
| 2259 | switch (tmp) { |
| 2260 | case 1: |
| 2261 | info->si_type = SI_KCS; |
| 2262 | break; |
| 2263 | case 2: |
| 2264 | info->si_type = SI_SMIC; |
| 2265 | break; |
| 2266 | case 3: |
| 2267 | info->si_type = SI_BT; |
| 2268 | break; |
Corey Minyard | ab42bf2 | 2014-10-09 07:12:08 -0500 | [diff] [blame] | 2269 | case 4: /* SSIF, just ignore */ |
| 2270 | goto err_free; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2271 | default: |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2272 | dev_info(&dev->dev, "unknown IPMI type %lld\n", tmp); |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2273 | goto err_free; |
| 2274 | } |
| 2275 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2276 | res = pnp_get_resource(dev, IORESOURCE_IO, 0); |
| 2277 | if (res) { |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2278 | info->io_setup = port_setup; |
| 2279 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2280 | } else { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2281 | res = pnp_get_resource(dev, IORESOURCE_MEM, 0); |
| 2282 | if (res) { |
| 2283 | info->io_setup = mem_setup; |
| 2284 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
| 2285 | } |
| 2286 | } |
| 2287 | if (!res) { |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2288 | dev_err(&dev->dev, "no I/O or memory address\n"); |
| 2289 | goto err_free; |
| 2290 | } |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2291 | info->io.addr_data = res->start; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2292 | |
| 2293 | info->io.regspacing = DEFAULT_REGSPACING; |
Yinghai Lu | a9e3176 | 2010-09-22 13:04:53 -0700 | [diff] [blame] | 2294 | res_second = pnp_get_resource(dev, |
Yinghai Lu | d9e1b6c | 2010-08-09 17:18:22 -0700 | [diff] [blame] | 2295 | (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? |
| 2296 | IORESOURCE_IO : IORESOURCE_MEM, |
| 2297 | 1); |
Yinghai Lu | a9e3176 | 2010-09-22 13:04:53 -0700 | [diff] [blame] | 2298 | if (res_second) { |
| 2299 | if (res_second->start > info->io.addr_data) |
| 2300 | info->io.regspacing = res_second->start - info->io.addr_data; |
Yinghai Lu | d9e1b6c | 2010-08-09 17:18:22 -0700 | [diff] [blame] | 2301 | } |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2302 | info->io.regsize = DEFAULT_REGSPACING; |
| 2303 | info->io.regshift = 0; |
| 2304 | |
| 2305 | /* If _GPE exists, use it; otherwise use standard interrupts */ |
| 2306 | status = acpi_evaluate_integer(handle, "_GPE", NULL, &tmp); |
| 2307 | if (ACPI_SUCCESS(status)) { |
| 2308 | info->irq = tmp; |
| 2309 | info->irq_setup = acpi_gpe_irq_setup; |
| 2310 | } else if (pnp_irq_valid(dev, 0)) { |
| 2311 | info->irq = pnp_irq(dev, 0); |
| 2312 | info->irq_setup = std_irq_setup; |
| 2313 | } |
| 2314 | |
Myron Stowe | 8c8eae2 | 2010-05-26 14:43:51 -0700 | [diff] [blame] | 2315 | info->dev = &dev->dev; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2316 | pnp_set_drvdata(dev, info); |
| 2317 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2318 | dev_info(info->dev, "%pR regsize %d spacing %d irq %d\n", |
| 2319 | res, info->io.regsize, info->io.regspacing, |
| 2320 | info->irq); |
| 2321 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2322 | rv = add_smi(info); |
| 2323 | if (rv) |
| 2324 | kfree(info); |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2325 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2326 | return rv; |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2327 | |
| 2328 | err_free: |
| 2329 | kfree(info); |
| 2330 | return -EINVAL; |
| 2331 | } |
| 2332 | |
Bill Pemberton | 39af33f | 2012-11-19 13:26:26 -0500 | [diff] [blame] | 2333 | static void ipmi_pnp_remove(struct pnp_dev *dev) |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2334 | { |
| 2335 | struct smi_info *info = pnp_get_drvdata(dev); |
| 2336 | |
| 2337 | cleanup_one_si(info); |
| 2338 | } |
| 2339 | |
| 2340 | static const struct pnp_device_id pnp_dev_table[] = { |
| 2341 | {"IPI0001", 0}, |
| 2342 | {"", 0}, |
| 2343 | }; |
| 2344 | |
| 2345 | static struct pnp_driver ipmi_pnp_driver = { |
| 2346 | .name = DEVICE_NAME, |
| 2347 | .probe = ipmi_pnp_probe, |
Greg Kroah-Hartman | bcd2982 | 2012-12-21 15:12:08 -0800 | [diff] [blame] | 2348 | .remove = ipmi_pnp_remove, |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 2349 | .id_table = pnp_dev_table, |
| 2350 | }; |
Jordan_Hargrave@Dell.com | a798e2d | 2013-09-05 06:36:35 -0500 | [diff] [blame] | 2351 | |
| 2352 | MODULE_DEVICE_TABLE(pnp, pnp_dev_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | #endif |
| 2354 | |
Matt Domsch | a9fad4c | 2006-01-11 12:17:44 -0800 | [diff] [blame] | 2355 | #ifdef CONFIG_DMI |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2356 | struct dmi_ipmi_data { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | u8 type; |
| 2358 | u8 addr_space; |
| 2359 | unsigned long base_addr; |
| 2360 | u8 irq; |
| 2361 | u8 offset; |
| 2362 | u8 slave_addr; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2363 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2365 | static int decode_dmi(const struct dmi_header *dm, |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2366 | struct dmi_ipmi_data *dmi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 2368 | const u8 *data = (const u8 *)dm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2369 | unsigned long base_addr; |
| 2370 | u8 reg_spacing; |
Andrey Panin | b224cd3 | 2005-09-06 15:18:37 -0700 | [diff] [blame] | 2371 | u8 len = dm->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2373 | dmi->type = data[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | |
| 2375 | memcpy(&base_addr, data+8, sizeof(unsigned long)); |
| 2376 | if (len >= 0x11) { |
| 2377 | if (base_addr & 1) { |
| 2378 | /* I/O */ |
| 2379 | base_addr &= 0xFFFE; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2380 | dmi->addr_space = IPMI_IO_ADDR_SPACE; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2381 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | /* Memory */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2383 | dmi->addr_space = IPMI_MEM_ADDR_SPACE; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | /* If bit 4 of byte 0x10 is set, then the lsb for the address |
| 2386 | is odd. */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2387 | dmi->base_addr = base_addr | ((data[0x10] & 0x10) >> 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2389 | dmi->irq = data[0x11]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | |
| 2391 | /* The top two bits of byte 0x10 hold the register spacing. */ |
Andrey Panin | b224cd3 | 2005-09-06 15:18:37 -0700 | [diff] [blame] | 2392 | reg_spacing = (data[0x10] & 0xC0) >> 6; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2393 | switch (reg_spacing) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | case 0x00: /* Byte boundaries */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2395 | dmi->offset = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | break; |
| 2397 | case 0x01: /* 32-bit boundaries */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2398 | dmi->offset = 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | break; |
| 2400 | case 0x02: /* 16-byte boundaries */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2401 | dmi->offset = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | break; |
| 2403 | default: |
| 2404 | /* Some other interface, just ignore it. */ |
| 2405 | return -EIO; |
| 2406 | } |
| 2407 | } else { |
| 2408 | /* Old DMI spec. */ |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2409 | /* |
| 2410 | * Note that technically, the lower bit of the base |
Corey Minyard | 9206880 | 2005-05-01 08:59:10 -0700 | [diff] [blame] | 2411 | * address should be 1 if the address is I/O and 0 if |
| 2412 | * the address is in memory. So many systems get that |
| 2413 | * wrong (and all that I have seen are I/O) so we just |
| 2414 | * ignore that bit and assume I/O. Systems that use |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2415 | * memory should use the newer spec, anyway. |
| 2416 | */ |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2417 | dmi->base_addr = base_addr & 0xfffe; |
| 2418 | dmi->addr_space = IPMI_IO_ADDR_SPACE; |
| 2419 | dmi->offset = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | } |
| 2421 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2422 | dmi->slave_addr = data[6]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2424 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2427 | static void try_init_dmi(struct dmi_ipmi_data *ipmi_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2428 | { |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 2429 | struct smi_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 2431 | info = smi_info_alloc(); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2432 | if (!info) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2433 | printk(KERN_ERR PFX "Could not allocate SI data\n"); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2434 | return; |
| 2435 | } |
| 2436 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 2437 | info->addr_source = SI_SMBIOS; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2438 | printk(KERN_INFO PFX "probing via SMBIOS\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 2440 | switch (ipmi_data->type) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2441 | case 0x01: /* KCS */ |
| 2442 | info->si_type = SI_KCS; |
| 2443 | break; |
| 2444 | case 0x02: /* SMIC */ |
| 2445 | info->si_type = SI_SMIC; |
| 2446 | break; |
| 2447 | case 0x03: /* BT */ |
| 2448 | info->si_type = SI_BT; |
| 2449 | break; |
| 2450 | default: |
Jesper Juhl | 80cd692 | 2007-07-31 00:39:05 -0700 | [diff] [blame] | 2451 | kfree(info); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2452 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | } |
| 2454 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2455 | switch (ipmi_data->addr_space) { |
| 2456 | case IPMI_MEM_ADDR_SPACE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | info->io_setup = mem_setup; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2458 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
| 2459 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2461 | case IPMI_IO_ADDR_SPACE: |
| 2462 | info->io_setup = port_setup; |
| 2463 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
| 2464 | break; |
| 2465 | |
| 2466 | default: |
| 2467 | kfree(info); |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2468 | printk(KERN_WARNING PFX "Unknown SMBIOS I/O Address type: %d\n", |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2469 | ipmi_data->addr_space); |
| 2470 | return; |
| 2471 | } |
| 2472 | info->io.addr_data = ipmi_data->base_addr; |
| 2473 | |
| 2474 | info->io.regspacing = ipmi_data->offset; |
| 2475 | if (!info->io.regspacing) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | info->io.regspacing = DEFAULT_REGSPACING; |
| 2477 | info->io.regsize = DEFAULT_REGSPACING; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2478 | info->io.regshift = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2479 | |
| 2480 | info->slave_addr = ipmi_data->slave_addr; |
| 2481 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2482 | info->irq = ipmi_data->irq; |
| 2483 | if (info->irq) |
| 2484 | info->irq_setup = std_irq_setup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | |
Yinghai Lu | 7bb671e | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2486 | pr_info("ipmi_si: SMBIOS: %s %#lx regsize %d spacing %d irq %d\n", |
| 2487 | (info->io.addr_type == IPMI_IO_ADDR_SPACE) ? "io" : "mem", |
| 2488 | info->io.addr_data, info->io.regsize, info->io.regspacing, |
| 2489 | info->irq); |
| 2490 | |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2491 | if (add_smi(info)) |
| 2492 | kfree(info); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2495 | static void dmi_find_bmc(void) |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2496 | { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 2497 | const struct dmi_device *dev = NULL; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2498 | struct dmi_ipmi_data data; |
| 2499 | int rv; |
| 2500 | |
| 2501 | while ((dev = dmi_find_device(DMI_DEV_TYPE_IPMI, NULL, dev))) { |
Jeff Garzik | 397f4eb | 2006-10-03 01:13:52 -0700 | [diff] [blame] | 2502 | memset(&data, 0, sizeof(data)); |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 2503 | rv = decode_dmi((const struct dmi_header *) dev->device_data, |
| 2504 | &data); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2505 | if (!rv) |
| 2506 | try_init_dmi(&data); |
| 2507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | } |
Matt Domsch | a9fad4c | 2006-01-11 12:17:44 -0800 | [diff] [blame] | 2509 | #endif /* CONFIG_DMI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | |
| 2511 | #ifdef CONFIG_PCI |
| 2512 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2513 | #define PCI_ERMC_CLASSCODE 0x0C0700 |
| 2514 | #define PCI_ERMC_CLASSCODE_MASK 0xffffff00 |
| 2515 | #define PCI_ERMC_CLASSCODE_TYPE_MASK 0xff |
| 2516 | #define PCI_ERMC_CLASSCODE_TYPE_SMIC 0x00 |
| 2517 | #define PCI_ERMC_CLASSCODE_TYPE_KCS 0x01 |
| 2518 | #define PCI_ERMC_CLASSCODE_TYPE_BT 0x02 |
| 2519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | #define PCI_HP_VENDOR_ID 0x103C |
| 2521 | #define PCI_MMC_DEVICE_ID 0x121A |
| 2522 | #define PCI_MMC_ADDR_CW 0x10 |
| 2523 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2524 | static void ipmi_pci_cleanup(struct smi_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2526 | struct pci_dev *pdev = info->addr_source_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2528 | pci_disable_device(pdev); |
| 2529 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2531 | static int ipmi_pci_probe_regspacing(struct smi_info *info) |
Corey Minyard | a6c16c2 | 2012-10-16 15:53:40 -0500 | [diff] [blame] | 2532 | { |
| 2533 | if (info->si_type == SI_KCS) { |
| 2534 | unsigned char status; |
| 2535 | int regspacing; |
| 2536 | |
| 2537 | info->io.regsize = DEFAULT_REGSIZE; |
| 2538 | info->io.regshift = 0; |
| 2539 | info->io_size = 2; |
| 2540 | info->handlers = &kcs_smi_handlers; |
| 2541 | |
| 2542 | /* detect 1, 4, 16byte spacing */ |
| 2543 | for (regspacing = DEFAULT_REGSPACING; regspacing <= 16;) { |
| 2544 | info->io.regspacing = regspacing; |
| 2545 | if (info->io_setup(info)) { |
| 2546 | dev_err(info->dev, |
| 2547 | "Could not setup I/O space\n"); |
| 2548 | return DEFAULT_REGSPACING; |
| 2549 | } |
| 2550 | /* write invalid cmd */ |
| 2551 | info->io.outputb(&info->io, 1, 0x10); |
| 2552 | /* read status back */ |
| 2553 | status = info->io.inputb(&info->io, 1); |
| 2554 | info->io_cleanup(info); |
| 2555 | if (status) |
| 2556 | return regspacing; |
| 2557 | regspacing *= 4; |
| 2558 | } |
| 2559 | } |
| 2560 | return DEFAULT_REGSPACING; |
| 2561 | } |
| 2562 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2563 | static int ipmi_pci_probe(struct pci_dev *pdev, |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2564 | const struct pci_device_id *ent) |
| 2565 | { |
| 2566 | int rv; |
| 2567 | int class_type = pdev->class & PCI_ERMC_CLASSCODE_TYPE_MASK; |
| 2568 | struct smi_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 2570 | info = smi_info_alloc(); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2571 | if (!info) |
Dave Jones | 1cd441f | 2006-10-19 23:29:09 -0700 | [diff] [blame] | 2572 | return -ENOMEM; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2573 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 2574 | info->addr_source = SI_PCI; |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2575 | dev_info(&pdev->dev, "probing via PCI"); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2576 | |
| 2577 | switch (class_type) { |
| 2578 | case PCI_ERMC_CLASSCODE_TYPE_SMIC: |
| 2579 | info->si_type = SI_SMIC; |
| 2580 | break; |
| 2581 | |
| 2582 | case PCI_ERMC_CLASSCODE_TYPE_KCS: |
| 2583 | info->si_type = SI_KCS; |
| 2584 | break; |
| 2585 | |
| 2586 | case PCI_ERMC_CLASSCODE_TYPE_BT: |
| 2587 | info->si_type = SI_BT; |
| 2588 | break; |
| 2589 | |
| 2590 | default: |
| 2591 | kfree(info); |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2592 | dev_info(&pdev->dev, "Unknown IPMI type: %d\n", class_type); |
Dave Jones | 1cd441f | 2006-10-19 23:29:09 -0700 | [diff] [blame] | 2593 | return -ENOMEM; |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 2594 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2596 | rv = pci_enable_device(pdev); |
| 2597 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2598 | dev_err(&pdev->dev, "couldn't enable PCI device\n"); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2599 | kfree(info); |
| 2600 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2601 | } |
| 2602 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2603 | info->addr_source_cleanup = ipmi_pci_cleanup; |
| 2604 | info->addr_source_data = pdev; |
| 2605 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2606 | if (pci_resource_flags(pdev, 0) & IORESOURCE_IO) { |
| 2607 | info->io_setup = port_setup; |
| 2608 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
| 2609 | } else { |
| 2610 | info->io_setup = mem_setup; |
| 2611 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2613 | info->io.addr_data = pci_resource_start(pdev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | |
Corey Minyard | a6c16c2 | 2012-10-16 15:53:40 -0500 | [diff] [blame] | 2615 | info->io.regspacing = ipmi_pci_probe_regspacing(info); |
| 2616 | info->io.regsize = DEFAULT_REGSIZE; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2617 | info->io.regshift = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2619 | info->irq = pdev->irq; |
| 2620 | if (info->irq) |
| 2621 | info->irq_setup = std_irq_setup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 2623 | info->dev = &pdev->dev; |
Corey Minyard | fca3b74 | 2007-05-08 00:23:59 -0700 | [diff] [blame] | 2624 | pci_set_drvdata(pdev, info); |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 2625 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2626 | dev_info(&pdev->dev, "%pR regsize %d spacing %d irq %d\n", |
| 2627 | &pdev->resource[0], info->io.regsize, info->io.regspacing, |
| 2628 | info->irq); |
| 2629 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2630 | rv = add_smi(info); |
| 2631 | if (rv) { |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2632 | kfree(info); |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2633 | pci_disable_device(pdev); |
| 2634 | } |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2635 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2636 | return rv; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2637 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | |
Bill Pemberton | 39af33f | 2012-11-19 13:26:26 -0500 | [diff] [blame] | 2639 | static void ipmi_pci_remove(struct pci_dev *pdev) |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2640 | { |
Corey Minyard | fca3b74 | 2007-05-08 00:23:59 -0700 | [diff] [blame] | 2641 | struct smi_info *info = pci_get_drvdata(pdev); |
| 2642 | cleanup_one_si(info); |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2643 | pci_disable_device(pdev); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2646 | static struct pci_device_id ipmi_pci_devices[] = { |
| 2647 | { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) }, |
Kees Cook | 248bdd5 | 2007-09-18 22:46:32 -0700 | [diff] [blame] | 2648 | { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) }, |
| 2649 | { 0, } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2650 | }; |
| 2651 | MODULE_DEVICE_TABLE(pci, ipmi_pci_devices); |
| 2652 | |
| 2653 | static struct pci_driver ipmi_pci_driver = { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2654 | .name = DEVICE_NAME, |
| 2655 | .id_table = ipmi_pci_devices, |
| 2656 | .probe = ipmi_pci_probe, |
Greg Kroah-Hartman | bcd2982 | 2012-12-21 15:12:08 -0800 | [diff] [blame] | 2657 | .remove = ipmi_pci_remove, |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 2658 | }; |
| 2659 | #endif /* CONFIG_PCI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 2661 | static struct of_device_id ipmi_match[]; |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 2662 | static int ipmi_probe(struct platform_device *dev) |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2663 | { |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2664 | #ifdef CONFIG_OF |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 2665 | const struct of_device_id *match; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2666 | struct smi_info *info; |
| 2667 | struct resource resource; |
Rob Herring | da81c3b | 2010-11-16 14:33:50 -0600 | [diff] [blame] | 2668 | const __be32 *regsize, *regspacing, *regshift; |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 2669 | struct device_node *np = dev->dev.of_node; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2670 | int ret; |
| 2671 | int proplen; |
| 2672 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2673 | dev_info(&dev->dev, "probing via device tree\n"); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2674 | |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 2675 | match = of_match_device(ipmi_match, &dev->dev); |
| 2676 | if (!match) |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2677 | return -EINVAL; |
| 2678 | |
Benjamin Herrenschmidt | 08dc416 | 2014-10-06 14:17:51 -0500 | [diff] [blame] | 2679 | if (!of_device_is_available(np)) |
| 2680 | return -EINVAL; |
| 2681 | |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2682 | ret = of_address_to_resource(np, 0, &resource); |
| 2683 | if (ret) { |
| 2684 | dev_warn(&dev->dev, PFX "invalid address from OF\n"); |
| 2685 | return ret; |
| 2686 | } |
| 2687 | |
Stephen Rothwell | 9c25099 | 2007-08-15 16:42:12 +1000 | [diff] [blame] | 2688 | regsize = of_get_property(np, "reg-size", &proplen); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2689 | if (regsize && proplen != 4) { |
| 2690 | dev_warn(&dev->dev, PFX "invalid regsize from OF\n"); |
| 2691 | return -EINVAL; |
| 2692 | } |
| 2693 | |
Stephen Rothwell | 9c25099 | 2007-08-15 16:42:12 +1000 | [diff] [blame] | 2694 | regspacing = of_get_property(np, "reg-spacing", &proplen); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2695 | if (regspacing && proplen != 4) { |
| 2696 | dev_warn(&dev->dev, PFX "invalid regspacing from OF\n"); |
| 2697 | return -EINVAL; |
| 2698 | } |
| 2699 | |
Stephen Rothwell | 9c25099 | 2007-08-15 16:42:12 +1000 | [diff] [blame] | 2700 | regshift = of_get_property(np, "reg-shift", &proplen); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2701 | if (regshift && proplen != 4) { |
| 2702 | dev_warn(&dev->dev, PFX "invalid regshift from OF\n"); |
| 2703 | return -EINVAL; |
| 2704 | } |
| 2705 | |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 2706 | info = smi_info_alloc(); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2707 | |
| 2708 | if (!info) { |
| 2709 | dev_err(&dev->dev, |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2710 | "could not allocate memory for OF probe\n"); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2711 | return -ENOMEM; |
| 2712 | } |
| 2713 | |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 2714 | info->si_type = (enum si_type) match->data; |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 2715 | info->addr_source = SI_DEVICETREE; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2716 | info->irq_setup = std_irq_setup; |
| 2717 | |
Nate Case | 3b7ec11 | 2008-05-14 16:05:39 -0700 | [diff] [blame] | 2718 | if (resource.flags & IORESOURCE_IO) { |
| 2719 | info->io_setup = port_setup; |
| 2720 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
| 2721 | } else { |
| 2722 | info->io_setup = mem_setup; |
| 2723 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
| 2724 | } |
| 2725 | |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2726 | info->io.addr_data = resource.start; |
| 2727 | |
Rob Herring | da81c3b | 2010-11-16 14:33:50 -0600 | [diff] [blame] | 2728 | info->io.regsize = regsize ? be32_to_cpup(regsize) : DEFAULT_REGSIZE; |
| 2729 | info->io.regspacing = regspacing ? be32_to_cpup(regspacing) : DEFAULT_REGSPACING; |
| 2730 | info->io.regshift = regshift ? be32_to_cpup(regshift) : 0; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2731 | |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 2732 | info->irq = irq_of_parse_and_map(dev->dev.of_node, 0); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2733 | info->dev = &dev->dev; |
| 2734 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2735 | dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %d\n", |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2736 | info->io.addr_data, info->io.regsize, info->io.regspacing, |
| 2737 | info->irq); |
| 2738 | |
Greg Kroah-Hartman | 9de33df | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 2739 | dev_set_drvdata(&dev->dev, info); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2740 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2741 | ret = add_smi(info); |
| 2742 | if (ret) { |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2743 | kfree(info); |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2744 | return ret; |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2745 | } |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2746 | #endif |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 2747 | return 0; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2748 | } |
| 2749 | |
Bill Pemberton | 39af33f | 2012-11-19 13:26:26 -0500 | [diff] [blame] | 2750 | static int ipmi_remove(struct platform_device *dev) |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2751 | { |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2752 | #ifdef CONFIG_OF |
Greg Kroah-Hartman | 9de33df | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 2753 | cleanup_one_si(dev_get_drvdata(&dev->dev)); |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2754 | #endif |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2755 | return 0; |
| 2756 | } |
| 2757 | |
| 2758 | static struct of_device_id ipmi_match[] = |
| 2759 | { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2760 | { .type = "ipmi", .compatible = "ipmi-kcs", |
| 2761 | .data = (void *)(unsigned long) SI_KCS }, |
| 2762 | { .type = "ipmi", .compatible = "ipmi-smic", |
| 2763 | .data = (void *)(unsigned long) SI_SMIC }, |
| 2764 | { .type = "ipmi", .compatible = "ipmi-bt", |
| 2765 | .data = (void *)(unsigned long) SI_BT }, |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2766 | {}, |
| 2767 | }; |
| 2768 | |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2769 | static struct platform_driver ipmi_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 2770 | .driver = { |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2771 | .name = DEVICE_NAME, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 2772 | .of_match_table = ipmi_match, |
| 2773 | }, |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 2774 | .probe = ipmi_probe, |
Greg Kroah-Hartman | bcd2982 | 2012-12-21 15:12:08 -0800 | [diff] [blame] | 2775 | .remove = ipmi_remove, |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2776 | }; |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 2777 | |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 2778 | #ifdef CONFIG_PARISC |
| 2779 | static int ipmi_parisc_probe(struct parisc_device *dev) |
| 2780 | { |
| 2781 | struct smi_info *info; |
Geert Uytterhoeven | dfa1942 | 2014-01-28 20:12:35 +0100 | [diff] [blame] | 2782 | int rv; |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 2783 | |
| 2784 | info = smi_info_alloc(); |
| 2785 | |
| 2786 | if (!info) { |
| 2787 | dev_err(&dev->dev, |
| 2788 | "could not allocate memory for PARISC probe\n"); |
| 2789 | return -ENOMEM; |
| 2790 | } |
| 2791 | |
| 2792 | info->si_type = SI_KCS; |
| 2793 | info->addr_source = SI_DEVICETREE; |
| 2794 | info->io_setup = mem_setup; |
| 2795 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; |
| 2796 | info->io.addr_data = dev->hpa.start; |
| 2797 | info->io.regsize = 1; |
| 2798 | info->io.regspacing = 1; |
| 2799 | info->io.regshift = 0; |
| 2800 | info->irq = 0; /* no interrupt */ |
| 2801 | info->irq_setup = NULL; |
| 2802 | info->dev = &dev->dev; |
| 2803 | |
| 2804 | dev_dbg(&dev->dev, "addr 0x%lx\n", info->io.addr_data); |
| 2805 | |
| 2806 | dev_set_drvdata(&dev->dev, info); |
| 2807 | |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2808 | rv = add_smi(info); |
| 2809 | if (rv) { |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 2810 | kfree(info); |
Corey Minyard | d02b370 | 2014-01-24 14:00:53 -0600 | [diff] [blame] | 2811 | return rv; |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 2812 | } |
| 2813 | |
| 2814 | return 0; |
| 2815 | } |
| 2816 | |
| 2817 | static int ipmi_parisc_remove(struct parisc_device *dev) |
| 2818 | { |
| 2819 | cleanup_one_si(dev_get_drvdata(&dev->dev)); |
| 2820 | return 0; |
| 2821 | } |
| 2822 | |
| 2823 | static struct parisc_device_id ipmi_parisc_tbl[] = { |
| 2824 | { HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 }, |
| 2825 | { 0, } |
| 2826 | }; |
| 2827 | |
| 2828 | static struct parisc_driver ipmi_parisc_driver = { |
| 2829 | .name = "ipmi", |
| 2830 | .id_table = ipmi_parisc_tbl, |
| 2831 | .probe = ipmi_parisc_probe, |
| 2832 | .remove = ipmi_parisc_remove, |
| 2833 | }; |
| 2834 | #endif /* CONFIG_PARISC */ |
| 2835 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2836 | static int wait_for_msg_done(struct smi_info *smi_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | { |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 2838 | enum si_sm_result smi_result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | |
| 2840 | smi_result = smi_info->handlers->event(smi_info->si_sm, 0); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2841 | for (;;) { |
Corey Minyard | c3e7e79 | 2005-11-07 01:00:02 -0800 | [diff] [blame] | 2842 | if (smi_result == SI_SM_CALL_WITH_DELAY || |
| 2843 | smi_result == SI_SM_CALL_WITH_TICK_DELAY) { |
Nishanth Aravamudan | da4cd8d | 2005-09-10 00:27:30 -0700 | [diff] [blame] | 2844 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | smi_result = smi_info->handlers->event( |
Xie XiuQi | e21404d | 2014-01-24 14:00:52 -0600 | [diff] [blame] | 2846 | smi_info->si_sm, jiffies_to_usecs(1)); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2847 | } else if (smi_result == SI_SM_CALL_WITHOUT_DELAY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | smi_result = smi_info->handlers->event( |
| 2849 | smi_info->si_sm, 0); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2850 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | break; |
| 2852 | } |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2853 | if (smi_result == SI_SM_HOSED) |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 2854 | /* |
| 2855 | * We couldn't get the state machine to run, so whatever's at |
| 2856 | * the port is probably not an IPMI SMI interface. |
| 2857 | */ |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2858 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2860 | return 0; |
| 2861 | } |
| 2862 | |
| 2863 | static int try_get_dev_id(struct smi_info *smi_info) |
| 2864 | { |
| 2865 | unsigned char msg[2]; |
| 2866 | unsigned char *resp; |
| 2867 | unsigned long resp_len; |
| 2868 | int rv = 0; |
| 2869 | |
| 2870 | resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL); |
| 2871 | if (!resp) |
| 2872 | return -ENOMEM; |
| 2873 | |
| 2874 | /* |
| 2875 | * Do a Get Device ID command, since it comes back with some |
| 2876 | * useful info. |
| 2877 | */ |
| 2878 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; |
| 2879 | msg[1] = IPMI_GET_DEVICE_ID_CMD; |
| 2880 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); |
| 2881 | |
| 2882 | rv = wait_for_msg_done(smi_info); |
| 2883 | if (rv) |
| 2884 | goto out; |
| 2885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, |
| 2887 | resp, IPMI_MAX_MSG_LENGTH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | |
Corey Minyard | d8c9861 | 2007-10-18 03:07:11 -0700 | [diff] [blame] | 2889 | /* Check and record info from the get device id, in case we need it. */ |
| 2890 | rv = ipmi_demangle_device_id(resp, resp_len, &smi_info->device_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | |
| 2892 | out: |
| 2893 | kfree(resp); |
| 2894 | return rv; |
| 2895 | } |
| 2896 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2897 | static int try_enable_event_buffer(struct smi_info *smi_info) |
| 2898 | { |
| 2899 | unsigned char msg[3]; |
| 2900 | unsigned char *resp; |
| 2901 | unsigned long resp_len; |
| 2902 | int rv = 0; |
| 2903 | |
| 2904 | resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL); |
| 2905 | if (!resp) |
| 2906 | return -ENOMEM; |
| 2907 | |
| 2908 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; |
| 2909 | msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD; |
| 2910 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); |
| 2911 | |
| 2912 | rv = wait_for_msg_done(smi_info); |
| 2913 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2914 | printk(KERN_WARNING PFX "Error getting response from get" |
| 2915 | " global enables command, the event buffer is not" |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2916 | " enabled.\n"); |
| 2917 | goto out; |
| 2918 | } |
| 2919 | |
| 2920 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, |
| 2921 | resp, IPMI_MAX_MSG_LENGTH); |
| 2922 | |
| 2923 | if (resp_len < 4 || |
| 2924 | resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 || |
| 2925 | resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD || |
| 2926 | resp[2] != 0) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2927 | printk(KERN_WARNING PFX "Invalid return from get global" |
| 2928 | " enables command, cannot enable the event buffer.\n"); |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2929 | rv = -EINVAL; |
| 2930 | goto out; |
| 2931 | } |
| 2932 | |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 2933 | if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) { |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2934 | /* buffer is already enabled, nothing to do. */ |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 2935 | smi_info->supports_event_msg_buff = true; |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2936 | goto out; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 2937 | } |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2938 | |
| 2939 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; |
| 2940 | msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD; |
| 2941 | msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF; |
| 2942 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3); |
| 2943 | |
| 2944 | rv = wait_for_msg_done(smi_info); |
| 2945 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2946 | printk(KERN_WARNING PFX "Error getting response from set" |
| 2947 | " global, enables command, the event buffer is not" |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2948 | " enabled.\n"); |
| 2949 | goto out; |
| 2950 | } |
| 2951 | |
| 2952 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, |
| 2953 | resp, IPMI_MAX_MSG_LENGTH); |
| 2954 | |
| 2955 | if (resp_len < 3 || |
| 2956 | resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 || |
| 2957 | resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 2958 | printk(KERN_WARNING PFX "Invalid return from get global," |
| 2959 | "enables command, not enable the event buffer.\n"); |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2960 | rv = -EINVAL; |
| 2961 | goto out; |
| 2962 | } |
| 2963 | |
| 2964 | if (resp[2] != 0) |
| 2965 | /* |
| 2966 | * An error when setting the event buffer bit means |
| 2967 | * that the event buffer is not supported. |
| 2968 | */ |
| 2969 | rv = -ENOENT; |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 2970 | else |
| 2971 | smi_info->supports_event_msg_buff = true; |
| 2972 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 2973 | out: |
| 2974 | kfree(resp); |
| 2975 | return rv; |
| 2976 | } |
| 2977 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2978 | static int smi_type_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | { |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2980 | struct smi_info *smi = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2982 | return seq_printf(m, "%s\n", si_to_str[smi->si_type]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | } |
| 2984 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2985 | static int smi_type_proc_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 2987 | return single_open(file, smi_type_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2988 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 2990 | static const struct file_operations smi_type_proc_ops = { |
| 2991 | .open = smi_type_proc_open, |
| 2992 | .read = seq_read, |
| 2993 | .llseek = seq_lseek, |
| 2994 | .release = single_release, |
| 2995 | }; |
| 2996 | |
| 2997 | static int smi_si_stats_proc_show(struct seq_file *m, void *v) |
| 2998 | { |
| 2999 | struct smi_info *smi = m->private; |
| 3000 | |
| 3001 | seq_printf(m, "interrupts_enabled: %d\n", |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3002 | smi->irq && !smi->interrupt_disabled); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3003 | seq_printf(m, "short_timeouts: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3004 | smi_get_stat(smi, short_timeouts)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3005 | seq_printf(m, "long_timeouts: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3006 | smi_get_stat(smi, long_timeouts)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3007 | seq_printf(m, "idles: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3008 | smi_get_stat(smi, idles)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3009 | seq_printf(m, "interrupts: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3010 | smi_get_stat(smi, interrupts)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3011 | seq_printf(m, "attentions: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3012 | smi_get_stat(smi, attentions)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3013 | seq_printf(m, "flag_fetches: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3014 | smi_get_stat(smi, flag_fetches)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3015 | seq_printf(m, "hosed_count: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3016 | smi_get_stat(smi, hosed_count)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3017 | seq_printf(m, "complete_transactions: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3018 | smi_get_stat(smi, complete_transactions)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3019 | seq_printf(m, "events: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3020 | smi_get_stat(smi, events)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3021 | seq_printf(m, "watchdog_pretimeouts: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3022 | smi_get_stat(smi, watchdog_pretimeouts)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3023 | seq_printf(m, "incoming_messages: %u\n", |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3024 | smi_get_stat(smi, incoming_messages)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3025 | return 0; |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3026 | } |
| 3027 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3028 | static int smi_si_stats_proc_open(struct inode *inode, struct file *file) |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3029 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 3030 | return single_open(file, smi_si_stats_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3031 | } |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3032 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3033 | static const struct file_operations smi_si_stats_proc_ops = { |
| 3034 | .open = smi_si_stats_proc_open, |
| 3035 | .read = seq_read, |
| 3036 | .llseek = seq_lseek, |
| 3037 | .release = single_release, |
| 3038 | }; |
| 3039 | |
| 3040 | static int smi_params_proc_show(struct seq_file *m, void *v) |
| 3041 | { |
| 3042 | struct smi_info *smi = m->private; |
| 3043 | |
| 3044 | return seq_printf(m, |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3045 | "%s,%s,0x%lx,rsp=%d,rsi=%d,rsh=%d,irq=%d,ipmb=%d\n", |
| 3046 | si_to_str[smi->si_type], |
| 3047 | addr_space_to_str[smi->io.addr_type], |
| 3048 | smi->io.addr_data, |
| 3049 | smi->io.regspacing, |
| 3050 | smi->io.regsize, |
| 3051 | smi->io.regshift, |
| 3052 | smi->irq, |
| 3053 | smi->slave_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | } |
| 3055 | |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3056 | static int smi_params_proc_open(struct inode *inode, struct file *file) |
| 3057 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 3058 | return single_open(file, smi_params_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3059 | } |
| 3060 | |
| 3061 | static const struct file_operations smi_params_proc_ops = { |
| 3062 | .open = smi_params_proc_open, |
| 3063 | .read = seq_read, |
| 3064 | .llseek = seq_lseek, |
| 3065 | .release = single_release, |
| 3066 | }; |
| 3067 | |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3068 | /* |
| 3069 | * oem_data_avail_to_receive_msg_avail |
| 3070 | * @info - smi_info structure with msg_flags set |
| 3071 | * |
| 3072 | * Converts flags from OEM_DATA_AVAIL to RECEIVE_MSG_AVAIL |
| 3073 | * Returns 1 indicating need to re-run handle_flags(). |
| 3074 | */ |
| 3075 | static int oem_data_avail_to_receive_msg_avail(struct smi_info *smi_info) |
| 3076 | { |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 3077 | smi_info->msg_flags = ((smi_info->msg_flags & ~OEM_DATA_AVAIL) | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3078 | RECEIVE_MSG_AVAIL); |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3079 | return 1; |
| 3080 | } |
| 3081 | |
| 3082 | /* |
| 3083 | * setup_dell_poweredge_oem_data_handler |
| 3084 | * @info - smi_info.device_id must be populated |
| 3085 | * |
| 3086 | * Systems that match, but have firmware version < 1.40 may assert |
| 3087 | * OEM0_DATA_AVAIL on their own, without being told via Set Flags that |
| 3088 | * it's safe to do so. Such systems will de-assert OEM1_DATA_AVAIL |
| 3089 | * upon receipt of IPMI_GET_MSG_CMD, so we should treat these flags |
| 3090 | * as RECEIVE_MSG_AVAIL instead. |
| 3091 | * |
| 3092 | * As Dell has no plans to release IPMI 1.5 firmware that *ever* |
| 3093 | * assert the OEM[012] bits, and if it did, the driver would have to |
| 3094 | * change to handle that properly, we don't actually check for the |
| 3095 | * firmware version. |
| 3096 | * Device ID = 0x20 BMC on PowerEdge 8G servers |
| 3097 | * Device Revision = 0x80 |
| 3098 | * Firmware Revision1 = 0x01 BMC version 1.40 |
| 3099 | * Firmware Revision2 = 0x40 BCD encoded |
| 3100 | * IPMI Version = 0x51 IPMI 1.5 |
| 3101 | * Manufacturer ID = A2 02 00 Dell IANA |
| 3102 | * |
Corey Minyard | d5a2b89 | 2005-11-07 00:59:58 -0800 | [diff] [blame] | 3103 | * Additionally, PowerEdge systems with IPMI < 1.5 may also assert |
| 3104 | * OEM0_DATA_AVAIL and needs to be treated as RECEIVE_MSG_AVAIL. |
| 3105 | * |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3106 | */ |
| 3107 | #define DELL_POWEREDGE_8G_BMC_DEVICE_ID 0x20 |
| 3108 | #define DELL_POWEREDGE_8G_BMC_DEVICE_REV 0x80 |
| 3109 | #define DELL_POWEREDGE_8G_BMC_IPMI_VERSION 0x51 |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3110 | #define DELL_IANA_MFR_ID 0x0002a2 |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3111 | static void setup_dell_poweredge_oem_data_handler(struct smi_info *smi_info) |
| 3112 | { |
| 3113 | struct ipmi_device_id *id = &smi_info->device_id; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3114 | if (id->manufacturer_id == DELL_IANA_MFR_ID) { |
Corey Minyard | d5a2b89 | 2005-11-07 00:59:58 -0800 | [diff] [blame] | 3115 | if (id->device_id == DELL_POWEREDGE_8G_BMC_DEVICE_ID && |
| 3116 | id->device_revision == DELL_POWEREDGE_8G_BMC_DEVICE_REV && |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3117 | id->ipmi_version == DELL_POWEREDGE_8G_BMC_IPMI_VERSION) { |
Corey Minyard | d5a2b89 | 2005-11-07 00:59:58 -0800 | [diff] [blame] | 3118 | smi_info->oem_data_avail_handler = |
| 3119 | oem_data_avail_to_receive_msg_avail; |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3120 | } else if (ipmi_version_major(id) < 1 || |
| 3121 | (ipmi_version_major(id) == 1 && |
| 3122 | ipmi_version_minor(id) < 5)) { |
Corey Minyard | d5a2b89 | 2005-11-07 00:59:58 -0800 | [diff] [blame] | 3123 | smi_info->oem_data_avail_handler = |
| 3124 | oem_data_avail_to_receive_msg_avail; |
| 3125 | } |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3126 | } |
| 3127 | } |
| 3128 | |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 3129 | #define CANNOT_RETURN_REQUESTED_LENGTH 0xCA |
| 3130 | static void return_hosed_msg_badsize(struct smi_info *smi_info) |
| 3131 | { |
| 3132 | struct ipmi_smi_msg *msg = smi_info->curr_msg; |
| 3133 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3134 | /* Make it a response */ |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 3135 | msg->rsp[0] = msg->data[0] | 4; |
| 3136 | msg->rsp[1] = msg->data[1]; |
| 3137 | msg->rsp[2] = CANNOT_RETURN_REQUESTED_LENGTH; |
| 3138 | msg->rsp_size = 3; |
| 3139 | smi_info->curr_msg = NULL; |
| 3140 | deliver_recv_msg(smi_info, msg); |
| 3141 | } |
| 3142 | |
| 3143 | /* |
| 3144 | * dell_poweredge_bt_xaction_handler |
| 3145 | * @info - smi_info.device_id must be populated |
| 3146 | * |
| 3147 | * Dell PowerEdge servers with the BT interface (x6xx and 1750) will |
| 3148 | * not respond to a Get SDR command if the length of the data |
| 3149 | * requested is exactly 0x3A, which leads to command timeouts and no |
| 3150 | * data returned. This intercepts such commands, and causes userspace |
| 3151 | * callers to try again with a different-sized buffer, which succeeds. |
| 3152 | */ |
| 3153 | |
| 3154 | #define STORAGE_NETFN 0x0A |
| 3155 | #define STORAGE_CMD_GET_SDR 0x23 |
| 3156 | static int dell_poweredge_bt_xaction_handler(struct notifier_block *self, |
| 3157 | unsigned long unused, |
| 3158 | void *in) |
| 3159 | { |
| 3160 | struct smi_info *smi_info = in; |
| 3161 | unsigned char *data = smi_info->curr_msg->data; |
| 3162 | unsigned int size = smi_info->curr_msg->data_size; |
| 3163 | if (size >= 8 && |
| 3164 | (data[0]>>2) == STORAGE_NETFN && |
| 3165 | data[1] == STORAGE_CMD_GET_SDR && |
| 3166 | data[7] == 0x3A) { |
| 3167 | return_hosed_msg_badsize(smi_info); |
| 3168 | return NOTIFY_STOP; |
| 3169 | } |
| 3170 | return NOTIFY_DONE; |
| 3171 | } |
| 3172 | |
| 3173 | static struct notifier_block dell_poweredge_bt_xaction_notifier = { |
| 3174 | .notifier_call = dell_poweredge_bt_xaction_handler, |
| 3175 | }; |
| 3176 | |
| 3177 | /* |
| 3178 | * setup_dell_poweredge_bt_xaction_handler |
| 3179 | * @info - smi_info.device_id must be filled in already |
| 3180 | * |
| 3181 | * Fills in smi_info.device_id.start_transaction_pre_hook |
| 3182 | * when we know what function to use there. |
| 3183 | */ |
| 3184 | static void |
| 3185 | setup_dell_poweredge_bt_xaction_handler(struct smi_info *smi_info) |
| 3186 | { |
| 3187 | struct ipmi_device_id *id = &smi_info->device_id; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3188 | if (id->manufacturer_id == DELL_IANA_MFR_ID && |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 3189 | smi_info->si_type == SI_BT) |
| 3190 | register_xaction_notifier(&dell_poweredge_bt_xaction_notifier); |
| 3191 | } |
| 3192 | |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3193 | /* |
| 3194 | * setup_oem_data_handler |
| 3195 | * @info - smi_info.device_id must be filled in already |
| 3196 | * |
| 3197 | * Fills in smi_info.device_id.oem_data_available_handler |
| 3198 | * when we know what function to use there. |
| 3199 | */ |
| 3200 | |
| 3201 | static void setup_oem_data_handler(struct smi_info *smi_info) |
| 3202 | { |
| 3203 | setup_dell_poweredge_oem_data_handler(smi_info); |
| 3204 | } |
| 3205 | |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 3206 | static void setup_xaction_handlers(struct smi_info *smi_info) |
| 3207 | { |
| 3208 | setup_dell_poweredge_bt_xaction_handler(smi_info); |
| 3209 | } |
| 3210 | |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 3211 | static inline void wait_for_timer_and_thread(struct smi_info *smi_info) |
| 3212 | { |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3213 | if (smi_info->thread != NULL) |
| 3214 | kthread_stop(smi_info->thread); |
| 3215 | if (smi_info->timer_running) |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 3216 | del_timer_sync(&smi_info->si_timer); |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 3217 | } |
| 3218 | |
Bill Pemberton | 0bbed20 | 2012-11-19 13:24:36 -0500 | [diff] [blame] | 3219 | static struct ipmi_default_vals |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3220 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3221 | int type; |
| 3222 | int port; |
Randy Dunlap | 7420884 | 2006-04-18 22:21:52 -0700 | [diff] [blame] | 3223 | } ipmi_defaults[] = |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3224 | { |
| 3225 | { .type = SI_KCS, .port = 0xca2 }, |
| 3226 | { .type = SI_SMIC, .port = 0xca9 }, |
| 3227 | { .type = SI_BT, .port = 0xe4 }, |
| 3228 | { .port = 0 } |
| 3229 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 3231 | static void default_find_bmc(void) |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3232 | { |
| 3233 | struct smi_info *info; |
| 3234 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3236 | for (i = 0; ; i++) { |
| 3237 | if (!ipmi_defaults[i].port) |
| 3238 | break; |
Kumar Gala | 68e1ee6 | 2008-09-22 14:41:31 -0700 | [diff] [blame] | 3239 | #ifdef CONFIG_PPC |
Christian Krafft | 4ff31d7 | 2007-03-05 00:30:48 -0800 | [diff] [blame] | 3240 | if (check_legacy_ioport(ipmi_defaults[i].port)) |
| 3241 | continue; |
| 3242 | #endif |
Eric Dumazet | de5e2dd | 2010-10-26 14:21:17 -0700 | [diff] [blame] | 3243 | info = smi_info_alloc(); |
Andrew Morton | a09f485 | 2008-08-20 14:09:14 -0700 | [diff] [blame] | 3244 | if (!info) |
| 3245 | return; |
Christian Krafft | 4ff31d7 | 2007-03-05 00:30:48 -0800 | [diff] [blame] | 3246 | |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 3247 | info->addr_source = SI_DEFAULT; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3248 | |
| 3249 | info->si_type = ipmi_defaults[i].type; |
| 3250 | info->io_setup = port_setup; |
| 3251 | info->io.addr_data = ipmi_defaults[i].port; |
| 3252 | info->io.addr_type = IPMI_IO_ADDR_SPACE; |
| 3253 | |
| 3254 | info->io.addr = NULL; |
| 3255 | info->io.regspacing = DEFAULT_REGSPACING; |
| 3256 | info->io.regsize = DEFAULT_REGSPACING; |
| 3257 | info->io.regshift = 0; |
| 3258 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3259 | if (add_smi(info) == 0) { |
| 3260 | if ((try_smi_init(info)) == 0) { |
| 3261 | /* Found one... */ |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3262 | printk(KERN_INFO PFX "Found default %s" |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3263 | " state machine at %s address 0x%lx\n", |
| 3264 | si_to_str[info->si_type], |
| 3265 | addr_space_to_str[info->io.addr_type], |
| 3266 | info->io.addr_data); |
| 3267 | } else |
| 3268 | cleanup_one_si(info); |
Yinghai Lu | 7faefea | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 3269 | } else { |
| 3270 | kfree(info); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3271 | } |
| 3272 | } |
| 3273 | } |
| 3274 | |
| 3275 | static int is_new_interface(struct smi_info *info) |
| 3276 | { |
| 3277 | struct smi_info *e; |
| 3278 | |
| 3279 | list_for_each_entry(e, &smi_infos, link) { |
| 3280 | if (e->io.addr_type != info->io.addr_type) |
| 3281 | continue; |
| 3282 | if (e->io.addr_data == info->io.addr_data) |
| 3283 | return 0; |
| 3284 | } |
| 3285 | |
| 3286 | return 1; |
| 3287 | } |
| 3288 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3289 | static int add_smi(struct smi_info *new_smi) |
| 3290 | { |
| 3291 | int rv = 0; |
| 3292 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3293 | printk(KERN_INFO PFX "Adding %s-specified %s state machine", |
Corey Minyard | 7e50387 | 2014-10-09 07:20:32 -0500 | [diff] [blame] | 3294 | ipmi_addr_src_to_str(new_smi->addr_source), |
| 3295 | si_to_str[new_smi->si_type]); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3296 | mutex_lock(&smi_infos_lock); |
| 3297 | if (!is_new_interface(new_smi)) { |
Yinghai Lu | 7bb671e | 2010-08-10 18:03:10 -0700 | [diff] [blame] | 3298 | printk(KERN_CONT " duplicate interface\n"); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3299 | rv = -EBUSY; |
| 3300 | goto out_err; |
| 3301 | } |
| 3302 | |
| 3303 | printk(KERN_CONT "\n"); |
| 3304 | |
| 3305 | /* So we know not to free it unless we have allocated one. */ |
| 3306 | new_smi->intf = NULL; |
| 3307 | new_smi->si_sm = NULL; |
| 3308 | new_smi->handlers = NULL; |
| 3309 | |
| 3310 | list_add_tail(&new_smi->link, &smi_infos); |
| 3311 | |
| 3312 | out_err: |
| 3313 | mutex_unlock(&smi_infos_lock); |
| 3314 | return rv; |
| 3315 | } |
| 3316 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3317 | static int try_smi_init(struct smi_info *new_smi) |
| 3318 | { |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3319 | int rv = 0; |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3320 | int i; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3321 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3322 | printk(KERN_INFO PFX "Trying %s-specified %s state" |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 3323 | " machine at %s address 0x%lx, slave address 0x%x," |
| 3324 | " irq %d\n", |
Corey Minyard | 7e50387 | 2014-10-09 07:20:32 -0500 | [diff] [blame] | 3325 | ipmi_addr_src_to_str(new_smi->addr_source), |
Matthew Garrett | 5fedc4a | 2010-05-26 14:43:45 -0700 | [diff] [blame] | 3326 | si_to_str[new_smi->si_type], |
| 3327 | addr_space_to_str[new_smi->io.addr_type], |
| 3328 | new_smi->io.addr_data, |
| 3329 | new_smi->slave_addr, new_smi->irq); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3330 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3331 | switch (new_smi->si_type) { |
| 3332 | case SI_KCS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | new_smi->handlers = &kcs_smi_handlers; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3334 | break; |
| 3335 | |
| 3336 | case SI_SMIC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | new_smi->handlers = &smic_smi_handlers; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3338 | break; |
| 3339 | |
| 3340 | case SI_BT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3341 | new_smi->handlers = &bt_smi_handlers; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3342 | break; |
| 3343 | |
| 3344 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3345 | /* No support for anything else yet. */ |
| 3346 | rv = -EIO; |
| 3347 | goto out_err; |
| 3348 | } |
| 3349 | |
| 3350 | /* Allocate the state machine's data and initialize it. */ |
| 3351 | new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3352 | if (!new_smi->si_sm) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3353 | printk(KERN_ERR PFX |
| 3354 | "Could not allocate state machine memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3355 | rv = -ENOMEM; |
| 3356 | goto out_err; |
| 3357 | } |
| 3358 | new_smi->io_size = new_smi->handlers->init_data(new_smi->si_sm, |
| 3359 | &new_smi->io); |
| 3360 | |
| 3361 | /* Now that we know the I/O size, we can set up the I/O. */ |
| 3362 | rv = new_smi->io_setup(new_smi); |
| 3363 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3364 | printk(KERN_ERR PFX "Could not set up I/O space\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | goto out_err; |
| 3366 | } |
| 3367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | /* Do low-level detection first. */ |
| 3369 | if (new_smi->handlers->detect(new_smi->si_sm)) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3370 | if (new_smi->addr_source) |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3371 | printk(KERN_INFO PFX "Interface detection failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | rv = -ENODEV; |
| 3373 | goto out_err; |
| 3374 | } |
| 3375 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3376 | /* |
| 3377 | * Attempt a get device id command. If it fails, we probably |
| 3378 | * don't have a BMC here. |
| 3379 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | rv = try_get_dev_id(new_smi); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3381 | if (rv) { |
| 3382 | if (new_smi->addr_source) |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3383 | printk(KERN_INFO PFX "There appears to be no BMC" |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3384 | " at this location\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | goto out_err; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3386 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3387 | |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3388 | setup_oem_data_handler(new_smi); |
Corey Minyard | ea94027 | 2005-11-07 00:59:59 -0800 | [diff] [blame] | 3389 | setup_xaction_handlers(new_smi); |
Corey Minyard | 3ae0e0f | 2005-09-06 15:18:41 -0700 | [diff] [blame] | 3390 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3391 | new_smi->waiting_msg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | new_smi->curr_msg = NULL; |
| 3393 | atomic_set(&new_smi->req_events, 0); |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3394 | new_smi->run_to_completion = false; |
Corey Minyard | 64959e2 | 2008-04-29 01:01:07 -0700 | [diff] [blame] | 3395 | for (i = 0; i < SI_NUM_STATS; i++) |
| 3396 | atomic_set(&new_smi->stats[i], 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3397 | |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3398 | new_smi->interrupt_disabled = true; |
Corey Minyard | 8998649 | 2014-04-14 09:46:54 -0500 | [diff] [blame] | 3399 | atomic_set(&new_smi->need_watch, 0); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3400 | new_smi->intf_num = smi_num; |
| 3401 | smi_num++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 3403 | rv = try_enable_event_buffer(new_smi); |
| 3404 | if (rv == 0) |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3405 | new_smi->has_event_buffer = true; |
Corey Minyard | 40112ae | 2009-04-21 12:24:03 -0700 | [diff] [blame] | 3406 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3407 | /* |
| 3408 | * Start clearing the flags before we enable interrupts or the |
| 3409 | * timer to avoid racing with the timer. |
| 3410 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3411 | start_clear_flags(new_smi); |
Corey Minyard | d9b7e4f | 2014-11-19 04:03:26 -0600 | [diff] [blame] | 3412 | |
| 3413 | /* |
| 3414 | * IRQ is defined to be set when non-zero. req_events will |
| 3415 | * cause a global flags check that will enable interrupts. |
| 3416 | */ |
| 3417 | if (new_smi->irq) { |
| 3418 | new_smi->interrupt_disabled = false; |
| 3419 | atomic_set(&new_smi->req_events, 1); |
| 3420 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3421 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3422 | if (!new_smi->dev) { |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3423 | /* |
| 3424 | * If we don't already have a device from something |
| 3425 | * else (like PCI), then register a new one. |
| 3426 | */ |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3427 | new_smi->pdev = platform_device_alloc("ipmi_si", |
| 3428 | new_smi->intf_num); |
Corey Minyard | 8b32b5d | 2009-04-21 12:24:02 -0700 | [diff] [blame] | 3429 | if (!new_smi->pdev) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3430 | printk(KERN_ERR PFX |
| 3431 | "Unable to allocate platform device\n"); |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 3432 | goto out_err; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3433 | } |
| 3434 | new_smi->dev = &new_smi->pdev->dev; |
Darrick J. Wong | fe2d5ff | 2008-11-12 13:25:00 -0800 | [diff] [blame] | 3435 | new_smi->dev->driver = &ipmi_driver.driver; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3436 | |
Zhang, Yanmin | b48f545 | 2006-11-16 01:19:08 -0800 | [diff] [blame] | 3437 | rv = platform_device_add(new_smi->pdev); |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3438 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3439 | printk(KERN_ERR PFX |
| 3440 | "Unable to register system interface device:" |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3441 | " %d\n", |
| 3442 | rv); |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 3443 | goto out_err; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3444 | } |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3445 | new_smi->dev_registered = true; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3446 | } |
| 3447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3448 | rv = ipmi_register_smi(&handlers, |
| 3449 | new_smi, |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3450 | &new_smi->device_id, |
| 3451 | new_smi->dev, |
Corey Minyard | 453823b | 2006-03-31 02:30:39 -0800 | [diff] [blame] | 3452 | new_smi->slave_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3454 | dev_err(new_smi->dev, "Unable to register device: error %d\n", |
| 3455 | rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | goto out_err_stop_timer; |
| 3457 | } |
| 3458 | |
| 3459 | rv = ipmi_smi_add_proc_entry(new_smi->intf, "type", |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3460 | &smi_type_proc_ops, |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 3461 | new_smi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3462 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3463 | dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3464 | goto out_err_stop_timer; |
| 3465 | } |
| 3466 | |
| 3467 | rv = ipmi_smi_add_proc_entry(new_smi->intf, "si_stats", |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3468 | &smi_si_stats_proc_ops, |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 3469 | new_smi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3471 | dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | goto out_err_stop_timer; |
| 3473 | } |
| 3474 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3475 | rv = ipmi_smi_add_proc_entry(new_smi->intf, "params", |
Alexey Dobriyan | 0741273 | 2011-05-26 16:25:55 -0700 | [diff] [blame] | 3476 | &smi_params_proc_ops, |
Alexey Dobriyan | 99b7623 | 2009-03-25 22:48:06 +0300 | [diff] [blame] | 3477 | new_smi); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3478 | if (rv) { |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3479 | dev_err(new_smi->dev, "Unable to create proc entry: %d\n", rv); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3480 | goto out_err_stop_timer; |
| 3481 | } |
| 3482 | |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3483 | dev_info(new_smi->dev, "IPMI %s interface initialized\n", |
| 3484 | si_to_str[new_smi->si_type]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3485 | |
| 3486 | return 0; |
| 3487 | |
| 3488 | out_err_stop_timer: |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 3489 | wait_for_timer_and_thread(new_smi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3490 | |
| 3491 | out_err: |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3492 | new_smi->interrupt_disabled = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3494 | if (new_smi->intf) { |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3495 | ipmi_smi_t intf = new_smi->intf; |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3496 | new_smi->intf = NULL; |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3497 | ipmi_unregister_smi(intf); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3498 | } |
| 3499 | |
| 3500 | if (new_smi->irq_cleanup) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3501 | new_smi->irq_cleanup(new_smi); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3502 | new_smi->irq_cleanup = NULL; |
| 3503 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3505 | /* |
| 3506 | * Wait until we know that we are out of any interrupt |
| 3507 | * handlers might have been running before we freed the |
| 3508 | * interrupt. |
| 3509 | */ |
Paul E. McKenney | fbd568a3e | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 3510 | synchronize_sched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3511 | |
| 3512 | if (new_smi->si_sm) { |
| 3513 | if (new_smi->handlers) |
| 3514 | new_smi->handlers->cleanup(new_smi->si_sm); |
| 3515 | kfree(new_smi->si_sm); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3516 | new_smi->si_sm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3517 | } |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3518 | if (new_smi->addr_source_cleanup) { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3519 | new_smi->addr_source_cleanup(new_smi); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3520 | new_smi->addr_source_cleanup = NULL; |
| 3521 | } |
| 3522 | if (new_smi->io_cleanup) { |
Paolo Galtieri | 7767e12 | 2005-12-15 12:34:28 -0800 | [diff] [blame] | 3523 | new_smi->io_cleanup(new_smi); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3524 | new_smi->io_cleanup = NULL; |
| 3525 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3526 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3527 | if (new_smi->dev_registered) { |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3528 | platform_device_unregister(new_smi->pdev); |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3529 | new_smi->dev_registered = false; |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3530 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3532 | return rv; |
| 3533 | } |
| 3534 | |
Bill Pemberton | 2223cbe | 2012-11-19 13:22:51 -0500 | [diff] [blame] | 3535 | static int init_ipmi_si(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3536 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3537 | int i; |
| 3538 | char *str; |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3539 | int rv; |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3540 | struct smi_info *e; |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3541 | enum ipmi_addr_src type = SI_INVALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3542 | |
| 3543 | if (initialized) |
| 3544 | return 0; |
| 3545 | initialized = 1; |
| 3546 | |
Corey Minyard | f2afae4 | 2013-02-27 17:05:13 -0800 | [diff] [blame] | 3547 | if (si_tryplatform) { |
| 3548 | rv = platform_driver_register(&ipmi_driver); |
| 3549 | if (rv) { |
| 3550 | printk(KERN_ERR PFX "Unable to register " |
| 3551 | "driver: %d\n", rv); |
| 3552 | return rv; |
| 3553 | } |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3554 | } |
| 3555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | /* Parse out the si_type string into its components. */ |
| 3557 | str = si_type_str; |
| 3558 | if (*str != '\0') { |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 3559 | for (i = 0; (i < SI_MAX_PARMS) && (*str != '\0'); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | si_type[i] = str; |
| 3561 | str = strchr(str, ','); |
| 3562 | if (str) { |
| 3563 | *str = '\0'; |
| 3564 | str++; |
| 3565 | } else { |
| 3566 | break; |
| 3567 | } |
| 3568 | } |
| 3569 | } |
| 3570 | |
Corey Minyard | 1fdd75b | 2005-09-06 15:18:42 -0700 | [diff] [blame] | 3571 | printk(KERN_INFO "IPMI System Interface driver.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3573 | /* If the user gave us a device, they presumably want us to use it */ |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 3574 | if (!hardcode_find_bmc()) |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3575 | return 0; |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3576 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3577 | #ifdef CONFIG_PCI |
Corey Minyard | f2afae4 | 2013-02-27 17:05:13 -0800 | [diff] [blame] | 3578 | if (si_trypci) { |
| 3579 | rv = pci_register_driver(&ipmi_pci_driver); |
| 3580 | if (rv) |
| 3581 | printk(KERN_ERR PFX "Unable to register " |
| 3582 | "PCI driver: %d\n", rv); |
| 3583 | else |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3584 | pci_registered = true; |
Corey Minyard | f2afae4 | 2013-02-27 17:05:13 -0800 | [diff] [blame] | 3585 | } |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3586 | #endif |
| 3587 | |
Matthew Garrett | 754d453 | 2010-05-26 14:43:47 -0700 | [diff] [blame] | 3588 | #ifdef CONFIG_ACPI |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 3589 | if (si_tryacpi) { |
| 3590 | pnp_register_driver(&ipmi_pnp_driver); |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3591 | pnp_registered = true; |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 3592 | } |
Matthew Garrett | 754d453 | 2010-05-26 14:43:47 -0700 | [diff] [blame] | 3593 | #endif |
| 3594 | |
| 3595 | #ifdef CONFIG_DMI |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 3596 | if (si_trydmi) |
| 3597 | dmi_find_bmc(); |
Matthew Garrett | 754d453 | 2010-05-26 14:43:47 -0700 | [diff] [blame] | 3598 | #endif |
| 3599 | |
| 3600 | #ifdef CONFIG_ACPI |
Corey Minyard | d941aea | 2013-02-27 17:05:12 -0800 | [diff] [blame] | 3601 | if (si_tryacpi) |
| 3602 | spmi_find_bmc(); |
Matthew Garrett | 754d453 | 2010-05-26 14:43:47 -0700 | [diff] [blame] | 3603 | #endif |
| 3604 | |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 3605 | #ifdef CONFIG_PARISC |
| 3606 | register_parisc_driver(&ipmi_parisc_driver); |
Corey Minyard | 7aefac2 | 2014-04-14 09:46:56 -0500 | [diff] [blame] | 3607 | parisc_registered = true; |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 3608 | /* poking PC IO addresses will crash machine, don't do it */ |
| 3609 | si_trydefaults = 0; |
| 3610 | #endif |
| 3611 | |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3612 | /* We prefer devices with interrupts, but in the case of a machine |
| 3613 | with multiple BMCs we assume that there will be several instances |
| 3614 | of a given type so if we succeed in registering a type then also |
| 3615 | try to register everything else of the same type */ |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3616 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3617 | mutex_lock(&smi_infos_lock); |
| 3618 | list_for_each_entry(e, &smi_infos, link) { |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3619 | /* Try to register a device if it has an IRQ and we either |
| 3620 | haven't successfully registered a device yet or this |
| 3621 | device has the same type as one we successfully registered */ |
| 3622 | if (e->irq && (!type || e->addr_source == type)) { |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3623 | if (!try_smi_init(e)) { |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3624 | type = e->addr_source; |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3625 | } |
| 3626 | } |
| 3627 | } |
| 3628 | |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3629 | /* type will only have been set if we successfully registered an si */ |
| 3630 | if (type) { |
| 3631 | mutex_unlock(&smi_infos_lock); |
| 3632 | return 0; |
| 3633 | } |
| 3634 | |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3635 | /* Fall back to the preferred device */ |
| 3636 | |
| 3637 | list_for_each_entry(e, &smi_infos, link) { |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3638 | if (!e->irq && (!type || e->addr_source == type)) { |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3639 | if (!try_smi_init(e)) { |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3640 | type = e->addr_source; |
Matthew Garrett | d8cc526 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3641 | } |
| 3642 | } |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3643 | } |
| 3644 | mutex_unlock(&smi_infos_lock); |
| 3645 | |
Matthew Garrett | 06ee459 | 2010-05-26 14:43:49 -0700 | [diff] [blame] | 3646 | if (type) |
| 3647 | return 0; |
| 3648 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3649 | if (si_trydefaults) { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3650 | mutex_lock(&smi_infos_lock); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3651 | if (list_empty(&smi_infos)) { |
| 3652 | /* No BMC was found, try defaults. */ |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3653 | mutex_unlock(&smi_infos_lock); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3654 | default_find_bmc(); |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3655 | } else |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3656 | mutex_unlock(&smi_infos_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3659 | mutex_lock(&smi_infos_lock); |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3660 | if (unload_when_empty && list_empty(&smi_infos)) { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3661 | mutex_unlock(&smi_infos_lock); |
Corey Minyard | d247852 | 2011-02-10 16:08:38 -0600 | [diff] [blame] | 3662 | cleanup_ipmi_si(); |
Myron Stowe | 279fbd0 | 2010-05-26 14:43:52 -0700 | [diff] [blame] | 3663 | printk(KERN_WARNING PFX |
| 3664 | "Unable to find any System Interface(s)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3665 | return -ENODEV; |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3666 | } else { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3667 | mutex_unlock(&smi_infos_lock); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3668 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3669 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3670 | } |
| 3671 | module_init(init_ipmi_si); |
| 3672 | |
Corey Minyard | b361e27 | 2006-12-06 20:41:07 -0800 | [diff] [blame] | 3673 | static void cleanup_one_si(struct smi_info *to_clean) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | { |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3675 | int rv = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3676 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3677 | if (!to_clean) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | return; |
| 3679 | |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3680 | if (to_clean->intf) { |
| 3681 | ipmi_smi_t intf = to_clean->intf; |
| 3682 | |
| 3683 | to_clean->intf = NULL; |
| 3684 | rv = ipmi_unregister_smi(intf); |
| 3685 | if (rv) { |
| 3686 | pr_err(PFX "Unable to unregister device: errno=%d\n", |
| 3687 | rv); |
| 3688 | } |
| 3689 | } |
| 3690 | |
Takao Indoh | 567eded | 2014-10-06 14:17:53 -0500 | [diff] [blame] | 3691 | if (to_clean->dev) |
| 3692 | dev_set_drvdata(to_clean->dev, NULL); |
| 3693 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3694 | list_del(&to_clean->link); |
| 3695 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3696 | /* |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3697 | * Make sure that interrupts, the timer and the thread are |
| 3698 | * stopped and will not run again. |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3699 | */ |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3700 | if (to_clean->irq_cleanup) |
| 3701 | to_clean->irq_cleanup(to_clean); |
Corey Minyard | a9a2c44 | 2005-11-07 01:00:03 -0800 | [diff] [blame] | 3702 | wait_for_timer_and_thread(to_clean); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3703 | |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3704 | /* |
| 3705 | * Timeouts are stopped, now make sure the interrupts are off |
Corey Minyard | b874b98 | 2014-11-06 17:01:59 -0600 | [diff] [blame] | 3706 | * in the BMC. Note that timers and CPU interrupts are off, |
| 3707 | * so no need for locks. |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3708 | */ |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 3709 | while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) { |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 3710 | poll(to_clean); |
| 3711 | schedule_timeout_uninterruptible(1); |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 3712 | } |
| 3713 | disable_si_irq(to_clean); |
Corey Minyard | ee6cd5f | 2007-05-08 00:23:54 -0700 | [diff] [blame] | 3714 | while (to_clean->curr_msg || (to_clean->si_state != SI_NORMAL)) { |
| 3715 | poll(to_clean); |
| 3716 | schedule_timeout_uninterruptible(1); |
| 3717 | } |
| 3718 | |
Matthew Garrett | 2407d77 | 2010-05-26 14:43:46 -0700 | [diff] [blame] | 3719 | if (to_clean->handlers) |
| 3720 | to_clean->handlers->cleanup(to_clean->si_sm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | |
| 3722 | kfree(to_clean->si_sm); |
| 3723 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3724 | if (to_clean->addr_source_cleanup) |
| 3725 | to_clean->addr_source_cleanup(to_clean); |
Paolo Galtieri | 7767e12 | 2005-12-15 12:34:28 -0800 | [diff] [blame] | 3726 | if (to_clean->io_cleanup) |
| 3727 | to_clean->io_cleanup(to_clean); |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 3728 | |
| 3729 | if (to_clean->dev_registered) |
| 3730 | platform_device_unregister(to_clean->pdev); |
| 3731 | |
| 3732 | kfree(to_clean); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | } |
| 3734 | |
Sergey Senozhatsky | 0dcf334 | 2011-03-23 16:42:54 -0700 | [diff] [blame] | 3735 | static void cleanup_ipmi_si(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3736 | { |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3737 | struct smi_info *e, *tmp_e; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3739 | if (!initialized) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3740 | return; |
| 3741 | |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3742 | #ifdef CONFIG_PCI |
Matthew Garrett | 5648028 | 2010-06-29 15:05:29 -0700 | [diff] [blame] | 3743 | if (pci_registered) |
| 3744 | pci_unregister_driver(&ipmi_pci_driver); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3745 | #endif |
Ingo Molnar | 27d0567 | 2009-12-17 08:50:25 +0100 | [diff] [blame] | 3746 | #ifdef CONFIG_ACPI |
Yinghai Lu | 561f818 | 2010-09-22 13:05:15 -0700 | [diff] [blame] | 3747 | if (pnp_registered) |
| 3748 | pnp_unregister_driver(&ipmi_pnp_driver); |
Bjorn Helgaas | 9e368fa | 2009-11-17 17:05:34 -0700 | [diff] [blame] | 3749 | #endif |
Thomas Bogendoerfer | fdbeb7d | 2013-09-05 06:36:36 -0500 | [diff] [blame] | 3750 | #ifdef CONFIG_PARISC |
| 3751 | if (parisc_registered) |
| 3752 | unregister_parisc_driver(&ipmi_parisc_driver); |
| 3753 | #endif |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3754 | |
Rob Herring | a1e9c9d | 2011-02-23 15:37:59 -0600 | [diff] [blame] | 3755 | platform_driver_unregister(&ipmi_driver); |
Corey Minyard | dba9b4f | 2007-05-08 00:23:51 -0700 | [diff] [blame] | 3756 | |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3757 | mutex_lock(&smi_infos_lock); |
Corey Minyard | b0defcd | 2006-03-26 01:37:20 -0800 | [diff] [blame] | 3758 | list_for_each_entry_safe(e, tmp_e, &smi_infos, link) |
| 3759 | cleanup_one_si(e); |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 3760 | mutex_unlock(&smi_infos_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | } |
| 3762 | module_exit(cleanup_ipmi_si); |
| 3763 | |
| 3764 | MODULE_LICENSE("GPL"); |
Corey Minyard | 1fdd75b | 2005-09-06 15:18:42 -0700 | [diff] [blame] | 3765 | MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>"); |
Corey Minyard | c305e3d | 2008-04-29 01:01:10 -0700 | [diff] [blame] | 3766 | MODULE_DESCRIPTION("Interface to the IPMI driver for the KCS, SMIC, and BT" |
| 3767 | " system interfaces."); |