wmi.c 35.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 *  ACPI-WMI mapping driver
 *
 *  Copyright (C) 2007-2008 Carlos Corbacho <carlos@strangeworlds.co.uk>
 *
 *  GUID parsing code from ldm.c is:
 *   Copyright (C) 2001,2002 Richard Russon <ldm@flatcap.org>
 *   Copyright (c) 2001-2007 Anton Altaparmakov
 *   Copyright (C) 2001,2002 Jakob Kemi <jakob.kemi@telia.com>
 *
11 12 13 14
 *  WMI bus infrastructure by Andrew Lutomirski and Darren Hart:
 *    Copyright (C) 2015 Andrew Lutomirski
 *    Copyright (C) 2017 VMware, Inc. All Rights Reserved.
 *
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or (at
 *  your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

D
Dmitry Torokhov 已提交
34 35
#define pr_fmt(fmt)	KBUILD_MODNAME ": " fmt

36
#include <linux/acpi.h>
37
#include <linux/device.h>
38 39
#include <linux/init.h>
#include <linux/kernel.h>
40
#include <linux/list.h>
41
#include <linux/miscdevice.h>
42
#include <linux/module.h>
43
#include <linux/platform_device.h>
44 45
#include <linux/slab.h>
#include <linux/types.h>
46
#include <linux/uaccess.h>
47
#include <linux/uuid.h>
48
#include <linux/wmi.h>
49
#include <uapi/linux/wmi.h>
50 51 52 53 54 55

ACPI_MODULE_NAME("wmi");
MODULE_AUTHOR("Carlos Corbacho");
MODULE_DESCRIPTION("ACPI-WMI Mapping Driver");
MODULE_LICENSE("GPL");

56
static LIST_HEAD(wmi_block_list);
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

struct guid_block {
	char guid[16];
	union {
		char object_id[2];
		struct {
			unsigned char notify_id;
			unsigned char reserved;
		};
	};
	u8 instance_count;
	u8 flags;
};

struct wmi_block {
72
	struct wmi_device dev;
73 74
	struct list_head list;
	struct guid_block gblock;
75 76
	struct miscdevice char_dev;
	struct mutex char_mutex;
77
	struct acpi_device *acpi_device;
78 79
	wmi_notify_handler handler;
	void *handler_data;
80
	u64 req_buf_size;
81

82
	bool read_takes_no_args;
83 84 85 86 87 88 89 90 91 92 93 94
};


/*
 * If the GUID data block is marked as expensive, we must enable and
 * explicitily disable data collection.
 */
#define ACPI_WMI_EXPENSIVE   0x1
#define ACPI_WMI_METHOD      0x2	/* GUID is a method */
#define ACPI_WMI_STRING      0x4	/* GUID takes & returns a string */
#define ACPI_WMI_EVENT       0x8	/* GUID is an event */

95
static bool debug_event;
96 97 98 99
module_param(debug_event, bool, 0444);
MODULE_PARM_DESC(debug_event,
		 "Log WMI Events [0/1]");

100
static bool debug_dump_wdg;
101 102 103 104
module_param(debug_dump_wdg, bool, 0444);
MODULE_PARM_DESC(debug_dump_wdg,
		 "Dump available WMI interfaces [0/1]");

105 106
static int acpi_wmi_remove(struct platform_device *device);
static int acpi_wmi_probe(struct platform_device *device);
107 108 109 110 111 112 113 114

static const struct acpi_device_id wmi_device_ids[] = {
	{"PNP0C14", 0},
	{"pnp0c14", 0},
	{"", 0},
};
MODULE_DEVICE_TABLE(acpi, wmi_device_ids);

115 116 117 118
static struct platform_driver acpi_wmi_driver = {
	.driver = {
		.name = "acpi-wmi",
		.acpi_match_table = wmi_device_ids,
119
	},
120 121
	.probe = acpi_wmi_probe,
	.remove = acpi_wmi_remove,
122 123 124 125 126 127 128 129
};

/*
 * GUID parsing functions
 */

static bool find_guid(const char *guid_string, struct wmi_block **out)
{
130
	uuid_le guid_input;
131 132 133 134
	struct wmi_block *wblock;
	struct guid_block *block;
	struct list_head *p;

135 136
	if (uuid_le_to_bin(guid_string, &guid_input))
		return false;
137

138
	list_for_each(p, &wmi_block_list) {
139 140 141
		wblock = list_entry(p, struct wmi_block, list);
		block = &wblock->gblock;

142
		if (memcmp(block->guid, &guid_input, 16) == 0) {
143 144
			if (out)
				*out = wblock;
145
			return true;
146 147
		}
	}
148
	return false;
149 150
}

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
static int get_subobj_info(acpi_handle handle, const char *pathname,
			   struct acpi_device_info **info)
{
	struct acpi_device_info *dummy_info, **info_ptr;
	acpi_handle subobj_handle;
	acpi_status status;

	status = acpi_get_handle(handle, (char *)pathname, &subobj_handle);
	if (status == AE_NOT_FOUND)
		return -ENOENT;
	else if (ACPI_FAILURE(status))
		return -EIO;

	info_ptr = info ? info : &dummy_info;
	status = acpi_get_object_info(subobj_handle, info_ptr);
	if (ACPI_FAILURE(status))
		return -EIO;

	if (!info)
		kfree(dummy_info);

	return 0;
}

175 176 177 178 179 180 181 182
static acpi_status wmi_method_enable(struct wmi_block *wblock, int enable)
{
	struct guid_block *block = NULL;
	char method[5];
	acpi_status status;
	acpi_handle handle;

	block = &wblock->gblock;
183
	handle = wblock->acpi_device->handle;
184 185

	snprintf(method, 5, "WE%02X", block->notify_id);
186
	status = acpi_execute_simple_method(handle, method, enable);
187 188 189 190 191 192 193

	if (status != AE_OK && status != AE_NOT_FOUND)
		return status;
	else
		return AE_OK;
}

194 195 196
/*
 * Exported WMI functions
 */
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

/**
 * set_required_buffer_size - Sets the buffer size needed for performing IOCTL
 * @wdev: A wmi bus device from a driver
 * @instance: Instance index
 *
 * Allocates memory needed for buffer, stores the buffer size in that memory
 */
int set_required_buffer_size(struct wmi_device *wdev, u64 length)
{
	struct wmi_block *wblock;

	wblock = container_of(wdev, struct wmi_block, dev);
	wblock->req_buf_size = length;

	return 0;
}
EXPORT_SYMBOL_GPL(set_required_buffer_size);

216 217 218 219 220 221 222 223 224 225 226 227
/**
 * wmi_evaluate_method - Evaluate a WMI method
 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
 * @instance: Instance index
 * @method_id: Method ID to call
 * &in: Buffer containing input for the method call
 * &out: Empty buffer to return the method results
 *
 * Call an ACPI-WMI method
 */
acpi_status wmi_evaluate_method(const char *guid_string, u8 instance,
u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out)
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
{
	struct wmi_block *wblock = NULL;

	if (!find_guid(guid_string, &wblock))
		return AE_ERROR;
	return wmidev_evaluate_method(&wblock->dev, instance, method_id,
				      in, out);
}
EXPORT_SYMBOL_GPL(wmi_evaluate_method);

/**
 * wmidev_evaluate_method - Evaluate a WMI method
 * @wdev: A wmi bus device from a driver
 * @instance: Instance index
 * @method_id: Method ID to call
 * &in: Buffer containing input for the method call
 * &out: Empty buffer to return the method results
 *
 * Call an ACPI-WMI method
 */
acpi_status wmidev_evaluate_method(struct wmi_device *wdev, u8 instance,
	u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out)
250 251 252 253 254 255 256
{
	struct guid_block *block = NULL;
	struct wmi_block *wblock = NULL;
	acpi_handle handle;
	acpi_status status;
	struct acpi_object_list input;
	union acpi_object params[3];
257
	char method[5] = "WM";
258

259
	wblock = container_of(wdev, struct wmi_block, dev);
260
	block = &wblock->gblock;
261
	handle = wblock->acpi_device->handle;
262

A
Al Viro 已提交
263
	if (!(block->flags & ACPI_WMI_METHOD))
264 265
		return AE_BAD_DATA;

266
	if (block->instance_count <= instance)
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
		return AE_BAD_PARAMETER;

	input.count = 2;
	input.pointer = params;
	params[0].type = ACPI_TYPE_INTEGER;
	params[0].integer.value = instance;
	params[1].type = ACPI_TYPE_INTEGER;
	params[1].integer.value = method_id;

	if (in) {
		input.count = 3;

		if (block->flags & ACPI_WMI_STRING) {
			params[2].type = ACPI_TYPE_STRING;
		} else {
			params[2].type = ACPI_TYPE_BUFFER;
		}
		params[2].buffer.length = in->length;
		params[2].buffer.pointer = in->pointer;
	}

	strncat(method, block->object_id, 2);

	status = acpi_evaluate_object(handle, method, &input, out);

	return status;
}
294
EXPORT_SYMBOL_GPL(wmidev_evaluate_method);
295

296 297
static acpi_status __query_block(struct wmi_block *wblock, u8 instance,
				 struct acpi_buffer *out)
298 299
{
	struct guid_block *block = NULL;
300
	acpi_handle handle;
301
	acpi_status status, wc_status = AE_ERROR;
302 303
	struct acpi_object_list input;
	union acpi_object wq_params[1];
304 305
	char method[5];
	char wc_method[5] = "WC";
306

307
	if (!out)
308 309 310
		return AE_BAD_PARAMETER;

	block = &wblock->gblock;
311
	handle = wblock->acpi_device->handle;
312

313
	if (block->instance_count <= instance)
314 315 316 317
		return AE_BAD_PARAMETER;

	/* Check GUID is a data block */
	if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
318
		return AE_ERROR;
319 320 321 322 323 324

	input.count = 1;
	input.pointer = wq_params;
	wq_params[0].type = ACPI_TYPE_INTEGER;
	wq_params[0].integer.value = instance;

325 326 327
	if (instance == 0 && wblock->read_takes_no_args)
		input.count = 0;

328 329 330 331 332 333 334 335 336 337 338 339
	/*
	 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method first to
	 * enable collection.
	 */
	if (block->flags & ACPI_WMI_EXPENSIVE) {
		strncat(wc_method, block->object_id, 2);

		/*
		 * Some GUIDs break the specification by declaring themselves
		 * expensive, but have no corresponding WCxx method. So we
		 * should not fail if this happens.
		 */
340
		if (acpi_has_method(handle, wc_method))
341 342
			wc_status = acpi_execute_simple_method(handle,
								wc_method, 1);
343 344 345 346 347
	}

	strcpy(method, "WQ");
	strncat(method, block->object_id, 2);

348
	status = acpi_evaluate_object(handle, method, &input, out);
349 350 351 352 353

	/*
	 * If ACPI_WMI_EXPENSIVE, call the relevant WCxx method, even if
	 * the WQxx method failed - we should disable collection anyway.
	 */
354
	if ((block->flags & ACPI_WMI_EXPENSIVE) && ACPI_SUCCESS(wc_status)) {
355
		status = acpi_execute_simple_method(handle, wc_method, 0);
356 357 358 359
	}

	return status;
}
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

/**
 * wmi_query_block - Return contents of a WMI block (deprecated)
 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
 * @instance: Instance index
 * &out: Empty buffer to return the contents of the data block to
 *
 * Return the contents of an ACPI-WMI data block to a buffer
 */
acpi_status wmi_query_block(const char *guid_string, u8 instance,
			    struct acpi_buffer *out)
{
	struct wmi_block *wblock;

	if (!guid_string)
		return AE_BAD_PARAMETER;

	if (!find_guid(guid_string, &wblock))
		return AE_ERROR;

	return __query_block(wblock, instance, out);
}
382 383
EXPORT_SYMBOL_GPL(wmi_query_block);

384 385 386 387 388 389 390 391 392 393 394 395
union acpi_object *wmidev_block_query(struct wmi_device *wdev, u8 instance)
{
	struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
	struct wmi_block *wblock = container_of(wdev, struct wmi_block, dev);

	if (ACPI_FAILURE(__query_block(wblock, instance, &out)))
		return NULL;

	return (union acpi_object *)out.pointer;
}
EXPORT_SYMBOL_GPL(wmidev_block_query);

396 397 398 399 400 401 402 403 404
/**
 * wmi_set_block - Write to a WMI block
 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
 * @instance: Instance index
 * &in: Buffer containing new values for the data block
 *
 * Write the contents of the input buffer to an ACPI-WMI data block
 */
acpi_status wmi_set_block(const char *guid_string, u8 instance,
405
			  const struct acpi_buffer *in)
406 407 408 409 410 411
{
	struct guid_block *block = NULL;
	struct wmi_block *wblock = NULL;
	acpi_handle handle;
	struct acpi_object_list input;
	union acpi_object params[2];
412
	char method[5] = "WS";
413 414 415 416 417

	if (!guid_string || !in)
		return AE_BAD_DATA;

	if (!find_guid(guid_string, &wblock))
418
		return AE_ERROR;
419 420

	block = &wblock->gblock;
421
	handle = wblock->acpi_device->handle;
422

423
	if (block->instance_count <= instance)
424 425 426 427
		return AE_BAD_PARAMETER;

	/* Check GUID is a data block */
	if (block->flags & (ACPI_WMI_EVENT | ACPI_WMI_METHOD))
428
		return AE_ERROR;
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448

	input.count = 2;
	input.pointer = params;
	params[0].type = ACPI_TYPE_INTEGER;
	params[0].integer.value = instance;

	if (block->flags & ACPI_WMI_STRING) {
		params[1].type = ACPI_TYPE_STRING;
	} else {
		params[1].type = ACPI_TYPE_BUFFER;
	}
	params[1].buffer.length = in->length;
	params[1].buffer.pointer = in->pointer;

	strncat(method, block->object_id, 2);

	return acpi_evaluate_object(handle, method, &input, NULL);
}
EXPORT_SYMBOL_GPL(wmi_set_block);

449
static void wmi_dump_wdg(const struct guid_block *g)
450
{
451
	pr_info("%pUL:\n", g->guid);
452 453 454 455
	if (g->flags & ACPI_WMI_EVENT)
		pr_info("\tnotify_id: 0x%02X\n", g->notify_id);
	else
		pr_info("\tobject_id: %2pE\n", g->object_id);
D
Dmitry Torokhov 已提交
456
	pr_info("\tinstance_count: %d\n", g->instance_count);
457
	pr_info("\tflags: %#x", g->flags);
458 459
	if (g->flags) {
		if (g->flags & ACPI_WMI_EXPENSIVE)
460
			pr_cont(" ACPI_WMI_EXPENSIVE");
461
		if (g->flags & ACPI_WMI_METHOD)
462
			pr_cont(" ACPI_WMI_METHOD");
463
		if (g->flags & ACPI_WMI_STRING)
464
			pr_cont(" ACPI_WMI_STRING");
465
		if (g->flags & ACPI_WMI_EVENT)
466
			pr_cont(" ACPI_WMI_EVENT");
467
	}
D
Dmitry Torokhov 已提交
468
	pr_cont("\n");
469 470 471

}

472 473 474 475
static void wmi_notify_debug(u32 value, void *context)
{
	struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
	union acpi_object *obj;
476
	acpi_status status;
477

478 479
	status = wmi_get_event_data(value, &response);
	if (status != AE_OK) {
D
Dmitry Torokhov 已提交
480
		pr_info("bad event status 0x%x\n", status);
481 482
		return;
	}
483 484 485 486 487 488

	obj = (union acpi_object *)response.pointer;

	if (!obj)
		return;

D
Dmitry Torokhov 已提交
489
	pr_info("DEBUG Event ");
490 491
	switch(obj->type) {
	case ACPI_TYPE_BUFFER:
D
Dmitry Torokhov 已提交
492
		pr_cont("BUFFER_TYPE - length %d\n", obj->buffer.length);
493 494
		break;
	case ACPI_TYPE_STRING:
D
Dmitry Torokhov 已提交
495
		pr_cont("STRING_TYPE - %s\n", obj->string.pointer);
496 497
		break;
	case ACPI_TYPE_INTEGER:
D
Dmitry Torokhov 已提交
498
		pr_cont("INTEGER_TYPE - %llu\n", obj->integer.value);
499 500
		break;
	case ACPI_TYPE_PACKAGE:
D
Dmitry Torokhov 已提交
501
		pr_cont("PACKAGE_TYPE - %d elements\n", obj->package.count);
502 503
		break;
	default:
D
Dmitry Torokhov 已提交
504
		pr_cont("object type 0x%X\n", obj->type);
505
	}
506
	kfree(obj);
507 508
}

509 510 511 512 513 514 515 516 517 518 519
/**
 * wmi_install_notify_handler - Register handler for WMI events
 * @handler: Function to handle notifications
 * @data: Data to be returned to handler when event is fired
 *
 * Register a handler for events sent to the ACPI-WMI mapper device.
 */
acpi_status wmi_install_notify_handler(const char *guid,
wmi_notify_handler handler, void *data)
{
	struct wmi_block *block;
520
	acpi_status status = AE_NOT_EXIST;
521
	uuid_le guid_input;
522
	struct list_head *p;
523 524 525 526

	if (!guid || !handler)
		return AE_BAD_PARAMETER;

527 528
	if (uuid_le_to_bin(guid, &guid_input))
		return AE_BAD_PARAMETER;
529

530 531 532 533
	list_for_each(p, &wmi_block_list) {
		acpi_status wmi_status;
		block = list_entry(p, struct wmi_block, list);

534
		if (memcmp(block->gblock.guid, &guid_input, 16) == 0) {
535 536 537
			if (block->handler &&
			    block->handler != wmi_notify_debug)
				return AE_ALREADY_ACQUIRED;
538

539 540
			block->handler = handler;
			block->handler_data = data;
541

542 543 544 545 546 547
			wmi_status = wmi_method_enable(block, 1);
			if ((wmi_status != AE_OK) ||
			    ((wmi_status == AE_OK) && (status == AE_NOT_EXIST)))
				status = wmi_status;
		}
	}
548 549

	return status;
550 551 552 553 554 555 556 557 558 559 560
}
EXPORT_SYMBOL_GPL(wmi_install_notify_handler);

/**
 * wmi_uninstall_notify_handler - Unregister handler for WMI events
 *
 * Unregister handler for events sent to the ACPI-WMI mapper device.
 */
acpi_status wmi_remove_notify_handler(const char *guid)
{
	struct wmi_block *block;
561
	acpi_status status = AE_NOT_EXIST;
562
	uuid_le guid_input;
563
	struct list_head *p;
564 565 566 567

	if (!guid)
		return AE_BAD_PARAMETER;

568 569
	if (uuid_le_to_bin(guid, &guid_input))
		return AE_BAD_PARAMETER;
570

571 572 573 574
	list_for_each(p, &wmi_block_list) {
		acpi_status wmi_status;
		block = list_entry(p, struct wmi_block, list);

575
		if (memcmp(block->gblock.guid, &guid_input, 16) == 0) {
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
			if (!block->handler ||
			    block->handler == wmi_notify_debug)
				return AE_NULL_ENTRY;

			if (debug_event) {
				block->handler = wmi_notify_debug;
				status = AE_OK;
			} else {
				wmi_status = wmi_method_enable(block, 0);
				block->handler = NULL;
				block->handler_data = NULL;
				if ((wmi_status != AE_OK) ||
				    ((wmi_status == AE_OK) &&
				     (status == AE_NOT_EXIST)))
					status = wmi_status;
			}
		}
593
	}
594

595
	return status;
596 597 598 599 600 601
}
EXPORT_SYMBOL_GPL(wmi_remove_notify_handler);

/**
 * wmi_get_event_data - Get WMI data associated with an event
 *
602 603
 * @event: Event to find
 * @out: Buffer to hold event data. out->pointer should be freed with kfree()
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
 *
 * Returns extra data associated with an event in WMI.
 */
acpi_status wmi_get_event_data(u32 event, struct acpi_buffer *out)
{
	struct acpi_object_list input;
	union acpi_object params[1];
	struct guid_block *gblock;
	struct wmi_block *wblock;
	struct list_head *p;

	input.count = 1;
	input.pointer = params;
	params[0].type = ACPI_TYPE_INTEGER;
	params[0].integer.value = event;

620
	list_for_each(p, &wmi_block_list) {
621 622 623 624 625
		wblock = list_entry(p, struct wmi_block, list);
		gblock = &wblock->gblock;

		if ((gblock->flags & ACPI_WMI_EVENT) &&
			(gblock->notify_id == event))
626 627
			return acpi_evaluate_object(wblock->acpi_device->handle,
				"_WED", &input, out);
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
	}

	return AE_NOT_FOUND;
}
EXPORT_SYMBOL_GPL(wmi_get_event_data);

/**
 * wmi_has_guid - Check if a GUID is available
 * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba
 *
 * Check if a given GUID is defined by _WDG
 */
bool wmi_has_guid(const char *guid_string)
{
	return find_guid(guid_string, NULL);
}
EXPORT_SYMBOL_GPL(wmi_has_guid);

646 647 648 649 650 651 652 653 654 655
static struct wmi_block *dev_to_wblock(struct device *dev)
{
	return container_of(dev, struct wmi_block, dev.dev);
}

static struct wmi_device *dev_to_wdev(struct device *dev)
{
	return container_of(dev, struct wmi_device, dev);
}

656 657 658
/*
 * sysfs interface
 */
659
static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
660 661
			     char *buf)
{
662
	struct wmi_block *wblock = dev_to_wblock(dev);
663

664
	return sprintf(buf, "wmi:%pUL\n", wblock->gblock.guid);
665
}
666
static DEVICE_ATTR_RO(modalias);
667

