ARM: pmu: add support for interrupt-affinity property
[linux/fpc-iii.git] / drivers / platform / x86 / wmi.c
blob737e56d46f61950826419bbef2d9fb66d69abcc1
1 /*
2 * ACPI-WMI mapping driver
4 * Copyright (C) 2007-2008 Carlos Corbacho <carlos@strangeworlds.co.uk>
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>
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
27 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/kernel.h>
33 #include <linux/init.h>
34 #include <linux/types.h>
35 #include <linux/device.h>
36 #include <linux/list.h>
37 #include <linux/acpi.h>
38 #include <linux/slab.h>
39 #include <linux/module.h>
41 ACPI_MODULE_NAME("wmi");
42 MODULE_AUTHOR("Carlos Corbacho");
43 MODULE_DESCRIPTION("ACPI-WMI Mapping Driver");
44 MODULE_LICENSE("GPL");
46 #define ACPI_WMI_CLASS "wmi"
48 static DEFINE_MUTEX(wmi_data_lock);
49 static LIST_HEAD(wmi_block_list);
51 struct guid_block {
52 char guid[16];
53 union {
54 char object_id[2];
55 struct {
56 unsigned char notify_id;
57 unsigned char reserved;
60 u8 instance_count;
61 u8 flags;
64 struct 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;
70 struct device dev;
75 * If the GUID data block is marked as expensive, we must enable and
76 * explicitily disable data collection.
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 */
83 static bool debug_event;
84 module_param(debug_event, bool, 0444);
85 MODULE_PARM_DESC(debug_event,
86 "Log WMI Events [0/1]");
88 static bool debug_dump_wdg;
89 module_param(debug_dump_wdg, bool, 0444);
90 MODULE_PARM_DESC(debug_dump_wdg,
91 "Dump available WMI interfaces [0/1]");
93 static int acpi_wmi_remove(struct acpi_device *device);
94 static int acpi_wmi_add(struct acpi_device *device);
95 static void acpi_wmi_notify(struct acpi_device *device, u32 event);
97 static const struct acpi_device_id wmi_device_ids[] = {
98 {"PNP0C14", 0},
99 {"pnp0c14", 0},
100 {"", 0},
102 MODULE_DEVICE_TABLE(acpi, wmi_device_ids);
104 static 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,
111 .notify = acpi_wmi_notify,
116 * GUID parsing functions
120 * wmi_parse_hexbyte - Convert a ASCII hex number to a byte
121 * @src: Pointer to at least 2 characters to convert.
123 * Convert a two character ASCII hex string to a number.
125 * Return: 0-255 Success, the byte was parsed correctly
126 * -1 Error, an invalid character was supplied
128 static int wmi_parse_hexbyte(const u8 *src)
130 int h;
131 int value;
133 /* high part */
134 h = value = hex_to_bin(src[0]);
135 if (value < 0)
136 return -1;
138 /* low part */
139 value = hex_to_bin(src[1]);
140 if (value >= 0)
141 return (h << 4) | value;
142 return -1;
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)
150 * Byte swap a binary GUID to match it's real GUID value
152 static void wmi_swap_bytes(u8 *src, u8 *dest)
154 int i;
156 for (i = 0; i <= 3; i++)
157 memcpy(dest + i, src + (3 - i), 1);
159 for (i = 0; i <= 1; i++)
160 memcpy(dest + 4 + i, src + (5 - i), 1);
162 for (i = 0; i <= 1; i++)
163 memcpy(dest + 6 + i, src + (7 - i), 1);
165 memcpy(dest + 8, src + 8, 8);
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)
173 * N.B. The GUID need not be NULL terminated.
175 * Return: 'true' @dest contains binary GUID
176 * 'false' @dest contents are undefined
178 static bool wmi_parse_guid(const u8 *src, u8 *dest)
180 static const int size[] = { 4, 2, 2, 2, 6 };
181 int i, j, v;
183 if (src[8] != '-' || src[13] != '-' ||
184 src[18] != '-' || src[23] != '-')
185 return false;
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;
195 return true;
199 * Convert a raw GUID to the ACII string representation
201 static int wmi_gtoa(const char *in, char *out)
203 int i;
205 for (i = 3; i >= 0; i--)
206 out += sprintf(out, "%02X", in[i] & 0xFF);
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, "-");
219 for (i = 10; i <= 15; i++)
220 out += sprintf(out, "%02X", in[i] & 0xFF);
222 *out = '\0';
223 return 0;
226 static bool find_guid(const char *guid_string, struct wmi_block **out)
228 char tmp[16], guid_input[16];
229 struct wmi_block *wblock;
230 struct guid_block *block;
231 struct list_head *p;
233 wmi_parse_guid(guid_string, tmp);
234 wmi_swap_bytes(tmp, guid_input);
236 list_for_each(p, &wmi_block_list) {
237 wblock = list_entry(p, struct wmi_block, list);
238 block = &wblock->gblock;
240 if (memcmp(block->guid, guid_input, 16) == 0) {
241 if (out)
242 *out = wblock;
243 return 1;
246 return 0;
249 static acpi_status wmi_method_enable(struct wmi_block *wblock, int enable)
251 struct guid_block *block = NULL;
252 char method[5];
253 acpi_status status;
254 acpi_handle handle;
256 block = &wblock->gblock;
257 handle = wblock->handle;
259 snprintf(method, 5, "WE%02X", block->notify_id);
260 status = acpi_execute_simple_method(handle, method, enable);
262 if (status != AE_OK && status != AE_NOT_FOUND)
263 return status;
264 else
265 return AE_OK;
269 * Exported WMI functions
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
279 * Call an ACPI-WMI method
281 acpi_status wmi_evaluate_method(const char *guid_string, u8 instance,
282 u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out)
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];
290 char method[5] = "WM";
292 if (!find_guid(guid_string, &wblock))
293 return AE_ERROR;
295 block = &wblock->gblock;
296 handle = wblock->handle;
298 if (!(block->flags & ACPI_WMI_METHOD))
299 return AE_BAD_DATA;
301 if (block->instance_count < instance)
302 return AE_BAD_PARAMETER;
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;
311 if (in) {
312 input.count = 3;
314 if (block->flags & ACPI_WMI_STRING) {
315 params[2].type = ACPI_TYPE_STRING;
316 } else {
317 params[2].type = ACPI_TYPE_BUFFER;
319 params[2].buffer.length = in->length;
320 params[2].buffer.pointer = in->pointer;
323 strncat(method, block->object_id, 2);
325 status = acpi_evaluate_object(handle, method, &input, out);
327 return status;
329 EXPORT_SYMBOL_GPL(wmi_evaluate_method);
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
337 * Return the contents of an ACPI-WMI data block to a buffer
339 acpi_status wmi_query_block(const char *guid_string, u8 instance,
340 struct acpi_buffer *out)
342 struct guid_block *block = NULL;
343 struct wmi_block *wblock = NULL;
344 acpi_handle handle;
345 acpi_status status, wc_status = AE_ERROR;
346 struct acpi_object_list input;
347 union acpi_object wq_params[1];
348 char method[5];
349 char wc_method[5] = "WC";
351 if (!guid_string || !out)
352 return AE_BAD_PARAMETER;
354 if (!find_guid(guid_string, &wblock))
355 return AE_ERROR;
357 block = &wblock->gblock;
358 handle = wblock->handle;
360 if (block->instance_count < instance)
361 return AE_BAD_PARAMETER;
363 /* Check GUID is a data block */
364 if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
365 return AE_ERROR;
367 input.count = 1;
368 input.pointer = wq_params;
369 wq_params[0].type = ACPI_TYPE_INTEGER;
370 wq_params[0].integer.value = instance;
373 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method first to
374 * enable collection.
376 if (block->flags & ACPI_WMI_EXPENSIVE) {
377 strncat(wc_method, block->object_id, 2);
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.
384 if (acpi_has_method(handle, wc_method))
385 wc_status = acpi_execute_simple_method(handle,
386 wc_method, 1);
389 strcpy(method, "WQ");
390 strncat(method, block->object_id, 2);
392 status = acpi_evaluate_object(handle, method, &input, out);
395 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method, even if
396 * the WQxx method failed - we should disable collection anyway.
398 if ((block->flags & ACPI_WMI_EXPENSIVE) && ACPI_SUCCESS(wc_status)) {
399 status = acpi_execute_simple_method(handle, wc_method, 0);
402 return status;
404 EXPORT_SYMBOL_GPL(wmi_query_block);
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
412 * Write the contents of the input buffer to an ACPI-WMI data block
414 acpi_status wmi_set_block(const char *guid_string, u8 instance,
415 const struct acpi_buffer *in)
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];
422 char method[5] = "WS";
424 if (!guid_string || !in)
425 return AE_BAD_DATA;
427 if (!find_guid(guid_string, &wblock))
428 return AE_ERROR;
430 block = &wblock->gblock;
431 handle = wblock->handle;
433 if (block->instance_count < instance)
434 return AE_BAD_PARAMETER;
436 /* Check GUID is a data block */
437 if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
438 return AE_ERROR;
440 input.count = 2;
441 input.pointer = params;
442 params[0].type = ACPI_TYPE_INTEGER;
443 params[0].integer.value = instance;
445 if (block->flags & ACPI_WMI_STRING) {
446 params[1].type = ACPI_TYPE_STRING;
447 } else {
448 params[1].type = ACPI_TYPE_BUFFER;
450 params[1].buffer.length = in->length;
451 params[1].buffer.pointer = in->pointer;
453 strncat(method, block->object_id, 2);
455 return acpi_evaluate_object(handle, method, &input, NULL);
457 EXPORT_SYMBOL_GPL(wmi_set_block);
459 static void wmi_dump_wdg(const struct guid_block *g)
461 char guid_string[37];
463 wmi_gtoa(g->guid, guid_string);
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);
470 pr_info("\tflags: %#x", g->flags);
471 if (g->flags) {
472 if (g->flags & ACPI_WMI_EXPENSIVE)
473 pr_cont(" ACPI_WMI_EXPENSIVE");
474 if (g->flags & ACPI_WMI_METHOD)
475 pr_cont(" ACPI_WMI_METHOD");
476 if (g->flags & ACPI_WMI_STRING)
477 pr_cont(" ACPI_WMI_STRING");
478 if (g->flags & ACPI_WMI_EVENT)
479 pr_cont(" ACPI_WMI_EVENT");
481 pr_cont("\n");
485 static void wmi_notify_debug(u32 value, void *context)
487 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
488 union acpi_object *obj;
489 acpi_status status;
491 status = wmi_get_event_data(value, &response);
492 if (status != AE_OK) {
493 pr_info("bad event status 0x%x\n", status);
494 return;
497 obj = (union acpi_object *)response.pointer;
499 if (!obj)
500 return;
502 pr_info("DEBUG Event ");
503 switch(obj->type) {
504 case ACPI_TYPE_BUFFER:
505 pr_cont("BUFFER_TYPE - length %d\n", obj->buffer.length);
506 break;
507 case ACPI_TYPE_STRING:
508 pr_cont("STRING_TYPE - %s\n", obj->string.pointer);
509 break;
510 case ACPI_TYPE_INTEGER:
511 pr_cont("INTEGER_TYPE - %llu\n", obj->integer.value);
512 break;
513 case ACPI_TYPE_PACKAGE:
514 pr_cont("PACKAGE_TYPE - %d elements\n", obj->package.count);
515 break;
516 default:
517 pr_cont("object type 0x%X\n", obj->type);
519 kfree(obj);
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
527 * Register a handler for events sent to the ACPI-WMI mapper device.
529 acpi_status wmi_install_notify_handler(const char *guid,
530 wmi_notify_handler handler, void *data)
532 struct wmi_block *block;
533 acpi_status status = AE_NOT_EXIST;
534 char tmp[16], guid_input[16];
535 struct list_head *p;
537 if (!guid || !handler)
538 return AE_BAD_PARAMETER;
540 wmi_parse_guid(guid, tmp);
541 wmi_swap_bytes(tmp, guid_input);
543 list_for_each(p, &wmi_block_list) {
544 acpi_status wmi_status;
545 block = list_entry(p, struct wmi_block, list);
547 if (memcmp(block->gblock.guid, guid_input, 16) == 0) {
548 if (block->handler &&
549 block->handler != wmi_notify_debug)
550 return AE_ALREADY_ACQUIRED;
552 block->handler = handler;
553 block->handler_data = data;
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;
562 return status;
564 EXPORT_SYMBOL_GPL(wmi_install_notify_handler);
567 * wmi_uninstall_notify_handler - Unregister handler for WMI events
569 * Unregister handler for events sent to the ACPI-WMI mapper device.
571 acpi_status wmi_remove_notify_handler(const char *guid)
573 struct wmi_block *block;
574 acpi_status status = AE_NOT_EXIST;
575 char tmp[16], guid_input[16];
576 struct list_head *p;
578 if (!guid)
579 return AE_BAD_PARAMETER;
581 wmi_parse_guid(guid, tmp);
582 wmi_swap_bytes(tmp, guid_input);
584 list_for_each(p, &wmi_block_list) {
585 acpi_status wmi_status;
586 block = list_entry(p, struct wmi_block, list);
588 if (memcmp(block->gblock.guid, guid_input, 16) == 0) {
589 if (!block->handler ||
590 block->handler == wmi_notify_debug)
591 return AE_NULL_ENTRY;
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;
608 return status;
610 EXPORT_SYMBOL_GPL(wmi_remove_notify_handler);
613 * wmi_get_event_data - Get WMI data associated with an event
615 * @event: Event to find
616 * @out: Buffer to hold event data. out->pointer should be freed with kfree()
618 * Returns extra data associated with an event in WMI.
620 acpi_status wmi_get_event_data(u32 event, struct acpi_buffer *out)
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;
628 input.count = 1;
629 input.pointer = params;
630 params[0].type = ACPI_TYPE_INTEGER;
631 params[0].integer.value = event;
633 list_for_each(p, &wmi_block_list) {
634 wblock = list_entry(p, struct wmi_block, list);
635 gblock = &wblock->gblock;
637 if ((gblock->flags & ACPI_WMI_EVENT) &&
638 (gblock->notify_id == event))
639 return acpi_evaluate_object(wblock->handle, "_WED",
640 &input, out);
643 return AE_NOT_FOUND;
645 EXPORT_SYMBOL_GPL(wmi_get_event_data);
648 * wmi_has_guid - Check if a GUID is available
649 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
651 * Check if a given GUID is defined by _WDG
653 bool wmi_has_guid(const char *guid_string)
655 return find_guid(guid_string, NULL);
657 EXPORT_SYMBOL_GPL(wmi_has_guid);
660 * sysfs interface
662 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
663 char *buf)
665 char guid_string[37];
666 struct wmi_block *wblock;
668 wblock = dev_get_drvdata(dev);
669 if (!wblock) {
670 strcat(buf, "\n");
671 return strlen(buf);
674 wmi_gtoa(wblock->gblock.guid, guid_string);
676 return sprintf(buf, "wmi:%s\n", guid_string);
678 static DEVICE_ATTR_RO(modalias);
680 static struct attribute *wmi_attrs[] = {
681 &dev_attr_modalias.attr,
682 NULL,
684 ATTRIBUTE_GROUPS(wmi);
686 static int wmi_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
688 char guid_string[37];
690 struct wmi_block *wblock;
692 if (add_uevent_var(env, "MODALIAS="))
693 return -ENOMEM;
695 wblock = dev_get_drvdata(dev);
696 if (!wblock)
697 return -ENOMEM;
699 wmi_gtoa(wblock->gblock.guid, guid_string);
701 strcpy(&env->buf[env->buflen - 1], "wmi:");
702 memcpy(&env->buf[env->buflen - 1 + 4], guid_string, 36);
703 env->buflen += 40;
705 return 0;
708 static void wmi_dev_free(struct device *dev)
710 struct wmi_block *wmi_block = container_of(dev, struct wmi_block, dev);
712 kfree(wmi_block);
715 static struct class wmi_class = {
716 .name = "wmi",
717 .dev_release = wmi_dev_free,
718 .dev_uevent = wmi_dev_uevent,
719 .dev_groups = wmi_groups,
722 static int wmi_create_device(const struct guid_block *gblock,
723 struct wmi_block *wblock, acpi_handle handle)
725 char guid_string[37];
727 wblock->dev.class = &wmi_class;
729 wmi_gtoa(gblock->guid, guid_string);
730 dev_set_name(&wblock->dev, "%s", guid_string);
732 dev_set_drvdata(&wblock->dev, wblock);
734 return device_register(&wblock->dev);
737 static void wmi_free_devices(void)
739 struct wmi_block *wblock, *next;
741 /* Delete devices for all the GUIDs */
742 list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
743 list_del(&wblock->list);
744 if (wblock->dev.class)
745 device_unregister(&wblock->dev);
746 else
747 kfree(wblock);
751 static bool guid_already_parsed(const char *guid_string)
753 struct wmi_block *wblock;
755 list_for_each_entry(wblock, &wmi_block_list, list)
756 if (memcmp(wblock->gblock.guid, guid_string, 16) == 0)
757 return true;
759 return false;
763 * Parse the _WDG method for the GUID data blocks
765 static int parse_wdg(acpi_handle handle)
767 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
768 union acpi_object *obj;
769 const struct guid_block *gblock;
770 struct wmi_block *wblock;
771 acpi_status status;
772 int retval;
773 u32 i, total;
775 status = acpi_evaluate_object(handle, "_WDG", NULL, &out);
776 if (ACPI_FAILURE(status))
777 return -ENXIO;
779 obj = (union acpi_object *) out.pointer;
780 if (!obj)
781 return -ENXIO;
783 if (obj->type != ACPI_TYPE_BUFFER) {
784 retval = -ENXIO;
785 goto out_free_pointer;
788 gblock = (const struct guid_block *)obj->buffer.pointer;
789 total = obj->buffer.length / sizeof(struct guid_block);
791 for (i = 0; i < total; i++) {
792 if (debug_dump_wdg)
793 wmi_dump_wdg(&gblock[i]);
795 wblock = kzalloc(sizeof(struct wmi_block), GFP_KERNEL);
796 if (!wblock)
797 return -ENOMEM;
799 wblock->handle = handle;
800 wblock->gblock = gblock[i];
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.
808 if (!guid_already_parsed(gblock[i].guid)) {
809 retval = wmi_create_device(&gblock[i], wblock, handle);
810 if (retval) {
811 wmi_free_devices();
812 goto out_free_pointer;
816 list_add_tail(&wblock->list, &wmi_block_list);
818 if (debug_event) {
819 wblock->handler = wmi_notify_debug;
820 wmi_method_enable(wblock, 1);
824 retval = 0;
826 out_free_pointer:
827 kfree(out.pointer);
829 return retval;
833 * WMI can have EmbeddedControl access regions. In which case, we just want to
834 * hand these off to the EC driver.
836 static acpi_status
837 acpi_wmi_ec_space_handler(u32 function, acpi_physical_address address,
838 u32 bits, u64 *value,
839 void *handler_context, void *region_context)
841 int result = 0, i = 0;
842 u8 temp = 0;
844 if ((address > 0xFF) || !value)
845 return AE_BAD_PARAMETER;
847 if (function != ACPI_READ && function != ACPI_WRITE)
848 return AE_BAD_PARAMETER;
850 if (bits != 8)
851 return AE_BAD_PARAMETER;
853 if (function == ACPI_READ) {
854 result = ec_read(address, &temp);
855 (*value) |= ((u64)temp) << i;
856 } else {
857 temp = 0xff & ((*value) >> i);
858 result = ec_write(address, temp);
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;
876 static void acpi_wmi_notify(struct acpi_device *device, u32 event)
878 struct guid_block *block;
879 struct wmi_block *wblock;
880 struct list_head *p;
881 char guid_string[37];
883 list_for_each(p, &wmi_block_list) {
884 wblock = list_entry(p, struct wmi_block, list);
885 block = &wblock->gblock;
887 if ((block->flags & ACPI_WMI_EVENT) &&
888 (block->notify_id == event)) {
889 if (wblock->handler)
890 wblock->handler(event, wblock->handler_data);
891 if (debug_event) {
892 wmi_gtoa(wblock->gblock.guid, guid_string);
893 pr_info("DEBUG Event GUID: %s\n", guid_string);
896 acpi_bus_generate_netlink_event(
897 device->pnp.device_class, dev_name(&device->dev),
898 event, 0);
899 break;
904 static int acpi_wmi_remove(struct acpi_device *device)
906 acpi_remove_address_space_handler(device->handle,
907 ACPI_ADR_SPACE_EC, &acpi_wmi_ec_space_handler);
908 wmi_free_devices();
910 return 0;
913 static int acpi_wmi_add(struct acpi_device *device)
915 acpi_status status;
916 int error;
918 status = acpi_install_address_space_handler(device->handle,
919 ACPI_ADR_SPACE_EC,
920 &acpi_wmi_ec_space_handler,
921 NULL, NULL);
922 if (ACPI_FAILURE(status)) {
923 pr_err("Error installing EC region handler\n");
924 return -ENODEV;
927 error = parse_wdg(device->handle);
928 if (error) {
929 acpi_remove_address_space_handler(device->handle,
930 ACPI_ADR_SPACE_EC,
931 &acpi_wmi_ec_space_handler);
932 pr_err("Failed to parse WDG method\n");
933 return error;
936 return 0;
939 static int __init acpi_wmi_init(void)
941 int error;
943 if (acpi_disabled)
944 return -ENODEV;
946 error = class_register(&wmi_class);
947 if (error)
948 return error;
950 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;
957 pr_info("Mapper loaded\n");
958 return 0;
961 static void __exit acpi_wmi_exit(void)
963 acpi_bus_unregister_driver(&acpi_wmi_driver);
964 class_unregister(&wmi_class);
966 pr_info("Mapper unloaded\n");
969 subsys_initcall(acpi_wmi_init);
970 module_exit(acpi_wmi_exit);