blob: a5fe2926bf506466a5d4fa6b9dbcace3e38ca4b5 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Zhao Yakuie92b2972010-12-08 10:10:18 +08002/*
3 * acpi_ipmi.c - ACPI IPMI opregion
4 *
Lv Zhenga1a69b22013-09-13 13:13:54 +08005 * Copyright (C) 2010, 2013 Intel Corporation
6 * Author: Zhao Yakui <yakui.zhao@intel.com>
7 * Lv Zheng <lv.zheng@intel.com>
Zhao Yakuie92b2972010-12-08 10:10:18 +08008 */
9
Zhao Yakuie92b2972010-12-08 10:10:18 +080010#include <linux/module.h>
Lv Zheng935a9e32013-09-13 13:14:41 +080011#include <linux/acpi.h>
Zhao Yakuie92b2972010-12-08 10:10:18 +080012#include <linux/ipmi.h>
Lv Zheng06a85662013-09-13 13:13:23 +080013#include <linux/spinlock.h>
Zhao Yakuie92b2972010-12-08 10:10:18 +080014
15MODULE_AUTHOR("Zhao Yakui");
16MODULE_DESCRIPTION("ACPI IPMI Opregion driver");
17MODULE_LICENSE("GPL");
18
Zhao Yakuie92b2972010-12-08 10:10:18 +080019#define ACPI_IPMI_OK 0
20#define ACPI_IPMI_TIMEOUT 0x10
21#define ACPI_IPMI_UNKNOWN 0x07
22/* the IPMI timeout is 5s */
Lv Zheng8584ec62013-09-13 13:13:47 +080023#define IPMI_TIMEOUT (5000)
Lv Zheng6b68f032013-09-13 13:13:30 +080024#define ACPI_IPMI_MAX_MSG_LENGTH 64
Zhao Yakuie92b2972010-12-08 10:10:18 +080025
26struct acpi_ipmi_device {
27 /* the device list attached to driver_data.ipmi_devices */
28 struct list_head head;
Lv Zheng50065302013-09-13 13:15:00 +080029
Zhao Yakuie92b2972010-12-08 10:10:18 +080030 /* the IPMI request message list */
31 struct list_head tx_msg_list;
Lv Zheng50065302013-09-13 13:15:00 +080032
33 spinlock_t tx_msg_lock;
Zhao Yakuie92b2972010-12-08 10:10:18 +080034 acpi_handle handle;
Lv Zheng2fb037b2013-09-13 13:14:21 +080035 struct device *dev;
Corey Minyardebba75f2018-04-11 13:05:33 -050036 struct ipmi_user *user_interface;
Zhao Yakuie92b2972010-12-08 10:10:18 +080037 int ipmi_ifnum; /* IPMI interface number */
38 long curr_msgid;
Lv Zhenga1a69b22013-09-13 13:13:54 +080039 bool dead;
40 struct kref kref;
Zhao Yakuie92b2972010-12-08 10:10:18 +080041};
42
43struct ipmi_driver_data {
Lv Zheng50065302013-09-13 13:15:00 +080044 struct list_head ipmi_devices;
45 struct ipmi_smi_watcher bmc_events;
Corey Minyardc690d142017-01-05 10:52:54 -060046 const struct ipmi_user_hndl ipmi_hndlrs;
Lv Zheng50065302013-09-13 13:15:00 +080047 struct mutex ipmi_lock;
48
Lv Zhenge96a94e2013-09-13 13:14:02 +080049 /*
50 * NOTE: IPMI System Interface Selection
51 * There is no system interface specified by the IPMI operation
52 * region access. We try to select one system interface with ACPI
53 * handle set. IPMI messages passed from the ACPI codes are sent
54 * to this selected global IPMI system interface.
55 */
56 struct acpi_ipmi_device *selected_smi;
Zhao Yakuie92b2972010-12-08 10:10:18 +080057};
58
59struct acpi_ipmi_msg {
60 struct list_head head;
Lv Zheng50065302013-09-13 13:15:00 +080061
Zhao Yakuie92b2972010-12-08 10:10:18 +080062 /*
63 * General speaking the addr type should be SI_ADDR_TYPE. And
64 * the addr channel should be BMC.
65 * In fact it can also be IPMB type. But we will have to
66 * parse it from the Netfn command buffer. It is so complex
67 * that it is skipped.
68 */
69 struct ipmi_addr addr;
70 long tx_msgid;
Lv Zheng50065302013-09-13 13:15:00 +080071
Zhao Yakuie92b2972010-12-08 10:10:18 +080072 /* it is used to track whether the IPMI message is finished */
73 struct completion tx_complete;
Lv Zheng50065302013-09-13 13:15:00 +080074
Zhao Yakuie92b2972010-12-08 10:10:18 +080075 struct kernel_ipmi_msg tx_message;
Lv Zheng50065302013-09-13 13:15:00 +080076 int msg_done;
77
Lv Zheng6b68f032013-09-13 13:13:30 +080078 /* tx/rx data . And copy it from/to ACPI object buffer */
Lv Zheng50065302013-09-13 13:15:00 +080079 u8 data[ACPI_IPMI_MAX_MSG_LENGTH];
80 u8 rx_len;
81
Zhao Yakuie92b2972010-12-08 10:10:18 +080082 struct acpi_ipmi_device *device;
Lv Zheng50065302013-09-13 13:15:00 +080083 struct kref kref;
Zhao Yakuie92b2972010-12-08 10:10:18 +080084};
85
86/* IPMI request/response buffer per ACPI 4.0, sec 5.5.2.4.3.2 */
87struct acpi_ipmi_buffer {
88 u8 status;
89 u8 length;
Lv Zheng6b68f032013-09-13 13:13:30 +080090 u8 data[ACPI_IPMI_MAX_MSG_LENGTH];
Zhao Yakuie92b2972010-12-08 10:10:18 +080091};
92
93static void ipmi_register_bmc(int iface, struct device *dev);
94static void ipmi_bmc_gone(int iface);
95static void ipmi_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data);
Zhao Yakuie92b2972010-12-08 10:10:18 +080096
97static struct ipmi_driver_data driver_data = {
98 .ipmi_devices = LIST_HEAD_INIT(driver_data.ipmi_devices),
99 .bmc_events = {
100 .owner = THIS_MODULE,
101 .new_smi = ipmi_register_bmc,
102 .smi_gone = ipmi_bmc_gone,
103 },
104 .ipmi_hndlrs = {
105 .ipmi_recv_hndl = ipmi_msg_handler,
106 },
Lv Zhenga194aa42013-09-13 13:14:31 +0800107 .ipmi_lock = __MUTEX_INITIALIZER(driver_data.ipmi_lock)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800108};
109
Lv Zhenga1a69b22013-09-13 13:13:54 +0800110static struct acpi_ipmi_device *
Lv Zheng2fb037b2013-09-13 13:14:21 +0800111ipmi_dev_alloc(int iface, struct device *dev, acpi_handle handle)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800112{
113 struct acpi_ipmi_device *ipmi_device;
114 int err;
Corey Minyardebba75f2018-04-11 13:05:33 -0500115 struct ipmi_user *user;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800116
117 ipmi_device = kzalloc(sizeof(*ipmi_device), GFP_KERNEL);
118 if (!ipmi_device)
119 return NULL;
120
121 kref_init(&ipmi_device->kref);
122 INIT_LIST_HEAD(&ipmi_device->head);
123 INIT_LIST_HEAD(&ipmi_device->tx_msg_list);
124 spin_lock_init(&ipmi_device->tx_msg_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800125 ipmi_device->handle = handle;
Lv Zheng2fb037b2013-09-13 13:14:21 +0800126 ipmi_device->dev = get_device(dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800127 ipmi_device->ipmi_ifnum = iface;
128
129 err = ipmi_create_user(iface, &driver_data.ipmi_hndlrs,
130 ipmi_device, &user);
131 if (err) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800132 put_device(dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800133 kfree(ipmi_device);
134 return NULL;
135 }
136 ipmi_device->user_interface = user;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800137
138 return ipmi_device;
139}
140
141static void ipmi_dev_release(struct acpi_ipmi_device *ipmi_device)
142{
Lv Zhenga1a69b22013-09-13 13:13:54 +0800143 ipmi_destroy_user(ipmi_device->user_interface);
Lv Zheng2fb037b2013-09-13 13:14:21 +0800144 put_device(ipmi_device->dev);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800145 kfree(ipmi_device);
146}
147
148static void ipmi_dev_release_kref(struct kref *kref)
149{
150 struct acpi_ipmi_device *ipmi =
151 container_of(kref, struct acpi_ipmi_device, kref);
152
153 ipmi_dev_release(ipmi);
154}
155
156static void __ipmi_dev_kill(struct acpi_ipmi_device *ipmi_device)
157{
158 list_del(&ipmi_device->head);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800159 if (driver_data.selected_smi == ipmi_device)
160 driver_data.selected_smi = NULL;
Lv Zheng50065302013-09-13 13:15:00 +0800161
Lv Zhenga1a69b22013-09-13 13:13:54 +0800162 /*
163 * Always setting dead flag after deleting from the list or
164 * list_for_each_entry() codes must get changed.
165 */
166 ipmi_device->dead = true;
167}
168
Lv Zhenge96a94e2013-09-13 13:14:02 +0800169static struct acpi_ipmi_device *acpi_ipmi_dev_get(void)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800170{
Lv Zhenge96a94e2013-09-13 13:14:02 +0800171 struct acpi_ipmi_device *ipmi_device = NULL;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800172
173 mutex_lock(&driver_data.ipmi_lock);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800174 if (driver_data.selected_smi) {
175 ipmi_device = driver_data.selected_smi;
176 kref_get(&ipmi_device->kref);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800177 }
178 mutex_unlock(&driver_data.ipmi_lock);
179
180 return ipmi_device;
181}
182
183static void acpi_ipmi_dev_put(struct acpi_ipmi_device *ipmi_device)
184{
185 kref_put(&ipmi_device->kref, ipmi_dev_release_kref);
186}
187
Lv Zheng7b984472013-09-13 13:14:11 +0800188static struct acpi_ipmi_msg *ipmi_msg_alloc(void)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800189{
Lv Zheng7b984472013-09-13 13:14:11 +0800190 struct acpi_ipmi_device *ipmi;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800191 struct acpi_ipmi_msg *ipmi_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800192
Lv Zheng7b984472013-09-13 13:14:11 +0800193 ipmi = acpi_ipmi_dev_get();
194 if (!ipmi)
195 return NULL;
Lv Zheng50065302013-09-13 13:15:00 +0800196
Zhao Yakuie92b2972010-12-08 10:10:18 +0800197 ipmi_msg = kzalloc(sizeof(struct acpi_ipmi_msg), GFP_KERNEL);
Lv Zheng7b984472013-09-13 13:14:11 +0800198 if (!ipmi_msg) {
199 acpi_ipmi_dev_put(ipmi);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800200 return NULL;
201 }
Lv Zheng50065302013-09-13 13:15:00 +0800202
Lv Zheng7b984472013-09-13 13:14:11 +0800203 kref_init(&ipmi_msg->kref);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800204 init_completion(&ipmi_msg->tx_complete);
205 INIT_LIST_HEAD(&ipmi_msg->head);
206 ipmi_msg->device = ipmi;
Lv Zheng8584ec62013-09-13 13:13:47 +0800207 ipmi_msg->msg_done = ACPI_IPMI_UNKNOWN;
Lv Zheng50065302013-09-13 13:15:00 +0800208
Zhao Yakuie92b2972010-12-08 10:10:18 +0800209 return ipmi_msg;
210}
211
Lv Zheng7b984472013-09-13 13:14:11 +0800212static void ipmi_msg_release(struct acpi_ipmi_msg *tx_msg)
213{
214 acpi_ipmi_dev_put(tx_msg->device);
215 kfree(tx_msg);
216}
217
218static void ipmi_msg_release_kref(struct kref *kref)
219{
220 struct acpi_ipmi_msg *tx_msg =
221 container_of(kref, struct acpi_ipmi_msg, kref);
222
223 ipmi_msg_release(tx_msg);
224}
225
226static struct acpi_ipmi_msg *acpi_ipmi_msg_get(struct acpi_ipmi_msg *tx_msg)
227{
228 kref_get(&tx_msg->kref);
229
230 return tx_msg;
231}
232
233static void acpi_ipmi_msg_put(struct acpi_ipmi_msg *tx_msg)
234{
235 kref_put(&tx_msg->kref, ipmi_msg_release_kref);
236}
237
Lv Zheng50065302013-09-13 13:15:00 +0800238#define IPMI_OP_RGN_NETFN(offset) ((offset >> 8) & 0xff)
239#define IPMI_OP_RGN_CMD(offset) (offset & 0xff)
Lv Zheng6b68f032013-09-13 13:13:30 +0800240static int acpi_format_ipmi_request(struct acpi_ipmi_msg *tx_msg,
Lv Zheng50065302013-09-13 13:15:00 +0800241 acpi_physical_address address,
242 acpi_integer *value)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800243{
244 struct kernel_ipmi_msg *msg;
245 struct acpi_ipmi_buffer *buffer;
246 struct acpi_ipmi_device *device;
Lv Zheng06a85662013-09-13 13:13:23 +0800247 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800248
249 msg = &tx_msg->tx_message;
Lv Zheng50065302013-09-13 13:15:00 +0800250
Zhao Yakuie92b2972010-12-08 10:10:18 +0800251 /*
252 * IPMI network function and command are encoded in the address
253 * within the IPMI OpRegion; see ACPI 4.0, sec 5.5.2.4.3.
254 */
255 msg->netfn = IPMI_OP_RGN_NETFN(address);
256 msg->cmd = IPMI_OP_RGN_CMD(address);
Lv Zheng6b68f032013-09-13 13:13:30 +0800257 msg->data = tx_msg->data;
Lv Zheng50065302013-09-13 13:15:00 +0800258
Zhao Yakuie92b2972010-12-08 10:10:18 +0800259 /*
260 * value is the parameter passed by the IPMI opregion space handler.
261 * It points to the IPMI request message buffer
262 */
263 buffer = (struct acpi_ipmi_buffer *)value;
Lv Zheng50065302013-09-13 13:15:00 +0800264
Zhao Yakuie92b2972010-12-08 10:10:18 +0800265 /* copy the tx message data */
Lv Zheng6b68f032013-09-13 13:13:30 +0800266 if (buffer->length > ACPI_IPMI_MAX_MSG_LENGTH) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800267 dev_WARN_ONCE(tx_msg->device->dev, true,
Lv Zheng6b68f032013-09-13 13:13:30 +0800268 "Unexpected request (msg len %d).\n",
269 buffer->length);
270 return -EINVAL;
271 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800272 msg->data_len = buffer->length;
Lv Zheng6b68f032013-09-13 13:13:30 +0800273 memcpy(tx_msg->data, buffer->data, msg->data_len);
Lv Zheng50065302013-09-13 13:15:00 +0800274
Zhao Yakuie92b2972010-12-08 10:10:18 +0800275 /*
276 * now the default type is SYSTEM_INTERFACE and channel type is BMC.
277 * If the netfn is APP_REQUEST and the cmd is SEND_MESSAGE,
278 * the addr type should be changed to IPMB. Then we will have to parse
279 * the IPMI request message buffer to get the IPMB address.
280 * If so, please fix me.
281 */
282 tx_msg->addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE;
283 tx_msg->addr.channel = IPMI_BMC_CHANNEL;
284 tx_msg->addr.data[0] = 0;
285
286 /* Get the msgid */
287 device = tx_msg->device;
Lv Zheng50065302013-09-13 13:15:00 +0800288
Lv Zheng06a85662013-09-13 13:13:23 +0800289 spin_lock_irqsave(&device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800290 device->curr_msgid++;
291 tx_msg->tx_msgid = device->curr_msgid;
Lv Zheng06a85662013-09-13 13:13:23 +0800292 spin_unlock_irqrestore(&device->tx_msg_lock, flags);
Lv Zheng50065302013-09-13 13:15:00 +0800293
Lv Zheng6b68f032013-09-13 13:13:30 +0800294 return 0;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800295}
296
297static void acpi_format_ipmi_response(struct acpi_ipmi_msg *msg,
Lv Zheng50065302013-09-13 13:15:00 +0800298 acpi_integer *value)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800299{
300 struct acpi_ipmi_buffer *buffer;
301
302 /*
303 * value is also used as output parameter. It represents the response
304 * IPMI message returned by IPMI command.
305 */
306 buffer = (struct acpi_ipmi_buffer *)value;
Lv Zheng50065302013-09-13 13:15:00 +0800307
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;
Lv Zheng50065302013-09-13 13:15:00 +0800315
Zhao Yakuie92b2972010-12-08 10:10:18 +0800316 /*
317 * If the IPMI response message is obtained correctly, the status code
318 * will be ACPI_IPMI_OK
319 */
Zhao Yakuie92b2972010-12-08 10:10:18 +0800320 buffer->length = msg->rx_len;
Lv Zheng6b68f032013-09-13 13:13:30 +0800321 memcpy(buffer->data, msg->data, msg->rx_len);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800322}
323
324static void ipmi_flush_tx_msg(struct acpi_ipmi_device *ipmi)
325{
Lv Zheng7b984472013-09-13 13:14:11 +0800326 struct acpi_ipmi_msg *tx_msg;
Lv Zheng5ac557e2013-09-13 13:13:39 +0800327 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800328
Lv Zhenga1a69b22013-09-13 13:13:54 +0800329 /*
330 * NOTE: On-going ipmi_recv_msg
331 * ipmi_msg_handler() may still be invoked by ipmi_si after
332 * flushing. But it is safe to do a fast flushing on module_exit()
333 * without waiting for all ipmi_recv_msg(s) to complete from
334 * ipmi_msg_handler() as it is ensured by ipmi_si that all
335 * ipmi_recv_msg(s) are freed after invoking ipmi_destroy_user().
336 */
Lv Zheng5ac557e2013-09-13 13:13:39 +0800337 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
Lv Zheng7b984472013-09-13 13:14:11 +0800338 while (!list_empty(&ipmi->tx_msg_list)) {
339 tx_msg = list_first_entry(&ipmi->tx_msg_list,
340 struct acpi_ipmi_msg,
341 head);
342 list_del(&tx_msg->head);
343 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
344
Zhao Yakuie92b2972010-12-08 10:10:18 +0800345 /* wake up the sleep thread on the Tx msg */
346 complete(&tx_msg->tx_complete);
Lv Zheng7b984472013-09-13 13:14:11 +0800347 acpi_ipmi_msg_put(tx_msg);
348 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800349 }
Lv Zheng5ac557e2013-09-13 13:13:39 +0800350 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800351}
352
Lv Zheng7b984472013-09-13 13:14:11 +0800353static void ipmi_cancel_tx_msg(struct acpi_ipmi_device *ipmi,
354 struct acpi_ipmi_msg *msg)
355{
356 struct acpi_ipmi_msg *tx_msg, *temp;
357 bool msg_found = false;
358 unsigned long flags;
359
360 spin_lock_irqsave(&ipmi->tx_msg_lock, flags);
361 list_for_each_entry_safe(tx_msg, temp, &ipmi->tx_msg_list, head) {
362 if (msg == tx_msg) {
363 msg_found = true;
364 list_del(&tx_msg->head);
365 break;
366 }
367 }
368 spin_unlock_irqrestore(&ipmi->tx_msg_lock, flags);
369
370 if (msg_found)
371 acpi_ipmi_msg_put(tx_msg);
372}
373
Zhao Yakuie92b2972010-12-08 10:10:18 +0800374static void ipmi_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data)
375{
376 struct acpi_ipmi_device *ipmi_device = user_msg_data;
Lv Zheng7b984472013-09-13 13:14:11 +0800377 bool msg_found = false;
378 struct acpi_ipmi_msg *tx_msg, *temp;
Lv Zheng2fb037b2013-09-13 13:14:21 +0800379 struct device *dev = ipmi_device->dev;
Lv Zheng06a85662013-09-13 13:13:23 +0800380 unsigned long flags;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800381
382 if (msg->user != ipmi_device->user_interface) {
Lv Zheng50065302013-09-13 13:15:00 +0800383 dev_warn(dev,
384 "Unexpected response is returned. returned user %p, expected user %p\n",
385 msg->user, ipmi_device->user_interface);
Lv Zheng6b68f032013-09-13 13:13:30 +0800386 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800387 }
Lv Zheng50065302013-09-13 13:15:00 +0800388
Lv Zheng06a85662013-09-13 13:13:23 +0800389 spin_lock_irqsave(&ipmi_device->tx_msg_lock, flags);
Lv Zheng7b984472013-09-13 13:14:11 +0800390 list_for_each_entry_safe(tx_msg, temp, &ipmi_device->tx_msg_list, head) {
Zhao Yakuie92b2972010-12-08 10:10:18 +0800391 if (msg->msgid == tx_msg->tx_msgid) {
Lv Zheng7b984472013-09-13 13:14:11 +0800392 msg_found = true;
393 list_del(&tx_msg->head);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800394 break;
395 }
396 }
Lv Zheng7b984472013-09-13 13:14:11 +0800397 spin_unlock_irqrestore(&ipmi_device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800398
Zhao Yakuie92b2972010-12-08 10:10:18 +0800399 if (!msg_found) {
Lv Zheng50065302013-09-13 13:15:00 +0800400 dev_warn(dev,
401 "Unexpected response (msg id %ld) is returned.\n",
402 msg->msgid);
Lv Zheng7b984472013-09-13 13:14:11 +0800403 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800404 }
405
Lv Zheng6b68f032013-09-13 13:13:30 +0800406 /* copy the response data to Rx_data buffer */
407 if (msg->msg.data_len > ACPI_IPMI_MAX_MSG_LENGTH) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800408 dev_WARN_ONCE(dev, true,
Lv Zheng6b68f032013-09-13 13:13:30 +0800409 "Unexpected response (msg len %d).\n",
410 msg->msg.data_len);
Lv Zheng8584ec62013-09-13 13:13:47 +0800411 goto out_comp;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800412 }
Lv Zheng50065302013-09-13 13:15:00 +0800413
Lv Zheng8584ec62013-09-13 13:13:47 +0800414 /* response msg is an error msg */
415 msg->recv_type = IPMI_RESPONSE_RECV_TYPE;
416 if (msg->recv_type == IPMI_RESPONSE_RECV_TYPE &&
417 msg->msg.data_len == 1) {
418 if (msg->msg.data[0] == IPMI_TIMEOUT_COMPLETION_CODE) {
Sinan Kayaf5135612017-03-23 11:32:29 -0400419 dev_dbg_once(dev, "Unexpected response (timeout).\n");
Lv Zheng8584ec62013-09-13 13:13:47 +0800420 tx_msg->msg_done = ACPI_IPMI_TIMEOUT;
421 }
422 goto out_comp;
423 }
Lv Zheng50065302013-09-13 13:15:00 +0800424
Lv Zheng8584ec62013-09-13 13:13:47 +0800425 tx_msg->rx_len = msg->msg.data_len;
426 memcpy(tx_msg->data, msg->msg.data, tx_msg->rx_len);
427 tx_msg->msg_done = ACPI_IPMI_OK;
Lv Zheng50065302013-09-13 13:15:00 +0800428
Lv Zheng8584ec62013-09-13 13:13:47 +0800429out_comp:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800430 complete(&tx_msg->tx_complete);
Lv Zheng7b984472013-09-13 13:14:11 +0800431 acpi_ipmi_msg_put(tx_msg);
Lv Zheng6b68f032013-09-13 13:13:30 +0800432out_msg:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800433 ipmi_free_recv_msg(msg);
Lv Zheng50065302013-09-13 13:15:00 +0800434}
Zhao Yakuie92b2972010-12-08 10:10:18 +0800435
436static void ipmi_register_bmc(int iface, struct device *dev)
437{
438 struct acpi_ipmi_device *ipmi_device, *temp;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800439 int err;
440 struct ipmi_smi_info smi_data;
441 acpi_handle handle;
442
443 err = ipmi_get_smi_info(iface, &smi_data);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800444 if (err)
445 return;
446
Lv Zhenga1a69b22013-09-13 13:13:54 +0800447 if (smi_data.addr_src != SI_ACPI)
448 goto err_ref;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800449 handle = smi_data.addr_info.acpi_info.acpi_handle;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800450 if (!handle)
451 goto err_ref;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800452
Lv Zheng2fb037b2013-09-13 13:14:21 +0800453 ipmi_device = ipmi_dev_alloc(iface, smi_data.dev, handle);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800454 if (!ipmi_device) {
Lv Zheng2fb037b2013-09-13 13:14:21 +0800455 dev_warn(smi_data.dev, "Can't create IPMI user interface\n");
Lv Zhenga1a69b22013-09-13 13:13:54 +0800456 goto err_ref;
457 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800458
459 mutex_lock(&driver_data.ipmi_lock);
460 list_for_each_entry(temp, &driver_data.ipmi_devices, head) {
461 /*
462 * if the corresponding ACPI handle is already added
463 * to the device list, don't add it again.
464 */
465 if (temp->handle == handle)
Lv Zhenga1a69b22013-09-13 13:13:54 +0800466 goto err_lock;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800467 }
Lv Zhenge96a94e2013-09-13 13:14:02 +0800468 if (!driver_data.selected_smi)
469 driver_data.selected_smi = ipmi_device;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800470 list_add_tail(&ipmi_device->head, &driver_data.ipmi_devices);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800471 mutex_unlock(&driver_data.ipmi_lock);
Lv Zheng50065302013-09-13 13:15:00 +0800472
Lv Zhenga1a69b22013-09-13 13:13:54 +0800473 put_device(smi_data.dev);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800474 return;
475
Lv Zhenga1a69b22013-09-13 13:13:54 +0800476err_lock:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800477 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800478 ipmi_dev_release(ipmi_device);
479err_ref:
Zhao Yakuie92b2972010-12-08 10:10:18 +0800480 put_device(smi_data.dev);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800481}
482
483static void ipmi_bmc_gone(int iface)
484{
485 struct acpi_ipmi_device *ipmi_device, *temp;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800486 bool dev_found = false;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800487
488 mutex_lock(&driver_data.ipmi_lock);
489 list_for_each_entry_safe(ipmi_device, temp,
Lv Zheng50065302013-09-13 13:15:00 +0800490 &driver_data.ipmi_devices, head) {
Lv Zhenga1a69b22013-09-13 13:13:54 +0800491 if (ipmi_device->ipmi_ifnum != iface) {
492 dev_found = true;
493 __ipmi_dev_kill(ipmi_device);
494 break;
495 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800496 }
Lv Zhenge96a94e2013-09-13 13:14:02 +0800497 if (!driver_data.selected_smi)
498 driver_data.selected_smi = list_first_entry_or_null(
499 &driver_data.ipmi_devices,
500 struct acpi_ipmi_device, head);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800501 mutex_unlock(&driver_data.ipmi_lock);
Lv Zheng50065302013-09-13 13:15:00 +0800502
Lv Zhenga1a69b22013-09-13 13:13:54 +0800503 if (dev_found) {
504 ipmi_flush_tx_msg(ipmi_device);
505 acpi_ipmi_dev_put(ipmi_device);
506 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800507}
Lv Zheng50065302013-09-13 13:15:00 +0800508
Zhao Yakuie92b2972010-12-08 10:10:18 +0800509/*
510 * This is the IPMI opregion space handler.
511 * @function: indicates the read/write. In fact as the IPMI message is driven
512 * by command, only write is meaningful.
513 * @address: This contains the netfn/command of IPMI request message.
514 * @bits : not used.
515 * @value : it is an in/out parameter. It points to the IPMI message buffer.
516 * Before the IPMI message is sent, it represents the actual request
517 * IPMI message. After the IPMI message is finished, it represents
518 * the response IPMI message returned by IPMI command.
519 * @handler_context: IPMI device context.
520 */
Zhao Yakuie92b2972010-12-08 10:10:18 +0800521static acpi_status
522acpi_ipmi_space_handler(u32 function, acpi_physical_address address,
Lv Zheng50065302013-09-13 13:15:00 +0800523 u32 bits, acpi_integer *value,
524 void *handler_context, void *region_context)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800525{
526 struct acpi_ipmi_msg *tx_msg;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800527 struct acpi_ipmi_device *ipmi_device;
Lv Zheng8584ec62013-09-13 13:13:47 +0800528 int err;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800529 acpi_status status;
Lv Zheng06a85662013-09-13 13:13:23 +0800530 unsigned long flags;
Lv Zheng50065302013-09-13 13:15:00 +0800531
Zhao Yakuie92b2972010-12-08 10:10:18 +0800532 /*
533 * IPMI opregion message.
534 * IPMI message is firstly written to the BMC and system software
535 * can get the respsonse. So it is unmeaningful for the read access
536 * of IPMI opregion.
537 */
538 if ((function & ACPI_IO_MASK) == ACPI_READ)
539 return AE_TYPE;
540
Lv Zheng7b984472013-09-13 13:14:11 +0800541 tx_msg = ipmi_msg_alloc();
542 if (!tx_msg)
Zhao Yakuie92b2972010-12-08 10:10:18 +0800543 return AE_NOT_EXIST;
Lv Zheng7b984472013-09-13 13:14:11 +0800544 ipmi_device = tx_msg->device;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800545
Lv Zheng6b68f032013-09-13 13:13:30 +0800546 if (acpi_format_ipmi_request(tx_msg, address, value) != 0) {
Lv Zheng7b984472013-09-13 13:14:11 +0800547 ipmi_msg_release(tx_msg);
548 return AE_TYPE;
Lv Zheng6b68f032013-09-13 13:13:30 +0800549 }
Lv Zheng50065302013-09-13 13:15:00 +0800550
Lv Zheng7b984472013-09-13 13:14:11 +0800551 acpi_ipmi_msg_get(tx_msg);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800552 mutex_lock(&driver_data.ipmi_lock);
553 /* Do not add a tx_msg that can not be flushed. */
554 if (ipmi_device->dead) {
Lv Zhenga1a69b22013-09-13 13:13:54 +0800555 mutex_unlock(&driver_data.ipmi_lock);
Lv Zheng7b984472013-09-13 13:14:11 +0800556 ipmi_msg_release(tx_msg);
557 return AE_NOT_EXIST;
Lv Zhenga1a69b22013-09-13 13:13:54 +0800558 }
Lv Zheng06a85662013-09-13 13:13:23 +0800559 spin_lock_irqsave(&ipmi_device->tx_msg_lock, flags);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800560 list_add_tail(&tx_msg->head, &ipmi_device->tx_msg_list);
Lv Zheng06a85662013-09-13 13:13:23 +0800561 spin_unlock_irqrestore(&ipmi_device->tx_msg_lock, flags);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800562 mutex_unlock(&driver_data.ipmi_lock);
Lv Zheng50065302013-09-13 13:15:00 +0800563
Zhao Yakuie92b2972010-12-08 10:10:18 +0800564 err = ipmi_request_settime(ipmi_device->user_interface,
Lv Zheng50065302013-09-13 13:15:00 +0800565 &tx_msg->addr,
566 tx_msg->tx_msgid,
567 &tx_msg->tx_message,
568 NULL, 0, 0, IPMI_TIMEOUT);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800569 if (err) {
570 status = AE_ERROR;
Lv Zheng7b984472013-09-13 13:14:11 +0800571 goto out_msg;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800572 }
Lv Zheng8584ec62013-09-13 13:13:47 +0800573 wait_for_completion(&tx_msg->tx_complete);
Lv Zheng50065302013-09-13 13:15:00 +0800574
Lv Zheng8584ec62013-09-13 13:13:47 +0800575 acpi_format_ipmi_response(tx_msg, value);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800576 status = AE_OK;
577
Lv Zheng6b68f032013-09-13 13:13:30 +0800578out_msg:
Lv Zheng7b984472013-09-13 13:14:11 +0800579 ipmi_cancel_tx_msg(ipmi_device, tx_msg);
580 acpi_ipmi_msg_put(tx_msg);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800581 return status;
582}
583
Zhao Yakuie92b2972010-12-08 10:10:18 +0800584static int __init acpi_ipmi_init(void)
585{
Lv Zhenga194aa42013-09-13 13:14:31 +0800586 int result;
Lv Zhenge96a94e2013-09-13 13:14:02 +0800587 acpi_status status;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800588
589 if (acpi_disabled)
Lv Zhenga194aa42013-09-13 13:14:31 +0800590 return 0;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800591
Lv Zhenge96a94e2013-09-13 13:14:02 +0800592 status = acpi_install_address_space_handler(ACPI_ROOT_OBJECT,
Lv Zheng50065302013-09-13 13:15:00 +0800593 ACPI_ADR_SPACE_IPMI,
594 &acpi_ipmi_space_handler,
595 NULL, NULL);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800596 if (ACPI_FAILURE(status)) {
597 pr_warn("Can't register IPMI opregion space handle\n");
598 return -EINVAL;
599 }
Hanjun Guo64887bb2021-05-24 16:35:08 +0800600
Zhao Yakuie92b2972010-12-08 10:10:18 +0800601 result = ipmi_smi_watcher_register(&driver_data.bmc_events);
Hanjun Guo64887bb2021-05-24 16:35:08 +0800602 if (result) {
603 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
604 ACPI_ADR_SPACE_IPMI,
605 &acpi_ipmi_space_handler);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800606 pr_err("Can't register IPMI system interface watcher\n");
Hanjun Guo64887bb2021-05-24 16:35:08 +0800607 }
Zhao Yakuie92b2972010-12-08 10:10:18 +0800608
609 return result;
610}
611
612static void __exit acpi_ipmi_exit(void)
613{
Lv Zhenga1a69b22013-09-13 13:13:54 +0800614 struct acpi_ipmi_device *ipmi_device;
Zhao Yakuie92b2972010-12-08 10:10:18 +0800615
616 if (acpi_disabled)
617 return;
618
619 ipmi_smi_watcher_unregister(&driver_data.bmc_events);
620
621 /*
622 * When one smi_watcher is unregistered, it is only deleted
623 * from the smi_watcher list. But the smi_gone callback function
624 * is not called. So explicitly uninstall the ACPI IPMI oregion
625 * handler and free it.
626 */
627 mutex_lock(&driver_data.ipmi_lock);
Lv Zhenga1a69b22013-09-13 13:13:54 +0800628 while (!list_empty(&driver_data.ipmi_devices)) {
629 ipmi_device = list_first_entry(&driver_data.ipmi_devices,
630 struct acpi_ipmi_device,
631 head);
632 __ipmi_dev_kill(ipmi_device);
633 mutex_unlock(&driver_data.ipmi_lock);
634
635 ipmi_flush_tx_msg(ipmi_device);
636 acpi_ipmi_dev_put(ipmi_device);
637
638 mutex_lock(&driver_data.ipmi_lock);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800639 }
640 mutex_unlock(&driver_data.ipmi_lock);
Lv Zhenge96a94e2013-09-13 13:14:02 +0800641 acpi_remove_address_space_handler(ACPI_ROOT_OBJECT,
Lv Zheng50065302013-09-13 13:15:00 +0800642 ACPI_ADR_SPACE_IPMI,
643 &acpi_ipmi_space_handler);
Zhao Yakuie92b2972010-12-08 10:10:18 +0800644}
645
646module_init(acpi_ipmi_init);
647module_exit(acpi_ipmi_exit);