blob: 9d187fdbfd966e6cb12102ea5711db785081224e [file] [log] [blame]
Zhao Yakuie92b2972010-12-08 10:10:18 +08001/*
2 * acpi_ipmi.c - ACPI IPMI opregion
3 *
Lv Zhenga1a69b22013-09-13 13:13:54 +08004 * Copyright (C) 2010, 2013 Intel Corporation
5 * Author: Zhao Yakui <yakui.zhao@intel.com>
6 * Lv Zheng <lv.zheng@intel.com>
Zhao Yakuie92b2972010-12-08 10:10:18 +08007 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
Zhao Yakuie92b2972010-12-08 10:10:18 +080027#include <linux/module.h>
Lv Zheng935a9e32013-09-13 13:14:41 +080028#include <linux/acpi.h>
Zhao Yakuie92b2972010-12-08 10:10:18 +080029#include <linux/ipmi.h>
Lv Zheng06a85662013-09-13 13:13:23 +080030#include <linux/spinlock.h>
Zhao Yakuie92b2972010-12-08 10:10:18 +080031
32MODULE_AUTHOR("Zhao Yakui");
33MODULE_DESCRIPTION("ACPI IPMI Opregion driver");
34MODULE_LICENSE("GPL");
35
Zhao Yakuie92b2972010-12-08 10:10:18 +080036
37#define ACPI_IPMI_OK 0
38#define ACPI_IPMI_TIMEOUT 0x10
39#define ACPI_IPMI_UNKNOWN 0x07
40/* the IPMI timeout is 5s */
Lv Zheng8584ec62013-09-13 13:13:47 +080041#define IPMI_TIMEOUT (5000)
Lv Zheng6b68f032013-09-13 13:13:30 +080042#define ACPI_IPMI_MAX_MSG_LENGTH 64
Zhao Yakuie92b2972010-12-08 10:10:18 +080043
44struct acpi_ipmi_device {
45 /* the device list attached to driver_data.ipmi_devices */
46 struct list_head head;
47 /* the IPMI request message list */
48 struct list_head tx_msg_list;
Lv Zheng06a85662013-09-13 13:13:23 +080049 spinlock_t tx_msg_lock;
Zhao Yakuie92b2972010-12-08 10:10:18 +080050 acpi_handle handle;
Lv Zheng2fb037b2013-09-13 13:14:21 +080051 struct device *dev;
Zhao Yakuie92b2972010-12-08 10:10:18 +080052 ipmi_user_t user_interface;
53 int ipmi_ifnum; /* IPMI interface number */
54 long curr_msgid;
Lv Zhenga1a69b22013-09-13 13:13:54 +080055 bool dead;
56 struct kref kref;
Zhao Yakuie92b2972010-12-08 10:10:18 +080057};
58
59struct ipmi_driver_data {
60 struct list_head ipmi_devices;
61 struct ipmi_smi_watcher bmc_events;
62 struct ipmi_user_hndl ipmi_hndlrs;
63 struct mutex ipmi_lock;
Lv Zhenge96a94e2013-09-13 13:14:02 +080064 /*
65 * NOTE: IPMI System Interface Selection
66 * There is no system interface specified by the IPMI operation
67 * region access. We try to select one system interface with ACPI
68 * handle set. IPMI messages passed from the ACPI codes are sent
69 * to this selected global IPMI system interface.
70 */
71 struct acpi_ipmi_device *selected_smi;
Zhao Yakuie92b2972010-12-08 10:10:18 +080072};
73
74struct acpi_ipmi_msg {
75 struct list_head head;
76 /*
77 * General speaking the addr type should be SI_ADDR_TYPE. And
78 * the addr channel should be BMC.
79 * In fact it can also be IPMB type. But we will have to
80 * parse it from the Netfn command buffer. It is so complex
81 * that it is skipped.
82 */
83 struct ipmi_addr addr;
84 long tx_msgid;
85 /* it is used to track whether the IPMI message is finished */
86 struct completion tx_complete;
87 struct kernel_ipmi_msg tx_message;
88 int msg_done;
Lv Zheng6b68f032013-09-13 13:13:30 +080089 /* tx/rx data . And copy it from/to ACPI object buffer */
90 u8 data[ACPI_IPMI_MAX_MSG_LENGTH];
91 u8 rx_len;
Zhao Yakuie92b2972010-12-08 10:10:18 +080092 struct acpi_ipmi_device *device;
Lv Zheng7b984472013-09-13 13:14:11 +080093 struct kref kref;
Zhao Yakuie92b2972010-12-08 10:10:18 +080094};
95
96/* IPMI request/response buffer per ACPI 4.0, sec 5.5.2.4.3.2 */
97struct acpi_ipmi_buffer {
98 u8 status;
99 u8 length;
Lv Zheng6b68f032013-09-13 13:13:30 +0800100 u8 data[ACPI_IPMI_MAX_MSG_LENGTH];
Zhao Yakuie92b2972010-12-08 10:10:18 +0800101};
102
103static void ipmi_register_bmc(int iface, struct device *dev);
104static void ipmi_bmc_gone(int iface);
105static void ipmi_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800106
107static struct ipmi_driver_data driver_data = {
108 .ipmi_devices = LIST_HEAD_INIT(driver_data.ipmi_devices),
109 .bmc_events = {
110 .owner = THIS_MODULE,
111 .new_smi = ipmi_register_bmc,
112 .smi_gone = ipmi_bmc_gone,
113 },
114 .ipmi_hndlrs = {
115 .ipmi_recv_hndl = ipmi_msg_handler,
116 },
Lv Zhenga194aa42013-09-13 13:14:31 +0800117 .ipmi_lock = __MUTEX_INITIALIZER(driver_data.ipmi_lock)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800118};
119
Lv Zhenga1a69b22013-09-13 13:13:54 +0800120static struct acpi_ipmi_device *
Lv Zheng2fb037b2013-09-13 13:14:21 +0800121ipmi_dev_alloc(int iface, struct device *dev, acpi_handle handle)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800122{
123 struct acpi_ipmi_device *ipmi_device;
124 int err;
125 ipmi_user_t user;
126
127 ipmi_device = kzalloc(sizeof(*ipmi_device), GFP_KERNEL);
128 if (!ipmi_device)
129 return NULL;
130
131 kref_init(&ipmi_device->kref);
132 INIT_LIST_HEAD(&ipmi_device->head);
133 INIT_LIST_HEAD(&ipmi_device->tx_msg_list);
134 spin_lock_init(&ipmi_device->tx_msg_lock);
135
136 ipmi_device->handle = handle;
Lv Zheng2fb037b2013-09-13 13:14:21 +0800137 ipmi_device->dev = get_device(dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800138 ipmi_device->ipmi_ifnum = iface;
139
140 err = ipmi_create_user(iface, &driver_data.ipmi_hndlrs,
141 ipmi_device, &user);
142 if (err) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800143 put_device(dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800144 kfree(ipmi_device);
145 return NULL;
146 }
147 ipmi_device->user_interface = user;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800148
149 return ipmi_device;
150}
151
152static void ipmi_dev_release(struct acpi_ipmi_device *ipmi_device)
153{
Lv Zhenga1a69b22013-09-13 13:13:54 +0800154 ipmi_destroy_user(ipmi_device->user_interface);
Lv Zheng2fb037b2013-09-13 13:14:21 +0800155 put_device(ipmi_device->dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800156 kfree(ipmi_device);
157}
158
159static void ipmi_dev_release_kref(struct kref *kref)
160{
161 struct acpi_ipmi_device *ipmi =
162 container_of(kref, struct acpi_ipmi_device, kref);
163
164 ipmi_dev_release(ipmi);
165}
166
167static void __ipmi_dev_kill(struct acpi_ipmi_device *ipmi_device)
168{
169 list_del(&ipmi_device->head);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800170 if (driver_data.selected_smi == ipmi_device)
171 driver_data.selected_smi = NULL;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800172 /*
173 * Always setting dead flag after deleting from the list or
174 * list_for_each_entry() codes must get changed.
175 */
176 ipmi_device->dead = true;
177}
178
Lv Zhenge96a94e2013-09-13 13:14:02 +0800179static struct acpi_ipmi_device *acpi_ipmi_dev_get(void)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800180{
Lv Zhenge96a94e2013-09-13 13:14:02 +0800181 struct acpi_ipmi_device *ipmi_device = NULL;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800182
183 mutex_lock(&driver_data.ipmi_lock);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800184 if (driver_data.selected_smi) {
185 ipmi_device = driver_data.selected_smi;
186 kref_get(&ipmi_device->kref);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800187 }
188 mutex_unlock(&driver_data.ipmi_lock);
189
190 return ipmi_device;
191}
192
193static void acpi_ipmi_dev_put(struct acpi_ipmi_device *ipmi_device)
194{
195 kref_put(&ipmi_device->kref, ipmi_dev_release_kref);
196}
197
Lv Zheng7b984472013-09-13 13:14:11 +0800198static struct acpi_ipmi_msg *ipmi_msg_alloc(void)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800199{
Lv Zheng7b984472013-09-13 13:14:11 +0800200 struct acpi_ipmi_device *ipmi;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800201 struct acpi_ipmi_msg *ipmi_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800202
Lv Zheng7b984472013-09-13 13:14:11 +0800203 ipmi = acpi_ipmi_dev_get();
204 if (!ipmi)
205 return NULL;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800206 ipmi_msg = kzalloc(sizeof(struct acpi_ipmi_msg), GFP_KERNEL);
Lv Zheng7b984472013-09-13 13:14:11 +0800207 if (!ipmi_msg) {
208 acpi_ipmi_dev_put(ipmi);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800209 return NULL;
210 }
Lv Zheng7b984472013-09-13 13:14:11 +0800211 kref_init(&ipmi_msg->kref);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800212 init_completion(&ipmi_msg->tx_complete);
213 INIT_LIST_HEAD(&ipmi_msg->head);
214 ipmi_msg->device = ipmi;
Lv Zheng8584ec62013-09-13 13:13:47 +0800215 ipmi_msg->msg_done = ACPI_IPMI_UNKNOWN;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800216 return ipmi_msg;
217}
218
Lv Zheng7b984472013-09-13 13:14:11 +0800219static void ipmi_msg_release(struct acpi_ipmi_msg *tx_msg)
220{
221 acpi_ipmi_dev_put(tx_msg->device);
222 kfree(tx_msg);
223}
224
225static void ipmi_msg_release_kref(struct kref *kref)
226{
227 struct acpi_ipmi_msg *tx_msg =
228 container_of(kref, struct acpi_ipmi_msg, kref);
229
230 ipmi_msg_release(tx_msg);
231}
232
233static struct acpi_ipmi_msg *acpi_ipmi_msg_get(struct acpi_ipmi_msg *tx_msg)
234{
235 kref_get(&tx_msg->kref);
236
237 return tx_msg;
238}
239
240static void acpi_ipmi_msg_put(struct acpi_ipmi_msg *tx_msg)
241{
242 kref_put(&tx_msg->kref, ipmi_msg_release_kref);
243}
244
Zhao Yakuie92b2972010-12-08 10:10:18 +0800245#define IPMI_OP_RGN_NETFN(offset) ((offset >> 8) & 0xff)
246#define IPMI_OP_RGN_CMD(offset) (offset & 0xff)
Lv Zheng6b68f032013-09-13 13:13:30 +0800247static int acpi_format_ipmi_request(struct acpi_ipmi_msg *tx_msg,
Zhao Yakuie92b2972010-12-08 10:10:18 +0800248 acpi_physical_address address,
249 acpi_integer *value)
250{
251 struct kernel_ipmi_msg *msg;
252 struct acpi_ipmi_buffer *buffer;
253 struct acpi_ipmi_device *device;
Lv Zheng06a85662013-09-13 13:13:23 +0800254 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800255
256 msg = &tx_msg->tx_message;
257 /*
258 * IPMI network function and command are encoded in the address
259 * within the IPMI OpRegion; see ACPI 4.0, sec 5.5.2.4.3.
260 */
261 msg->netfn = IPMI_OP_RGN_NETFN(address);
262 msg->cmd = IPMI_OP_RGN_CMD(address);
Lv Zheng6b68f032013-09-13 13:13:30 +0800263 msg->data = tx_msg->data;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800264 /*
265 * value is the parameter passed by the IPMI opregion space handler.
266 * It points to the IPMI request message buffer
267 */
268 buffer = (struct acpi_ipmi_buffer *)value;
269 /* copy the tx message data */
Lv Zheng6b68f032013-09-13 13:13:30 +0800270 if (buffer->length > ACPI_IPMI_MAX_MSG_LENGTH) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800271 dev_WARN_ONCE(tx_msg->device->dev, true,
Lv Zheng6b68f032013-09-13 13:13:30 +0800272 "Unexpected request (msg len %d).\n",
273 buffer->length);
274 return -EINVAL;
275 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800276 msg->data_len = buffer->length;
Lv Zheng6b68f032013-09-13 13:13:30 +0800277 memcpy(tx_msg->data, buffer->data, msg->data_len);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800278 /*
279 * now the default type is SYSTEM_INTERFACE and channel type is BMC.
280 * If the netfn is APP_REQUEST and the cmd is SEND_MESSAGE,
281 * the addr type should be changed to IPMB. Then we will have to parse
282 * the IPMI request message buffer to get the IPMB address.
283 * If so, please fix me.
284 */
285 tx_msg->addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
286 tx_msg->addr.channel = IPMI_BMC_CHANNEL;
287 tx_msg->addr.data[0] = 0;
288
289 /* Get the msgid */
290 device = tx_msg->device;
Lv Zheng06a85662013-09-13 13:13:23 +0800291 spin_lock_irqsave(&device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800292 device->curr_msgid++;
293 tx_msg->tx_msgid = device->curr_msgid;
Lv Zheng06a85662013-09-13 13:13:23 +0800294 spin_unlock_irqrestore(&device->tx_msg_lock, flags);
Lv Zheng6b68f032013-09-13 13:13:30 +0800295 return 0;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800296}
297
298static void acpi_format_ipmi_response(struct acpi_ipmi_msg *msg,
Lv Zheng8584ec62013-09-13 13:13:47 +0800299 acpi_integer *value)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800300{
301 struct acpi_ipmi_buffer *buffer;
302
303 /*
304 * value is also used as output parameter. It represents the response
305 * IPMI message returned by IPMI command.
306 */
307 buffer = (struct acpi_ipmi_buffer *)value;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800308 /*
Lv Zheng8584ec62013-09-13 13:13:47 +0800309 * If the flag of msg_done is not set, it means that the IPMI command is
310 * not executed correctly.
Zhao Yakuie92b2972010-12-08 10:10:18 +0800311 */
Lv Zheng8584ec62013-09-13 13:13:47 +0800312 buffer->status = msg->msg_done;
313 if (msg->msg_done != ACPI_IPMI_OK)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800314 return;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800315 /*
316 * If the IPMI response message is obtained correctly, the status code
317 * will be ACPI_IPMI_OK
318 */
Zhao Yakuie92b2972010-12-08 10:10:18 +0800319 buffer->length = msg->rx_len;
Lv Zheng6b68f032013-09-13 13:13:30 +0800320 memcpy(buffer->data, msg->data, msg->rx_len);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800321}
322
323static void ipmi_flush_tx_msg(struct acpi_ipmi_device *ipmi)
324{
Lv Zheng7b984472013-09-13 13:14:11 +0800325 struct acpi_ipmi_msg *tx_msg;
Lv Zheng5ac557e2013-09-13 13:13:39 +0800326 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800327
Lv Zhenga1a69b22013-09-13 13:13:54 +0800328 /*
329 * NOTE: On-going ipmi_recv_msg
330 * ipmi_msg_handler() may still be invoked by ipmi_si after
331 * flushing. But it is safe to do a fast flushing on module_exit()
332 * without waiting for all ipmi_recv_msg(s) to complete from
333 * ipmi_msg_handler() as it is ensured by ipmi_si that all
334 * ipmi_recv_msg(s) are freed after invoking ipmi_destroy_user().
335 */
Lv Zheng5ac557e2013-09-13 13:13:39 +0800336 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
Lv Zheng7b984472013-09-13 13:14:11 +0800337 while (!list_empty(&ipmi->tx_msg_list)) {
338 tx_msg = list_first_entry(&ipmi->tx_msg_list,
339 struct acpi_ipmi_msg,
340 head);
341 list_del(&tx_msg->head);
342 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
343
Zhao Yakuie92b2972010-12-08 10:10:18 +0800344 /* wake up the sleep thread on the Tx msg */
345 complete(&tx_msg->tx_complete);
Lv Zheng7b984472013-09-13 13:14:11 +0800346 acpi_ipmi_msg_put(tx_msg);
347 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800348 }
Lv Zheng5ac557e2013-09-13 13:13:39 +0800349 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800350}
351
Lv Zheng7b984472013-09-13 13:14:11 +0800352static void ipmi_cancel_tx_msg(struct acpi_ipmi_device *ipmi,
353 struct acpi_ipmi_msg *msg)
354{
355 struct acpi_ipmi_msg *tx_msg, *temp;
356 bool msg_found = false;
357 unsigned long flags;
358
359 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
360 list_for_each_entry_safe(tx_msg, temp, &ipmi->tx_msg_list, head) {
361 if (msg == tx_msg) {
362 msg_found = true;
363 list_del(&tx_msg->head);
364 break;
365 }
366 }
367 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
368
369 if (msg_found)
370 acpi_ipmi_msg_put(tx_msg);
371}
372
Zhao Yakuie92b2972010-12-08 10:10:18 +0800373static void ipmi_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data)
374{
375 struct acpi_ipmi_device *ipmi_device = user_msg_data;
Lv Zheng7b984472013-09-13 13:14:11 +0800376 bool msg_found = false;
377 struct acpi_ipmi_msg *tx_msg, *temp;
Lv Zheng2fb037b2013-09-13 13:14:21 +0800378 struct device *dev = ipmi_device->dev;
Lv Zheng06a85662013-09-13 13:13:23 +0800379 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800380
381 if (msg->user != ipmi_device->user_interface) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800382 dev_warn(dev, "Unexpected response is returned. "
Zhao Yakuie92b2972010-12-08 10:10:18 +0800383 "returned user %p, expected user %p\n",
384 msg->user, ipmi_device->user_interface);
Lv Zheng6b68f032013-09-13 13:13:30 +0800385 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800386 }
Lv Zheng06a85662013-09-13 13:13:23 +0800387 spin_lock_irqsave(&ipmi_device->tx_msg_lock, flags);
Lv Zheng7b984472013-09-13 13:14:11 +0800388 list_for_each_entry_safe(tx_msg, temp, &ipmi_device->tx_msg_list, head) {
Zhao Yakuie92b2972010-12-08 10:10:18 +0800389 if (msg->msgid == tx_msg->tx_msgid) {
Lv Zheng7b984472013-09-13 13:14:11 +0800390 msg_found = true;
391 list_del(&tx_msg->head);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800392 break;
393 }
394 }
Lv Zheng7b984472013-09-13 13:14:11 +0800395 spin_unlock_irqrestore(&ipmi_device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800396
Zhao Yakuie92b2972010-12-08 10:10:18 +0800397 if (!msg_found) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800398 dev_warn(dev, "Unexpected response (msg id %ld) is "
Zhao Yakuie92b2972010-12-08 10:10:18 +0800399 "returned.\n", msg->msgid);
Lv Zheng7b984472013-09-13 13:14:11 +0800400 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800401 }
402
Lv Zheng6b68f032013-09-13 13:13:30 +0800403 /* copy the response data to Rx_data buffer */
404 if (msg->msg.data_len > ACPI_IPMI_MAX_MSG_LENGTH) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800405 dev_WARN_ONCE(dev, true,
Lv Zheng6b68f032013-09-13 13:13:30 +0800406 "Unexpected response (msg len %d).\n",
407 msg->msg.data_len);
Lv Zheng8584ec62013-09-13 13:13:47 +0800408 goto out_comp;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800409 }
Lv Zheng8584ec62013-09-13 13:13:47 +0800410 /* response msg is an error msg */
411 msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
412 if (msg->recv_type == IPMI_RESPONSE_RECV_TYPE &&
413 msg->msg.data_len == 1) {
414 if (msg->msg.data[0] == IPMI_TIMEOUT_COMPLETION_CODE) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800415 dev_WARN_ONCE(dev, true,
Lv Zheng8584ec62013-09-13 13:13:47 +0800416 "Unexpected response (timeout).\n");
417 tx_msg->msg_done = ACPI_IPMI_TIMEOUT;
418 }
419 goto out_comp;
420 }
421 tx_msg->rx_len = msg->msg.data_len;
422 memcpy(tx_msg->data, msg->msg.data, tx_msg->rx_len);
423 tx_msg->msg_done = ACPI_IPMI_OK;
424out_comp:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800425 complete(&tx_msg->tx_complete);
Lv Zheng7b984472013-09-13 13:14:11 +0800426 acpi_ipmi_msg_put(tx_msg);
Lv Zheng6b68f032013-09-13 13:13:30 +0800427out_msg:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800428 ipmi_free_recv_msg(msg);
429};
430
431static void ipmi_register_bmc(int iface, struct device *dev)
432{
433 struct acpi_ipmi_device *ipmi_device, *temp;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800434 int err;
435 struct ipmi_smi_info smi_data;
436 acpi_handle handle;
437
438 err = ipmi_get_smi_info(iface, &smi_data);
439
440 if (err)
441 return;
442
Lv Zhenga1a69b22013-09-13 13:13:54 +0800443 if (smi_data.addr_src != SI_ACPI)
444 goto err_ref;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800445 handle = smi_data.addr_info.acpi_info.acpi_handle;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800446 if (!handle)
447 goto err_ref;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800448
Lv Zheng2fb037b2013-09-13 13:14:21 +0800449 ipmi_device = ipmi_dev_alloc(iface, smi_data.dev, handle);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800450 if (!ipmi_device) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800451 dev_warn(smi_data.dev, "Can't create IPMI user interface\n");
Lv Zhenga1a69b22013-09-13 13:13:54 +0800452 goto err_ref;
453 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800454
455 mutex_lock(&driver_data.ipmi_lock);
456 list_for_each_entry(temp, &driver_data.ipmi_devices, head) {
457 /*
458 * if the corresponding ACPI handle is already added
459 * to the device list, don't add it again.
460 */
461 if (temp->handle == handle)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800462 goto err_lock;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800463 }
464
Lv Zhenge96a94e2013-09-13 13:14:02 +0800465 if (!driver_data.selected_smi)
466 driver_data.selected_smi = ipmi_device;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800467 list_add_tail(&ipmi_device->head, &driver_data.ipmi_devices);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800468 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800469 put_device(smi_data.dev);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800470 return;
471
Lv Zhenga1a69b22013-09-13 13:13:54 +0800472err_lock:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800473 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800474 ipmi_dev_release(ipmi_device);
475err_ref:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800476 put_device(smi_data.dev);
477 return;
478}
479
480static void ipmi_bmc_gone(int iface)
481{
482 struct acpi_ipmi_device *ipmi_device, *temp;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800483 bool dev_found = false;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800484
485 mutex_lock(&driver_data.ipmi_lock);
486 list_for_each_entry_safe(ipmi_device, temp,
487 &driver_data.ipmi_devices, head) {
Lv Zhenga1a69b22013-09-13 13:13:54 +0800488 if (ipmi_device->ipmi_ifnum != iface) {
489 dev_found = true;
490 __ipmi_dev_kill(ipmi_device);
491 break;
492 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800493 }
Lv Zhenge96a94e2013-09-13 13:14:02 +0800494 if (!driver_data.selected_smi)
495 driver_data.selected_smi = list_first_entry_or_null(
496 &driver_data.ipmi_devices,
497 struct acpi_ipmi_device, head);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800498 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800499 if (dev_found) {
500 ipmi_flush_tx_msg(ipmi_device);
501 acpi_ipmi_dev_put(ipmi_device);
502 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800503}
504/* --------------------------------------------------------------------------
505 * Address Space Management
506 * -------------------------------------------------------------------------- */
507/*
508 * This is the IPMI opregion space handler.
509 * @function: indicates the read/write. In fact as the IPMI message is driven
510 * by command, only write is meaningful.
511 * @address: This contains the netfn/command of IPMI request message.
512 * @bits : not used.
513 * @value : it is an in/out parameter. It points to the IPMI message buffer.
514 * Before the IPMI message is sent, it represents the actual request
515 * IPMI message. After the IPMI message is finished, it represents
516 * the response IPMI message returned by IPMI command.
517 * @handler_context: IPMI device context.
518 */
519
520static acpi_status
521acpi_ipmi_space_handler(u32 function, acpi_physical_address address,
522 u32 bits, acpi_integer *value,
523 void *handler_context, void *region_context)
524{
525 struct acpi_ipmi_msg *tx_msg;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800526 struct acpi_ipmi_device *ipmi_device;
Lv Zheng8584ec62013-09-13 13:13:47 +0800527 int err;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800528 acpi_status status;
Lv Zheng06a85662013-09-13 13:13:23 +0800529 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800530 /*
531 * IPMI opregion message.
532 * IPMI message is firstly written to the BMC and system software
533 * can get the respsonse. So it is unmeaningful for the read access
534 * of IPMI opregion.
535 */
536 if ((function & ACPI_IO_MASK) == ACPI_READ)
537 return AE_TYPE;
538
Lv Zheng7b984472013-09-13 13:14:11 +0800539 tx_msg = ipmi_msg_alloc();
540 if (!tx_msg)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800541 return AE_NOT_EXIST;
542
Lv Zheng7b984472013-09-13 13:14:11 +0800543 ipmi_device = tx_msg->device;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800544
Lv Zheng6b68f032013-09-13 13:13:30 +0800545 if (acpi_format_ipmi_request(tx_msg, address, value) != 0) {
Lv Zheng7b984472013-09-13 13:14:11 +0800546 ipmi_msg_release(tx_msg);
547 return AE_TYPE;
Lv Zheng6b68f032013-09-13 13:13:30 +0800548 }
Lv Zheng7b984472013-09-13 13:14:11 +0800549 acpi_ipmi_msg_get(tx_msg);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800550 mutex_lock(&driver_data.ipmi_lock);
551 /* Do not add a tx_msg that can not be flushed. */
552 if (ipmi_device->dead) {
Lv Zhenga1a69b22013-09-13 13:13:54 +0800553 mutex_unlock(&driver_data.ipmi_lock);
Lv Zheng7b984472013-09-13 13:14:11 +0800554 ipmi_msg_release(tx_msg);
555 return AE_NOT_EXIST;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800556 }
Lv Zheng06a85662013-09-13 13:13:23 +0800557 spin_lock_irqsave(&ipmi_device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800558 list_add_tail(&tx_msg->head, &ipmi_device->tx_msg_list);
Lv Zheng06a85662013-09-13 13:13:23 +0800559 spin_unlock_irqrestore(&ipmi_device->tx_msg_lock, flags);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800560 mutex_unlock(&driver_data.ipmi_lock);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800561 err = ipmi_request_settime(ipmi_device->user_interface,
562 &tx_msg->addr,
563 tx_msg->tx_msgid,
564 &tx_msg->tx_message,
Lv Zheng8584ec62013-09-13 13:13:47 +0800565 NULL, 0, 0, IPMI_TIMEOUT);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800566 if (err) {
567 status = AE_ERROR;
Lv Zheng7b984472013-09-13 13:14:11 +0800568 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800569 }
Lv Zheng8584ec62013-09-13 13:13:47 +0800570 wait_for_completion(&tx_msg->tx_complete);
571 acpi_format_ipmi_response(tx_msg, value);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800572 status = AE_OK;
573
Lv Zheng6b68f032013-09-13 13:13:30 +0800574out_msg:
Lv Zheng7b984472013-09-13 13:14:11 +0800575 ipmi_cancel_tx_msg(ipmi_device, tx_msg);
576 acpi_ipmi_msg_put(tx_msg);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800577 return status;
578}
579
Zhao Yakuie92b2972010-12-08 10:10:18 +0800580static int __init acpi_ipmi_init(void)
581{
Lv Zhenga194aa42013-09-13 13:14:31 +0800582 int result;
Lv Zhenge96a94e2013-09-13 13:14:02 +0800583 acpi_status status;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800584
585 if (acpi_disabled)
Lv Zhenga194aa42013-09-13 13:14:31 +0800586 return 0;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800587
Lv Zhenge96a94e2013-09-13 13:14:02 +0800588 status = acpi_install_address_space_handler(ACPI_ROOT_OBJECT,
589 ACPI_ADR_SPACE_IPMI, &acpi_ipmi_space_handler,
590 NULL, NULL);
591 if (ACPI_FAILURE(status)) {
592 pr_warn("Can't register IPMI opregion space handle\n");
593 return -EINVAL;
594 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800595 result = ipmi_smi_watcher_register(&driver_data.bmc_events);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800596 if (result)
597 pr_err("Can't register IPMI system interface watcher\n");
Zhao Yakuie92b2972010-12-08 10:10:18 +0800598
599 return result;
600}
601
602static void __exit acpi_ipmi_exit(void)
603{
Lv Zhenga1a69b22013-09-13 13:13:54 +0800604 struct acpi_ipmi_device *ipmi_device;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800605
606 if (acpi_disabled)
607 return;
608
609 ipmi_smi_watcher_unregister(&driver_data.bmc_events);
610
611 /*
612 * When one smi_watcher is unregistered, it is only deleted
613 * from the smi_watcher list. But the smi_gone callback function
614 * is not called. So explicitly uninstall the ACPI IPMI oregion
615 * handler and free it.
616 */
617 mutex_lock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800618 while (!list_empty(&driver_data.ipmi_devices)) {
619 ipmi_device = list_first_entry(&driver_data.ipmi_devices,
620 struct acpi_ipmi_device,
621 head);
622 __ipmi_dev_kill(ipmi_device);
623 mutex_unlock(&driver_data.ipmi_lock);
624
625 ipmi_flush_tx_msg(ipmi_device);
626 acpi_ipmi_dev_put(ipmi_device);
627
628 mutex_lock(&driver_data.ipmi_lock);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800629 }
630 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800631 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
632 ACPI_ADR_SPACE_IPMI, &acpi_ipmi_space_handler);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800633}
634
635module_init(acpi_ipmi_init);
636module_exit(acpi_ipmi_exit);