668 669 670 671 672 673 674 675 676
static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
			 char *buf)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	return sprintf(buf, "%pUL\n", wblock->gblock.guid);
}
static DEVICE_ATTR_RO(guid);

677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
static ssize_t instance_count_show(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	return sprintf(buf, "%d\n", (int)wblock->gblock.instance_count);
}
static DEVICE_ATTR_RO(instance_count);

static ssize_t expensive_show(struct device *dev,
			      struct device_attribute *attr, char *buf)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	return sprintf(buf, "%d\n",
		       (wblock->gblock.flags & ACPI_WMI_EXPENSIVE) != 0);
}
static DEVICE_ATTR_RO(expensive);

696 697
static struct attribute *wmi_attrs[] = {
	&dev_attr_modalias.attr,
698
	&dev_attr_guid.attr,
699 700
	&dev_attr_instance_count.attr,
	&dev_attr_expensive.attr,
701
	NULL,
702
};
703
ATTRIBUTE_GROUPS(wmi);
704

705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
static ssize_t notify_id_show(struct device *dev, struct device_attribute *attr,
			      char *buf)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	return sprintf(buf, "%02X\n", (unsigned int)wblock->gblock.notify_id);
}
static DEVICE_ATTR_RO(notify_id);

static struct attribute *wmi_event_attrs[] = {
	&dev_attr_notify_id.attr,
	NULL,
};
ATTRIBUTE_GROUPS(wmi_event);

