blob: 737e56d46f61950826419bbef2d9fb66d69abcc1 [file] [log] [blame]
Carlos Corbachobff431e2008-02-05 02:17:04 +00001/*
2 * ACPI-WMI mapping driver
3 *
4 * Copyright (C) 2007-2008 Carlos Corbacho <carlos@strangeworlds.co.uk>
5 *
6 * GUID parsing code from ldm.c is:
7 * Copyright (C) 2001,2002 Richard Russon <ldm@flatcap.org>
8 * Copyright (c) 2001-2007 Anton Altaparmakov
9 * Copyright (C) 2001,2002 Jakob Kemi <jakob.kemi@telia.com>
10 *
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or (at
16 * your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 *
27 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 */
29
Dmitry Torokhov8e075142010-08-26 00:15:19 -070030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Carlos Corbachobff431e2008-02-05 02:17:04 +000032#include <linux/kernel.h>
33#include <linux/init.h>
34#include <linux/types.h>
Matthew Garrett1caab3c2009-11-04 14:17:53 -050035#include <linux/device.h>
Carlos Corbachobff431e2008-02-05 02:17:04 +000036#include <linux/list.h>
37#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Paul Gortmaker7c52d552011-05-27 12:33:10 -040039#include <linux/module.h>
Carlos Corbachobff431e2008-02-05 02:17:04 +000040
41ACPI_MODULE_NAME("wmi");
42MODULE_AUTHOR("Carlos Corbacho");
43MODULE_DESCRIPTION("ACPI-WMI Mapping Driver");
44MODULE_LICENSE("GPL");
45
46#define ACPI_WMI_CLASS "wmi"
47
Carlos Corbachobff431e2008-02-05 02:17:04 +000048static DEFINE_MUTEX(wmi_data_lock);
Dmitry Torokhov762e1a22010-08-26 00:15:14 -070049static LIST_HEAD(wmi_block_list);
Carlos Corbachobff431e2008-02-05 02:17:04 +000050
51struct guid_block {
52 char guid[16];
53 union {
54 char object_id[2];
55 struct {
56 unsigned char notify_id;
57 unsigned char reserved;
58 };
59 };
60 u8 instance_count;
61 u8 flags;
62};
63
64struct wmi_block {
65 struct list_head list;
66 struct guid_block gblock;
67 acpi_handle handle;
68 wmi_notify_handler handler;
69 void *handler_data;
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -070070 struct device dev;
Carlos Corbachobff431e2008-02-05 02:17:04 +000071};
72
Carlos Corbachobff431e2008-02-05 02:17:04 +000073
74/*
75 * If the GUID data block is marked as expensive, we must enable and
76 * explicitily disable data collection.
77 */
78#define ACPI_WMI_EXPENSIVE 0x1
79#define ACPI_WMI_METHOD 0x2 /* GUID is a method */
80#define ACPI_WMI_STRING 0x4 /* GUID takes & returns a string */
81#define ACPI_WMI_EVENT 0x8 /* GUID is an event */
82
Rusty Russell90ab5ee2012-01-13 09:32:20 +103083static bool debug_event;
Thomas Renningerfc3155b2010-05-03 15:30:15 +020084module_param(debug_event, bool, 0444);
85MODULE_PARM_DESC(debug_event,
86 "Log WMI Events [0/1]");
87
Rusty Russell90ab5ee2012-01-13 09:32:20 +103088static bool debug_dump_wdg;
Thomas Renningera929aae2010-05-03 15:30:17 +020089module_param(debug_dump_wdg, bool, 0444);
90MODULE_PARM_DESC(debug_dump_wdg,
91 "Dump available WMI interfaces [0/1]");
92
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010093static int acpi_wmi_remove(struct acpi_device *device);
Carlos Corbachobff431e2008-02-05 02:17:04 +000094static int acpi_wmi_add(struct acpi_device *device);
Bjorn Helgaasf61bb932009-04-07 15:37:37 +000095static void acpi_wmi_notify(struct acpi_device *device, u32 event);
Carlos Corbachobff431e2008-02-05 02:17:04 +000096
97static const struct acpi_device_id wmi_device_ids[] = {
98 {"PNP0C14", 0},
99 {"pnp0c14", 0},
100 {"", 0},
101};
102MODULE_DEVICE_TABLE(acpi, wmi_device_ids);
103
104static struct acpi_driver acpi_wmi_driver = {
105 .name = "wmi",
106 .class = ACPI_WMI_CLASS,
107 .ids = wmi_device_ids,
108 .ops = {
109 .add = acpi_wmi_add,
110 .remove = acpi_wmi_remove,
Bjorn Helgaasf61bb932009-04-07 15:37:37 +0000111 .notify = acpi_wmi_notify,
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700112 },
Carlos Corbachobff431e2008-02-05 02:17:04 +0000113};
114
115/*
116 * GUID parsing functions
117 */
118
119/**
120 * wmi_parse_hexbyte - Convert a ASCII hex number to a byte
121 * @src: Pointer to at least 2 characters to convert.
122 *
123 * Convert a two character ASCII hex string to a number.
124 *
125 * Return: 0-255 Success, the byte was parsed correctly
126 * -1 Error, an invalid character was supplied
127 */
128static int wmi_parse_hexbyte(const u8 *src)
129{
Carlos Corbachobff431e2008-02-05 02:17:04 +0000130 int h;
Andy Shevchenko392bd8b2010-09-11 16:31:02 +0300131 int value;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000132
133 /* high part */
Andy Shevchenko392bd8b2010-09-11 16:31:02 +0300134 h = value = hex_to_bin(src[0]);
135 if (value < 0)
Carlos Corbachobff431e2008-02-05 02:17:04 +0000136 return -1;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000137
138 /* low part */
Andy Shevchenko392bd8b2010-09-11 16:31:02 +0300139 value = hex_to_bin(src[1]);
140 if (value >= 0)
141 return (h << 4) | value;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000142 return -1;
143}
144
145/**
146 * wmi_swap_bytes - Rearrange GUID bytes to match GUID binary
147 * @src: Memory block holding binary GUID (16 bytes)
148 * @dest: Memory block to hold byte swapped binary GUID (16 bytes)
149 *
150 * Byte swap a binary GUID to match it's real GUID value
151 */
152static void wmi_swap_bytes(u8 *src, u8 *dest)
153{
154 int i;
155
156 for (i = 0; i <= 3; i++)
157 memcpy(dest + i, src + (3 - i), 1);
158
159 for (i = 0; i <= 1; i++)
160 memcpy(dest + 4 + i, src + (5 - i), 1);
161
162 for (i = 0; i <= 1; i++)
163 memcpy(dest + 6 + i, src + (7 - i), 1);
164
165 memcpy(dest + 8, src + 8, 8);
166}
167
168/**
169 * wmi_parse_guid - Convert GUID from ASCII to binary
170 * @src: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
171 * @dest: Memory block to hold binary GUID (16 bytes)
172 *
173 * N.B. The GUID need not be NULL terminated.
174 *
175 * Return: 'true' @dest contains binary GUID
176 * 'false' @dest contents are undefined
177 */
178static bool wmi_parse_guid(const u8 *src, u8 *dest)
179{
180 static const int size[] = { 4, 2, 2, 2, 6 };
181 int i, j, v;
182
183 if (src[8] != '-' || src[13] != '-' ||
184 src[18] != '-' || src[23] != '-')
185 return false;
186
187 for (j = 0; j < 5; j++, src++) {
188 for (i = 0; i < size[j]; i++, src += 2, *dest++ = v) {
189 v = wmi_parse_hexbyte(src);
190 if (v < 0)
191 return false;
192 }
193 }
194
195 return true;
196}
197
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500198/*
199 * Convert a raw GUID to the ACII string representation
200 */
201static int wmi_gtoa(const char *in, char *out)
202{
203 int i;
204
205 for (i = 3; i >= 0; i--)
206 out += sprintf(out, "%02X", in[i] & 0xFF);
207
208 out += sprintf(out, "-");
209 out += sprintf(out, "%02X", in[5] & 0xFF);
210 out += sprintf(out, "%02X", in[4] & 0xFF);
211 out += sprintf(out, "-");
212 out += sprintf(out, "%02X", in[7] & 0xFF);
213 out += sprintf(out, "%02X", in[6] & 0xFF);
214 out += sprintf(out, "-");
215 out += sprintf(out, "%02X", in[8] & 0xFF);
216 out += sprintf(out, "%02X", in[9] & 0xFF);
217 out += sprintf(out, "-");
218
219 for (i = 10; i <= 15; i++)
220 out += sprintf(out, "%02X", in[i] & 0xFF);
221
Dmitry Torokhov4e4304d2010-08-26 00:14:53 -0700222 *out = '\0';
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500223 return 0;
224}
225
Carlos Corbachobff431e2008-02-05 02:17:04 +0000226static bool find_guid(const char *guid_string, struct wmi_block **out)
227{
228 char tmp[16], guid_input[16];
229 struct wmi_block *wblock;
230 struct guid_block *block;
231 struct list_head *p;
232
233 wmi_parse_guid(guid_string, tmp);
234 wmi_swap_bytes(tmp, guid_input);
235
Dmitry Torokhov762e1a22010-08-26 00:15:14 -0700236 list_for_each(p, &wmi_block_list) {
Carlos Corbachobff431e2008-02-05 02:17:04 +0000237 wblock = list_entry(p, struct wmi_block, list);
238 block = &wblock->gblock;
239
240 if (memcmp(block->guid, guid_input, 16) == 0) {
241 if (out)
242 *out = wblock;
243 return 1;
244 }
245 }
246 return 0;
247}
248
Matthew Garretta66bfa72008-10-08 21:40:32 +0100249static acpi_status wmi_method_enable(struct wmi_block *wblock, int enable)
250{
251 struct guid_block *block = NULL;
252 char method[5];
Matthew Garretta66bfa72008-10-08 21:40:32 +0100253 acpi_status status;
254 acpi_handle handle;
255
256 block = &wblock->gblock;
257 handle = wblock->handle;
258
Matthew Garretta66bfa72008-10-08 21:40:32 +0100259 snprintf(method, 5, "WE%02X", block->notify_id);
Zhang Rui8122ab62013-09-03 08:31:57 +0800260 status = acpi_execute_simple_method(handle, method, enable);
Matthew Garretta66bfa72008-10-08 21:40:32 +0100261
262 if (status != AE_OK && status != AE_NOT_FOUND)
263 return status;
264 else
265 return AE_OK;
266}
267
Carlos Corbachobff431e2008-02-05 02:17:04 +0000268/*
269 * Exported WMI functions
270 */
271/**
272 * wmi_evaluate_method - Evaluate a WMI method
273 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
274 * @instance: Instance index
275 * @method_id: Method ID to call
276 * &in: Buffer containing input for the method call
277 * &out: Empty buffer to return the method results
278 *
279 * Call an ACPI-WMI method
280 */
281acpi_status wmi_evaluate_method(const char *guid_string, u8 instance,
282u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out)
283{
284 struct guid_block *block = NULL;
285 struct wmi_block *wblock = NULL;
286 acpi_handle handle;
287 acpi_status status;
288 struct acpi_object_list input;
289 union acpi_object params[3];
Costantino Leandrof3d83e22009-08-26 14:29:28 -0700290 char method[5] = "WM";
Carlos Corbachobff431e2008-02-05 02:17:04 +0000291
292 if (!find_guid(guid_string, &wblock))
Lin Ming08237972008-08-08 11:57:11 +0800293 return AE_ERROR;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000294
295 block = &wblock->gblock;
296 handle = wblock->handle;
297
Al Viroe6bafba2008-02-13 04:03:25 +0000298 if (!(block->flags & ACPI_WMI_METHOD))
Carlos Corbachobff431e2008-02-05 02:17:04 +0000299 return AE_BAD_DATA;
300
301 if (block->instance_count < instance)
302 return AE_BAD_PARAMETER;
303
304 input.count = 2;
305 input.pointer = params;
306 params[0].type = ACPI_TYPE_INTEGER;
307 params[0].integer.value = instance;
308 params[1].type = ACPI_TYPE_INTEGER;
309 params[1].integer.value = method_id;
310
311 if (in) {
312 input.count = 3;
313
314 if (block->flags & ACPI_WMI_STRING) {
315 params[2].type = ACPI_TYPE_STRING;
316 } else {
317 params[2].type = ACPI_TYPE_BUFFER;
318 }
319 params[2].buffer.length = in->length;
320 params[2].buffer.pointer = in->pointer;
321 }
322
323 strncat(method, block->object_id, 2);
324
325 status = acpi_evaluate_object(handle, method, &input, out);
326
327 return status;
328}
329EXPORT_SYMBOL_GPL(wmi_evaluate_method);
330
331/**
332 * wmi_query_block - Return contents of a WMI block
333 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
334 * @instance: Instance index
335 * &out: Empty buffer to return the contents of the data block to
336 *
337 * Return the contents of an ACPI-WMI data block to a buffer
338 */
339acpi_status wmi_query_block(const char *guid_string, u8 instance,
340struct acpi_buffer *out)
341{
342 struct guid_block *block = NULL;
343 struct wmi_block *wblock = NULL;
Zhang Rui54f14c22013-09-03 08:32:07 +0800344 acpi_handle handle;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000345 acpi_status status, wc_status = AE_ERROR;
Zhang Rui8122ab62013-09-03 08:31:57 +0800346 struct acpi_object_list input;
347 union acpi_object wq_params[1];
Costantino Leandrof3d83e22009-08-26 14:29:28 -0700348 char method[5];
349 char wc_method[5] = "WC";
Carlos Corbachobff431e2008-02-05 02:17:04 +0000350
351 if (!guid_string || !out)
352 return AE_BAD_PARAMETER;
353
354 if (!find_guid(guid_string, &wblock))
Lin Ming08237972008-08-08 11:57:11 +0800355 return AE_ERROR;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000356
357 block = &wblock->gblock;
358 handle = wblock->handle;
359
360 if (block->instance_count < instance)
361 return AE_BAD_PARAMETER;
362
363 /* Check GUID is a data block */
364 if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
Lin Ming08237972008-08-08 11:57:11 +0800365 return AE_ERROR;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000366
367 input.count = 1;
368 input.pointer = wq_params;
369 wq_params[0].type = ACPI_TYPE_INTEGER;
370 wq_params[0].integer.value = instance;
371
372 /*
373 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method first to
374 * enable collection.
375 */
376 if (block->flags & ACPI_WMI_EXPENSIVE) {
Carlos Corbachobff431e2008-02-05 02:17:04 +0000377 strncat(wc_method, block->object_id, 2);
378
379 /*
380 * Some GUIDs break the specification by declaring themselves
381 * expensive, but have no corresponding WCxx method. So we
382 * should not fail if this happens.
383 */
Zhang Rui54f14c22013-09-03 08:32:07 +0800384 if (acpi_has_method(handle, wc_method))
Zhang Rui8122ab62013-09-03 08:31:57 +0800385 wc_status = acpi_execute_simple_method(handle,
386 wc_method, 1);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000387 }
388
389 strcpy(method, "WQ");
390 strncat(method, block->object_id, 2);
391
Carlos Corbachodab36ad2008-08-02 17:28:45 +0100392 status = acpi_evaluate_object(handle, method, &input, out);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000393
394 /*
395 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method, even if
396 * the WQxx method failed - we should disable collection anyway.
397 */
Carlos Corbachoa527f2d2008-02-24 13:34:34 +0000398 if ((block->flags & ACPI_WMI_EXPENSIVE) && ACPI_SUCCESS(wc_status)) {
Zhang Rui8122ab62013-09-03 08:31:57 +0800399 status = acpi_execute_simple_method(handle, wc_method, 0);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000400 }
401
402 return status;
403}
404EXPORT_SYMBOL_GPL(wmi_query_block);
405
406/**
407 * wmi_set_block - Write to a WMI block
408 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
409 * @instance: Instance index
410 * &in: Buffer containing new values for the data block
411 *
412 * Write the contents of the input buffer to an ACPI-WMI data block
413 */
414acpi_status wmi_set_block(const char *guid_string, u8 instance,
415const struct acpi_buffer *in)
416{
417 struct guid_block *block = NULL;
418 struct wmi_block *wblock = NULL;
419 acpi_handle handle;
420 struct acpi_object_list input;
421 union acpi_object params[2];
Costantino Leandrof3d83e22009-08-26 14:29:28 -0700422 char method[5] = "WS";
Carlos Corbachobff431e2008-02-05 02:17:04 +0000423
424 if (!guid_string || !in)
425 return AE_BAD_DATA;
426
427 if (!find_guid(guid_string, &wblock))
Lin Ming08237972008-08-08 11:57:11 +0800428 return AE_ERROR;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000429
430 block = &wblock->gblock;
431 handle = wblock->handle;
432
433 if (block->instance_count < instance)
434 return AE_BAD_PARAMETER;
435
436 /* Check GUID is a data block */
437 if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
Lin Ming08237972008-08-08 11:57:11 +0800438 return AE_ERROR;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000439
440 input.count = 2;
441 input.pointer = params;
442 params[0].type = ACPI_TYPE_INTEGER;
443 params[0].integer.value = instance;
444
445 if (block->flags & ACPI_WMI_STRING) {
446 params[1].type = ACPI_TYPE_STRING;
447 } else {
448 params[1].type = ACPI_TYPE_BUFFER;
449 }
450 params[1].buffer.length = in->length;
451 params[1].buffer.pointer = in->pointer;
452
453 strncat(method, block->object_id, 2);
454
455 return acpi_evaluate_object(handle, method, &input, NULL);
456}
457EXPORT_SYMBOL_GPL(wmi_set_block);
458
Dmitry Torokhov37830662010-08-26 00:15:09 -0700459static void wmi_dump_wdg(const struct guid_block *g)
Thomas Renningera929aae2010-05-03 15:30:17 +0200460{
461 char guid_string[37];
462
463 wmi_gtoa(g->guid, guid_string);
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700464
465 pr_info("%s:\n", guid_string);
466 pr_info("\tobject_id: %c%c\n", g->object_id[0], g->object_id[1]);
467 pr_info("\tnotify_id: %02X\n", g->notify_id);
468 pr_info("\treserved: %02X\n", g->reserved);
469 pr_info("\tinstance_count: %d\n", g->instance_count);
Joe Perchesdd8e9082011-03-29 15:21:53 -0700470 pr_info("\tflags: %#x", g->flags);
Thomas Renningera929aae2010-05-03 15:30:17 +0200471 if (g->flags) {
Thomas Renningera929aae2010-05-03 15:30:17 +0200472 if (g->flags & ACPI_WMI_EXPENSIVE)
Joe Perchesdd8e9082011-03-29 15:21:53 -0700473 pr_cont(" ACPI_WMI_EXPENSIVE");
Thomas Renningera929aae2010-05-03 15:30:17 +0200474 if (g->flags & ACPI_WMI_METHOD)
Joe Perchesdd8e9082011-03-29 15:21:53 -0700475 pr_cont(" ACPI_WMI_METHOD");
Thomas Renningera929aae2010-05-03 15:30:17 +0200476 if (g->flags & ACPI_WMI_STRING)
Joe Perchesdd8e9082011-03-29 15:21:53 -0700477 pr_cont(" ACPI_WMI_STRING");
Thomas Renningera929aae2010-05-03 15:30:17 +0200478 if (g->flags & ACPI_WMI_EVENT)
Joe Perchesdd8e9082011-03-29 15:21:53 -0700479 pr_cont(" ACPI_WMI_EVENT");
Thomas Renningera929aae2010-05-03 15:30:17 +0200480 }
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700481 pr_cont("\n");
Thomas Renningera929aae2010-05-03 15:30:17 +0200482
483}
484
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200485static void wmi_notify_debug(u32 value, void *context)
486{
487 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
488 union acpi_object *obj;
Axel Lin14926162010-06-28 09:30:45 +0800489 acpi_status status;
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200490
Axel Lin14926162010-06-28 09:30:45 +0800491 status = wmi_get_event_data(value, &response);
492 if (status != AE_OK) {
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700493 pr_info("bad event status 0x%x\n", status);
Axel Lin14926162010-06-28 09:30:45 +0800494 return;
495 }
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200496
497 obj = (union acpi_object *)response.pointer;
498
499 if (!obj)
500 return;
501
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700502 pr_info("DEBUG Event ");
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200503 switch(obj->type) {
504 case ACPI_TYPE_BUFFER:
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700505 pr_cont("BUFFER_TYPE - length %d\n", obj->buffer.length);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200506 break;
507 case ACPI_TYPE_STRING:
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700508 pr_cont("STRING_TYPE - %s\n", obj->string.pointer);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200509 break;
510 case ACPI_TYPE_INTEGER:
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700511 pr_cont("INTEGER_TYPE - %llu\n", obj->integer.value);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200512 break;
513 case ACPI_TYPE_PACKAGE:
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700514 pr_cont("PACKAGE_TYPE - %d elements\n", obj->package.count);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200515 break;
516 default:
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700517 pr_cont("object type 0x%X\n", obj->type);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200518 }
Axel Lin14926162010-06-28 09:30:45 +0800519 kfree(obj);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200520}
521
Carlos Corbachobff431e2008-02-05 02:17:04 +0000522/**
523 * wmi_install_notify_handler - Register handler for WMI events
524 * @handler: Function to handle notifications
525 * @data: Data to be returned to handler when event is fired
526 *
527 * Register a handler for events sent to the ACPI-WMI mapper device.
528 */
529acpi_status wmi_install_notify_handler(const char *guid,
530wmi_notify_handler handler, void *data)
531{
532 struct wmi_block *block;
Colin King58f64252010-11-19 15:40:02 +0000533 acpi_status status = AE_NOT_EXIST;
534 char tmp[16], guid_input[16];
535 struct list_head *p;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000536
537 if (!guid || !handler)
538 return AE_BAD_PARAMETER;
539
Colin King58f64252010-11-19 15:40:02 +0000540 wmi_parse_guid(guid, tmp);
541 wmi_swap_bytes(tmp, guid_input);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000542
Colin King58f64252010-11-19 15:40:02 +0000543 list_for_each(p, &wmi_block_list) {
544 acpi_status wmi_status;
545 block = list_entry(p, struct wmi_block, list);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000546
Colin King58f64252010-11-19 15:40:02 +0000547 if (memcmp(block->gblock.guid, guid_input, 16) == 0) {
548 if (block->handler &&
549 block->handler != wmi_notify_debug)
550 return AE_ALREADY_ACQUIRED;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000551
Colin King58f64252010-11-19 15:40:02 +0000552 block->handler = handler;
553 block->handler_data = data;
554
555 wmi_status = wmi_method_enable(block, 1);
556 if ((wmi_status != AE_OK) ||
557 ((wmi_status == AE_OK) && (status == AE_NOT_EXIST)))
558 status = wmi_status;
559 }
560 }
Matthew Garretta66bfa72008-10-08 21:40:32 +0100561
562 return status;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000563}
564EXPORT_SYMBOL_GPL(wmi_install_notify_handler);
565
566/**
567 * wmi_uninstall_notify_handler - Unregister handler for WMI events
568 *
569 * Unregister handler for events sent to the ACPI-WMI mapper device.
570 */
571acpi_status wmi_remove_notify_handler(const char *guid)
572{
573 struct wmi_block *block;
Colin King58f64252010-11-19 15:40:02 +0000574 acpi_status status = AE_NOT_EXIST;
575 char tmp[16], guid_input[16];
576 struct list_head *p;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000577
578 if (!guid)
579 return AE_BAD_PARAMETER;
580
Colin King58f64252010-11-19 15:40:02 +0000581 wmi_parse_guid(guid, tmp);
582 wmi_swap_bytes(tmp, guid_input);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000583
Colin King58f64252010-11-19 15:40:02 +0000584 list_for_each(p, &wmi_block_list) {
585 acpi_status wmi_status;
586 block = list_entry(p, struct wmi_block, list);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000587
Colin King58f64252010-11-19 15:40:02 +0000588 if (memcmp(block->gblock.guid, guid_input, 16) == 0) {
589 if (!block->handler ||
590 block->handler == wmi_notify_debug)
591 return AE_NULL_ENTRY;
592
593 if (debug_event) {
594 block->handler = wmi_notify_debug;
595 status = AE_OK;
596 } else {
597 wmi_status = wmi_method_enable(block, 0);
598 block->handler = NULL;
599 block->handler_data = NULL;
600 if ((wmi_status != AE_OK) ||
601 ((wmi_status == AE_OK) &&
602 (status == AE_NOT_EXIST)))
603 status = wmi_status;
604 }
605 }
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200606 }
Colin King58f64252010-11-19 15:40:02 +0000607
Matthew Garretta66bfa72008-10-08 21:40:32 +0100608 return status;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000609}
610EXPORT_SYMBOL_GPL(wmi_remove_notify_handler);
611
612/**
613 * wmi_get_event_data - Get WMI data associated with an event
614 *
Anisse Astier3e9b9882009-12-04 10:10:09 +0100615 * @event: Event to find
616 * @out: Buffer to hold event data. out->pointer should be freed with kfree()
Carlos Corbachobff431e2008-02-05 02:17:04 +0000617 *
618 * Returns extra data associated with an event in WMI.
619 */
620acpi_status wmi_get_event_data(u32 event, struct acpi_buffer *out)
621{
622 struct acpi_object_list input;
623 union acpi_object params[1];
624 struct guid_block *gblock;
625 struct wmi_block *wblock;
626 struct list_head *p;
627
628 input.count = 1;
629 input.pointer = params;
630 params[0].type = ACPI_TYPE_INTEGER;
631 params[0].integer.value = event;
632
Dmitry Torokhov762e1a22010-08-26 00:15:14 -0700633 list_for_each(p, &wmi_block_list) {
Carlos Corbachobff431e2008-02-05 02:17:04 +0000634 wblock = list_entry(p, struct wmi_block, list);
635 gblock = &wblock->gblock;
636
637 if ((gblock->flags & ACPI_WMI_EVENT) &&
638 (gblock->notify_id == event))
639 return acpi_evaluate_object(wblock->handle, "_WED",
640 &input, out);
641 }
642
643 return AE_NOT_FOUND;
644}
645EXPORT_SYMBOL_GPL(wmi_get_event_data);
646
647/**
648 * wmi_has_guid - Check if a GUID is available
649 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
650 *
651 * Check if a given GUID is defined by _WDG
652 */
653bool wmi_has_guid(const char *guid_string)
654{
655 return find_guid(guid_string, NULL);
656}
657EXPORT_SYMBOL_GPL(wmi_has_guid);
658
659/*
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500660 * sysfs interface
661 */
Dmitry Torokhov614ef432010-08-26 00:15:25 -0700662static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500663 char *buf)
664{
665 char guid_string[37];
666 struct wmi_block *wblock;
667
668 wblock = dev_get_drvdata(dev);
Prarit Bhargavaa80e1052013-10-03 19:23:36 -0400669 if (!wblock) {
670 strcat(buf, "\n");
671 return strlen(buf);
672 }
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500673
674 wmi_gtoa(wblock->gblock.guid, guid_string);
675
676 return sprintf(buf, "wmi:%s\n", guid_string);
677}
Greg Kroah-Hartmane80b89a2013-07-24 15:05:18 -0700678static DEVICE_ATTR_RO(modalias);
Dmitry Torokhov614ef432010-08-26 00:15:25 -0700679
Greg Kroah-Hartmane80b89a2013-07-24 15:05:18 -0700680static struct attribute *wmi_attrs[] = {
681 &dev_attr_modalias.attr,
682 NULL,
Dmitry Torokhov614ef432010-08-26 00:15:25 -0700683};
Greg Kroah-Hartmane80b89a2013-07-24 15:05:18 -0700684ATTRIBUTE_GROUPS(wmi);
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500685
686static int wmi_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
687{
688 char guid_string[37];
689
690 struct wmi_block *wblock;
691
692 if (add_uevent_var(env, "MODALIAS="))
693 return -ENOMEM;
694
695 wblock = dev_get_drvdata(dev);
696 if (!wblock)
697 return -ENOMEM;
698
699 wmi_gtoa(wblock->gblock.guid, guid_string);
700
701 strcpy(&env->buf[env->buflen - 1], "wmi:");
702 memcpy(&env->buf[env->buflen - 1 + 4], guid_string, 36);
703 env->buflen += 40;
704
705 return 0;
706}
707
708static void wmi_dev_free(struct device *dev)
709{
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700710 struct wmi_block *wmi_block = container_of(dev, struct wmi_block, dev);
711
712 kfree(wmi_block);
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500713}
714
715static struct class wmi_class = {
716 .name = "wmi",
717 .dev_release = wmi_dev_free,
718 .dev_uevent = wmi_dev_uevent,
Greg Kroah-Hartmane80b89a2013-07-24 15:05:18 -0700719 .dev_groups = wmi_groups,
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500720};
721
Colin King58f64252010-11-19 15:40:02 +0000722static int wmi_create_device(const struct guid_block *gblock,
723 struct wmi_block *wblock, acpi_handle handle)
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500724{
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700725 char guid_string[37];
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500726
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700727 wblock->dev.class = &wmi_class;
728
729 wmi_gtoa(gblock->guid, guid_string);
Kees Cook02aa2a32013-07-03 15:04:56 -0700730 dev_set_name(&wblock->dev, "%s", guid_string);
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700731
732 dev_set_drvdata(&wblock->dev, wblock);
733
Colin King58f64252010-11-19 15:40:02 +0000734 return device_register(&wblock->dev);
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500735}
736
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700737static void wmi_free_devices(void)
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500738{
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700739 struct wmi_block *wblock, *next;
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500740
741 /* Delete devices for all the GUIDs */
Dmitry Torokhov023b9562011-09-07 15:00:02 -0700742 list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
743 list_del(&wblock->list);
Colin King58f64252010-11-19 15:40:02 +0000744 if (wblock->dev.class)
745 device_unregister(&wblock->dev);
Dmitry Torokhov023b9562011-09-07 15:00:02 -0700746 else
747 kfree(wblock);
748 }
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500749}
750
Carlos Corbachod1f9e492009-12-26 19:14:59 +0000751static bool guid_already_parsed(const char *guid_string)
752{
Carlos Corbachod1f9e492009-12-26 19:14:59 +0000753 struct wmi_block *wblock;
Carlos Corbachod1f9e492009-12-26 19:14:59 +0000754
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700755 list_for_each_entry(wblock, &wmi_block_list, list)
Thadeu Lima de Souza Cascardo8b14d7b2010-11-28 19:46:50 -0200756 if (memcmp(wblock->gblock.guid, guid_string, 16) == 0)
Carlos Corbachod1f9e492009-12-26 19:14:59 +0000757 return true;
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700758
Carlos Corbachod1f9e492009-12-26 19:14:59 +0000759 return false;
760}
761
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500762/*
Carlos Corbachobff431e2008-02-05 02:17:04 +0000763 * Parse the _WDG method for the GUID data blocks
764 */
Dan Carpenter0a018a62013-08-14 12:02:30 +0300765static int parse_wdg(acpi_handle handle)
Carlos Corbachobff431e2008-02-05 02:17:04 +0000766{
767 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
768 union acpi_object *obj;
Dmitry Torokhov37830662010-08-26 00:15:09 -0700769 const struct guid_block *gblock;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000770 struct wmi_block *wblock;
771 acpi_status status;
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700772 int retval;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000773 u32 i, total;
774
775 status = acpi_evaluate_object(handle, "_WDG", NULL, &out);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000776 if (ACPI_FAILURE(status))
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700777 return -ENXIO;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000778
779 obj = (union acpi_object *) out.pointer;
Dmitry Torokhov3d2c63e2010-08-26 00:15:03 -0700780 if (!obj)
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700781 return -ENXIO;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000782
Dmitry Torokhov64ed0ab2010-08-26 00:14:58 -0700783 if (obj->type != ACPI_TYPE_BUFFER) {
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700784 retval = -ENXIO;
Dmitry Torokhov64ed0ab2010-08-26 00:14:58 -0700785 goto out_free_pointer;
786 }
Carlos Corbachobff431e2008-02-05 02:17:04 +0000787
Dmitry Torokhov37830662010-08-26 00:15:09 -0700788 gblock = (const struct guid_block *)obj->buffer.pointer;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000789 total = obj->buffer.length / sizeof(struct guid_block);
790
Carlos Corbachobff431e2008-02-05 02:17:04 +0000791 for (i = 0; i < total; i++) {
Thomas Renningera929aae2010-05-03 15:30:17 +0200792 if (debug_dump_wdg)
793 wmi_dump_wdg(&gblock[i]);
794
Colin King58f64252010-11-19 15:40:02 +0000795 wblock = kzalloc(sizeof(struct wmi_block), GFP_KERNEL);
796 if (!wblock)
Dan Carpenter0a018a62013-08-14 12:02:30 +0300797 return -ENOMEM;
Colin King58f64252010-11-19 15:40:02 +0000798
799 wblock->handle = handle;
800 wblock->gblock = gblock[i];
801
802 /*
803 Some WMI devices, like those for nVidia hooks, have a
804 duplicate GUID. It's not clear what we should do in this
805 case yet, so for now, we'll just ignore the duplicate
806 for device creation.
807 */
808 if (!guid_already_parsed(gblock[i].guid)) {
809 retval = wmi_create_device(&gblock[i], wblock, handle);
810 if (retval) {
811 wmi_free_devices();
Dan Carpentere1e0dac2010-12-06 16:44:23 -0500812 goto out_free_pointer;
Colin King58f64252010-11-19 15:40:02 +0000813 }
Axel Lina5167c52010-06-03 11:45:45 +0800814 }
Carlos Corbachobff431e2008-02-05 02:17:04 +0000815
Colin King58f64252010-11-19 15:40:02 +0000816 list_add_tail(&wblock->list, &wmi_block_list);
817
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200818 if (debug_event) {
819 wblock->handler = wmi_notify_debug;
Dmitry Torokhov2d5ab552010-08-26 00:14:48 -0700820 wmi_method_enable(wblock, 1);
Thomas Renningerfc3155b2010-05-03 15:30:15 +0200821 }
Carlos Corbachobff431e2008-02-05 02:17:04 +0000822 }
823
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700824 retval = 0;
825
Axel Lina5167c52010-06-03 11:45:45 +0800826out_free_pointer:
827 kfree(out.pointer);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000828
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700829 return retval;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000830}
831
832/*
833 * WMI can have EmbeddedControl access regions. In which case, we just want to
834 * hand these off to the EC driver.
835 */
836static acpi_status
837acpi_wmi_ec_space_handler(u32 function, acpi_physical_address address,
Lin Ming439913f2010-01-28 10:53:19 +0800838 u32 bits, u64 *value,
Carlos Corbachobff431e2008-02-05 02:17:04 +0000839 void *handler_context, void *region_context)
840{
841 int result = 0, i = 0;
842 u8 temp = 0;
843
844 if ((address > 0xFF) || !value)
845 return AE_BAD_PARAMETER;
846
847 if (function != ACPI_READ && function != ACPI_WRITE)
848 return AE_BAD_PARAMETER;
849
850 if (bits != 8)
851 return AE_BAD_PARAMETER;
852
853 if (function == ACPI_READ) {
854 result = ec_read(address, &temp);
Lin Ming439913f2010-01-28 10:53:19 +0800855 (*value) |= ((u64)temp) << i;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000856 } else {
857 temp = 0xff & ((*value) >> i);
858 result = ec_write(address, temp);
859 }
860
861 switch (result) {
862 case -EINVAL:
863 return AE_BAD_PARAMETER;
864 break;
865 case -ENODEV:
866 return AE_NOT_FOUND;
867 break;
868 case -ETIME:
869 return AE_TIME;
870 break;
871 default:
872 return AE_OK;
873 }
874}
875
Bjorn Helgaasf61bb932009-04-07 15:37:37 +0000876static void acpi_wmi_notify(struct acpi_device *device, u32 event)
Carlos Corbachobff431e2008-02-05 02:17:04 +0000877{
878 struct guid_block *block;
879 struct wmi_block *wblock;
880 struct list_head *p;
Thomas Renninger7715348c2010-05-03 15:30:16 +0200881 char guid_string[37];
Carlos Corbachobff431e2008-02-05 02:17:04 +0000882
Dmitry Torokhov762e1a22010-08-26 00:15:14 -0700883 list_for_each(p, &wmi_block_list) {
Carlos Corbachobff431e2008-02-05 02:17:04 +0000884 wblock = list_entry(p, struct wmi_block, list);
885 block = &wblock->gblock;
886
887 if ((block->flags & ACPI_WMI_EVENT) &&
888 (block->notify_id == event)) {
889 if (wblock->handler)
890 wblock->handler(event, wblock->handler_data);
Thomas Renninger7715348c2010-05-03 15:30:16 +0200891 if (debug_event) {
892 wmi_gtoa(wblock->gblock.guid, guid_string);
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700893 pr_info("DEBUG Event GUID: %s\n", guid_string);
Thomas Renninger7715348c2010-05-03 15:30:16 +0200894 }
Carlos Corbachobff431e2008-02-05 02:17:04 +0000895
896 acpi_bus_generate_netlink_event(
Kay Sievers07944692008-10-30 01:18:59 +0100897 device->pnp.device_class, dev_name(&device->dev),
Carlos Corbachobff431e2008-02-05 02:17:04 +0000898 event, 0);
899 break;
900 }
901 }
902}
903
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100904static int acpi_wmi_remove(struct acpi_device *device)
Carlos Corbachobff431e2008-02-05 02:17:04 +0000905{
Carlos Corbachobff431e2008-02-05 02:17:04 +0000906 acpi_remove_address_space_handler(device->handle,
907 ACPI_ADR_SPACE_EC, &acpi_wmi_ec_space_handler);
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700908 wmi_free_devices();
Carlos Corbachobff431e2008-02-05 02:17:04 +0000909
910 return 0;
911}
912
Thomas Renninger925b1082010-07-16 13:11:36 +0200913static int acpi_wmi_add(struct acpi_device *device)
Carlos Corbachobff431e2008-02-05 02:17:04 +0000914{
915 acpi_status status;
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700916 int error;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000917
Carlos Corbachobff431e2008-02-05 02:17:04 +0000918 status = acpi_install_address_space_handler(device->handle,
919 ACPI_ADR_SPACE_EC,
920 &acpi_wmi_ec_space_handler,
921 NULL, NULL);
Dmitry Torokhov5212cd62010-08-26 00:14:42 -0700922 if (ACPI_FAILURE(status)) {
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700923 pr_err("Error installing EC region handler\n");
Carlos Corbachobff431e2008-02-05 02:17:04 +0000924 return -ENODEV;
Dmitry Torokhov5212cd62010-08-26 00:14:42 -0700925 }
Carlos Corbachobff431e2008-02-05 02:17:04 +0000926
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700927 error = parse_wdg(device->handle);
928 if (error) {
Dmitry Torokhov5212cd62010-08-26 00:14:42 -0700929 acpi_remove_address_space_handler(device->handle,
930 ACPI_ADR_SPACE_EC,
931 &acpi_wmi_ec_space_handler);
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700932 pr_err("Failed to parse WDG method\n");
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700933 return error;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000934 }
935
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700936 return 0;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000937}
938
939static int __init acpi_wmi_init(void)
940{
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700941 int error;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000942
943 if (acpi_disabled)
944 return -ENODEV;
945
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700946 error = class_register(&wmi_class);
947 if (error)
948 return error;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000949
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700950 error = acpi_bus_register_driver(&acpi_wmi_driver);
951 if (error) {
952 pr_err("Error loading mapper\n");
953 class_unregister(&wmi_class);
954 return error;
Matthew Garrett1caab3c2009-11-04 14:17:53 -0500955 }
956
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700957 pr_info("Mapper loaded\n");
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700958 return 0;
Carlos Corbachobff431e2008-02-05 02:17:04 +0000959}
960
961static void __exit acpi_wmi_exit(void)
962{
Carlos Corbachobff431e2008-02-05 02:17:04 +0000963 acpi_bus_unregister_driver(&acpi_wmi_driver);
Dmitry Torokhovc64eefd2010-08-26 00:15:30 -0700964 class_unregister(&wmi_class);
Carlos Corbachobff431e2008-02-05 02:17:04 +0000965
Dmitry Torokhov8e075142010-08-26 00:15:19 -0700966 pr_info("Mapper unloaded\n");
Carlos Corbachobff431e2008-02-05 02:17:04 +0000967}
968
969subsys_initcall(acpi_wmi_init);
970module_exit(acpi_wmi_exit);