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