static ssize_t object_id_show(struct device *dev, struct device_attribute *attr,
			      char *buf)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	return sprintf(buf, "%c%c\n", wblock->gblock.object_id[0],
		       wblock->gblock.object_id[1]);
}
static DEVICE_ATTR_RO(object_id);

730 731
static ssize_t setable_show(struct device *dev, struct device_attribute *attr,
			    char *buf)
732 733 734
{
	struct wmi_device *wdev = dev_to_wdev(dev);

735
	return sprintf(buf, "%d\n", (int)wdev->setable);
736
}
737
static DEVICE_ATTR_RO(setable);
738 739 740

static struct attribute *wmi_data_attrs[] = {
	&dev_attr_object_id.attr,
741
	&dev_attr_setable.attr,
742 743 744 745 746
	NULL,
};
ATTRIBUTE_GROUPS(wmi_data);

static struct attribute *wmi_method_attrs[] = {
747 748 749
	&dev_attr_object_id.attr,
	NULL,
};
750
ATTRIBUTE_GROUPS(wmi_method);
751

752 753
static int wmi_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
{
754
	struct wmi_block *wblock = dev_to_wblock(dev);
755

756
	if (add_uevent_var(env, "MODALIAS=wmi:%pUL", wblock->gblock.guid))
757 758
		return -ENOMEM;

759
	if (add_uevent_var(env, "WMI_GUID=%pUL", wblock->gblock.guid))
760 761
		return -ENOMEM;

762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
	return 0;
}

static void wmi_dev_release(struct device *dev)
{
	struct wmi_block *wblock = dev_to_wblock(dev);

	kfree(wblock);
}

static int wmi_dev_match(struct device *dev, struct device_driver *driver)
{
	struct wmi_driver *wmi_driver =
		container_of(driver, struct wmi_driver, driver);
	struct wmi_block *wblock = dev_to_wblock(dev);
	const struct wmi_device_id *id = wmi_driver->id_table;
778

779 780 781 782 783 784 785 786 787 788
	while (id->guid_string) {
		uuid_le driver_guid;

		if (WARN_ON(uuid_le_to_bin(id->guid_string, &driver_guid)))
			continue;
		if (!memcmp(&driver_guid, wblock->gblock.guid, 16))
			return 1;

		id++;
	}
789 790 791

	return 0;
}
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
static int wmi_char_open(struct inode *inode, struct file *filp)
{
	const char *driver_name = filp->f_path.dentry->d_iname;
	struct wmi_block *wblock = NULL;
	struct wmi_block *next = NULL;

	list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
		if (!wblock->dev.dev.driver)
			continue;
		if (strcmp(driver_name, wblock->dev.dev.driver->name) == 0) {
			filp->private_data = wblock;
			break;
		}
	}

	if (!filp->private_data)
		return -ENODEV;

	return nonseekable_open(inode, filp);
}

static ssize_t wmi_char_read(struct file *filp, char __user *buffer,
	size_t length, loff_t *offset)
{
	struct wmi_block *wblock = filp->private_data;

	return simple_read_from_buffer(buffer, length, offset,
				       &wblock->req_buf_size,
				       sizeof(wblock->req_buf_size));
}

static long wmi_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
	struct wmi_ioctl_buffer __user *input =
		(struct wmi_ioctl_buffer __user *) arg;
	struct wmi_block *wblock = filp->private_data;
	struct wmi_ioctl_buffer *buf = NULL;
	struct wmi_driver *wdriver = NULL;
	int ret;

	if (_IOC_TYPE(cmd) != WMI_IOC)
		return -ENOTTY;

	/* make sure we're not calling a higher instance than exists*/
	if (_IOC_NR(cmd) >= wblock->gblock.instance_count)
		return -EINVAL;

	mutex_lock(&wblock->char_mutex);
	buf = wblock->handler_data;
	if (get_user(buf->length, &input->length)) {
		dev_dbg(&wblock->dev.dev, "Read length from user failed\n");
		ret = -EFAULT;
		goto out_ioctl;
	}
	/* if it's too small, abort */
	if (buf->length < wblock->req_buf_size) {
		dev_err(&wblock->dev.dev,
			"Buffer %lld too small, need at least %lld\n",
			buf->length, wblock->req_buf_size);
		ret = -EINVAL;
		goto out_ioctl;
	}
	/* if it's too big, warn, driver will only use what is needed */
	if (buf->length > wblock->req_buf_size)
		dev_warn(&wblock->dev.dev,
			"Buffer %lld is bigger than required %lld\n",
			buf->length, wblock->req_buf_size);

	/* copy the structure from userspace */
	if (copy_from_user(buf, input, wblock->req_buf_size)) {
		dev_dbg(&wblock->dev.dev, "Copy %llu from user failed\n",
			wblock->req_buf_size);
		ret = -EFAULT;
		goto out_ioctl;
	}

	/* let the driver do any filtering and do the call */
	wdriver = container_of(wblock->dev.dev.driver,
			       struct wmi_driver, driver);
871 872 873 874
	if (!try_module_get(wdriver->driver.owner)) {
		ret = -EBUSY;
		goto out_ioctl;
	}
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
	ret = wdriver->filter_callback(&wblock->dev, cmd, buf);
	module_put(wdriver->driver.owner);
	if (ret)
		goto out_ioctl;

	/* return the result (only up to our internal buffer size) */
	if (copy_to_user(input, buf, wblock->req_buf_size)) {
		dev_dbg(&wblock->dev.dev, "Copy %llu to user failed\n",
			wblock->req_buf_size);
		ret = -EFAULT;
	}

out_ioctl:
	mutex_unlock(&wblock->char_mutex);
	return ret;
}

static const struct file_operations wmi_fops = {
	.owner		= THIS_MODULE,
	.read		= wmi_char_read,
	.open		= wmi_char_open,
	.unlocked_ioctl	= wmi_ioctl,
	.compat_ioctl	= wmi_ioctl,
};
899

900
static int wmi_dev_probe(struct device *dev)
901
{
902 903 904 905
	struct wmi_block *wblock = dev_to_wblock(dev);
	struct wmi_driver *wdriver =
		container_of(dev->driver, struct wmi_driver, driver);
	int ret = 0;
906 907
	int count;
	char *buf;
908 909 910 911 912 913

	if (ACPI_FAILURE(wmi_method_enable(wblock, 1)))
		dev_warn(dev, "failed to enable device -- probing anyway\n");

	if (wdriver->probe) {
		ret = wdriver->probe(dev_to_wdev(dev));
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
		if (ret != 0)
			goto probe_failure;
	}

	/* driver wants a character device made */
	if (wdriver->filter_callback) {
		/* check that required buffer size declared by driver or MOF */
		if (!wblock->req_buf_size) {
			dev_err(&wblock->dev.dev,
				"Required buffer size not set\n");
			ret = -EINVAL;
			goto probe_failure;
		}

		count = get_order(wblock->req_buf_size);
		wblock->handler_data = (void *)__get_free_pages(GFP_KERNEL,
								count);
		if (!wblock->handler_data) {
			ret = -ENOMEM;
			goto probe_failure;
		}

936
		buf = kmalloc(strlen(wdriver->driver.name) + 5, GFP_KERNEL);
937 938 939 940 941 942 943 944 945 946 947
		if (!buf) {
			ret = -ENOMEM;
			goto probe_string_failure;
		}
		sprintf(buf, "wmi/%s", wdriver->driver.name);
		wblock->char_dev.minor = MISC_DYNAMIC_MINOR;
		wblock->char_dev.name = buf;
		wblock->char_dev.fops = &wmi_fops;
		wblock->char_dev.mode = 0444;
		ret = misc_register(&wblock->char_dev);
		if (ret) {
948
			dev_warn(dev, "failed to register char dev: %d\n", ret);
949 950 951
			ret = -ENOMEM;
			goto probe_misc_failure;
		}
952 953
	}

954 955 956 957 958 959 960 961 962
	return 0;

probe_misc_failure:
	kfree(buf);
probe_string_failure:
	kfree(wblock->handler_data);
probe_failure:
	if (ACPI_FAILURE(wmi_method_enable(wblock, 0)))
		dev_warn(dev, "failed to disable device\n");
963 964 965 966 967 968 969 970 971 972
	return ret;
}

static int wmi_dev_remove(struct device *dev)
{
	struct wmi_block *wblock = dev_to_wblock(dev);
	struct wmi_driver *wdriver =
		container_of(dev->driver, struct wmi_driver, driver);
	int ret = 0;

973 974 975 976 977 978 979
	if (wdriver->filter_callback) {
		misc_deregister(&wblock->char_dev);
		kfree(wblock->char_dev.name);
		free_pages((unsigned long)wblock->handler_data,
			   get_order(wblock->req_buf_size));
	}

980 981 982 983 984
	if (wdriver->remove)
		ret = wdriver->remove(dev_to_wdev(dev));

	if (ACPI_FAILURE(wmi_method_enable(wblock, 0)))
		dev_warn(dev, "failed to disable device\n");
985

986
	return ret;
987 988
}

989 990 991 992 993
static struct class wmi_bus_class = {
	.name = "wmi_bus",
};

static struct bus_type wmi_bus_type = {
994
	.name = "wmi",
995
	.dev_groups = wmi_groups,
996 997 998 999
	.match = wmi_dev_match,
	.uevent = wmi_dev_uevent,
	.probe = wmi_dev_probe,
	.remove = wmi_dev_remove,
1000 1001
};

1002 1003 1004 1005 1006 1007 1008 1009
static struct device_type wmi_type_event = {
	.name = "event",
	.groups = wmi_event_groups,
	.release = wmi_dev_release,
};

static struct device_type wmi_type_method = {
	.name = "method",
1010
	.groups = wmi_method_groups,
1011 1012 1013 1014 1015
	.release = wmi_dev_release,
};

static struct device_type wmi_type_data = {
	.name = "data",
1016
	.groups = wmi_data_groups,
1017 1018 1019
	.release = wmi_dev_release,
};

1020
static int wmi_create_device(struct device *wmi_bus_dev,
1021
			     const struct guid_block *gblock,
1022 1023
			     struct wmi_block *wblock,
			     struct acpi_device *device)
1024
{
1025 1026 1027
	struct acpi_device_info *info;
	char method[5];
	int result;
1028

1029 1030
	if (gblock->flags & ACPI_WMI_EVENT) {
		wblock->dev.dev.type = &wmi_type_event;
1031 1032 1033 1034
		goto out_init;
	}

	if (gblock->flags & ACPI_WMI_METHOD) {
1035
		wblock->dev.dev.type = &wmi_type_method;
1036
		mutex_init(&wblock->char_mutex);
1037 1038
		goto out_init;
	}
1039

1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
	/*
	 * Data Block Query Control Method (WQxx by convention) is
	 * required per the WMI documentation. If it is not present,
	 * we ignore this data block.
	 */
	strcpy(method, "WQ");
	strncat(method, wblock->gblock.object_id, 2);
	result = get_subobj_info(device->handle, method, &info);

	if (result) {
		dev_warn(wmi_bus_dev,
1051
			 "%s data block query control method not found\n",
1052 1053 1054
			 method);
		return result;
	}
1055

1056
	wblock->dev.dev.type = &wmi_type_data;
1057

1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
	/*
	 * The Microsoft documentation specifically states:
	 *
	 *   Data blocks registered with only a single instance
	 *   can ignore the parameter.
	 *
	 * ACPICA will get mad at us if we call the method with the wrong number
	 * of arguments, so check what our method expects.  (On some Dell
	 * laptops, WQxx may not be a method at all.)
	 */
	if (info->type != ACPI_TYPE_METHOD || info->param_count == 0)
		wblock->read_takes_no_args = true;
1070

1071
	kfree(info);
1072

1073 1074 1075
	strcpy(method, "WS");
	strncat(method, wblock->gblock.object_id, 2);
	result = get_subobj_info(device->handle, method, NULL);
1076

1077 1078
	if (result == 0)
		wblock->dev.setable = true;
1079

1080 1081 1082
 out_init:
	wblock->dev.dev.bus = &wmi_bus_type;
	wblock->dev.dev.parent = wmi_bus_dev;
1083

1084
	dev_set_name(&wblock->dev.dev, "%pUL", gblock->guid);
1085

1086
	device_initialize(&wblock->dev.dev);
1087 1088

	return 0;
1089 1090
}

1091
static void wmi_free_devices(struct acpi_device *device)
1092
{
1093
	struct wmi_block *wblock, *next;
1094 1095

	/* Delete devices for all the GUIDs */
1096
	list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
1097 1098
		if (wblock->acpi_device == device) {
			list_del(&wblock->list);
1099
			device_unregister(&wblock->dev.dev);
1100
		}
1101
	}
1102 1103
}

1104 1105
static bool guid_already_parsed(struct acpi_device *device,
				const u8 *guid)
1106 1107 1108
{
	struct wmi_block *wblock;

1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	list_for_each_entry(wblock, &wmi_block_list, list) {
		if (memcmp(wblock->gblock.guid, guid, 16) == 0) {
			/*
			 * Because we historically didn't track the relationship
			 * between GUIDs and ACPI nodes, we don't know whether
			 * we need to suppress GUIDs that are unique on a
			 * given node but duplicated across nodes.
			 */
			dev_warn(&device->dev, "duplicate WMI GUID %pUL (first instance was on %s)\n",
				 guid, dev_name(&wblock->acpi_device->dev));
1119
			return true;
1120 1121
		}
	}
1122

1123
	return false;
1124 1125
}

1126 1127 1128
/*
 * Parse the _WDG method for the GUID data blocks
 */
1129
static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device)
1130 1131
{
	struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
1132
	const struct guid_block *gblock;
1133 1134
	struct wmi_block *wblock, *next;
	union acpi_object *obj;
1135
	acpi_status status;
1136
	int retval = 0;
1137 1138
	u32 i, total;

1139
	status = acpi_evaluate_object(device->handle, "_WDG", NULL, &out);
1140
	if (ACPI_FAILURE(status))
1141
		return -ENXIO;
1142 1143

	obj = (union acpi_object *) out.pointer;
1144
	if (!obj)
1145
		return -ENXIO;
1146

1147
	if (obj->type != ACPI_TYPE_BUFFER) {
1148
		retval = -ENXIO;
1149 1150
		goto out_free_pointer;
	}
1151

1152
	gblock = (const struct guid_block *)obj->buffer.pointer;
1153 1154 1155
	total = obj->buffer.length / sizeof(struct guid_block);

	for (i = 0; i < total; i++) {
1156 1157 1158
		if (debug_dump_wdg)
			wmi_dump_wdg(&gblock[i]);

1159 1160 1161 1162 1163 1164 1165 1166 1167
		/*
		 * Some WMI devices, like those for nVidia hooks, have a
		 * duplicate GUID. It's not clear what we should do in this
		 * case yet, so for now, we'll just ignore the duplicate
		 * for device creation.
		 */
		if (guid_already_parsed(device, gblock[i].guid))
			continue;

1168
		wblock = kzalloc(sizeof(struct wmi_block), GFP_KERNEL);
1169 1170 1171 1172
		if (!wblock) {
			retval = -ENOMEM;
			break;
		}
1173

1174
		wblock->acpi_device = device;
1175 1176
		wblock->gblock = gblock[i];

1177 1178 1179 1180 1181
		retval = wmi_create_device(wmi_bus_dev, &gblock[i], wblock, device);
		if (retval) {
			kfree(wblock);
			continue;
		}
1182

1183
		list_add_tail(&wblock->list, &wmi_block_list);
1184

1185 1186
		if (debug_event) {
			wblock->handler = wmi_notify_debug;
1187
			wmi_method_enable(wblock, 1);
1188
		}
1189 1190
	}

1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
	/*
	 * Now that all of the devices are created, add them to the
	 * device tree and probe subdrivers.
	 */
	list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
		if (wblock->acpi_device != device)
			continue;

		retval = device_add(&wblock->dev.dev);
		if (retval) {
1201
			dev_err(wmi_bus_dev, "failed to register %pUL\n",
1202 1203 1204 1205 1206 1207 1208
				wblock->gblock.guid);
			if (debug_event)
				wmi_method_enable(wblock, 0);
			list_del(&wblock->list);
			put_device(&wblock->dev.dev);
		}
	}
1209

A
Axel Lin 已提交
1210 1211
out_free_pointer:
	kfree(out.pointer);
1212
	return retval;
1213 1214 1215 1216 1217 1218 1219 1220
}

/*
 * WMI can have EmbeddedControl access regions. In which case, we just want to
 * hand these off to the EC driver.
 */
static acpi_status
acpi_wmi_ec_space_handler(u32 function, acpi_physical_address address,
L
Lin Ming 已提交
1221
		      u32 bits, u64 *value,
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
		      void *handler_context, void *region_context)
{
	int result = 0, i = 0;
	u8 temp = 0;

	if ((address > 0xFF) || !value)
		return AE_BAD_PARAMETER;

	if (function != ACPI_READ && function != ACPI_WRITE)
		return AE_BAD_PARAMETER;

	if (bits != 8)
		return AE_BAD_PARAMETER;

	if (function == ACPI_READ) {
		result = ec_read(address, &temp);
L
Lin Ming 已提交
1238
		(*value) |= ((u64)temp) << i;
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
	} else {
		temp = 0xff & ((*value) >> i);
		result = ec_write(address, temp);
	}

	switch (result) {
	case -EINVAL:
		return AE_BAD_PARAMETER;
		break;
	case -ENODEV:
		return AE_NOT_FOUND;
		break;
	case -ETIME:
		return AE_TIME;
		break;
	default:
		return AE_OK;
	}
}

1259 1260
static void acpi_wmi_notify_handler(acpi_handle handle, u32 event,
				    void *context)
1261 1262 1263 1264
{
	struct guid_block *block;
	struct wmi_block *wblock;
	struct list_head *p;
1265
	bool found_it = false;
1266

1267
	list_for_each(p, &wmi_block_list) {
1268 1269 1270
		wblock = list_entry(p, struct wmi_block, list);
		block = &wblock->gblock;

1271
		if (wblock->acpi_device->handle == handle &&
1272
		    (block->flags & ACPI_WMI_EVENT) &&
1273 1274 1275
		    (block->notify_id == event))
		{
			found_it = true;
1276 1277 1278
			break;
		}
	}
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326

	if (!found_it)
		return;

	/* If a driver is bound, then notify the driver. */
	if (wblock->dev.dev.driver) {
		struct wmi_driver *driver;
		struct acpi_object_list input;
		union acpi_object params[1];
		struct acpi_buffer evdata = { ACPI_ALLOCATE_BUFFER, NULL };
		acpi_status status;

		driver = container_of(wblock->dev.dev.driver,
				      struct wmi_driver, driver);

		input.count = 1;
		input.pointer = params;
		params[0].type = ACPI_TYPE_INTEGER;
		params[0].integer.value = event;

		status = acpi_evaluate_object(wblock->acpi_device->handle,
					      "_WED", &input, &evdata);
		if (ACPI_FAILURE(status)) {
			dev_warn(&wblock->dev.dev,
				 "failed to get event data\n");
			return;
		}

		if (driver->notify)
			driver->notify(&wblock->dev,
				       (union acpi_object *)evdata.pointer);

		kfree(evdata.pointer);
	} else if (wblock->handler) {
		/* Legacy handler */
		wblock->handler(event, wblock->handler_data);
	}

	if (debug_event) {
		pr_info("DEBUG Event GUID: %pUL\n",
			wblock->gblock.guid);
	}

	acpi_bus_generate_netlink_event(
		wblock->acpi_device->pnp.device_class,
		dev_name(&wblock->dev.dev),
		event, 0);

1327 1328
}

1329
static int acpi_wmi_remove(struct platform_device *device)
1330
{
1331 1332 1333
	struct acpi_device *acpi_device = ACPI_COMPANION(&device->dev);

	acpi_remove_notify_handler(acpi_device->handle, ACPI_DEVICE_NOTIFY,
1334
				   acpi_wmi_notify_handler);
1335
	acpi_remove_address_space_handler(acpi_device->handle,
1336
				ACPI_ADR_SPACE_EC, &acpi_wmi_ec_space_handler);
1337
	wmi_free_devices(acpi_device);
1338
	device_destroy(&wmi_bus_class, MKDEV(0, 0));
1339 1340 1341 1342

	return 0;
}

1343
static int acpi_wmi_probe(struct platform_device *device)
1344
{
1345
	struct acpi_device *acpi_device;
1346
	struct device *wmi_bus_dev;
1347
	acpi_status status;
1348
	int error;
1349

1350 1351 1352 1353 1354 1355 1356
	acpi_device = ACPI_COMPANION(&device->dev);
	if (!acpi_device) {
		dev_err(&device->dev, "ACPI companion is missing\n");
		return -ENODEV;
	}

	status = acpi_install_address_space_handler(acpi_device->handle,
1357 1358 1359
						    ACPI_ADR_SPACE_EC,
						    &acpi_wmi_ec_space_handler,
						    NULL, NULL);
1360
	if (ACPI_FAILURE(status)) {
1361
		dev_err(&device->dev, "Error installing EC region handler\n");
1362
		return -ENODEV;
1363
	}
1364

1365 1366
	status = acpi_install_notify_handler(acpi_device->handle,
					     ACPI_DEVICE_NOTIFY,
1367 1368 1369 1370 1371 1372 1373 1374
					     acpi_wmi_notify_handler,
					     NULL);
	if (ACPI_FAILURE(status)) {
		dev_err(&device->dev, "Error installing notify handler\n");
		error = -ENODEV;
		goto err_remove_ec_handler;
	}

1375 1376 1377 1378
	wmi_bus_dev = device_create(&wmi_bus_class, &device->dev, MKDEV(0, 0),
				    NULL, "wmi_bus-%s", dev_name(&device->dev));
	if (IS_ERR(wmi_bus_dev)) {
		error = PTR_ERR(wmi_bus_dev);
1379
		goto err_remove_notify_handler;
1380
	}
1381
	dev_set_drvdata(&device->dev, wmi_bus_dev);
1382

1383
	error = parse_wdg(wmi_bus_dev, acpi_device);
1384
	if (error) {
D
Dmitry Torokhov 已提交
1385
		pr_err("Failed to parse WDG method\n");
1386
		goto err_remove_busdev;
1387 1388
	}

1389
	return 0;
1390

1391
err_remove_busdev:
1392
	device_destroy(&wmi_bus_class, MKDEV(0, 0));
1393

1394
err_remove_notify_handler:
1395
	acpi_remove_notify_handler(acpi_device->handle, ACPI_DEVICE_NOTIFY,
1396 1397 1398
				   acpi_wmi_notify_handler);

err_remove_ec_handler:
1399
	acpi_remove_address_space_handler(acpi_device->handle,
1400 1401 1402 1403
					  ACPI_ADR_SPACE_EC,
					  &acpi_wmi_ec_space_handler);

	return error;
1404 1405
}

1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
int __must_check __wmi_driver_register(struct wmi_driver *driver,
				       struct module *owner)
{
	driver->driver.owner = owner;
	driver->driver.bus = &wmi_bus_type;

	return driver_register(&driver->driver);
}
EXPORT_SYMBOL(__wmi_driver_register);

void wmi_driver_unregister(struct wmi_driver *driver)
{
	driver_unregister(&driver->driver);
}
EXPORT_SYMBOL(wmi_driver_unregister);

1422 1423
static int __init acpi_wmi_init(void)
{
1424
	int error;
1425 1426 1427 1428

	if (acpi_disabled)
		return -ENODEV;

1429
	error = class_register(&wmi_bus_class);
1430 1431
	if (error)
		return error;
1432

1433 1434 1435 1436
	error = bus_register(&wmi_bus_type);
	if (error)
		goto err_unreg_class;

1437
	error = platform_driver_register(&acpi_wmi_driver);
1438 1439
	if (error) {
		pr_err("Error loading mapper\n");
1440
		goto err_unreg_bus;
1441 1442
	}

D
Dmitry Torokhov 已提交
1443
	return 0;
1444 1445 1446 1447

err_unreg_bus:
	bus_unregister(&wmi_bus_type);

1448 1449 1450
err_unreg_class:
	class_unregister(&wmi_bus_class);

1451
	return error;
1452 1453 1454 1455
}

static void __exit acpi_wmi_exit(void)
{
1456
	platform_driver_unregister(&acpi_wmi_driver);
1457
	bus_unregister(&wmi_bus_type);
1458
	class_unregister(&wmi_bus_class);
1459 1460
}

1461
subsys_initcall_sync(acpi_wmi_init);
1462
module_exit(acpi_wmi_exit);