asus-wmi.c 34.6 KB
Newer Older
1 2 3 4
/*
 * Eee PC WMI hotkey driver
 *
 * Copyright(C) 2010 Intel Corporation.
5
 * Copyright(C) 2010 Corentin Chary <corentin.chary@gmail.com>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Portions based on wistron_btns.c:
 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
 * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org>
 * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru>
 *
 *  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
 */

27 28
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

29 30 31 32
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
T
Tejun Heo 已提交
33
#include <linux/slab.h>
34 35
#include <linux/input.h>
#include <linux/input/sparse-keymap.h>
Y
Yong Wang 已提交
36 37
#include <linux/fb.h>
#include <linux/backlight.h>
38
#include <linux/leds.h>
39
#include <linux/rfkill.h>
40 41
#include <linux/pci.h>
#include <linux/pci_hotplug.h>
C
Corentin Chary 已提交
42 43
#include <linux/debugfs.h>
#include <linux/seq_file.h>
44
#include <linux/platform_device.h>
45
#include <linux/dmi.h>
46 47 48
#include <acpi/acpi_bus.h>
#include <acpi/acpi_drivers.h>

49 50
#define	EEEPC_WMI_FILE	"eeepc-wmi"

51 52 53 54
MODULE_AUTHOR("Yong Wang <yong.y.wang@intel.com>");
MODULE_DESCRIPTION("Eee PC WMI Hotkey Driver");
MODULE_LICENSE("GPL");

55 56
#define EEEPC_ACPI_HID		"ASUS010" /* old _HID used in eeepc-laptop */

57
#define EEEPC_WMI_EVENT_GUID	"ABBC0F72-8EA1-11D1-00A0-C90629100000"
Y
Yong Wang 已提交
58
#define EEEPC_WMI_MGMT_GUID	"97845ED0-4E6D-11DE-8A39-0800200C9A66"
59 60

MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID);
Y
Yong Wang 已提交
61
MODULE_ALIAS("wmi:"EEEPC_WMI_MGMT_GUID);
62

C
Corentin Chary 已提交
63 64 65 66
#define NOTIFY_BRNUP_MIN		0x11
#define NOTIFY_BRNUP_MAX		0x1f
#define NOTIFY_BRNDOWN_MIN		0x20
#define NOTIFY_BRNDOWN_MAX		0x2e
67

C
Corentin Chary 已提交
68
/* WMI Methods */
C
Corentin Chary 已提交
69 70 71
#define EEEPC_WMI_METHODID_DSTS		0x53544344
#define EEEPC_WMI_METHODID_DEVS		0x53564544
#define EEEPC_WMI_METHODID_CFVS		0x53564643
Y
Yong Wang 已提交
72

C
Corentin Chary 已提交
73
/* Wireless */
74 75
#define EEEPC_WMI_DEVID_WLAN		0x00010011
#define EEEPC_WMI_DEVID_BLUETOOTH	0x00010013
C
Corentin Chary 已提交
76
#define EEEPC_WMI_DEVID_WIMAX		0x00010017
77
#define EEEPC_WMI_DEVID_WWAN3G		0x00010019
C
Corentin Chary 已提交
78 79

/* Backlight and Brightness */
80 81
#define EEEPC_WMI_DEVID_BACKLIGHT	0x00050011
#define EEEPC_WMI_DEVID_BRIGHTNESS	0x00050012
C
Corentin Chary 已提交
82 83

/* Misc */
84
#define EEEPC_WMI_DEVID_CAMERA		0x00060013
C
Corentin Chary 已提交
85 86

/* Storage */
87
#define EEEPC_WMI_DEVID_CARDREADER	0x00080013
C
Corentin Chary 已提交
88 89

/* Input */
90
#define EEEPC_WMI_DEVID_TOUCHPAD	0x00100011
91
#define EEEPC_WMI_DEVID_TOUCHPAD_LED	0x00100012
Y
Yong Wang 已提交
92

C
Corentin Chary 已提交
93
/* DSTS masks */
94 95
#define EEEPC_WMI_DSTS_STATUS_BIT	0x00000001
#define EEEPC_WMI_DSTS_PRESENCE_BIT	0x00010000
96 97
#define EEEPC_WMI_DSTS_BRIGHTNESS_MASK	0x000000FF
#define EEEPC_WMI_DSTS_MAX_BRIGTH_MASK	0x0000FF00
98

99 100 101 102 103 104 105 106
static bool hotplug_wireless;

module_param(hotplug_wireless, bool, 0444);
MODULE_PARM_DESC(hotplug_wireless,
		 "Enable hotplug for wireless device. "
		 "If your laptop needs that, please report to "
		 "acpi4asus-user@lists.sourceforge.net.");

107 108 109 110
static const struct key_entry eeepc_wmi_keymap[] = {
	/* Sleep already handled via generic ACPI code */
	{ KE_IGNORE, NOTIFY_BRNDOWN_MIN, { KEY_BRIGHTNESSDOWN } },
	{ KE_IGNORE, NOTIFY_BRNUP_MIN, { KEY_BRIGHTNESSUP } },
C
Corentin Chary 已提交
111 112 113
	{ KE_KEY, 0x30, { KEY_VOLUMEUP } },
	{ KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
	{ KE_KEY, 0x32, { KEY_MUTE } },
114
	{ KE_KEY, 0x5c, { KEY_F15 } }, /* Power Gear key */
C
Corentin Chary 已提交
115
	{ KE_KEY, 0x5d, { KEY_WLAN } },
C
Chris Bagwell 已提交
116
	{ KE_KEY, 0x6b, { KEY_F13 } }, /* Disable Touchpad */
C
Corentin Chary 已提交
117 118
	{ KE_KEY, 0x82, { KEY_CAMERA } },
	{ KE_KEY, 0x83, { KEY_CAMERA_ZOOMIN } },
119
	{ KE_KEY, 0x88, { KEY_WLAN } },
C
Corentin Chary 已提交
120
	{ KE_KEY, 0xcc, { KEY_SWITCHVIDEOMODE } },
121 122
	{ KE_KEY, 0xe0, { KEY_PROG1 } }, /* Task Manager */
	{ KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */
123
	{ KE_KEY, 0xe9, { KEY_BRIGHTNESS_ZERO } },
C
Corentin Chary 已提交
124 125 126 127 128
	{ KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } },
	{ KE_KEY, 0xec, { KEY_CAMERA_UP } },
	{ KE_KEY, 0xed, { KEY_CAMERA_DOWN } },
	{ KE_KEY, 0xee, { KEY_CAMERA_LEFT } },
	{ KE_KEY, 0xef, { KEY_CAMERA_RIGHT } },
129 130 131
	{ KE_END, 0},
};

Y
Yong Wang 已提交
132 133 134 135 136
struct bios_args {
	u32	dev_id;
	u32	ctrl_param;
};

C
Corentin Chary 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149
/*
 * eeepc-wmi/    - debugfs root directory
 *   dev_id      - current dev_id
 *   ctrl_param  - current ctrl_param
 *   devs        - call DEVS(dev_id, ctrl_param) and print result
 *   dsts        - call DSTS(dev_id)  and print result
 */
struct eeepc_wmi_debug {
	struct dentry *root;
	u32 dev_id;
	u32 ctrl_param;
};

150
struct eeepc_wmi {
151 152
	bool hotplug_wireless;

153
	struct input_dev *inputdev;
Y
Yong Wang 已提交
154
	struct backlight_device *backlight_device;
155
	struct platform_device *platform_device;
156 157 158 159 160

	struct led_classdev tpd_led;
	int tpd_led_wk;
	struct workqueue_struct *led_workqueue;
	struct work_struct tpd_led_work;
161 162 163

	struct rfkill *wlan_rfkill;
	struct rfkill *bluetooth_rfkill;
C
Corentin Chary 已提交
164
	struct rfkill *wimax_rfkill;
165
	struct rfkill *wwan3g_rfkill;
C
Corentin Chary 已提交
166

167 168
	struct hotplug_slot *hotplug_slot;
	struct mutex hotplug_lock;
169 170 171
	struct mutex wmi_lock;
	struct workqueue_struct *hotplug_workqueue;
	struct work_struct hotplug_work;
172

C
Corentin Chary 已提交
173
	struct eeepc_wmi_debug debug;
174 175 176
};

static int eeepc_wmi_input_init(struct eeepc_wmi *eeepc)
177 178 179
{
	int err;

180 181
	eeepc->inputdev = input_allocate_device();
	if (!eeepc->inputdev)
182 183
		return -ENOMEM;

184
	eeepc->inputdev->name = "Eee PC WMI hotkeys";
185
	eeepc->inputdev->phys = EEEPC_WMI_FILE "/input0";
186
	eeepc->inputdev->id.bustype = BUS_HOST;
187
	eeepc->inputdev->dev.parent = &eeepc->platform_device->dev;
188

189
	err = sparse_keymap_setup(eeepc->inputdev, eeepc_wmi_keymap, NULL);
190 191 192
	if (err)
		goto err_free_dev;

193
	err = input_register_device(eeepc->inputdev);
194 195 196 197 198 199
	if (err)
		goto err_free_keymap;

	return 0;

err_free_keymap:
200
	sparse_keymap_free(eeepc->inputdev);
201
err_free_dev:
202
	input_free_device(eeepc->inputdev);
203 204 205
	return err;
}

206 207 208 209 210 211 212 213 214 215
static void eeepc_wmi_input_exit(struct eeepc_wmi *eeepc)
{
	if (eeepc->inputdev) {
		sparse_keymap_free(eeepc->inputdev);
		input_unregister_device(eeepc->inputdev);
	}

	eeepc->inputdev = NULL;
}

216
static acpi_status eeepc_wmi_get_devstate(u32 dev_id, u32 *retval)
Y
Yong Wang 已提交
217 218 219 220 221 222 223 224
{
	struct acpi_buffer input = { (acpi_size)sizeof(u32), &dev_id };
	struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
	union acpi_object *obj;
	acpi_status status;
	u32 tmp;

	status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID,
225 226
				     1, EEEPC_WMI_METHODID_DSTS,
				     &input, &output);
Y
Yong Wang 已提交
227 228 229 230 231 232 233 234 235 236

	if (ACPI_FAILURE(status))
		return status;

	obj = (union acpi_object *)output.pointer;
	if (obj && obj->type == ACPI_TYPE_INTEGER)
		tmp = (u32)obj->integer.value;
	else
		tmp = 0;

237 238
	if (retval)
		*retval = tmp;
Y
Yong Wang 已提交
239 240 241 242 243 244 245

	kfree(obj);

	return status;

}

C
Corentin Chary 已提交
246 247
static acpi_status eeepc_wmi_set_devstate(u32 dev_id, u32 ctrl_param,
					  u32 *retval)
Y
Yong Wang 已提交
248 249 250 251 252 253 254 255
{
	struct bios_args args = {
		.dev_id = dev_id,
		.ctrl_param = ctrl_param,
	};
	struct acpi_buffer input = { (acpi_size)sizeof(args), &args };
	acpi_status status;

C
Corentin Chary 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
	if (!retval) {
		status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID, 1,
					     EEEPC_WMI_METHODID_DEVS,
					     &input, NULL);
	} else {
		struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
		union acpi_object *obj;
		u32 tmp;

		status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID, 1,
					     EEEPC_WMI_METHODID_DEVS,
					     &input, &output);

		if (ACPI_FAILURE(status))
			return status;

		obj = (union acpi_object *)output.pointer;
		if (obj && obj->type == ACPI_TYPE_INTEGER)
			tmp = (u32)obj->integer.value;
		else
			tmp = 0;

		*retval = tmp;

		kfree(obj);
	}
Y
Yong Wang 已提交
282 283 284 285

	return status;
}

286
/* Helper for special devices with magic return codes */
287
static int eeepc_wmi_get_devstate_bits(u32 dev_id, u32 mask)
288 289 290 291 292 293 294 295 296
{
	u32 retval = 0;
	acpi_status status;

	status = eeepc_wmi_get_devstate(dev_id, &retval);

	if (ACPI_FAILURE(status))
		return -EINVAL;

297
	if (!(retval & EEEPC_WMI_DSTS_PRESENCE_BIT))
298 299
		return -ENODEV;

300 301 302 303 304 305
	return retval & mask;
}

static int eeepc_wmi_get_devstate_simple(u32 dev_id)
{
	return eeepc_wmi_get_devstate_bits(dev_id, EEEPC_WMI_DSTS_STATUS_BIT);
306 307
}

308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
/*
 * LEDs
 */
/*
 * These functions actually update the LED's, and are called from a
 * workqueue. By doing this as separate work rather than when the LED
 * subsystem asks, we avoid messing with the Eeepc ACPI stuff during a
 * potentially bad time, such as a timer interrupt.
 */
static void tpd_led_update(struct work_struct *work)
{
	int ctrl_param;
	struct eeepc_wmi *eeepc;

	eeepc = container_of(work, struct eeepc_wmi, tpd_led_work);

	ctrl_param = eeepc->tpd_led_wk;
325
	eeepc_wmi_set_devstate(EEEPC_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL);
326 327 328 329 330 331 332 333 334 335 336 337 338
}

static void tpd_led_set(struct led_classdev *led_cdev,
			enum led_brightness value)
{
	struct eeepc_wmi *eeepc;

	eeepc = container_of(led_cdev, struct eeepc_wmi, tpd_led);

	eeepc->tpd_led_wk = !!value;
	queue_work(eeepc->led_workqueue, &eeepc->tpd_led_work);
}

339
static int read_tpd_led_state(struct eeepc_wmi *eeepc)
340
{
341
	return eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_TOUCHPAD_LED);
342 343 344 345 346 347 348 349
}

static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
{
	struct eeepc_wmi *eeepc;

	eeepc = container_of(led_cdev, struct eeepc_wmi, tpd_led);

350
	return read_tpd_led_state(eeepc);
351 352 353 354 355 356
}

static int eeepc_wmi_led_init(struct eeepc_wmi *eeepc)
{
	int rv;

357
	if (read_tpd_led_state(eeepc) < 0)
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
		return 0;

	eeepc->led_workqueue = create_singlethread_workqueue("led_workqueue");
	if (!eeepc->led_workqueue)
		return -ENOMEM;
	INIT_WORK(&eeepc->tpd_led_work, tpd_led_update);

	eeepc->tpd_led.name = "eeepc::touchpad";
	eeepc->tpd_led.brightness_set = tpd_led_set;
	eeepc->tpd_led.brightness_get = tpd_led_get;
	eeepc->tpd_led.max_brightness = 1;

	rv = led_classdev_register(&eeepc->platform_device->dev,
				   &eeepc->tpd_led);
	if (rv) {
		destroy_workqueue(eeepc->led_workqueue);
		return rv;
	}

	return 0;
}

static void eeepc_wmi_led_exit(struct eeepc_wmi *eeepc)
{
	if (eeepc->tpd_led.dev)
		led_classdev_unregister(&eeepc->tpd_led);
	if (eeepc->led_workqueue)
		destroy_workqueue(eeepc->led_workqueue);
}

388 389 390 391 392
/*
 * PCI hotplug (for wlan rfkill)
 */
static bool eeepc_wlan_rfkill_blocked(struct eeepc_wmi *eeepc)
{
393
	int result = eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_WLAN);
394

395
	if (result < 0)
396
		return false;
397
	return !result;
398 399 400 401 402 403
}

static void eeepc_rfkill_hotplug(struct eeepc_wmi *eeepc)
{
	struct pci_dev *dev;
	struct pci_bus *bus;
404
	bool blocked;
405 406 407
	bool absent;
	u32 l;

408 409 410
	mutex_lock(&eeepc->wmi_lock);
	blocked = eeepc_wlan_rfkill_blocked(eeepc);
	mutex_unlock(&eeepc->wmi_lock);
411 412 413

	mutex_lock(&eeepc->hotplug_lock);

414 415 416
	if (eeepc->wlan_rfkill)
		rfkill_set_sw_state(eeepc->wlan_rfkill, blocked);

417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
	if (eeepc->hotplug_slot) {
		bus = pci_find_bus(0, 1);
		if (!bus) {
			pr_warning("Unable to find PCI bus 1?\n");
			goto out_unlock;
		}

		if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) {
			pr_err("Unable to read PCI config space?\n");
			goto out_unlock;
		}
		absent = (l == 0xffffffff);

		if (blocked != absent) {
			pr_warning("BIOS says wireless lan is %s, "
					"but the pci device is %s\n",
				blocked ? "blocked" : "unblocked",
				absent ? "absent" : "present");
			pr_warning("skipped wireless hotplug as probably "
					"inappropriate for this model\n");
			goto out_unlock;
		}

		if (!blocked) {
			dev = pci_get_slot(bus, 0);
			if (dev) {
				/* Device already present */
				pci_dev_put(dev);
				goto out_unlock;
			}
			dev = pci_scan_single_device(bus, 0);
			if (dev) {
				pci_bus_assign_resources(bus);
				if (pci_bus_add_device(dev))
					pr_err("Unable to hotplug wifi\n");
			}
		} else {
			dev = pci_get_slot(bus, 0);
			if (dev) {
				pci_remove_bus_device(dev);
				pci_dev_put(dev);
			}
		}
	}

out_unlock:
	mutex_unlock(&eeepc->hotplug_lock);
}

static void eeepc_rfkill_notify(acpi_handle handle, u32 event, void *data)
{
	struct eeepc_wmi *eeepc = data;

	if (event != ACPI_NOTIFY_BUS_CHECK)
		return;

473 474 475 476 477 478 479 480
	/*
	 * We can't call directly eeepc_rfkill_hotplug because most
	 * of the time WMBC is still being executed and not reetrant.
	 * There is currently no way to tell ACPICA that  we want this
	 * method to be serialized, we schedule a eeepc_rfkill_hotplug
	 * call later, in a safer context.
	 */
	queue_work(eeepc->hotplug_workqueue, &eeepc->hotplug_work);
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
}

static int eeepc_register_rfkill_notifier(struct eeepc_wmi *eeepc,
					  char *node)
{
	acpi_status status;
	acpi_handle handle;

	status = acpi_get_handle(NULL, node, &handle);

	if (ACPI_SUCCESS(status)) {
		status = acpi_install_notify_handler(handle,
						     ACPI_SYSTEM_NOTIFY,
						     eeepc_rfkill_notify,
						     eeepc);
		if (ACPI_FAILURE(status))
			pr_warning("Failed to register notify on %s\n", node);
	} else
		return -ENODEV;

	return 0;
}

static void eeepc_unregister_rfkill_notifier(struct eeepc_wmi *eeepc,
					     char *node)
{
	acpi_status status = AE_OK;
	acpi_handle handle;

	status = acpi_get_handle(NULL, node, &handle);

	if (ACPI_SUCCESS(status)) {
		status = acpi_remove_notify_handler(handle,
						     ACPI_SYSTEM_NOTIFY,
						     eeepc_rfkill_notify);
		if (ACPI_FAILURE(status))
			pr_err("Error removing rfkill notify handler %s\n",
				node);
	}
}

static int eeepc_get_adapter_status(struct hotplug_slot *hotplug_slot,
				    u8 *value)
{
525
	int result = eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_WLAN);
526

527 528
	if (result < 0)
		return result;
529

530
	*value = !!result;
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	return 0;
}

static void eeepc_cleanup_pci_hotplug(struct hotplug_slot *hotplug_slot)
{
	kfree(hotplug_slot->info);
	kfree(hotplug_slot);
}

static struct hotplug_slot_ops eeepc_hotplug_slot_ops = {
	.owner = THIS_MODULE,
	.get_adapter_status = eeepc_get_adapter_status,
	.get_power_status = eeepc_get_adapter_status,
};

546 547 548 549 550 551 552 553
static void eeepc_hotplug_work(struct work_struct *work)
{
	struct eeepc_wmi *eeepc;

	eeepc = container_of(work, struct eeepc_wmi, hotplug_work);
	eeepc_rfkill_hotplug(eeepc);
}

554 555 556 557 558 559 560 561 562 563
static int eeepc_setup_pci_hotplug(struct eeepc_wmi *eeepc)
{
	int ret = -ENOMEM;
	struct pci_bus *bus = pci_find_bus(0, 1);

	if (!bus) {
		pr_err("Unable to find wifi PCI bus\n");
		return -ENODEV;
	}

564 565 566 567 568 569 570
	eeepc->hotplug_workqueue =
		create_singlethread_workqueue("hotplug_workqueue");
	if (!eeepc->hotplug_workqueue)
		goto error_workqueue;

	INIT_WORK(&eeepc->hotplug_work, eeepc_hotplug_work);

571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
	eeepc->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
	if (!eeepc->hotplug_slot)
		goto error_slot;

	eeepc->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
					    GFP_KERNEL);
	if (!eeepc->hotplug_slot->info)
		goto error_info;

	eeepc->hotplug_slot->private = eeepc;
	eeepc->hotplug_slot->release = &eeepc_cleanup_pci_hotplug;
	eeepc->hotplug_slot->ops = &eeepc_hotplug_slot_ops;
	eeepc_get_adapter_status(eeepc->hotplug_slot,
				 &eeepc->hotplug_slot->info->adapter_status);

	ret = pci_hp_register(eeepc->hotplug_slot, bus, 0, "eeepc-wifi");
	if (ret) {
		pr_err("Unable to register hotplug slot - %d\n", ret);
		goto error_register;
	}

	return 0;

error_register:
	kfree(eeepc->hotplug_slot->info);
error_info:
	kfree(eeepc->hotplug_slot);
	eeepc->hotplug_slot = NULL;
error_slot:
600 601
	destroy_workqueue(eeepc->hotplug_workqueue);
error_workqueue:
602 603 604
	return ret;
}

605 606 607 608 609 610 611
/*
 * Rfkill devices
 */
static int eeepc_rfkill_set(void *data, bool blocked)
{
	int dev_id = (unsigned long)data;
	u32 ctrl_param = !blocked;
612 613 614 615 616 617
	acpi_status status;

	status = eeepc_wmi_set_devstate(dev_id, ctrl_param, NULL);

	if (ACPI_FAILURE(status))
		return -EIO;
618

619
	return 0;
620 621 622 623 624
}

static void eeepc_rfkill_query(struct rfkill *rfkill, void *data)
{
	int dev_id = (unsigned long)data;
625
	int result;
626

627
	result = eeepc_wmi_get_devstate_simple(dev_id);
628

629
	if (result < 0)
630 631
		return ;

632
	rfkill_set_sw_state(rfkill, !result);
633 634
}

635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
static int eeepc_rfkill_wlan_set(void *data, bool blocked)
{
	struct eeepc_wmi *eeepc = data;
	int ret;

	/*
	 * This handler is enabled only if hotplug is enabled.
	 * In this case, the eeepc_wmi_set_devstate() will
	 * trigger a wmi notification and we need to wait
	 * this call to finish before being able to call
	 * any wmi method
	 */
	mutex_lock(&eeepc->wmi_lock);
	ret = eeepc_rfkill_set((void *)(long)EEEPC_WMI_DEVID_WLAN, blocked);
	mutex_unlock(&eeepc->wmi_lock);
	return ret;
}

static void eeepc_rfkill_wlan_query(struct rfkill *rfkill, void *data)
{
	eeepc_rfkill_query(rfkill, (void *)(long)EEEPC_WMI_DEVID_WLAN);
}

static const struct rfkill_ops eeepc_rfkill_wlan_ops = {
	.set_block = eeepc_rfkill_wlan_set,
	.query = eeepc_rfkill_wlan_query,
};

663 664 665 666 667 668 669 670 671 672
static const struct rfkill_ops eeepc_rfkill_ops = {
	.set_block = eeepc_rfkill_set,
	.query = eeepc_rfkill_query,
};

static int eeepc_new_rfkill(struct eeepc_wmi *eeepc,
			    struct rfkill **rfkill,
			    const char *name,
			    enum rfkill_type type, int dev_id)
{
673
	int result = eeepc_wmi_get_devstate_simple(dev_id);
674

675 676
	if (result < 0)
		return result;
677

678 679 680 681 682 683
	if (dev_id == EEEPC_WMI_DEVID_WLAN && eeepc->hotplug_wireless)
		*rfkill = rfkill_alloc(name, &eeepc->platform_device->dev, type,
				       &eeepc_rfkill_wlan_ops, eeepc);
	else
		*rfkill = rfkill_alloc(name, &eeepc->platform_device->dev, type,
				       &eeepc_rfkill_ops, (void *)(long)dev_id);
684 685 686 687

	if (!*rfkill)
		return -EINVAL;

688
	rfkill_init_sw_state(*rfkill, !result);
689 690 691 692 693 694 695 696 697 698 699
	result = rfkill_register(*rfkill);
	if (result) {
		rfkill_destroy(*rfkill);
		*rfkill = NULL;
		return result;
	}
	return 0;
}

static void eeepc_wmi_rfkill_exit(struct eeepc_wmi *eeepc)
{
700 701 702
	eeepc_unregister_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P5");
	eeepc_unregister_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P6");
	eeepc_unregister_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P7");
703 704 705 706 707
	if (eeepc->wlan_rfkill) {
		rfkill_unregister(eeepc->wlan_rfkill);
		rfkill_destroy(eeepc->wlan_rfkill);
		eeepc->wlan_rfkill = NULL;
	}
708 709 710 711 712 713 714
	/*
	 * Refresh pci hotplug in case the rfkill state was changed after
	 * eeepc_unregister_rfkill_notifier()
	 */
	eeepc_rfkill_hotplug(eeepc);
	if (eeepc->hotplug_slot)
		pci_hp_deregister(eeepc->hotplug_slot);
715 716
	if (eeepc->hotplug_workqueue)
		destroy_workqueue(eeepc->hotplug_workqueue);
717

718 719 720 721 722
	if (eeepc->bluetooth_rfkill) {
		rfkill_unregister(eeepc->bluetooth_rfkill);
		rfkill_destroy(eeepc->bluetooth_rfkill);
		eeepc->bluetooth_rfkill = NULL;
	}
C
Corentin Chary 已提交
723 724 725 726 727
	if (eeepc->wimax_rfkill) {
		rfkill_unregister(eeepc->wimax_rfkill);
		rfkill_destroy(eeepc->wimax_rfkill);
		eeepc->wimax_rfkill = NULL;
	}
728 729 730 731 732 733 734 735 736 737 738
	if (eeepc->wwan3g_rfkill) {
		rfkill_unregister(eeepc->wwan3g_rfkill);
		rfkill_destroy(eeepc->wwan3g_rfkill);
		eeepc->wwan3g_rfkill = NULL;
	}
}

static int eeepc_wmi_rfkill_init(struct eeepc_wmi *eeepc)
{
	int result = 0;

739
	mutex_init(&eeepc->hotplug_lock);
740
	mutex_init(&eeepc->wmi_lock);
741

742 743 744 745 746 747 748 749 750 751 752 753 754 755
	result = eeepc_new_rfkill(eeepc, &eeepc->wlan_rfkill,
				  "eeepc-wlan", RFKILL_TYPE_WLAN,
				  EEEPC_WMI_DEVID_WLAN);

	if (result && result != -ENODEV)
		goto exit;

	result = eeepc_new_rfkill(eeepc, &eeepc->bluetooth_rfkill,
				  "eeepc-bluetooth", RFKILL_TYPE_BLUETOOTH,
				  EEEPC_WMI_DEVID_BLUETOOTH);

	if (result && result != -ENODEV)
		goto exit;

C
Corentin Chary 已提交
756 757 758 759 760 761 762
	result = eeepc_new_rfkill(eeepc, &eeepc->wimax_rfkill,
				  "eeepc-wimax", RFKILL_TYPE_WIMAX,
				  EEEPC_WMI_DEVID_WIMAX);

	if (result && result != -ENODEV)
		goto exit;

763 764 765 766 767 768 769
	result = eeepc_new_rfkill(eeepc, &eeepc->wwan3g_rfkill,
				  "eeepc-wwan3g", RFKILL_TYPE_WWAN,
				  EEEPC_WMI_DEVID_WWAN3G);

	if (result && result != -ENODEV)
		goto exit;

770 771 772
	if (!eeepc->hotplug_wireless)
		goto exit;

773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
	result = eeepc_setup_pci_hotplug(eeepc);
	/*
	 * If we get -EBUSY then something else is handling the PCI hotplug -
	 * don't fail in this case
	 */
	if (result == -EBUSY)
		result = 0;

	eeepc_register_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P5");
	eeepc_register_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P6");
	eeepc_register_rfkill_notifier(eeepc, "\\_SB.PCI0.P0P7");
	/*
	 * Refresh pci hotplug in case the rfkill state was changed during
	 * setup.
	 */
	eeepc_rfkill_hotplug(eeepc);

790 791 792 793 794 795 796 797 798 799
exit:
	if (result && result != -ENODEV)
		eeepc_wmi_rfkill_exit(eeepc);

	if (result == -ENODEV)
		result = 0;

	return result;
}

800 801 802
/*
 * Backlight
 */
803 804 805 806 807 808 809 810 811 812
static int read_backlight_power(void)
{
	int ret = eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_BACKLIGHT);

	if (ret < 0)
		return ret;

	return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
}

Y
Yong Wang 已提交
813 814
static int read_brightness(struct backlight_device *bd)
{
815
	u32 retval;
Y
Yong Wang 已提交
816 817
	acpi_status status;

818
	status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_BRIGHTNESS, &retval);
Y
Yong Wang 已提交
819 820

	if (ACPI_FAILURE(status))
821
		return -EIO;
Y
Yong Wang 已提交
822
	else
823
		return retval & EEEPC_WMI_DSTS_BRIGHTNESS_MASK;
Y
Yong Wang 已提交
824 825 826 827
}

static int update_bl_status(struct backlight_device *bd)
{
828
	u32 ctrl_param;
Y
Yong Wang 已提交
829
	acpi_status status;
830
	int power;
Y
Yong Wang 已提交
831 832 833

	ctrl_param = bd->props.brightness;

834
	status = eeepc_wmi_set_devstate(EEEPC_WMI_DEVID_BRIGHTNESS,
C
Corentin Chary 已提交
835
					ctrl_param, NULL);
Y
Yong Wang 已提交
836 837

	if (ACPI_FAILURE(status))
838 839 840 841 842 843 844 845 846 847 848 849
		return -EIO;

	power = read_backlight_power();
	if (power != -ENODEV && bd->props.power != power) {
		ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK);
		status = eeepc_wmi_set_devstate(EEEPC_WMI_DEVID_BACKLIGHT,
						ctrl_param, NULL);

		if (ACPI_FAILURE(status))
			return -EIO;
	}
	return 0;
Y
Yong Wang 已提交
850 851 852 853 854 855 856 857 858 859 860
}

static const struct backlight_ops eeepc_wmi_bl_ops = {
	.get_brightness = read_brightness,
	.update_status = update_bl_status,
};

static int eeepc_wmi_backlight_notify(struct eeepc_wmi *eeepc, int code)
{
	struct backlight_device *bd = eeepc->backlight_device;
	int old = bd->props.brightness;
861
	int new = old;
Y
Yong Wang 已提交
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878

	if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
		new = code - NOTIFY_BRNUP_MIN + 1;
	else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX)
		new = code - NOTIFY_BRNDOWN_MIN;

	bd->props.brightness = new;
	backlight_update_status(bd);
	backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);

	return old;
}

static int eeepc_wmi_backlight_init(struct eeepc_wmi *eeepc)
{
	struct backlight_device *bd;
	struct backlight_properties props;
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
	int max;
	int power;

	max = eeepc_wmi_get_devstate_bits(EEEPC_WMI_DEVID_BRIGHTNESS,
					  EEEPC_WMI_DSTS_MAX_BRIGTH_MASK);
	power = read_backlight_power();

	if (max < 0 && power < 0) {
		/* Try to keep the original error */
		if (max == -ENODEV && power == -ENODEV)
			return -ENODEV;
		if (max != -ENODEV)
			return max;
		else
			return power;
	}
	if (max == -ENODEV)
		max = 0;
	if (power == -ENODEV)
		power = FB_BLANK_UNBLANK;
Y
Yong Wang 已提交
899 900

	memset(&props, 0, sizeof(struct backlight_properties));
901
	props.max_brightness = max;
Y
Yong Wang 已提交
902
	bd = backlight_device_register(EEEPC_WMI_FILE,
903
				       &eeepc->platform_device->dev, eeepc,
Y
Yong Wang 已提交
904 905 906 907 908 909 910 911 912
				       &eeepc_wmi_bl_ops, &props);
	if (IS_ERR(bd)) {
		pr_err("Could not register backlight device\n");
		return PTR_ERR(bd);
	}

	eeepc->backlight_device = bd;

	bd->props.brightness = read_brightness(bd);
913
	bd->props.power = power;
Y
Yong Wang 已提交
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
	backlight_update_status(bd);

	return 0;
}

static void eeepc_wmi_backlight_exit(struct eeepc_wmi *eeepc)
{
	if (eeepc->backlight_device)
		backlight_device_unregister(eeepc->backlight_device);

	eeepc->backlight_device = NULL;
}

static void eeepc_wmi_notify(u32 value, void *context)
{
	struct eeepc_wmi *eeepc = context;
	struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
	union acpi_object *obj;
	acpi_status status;
	int code;
	int orig_code;

	status = wmi_get_event_data(value, &response);
	if (status != AE_OK) {
		pr_err("bad event status 0x%x\n", status);
		return;
	}

	obj = (union acpi_object *)response.pointer;

	if (obj && obj->type == ACPI_TYPE_INTEGER) {
		code = obj->integer.value;
		orig_code = code;

		if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
			code = NOTIFY_BRNUP_MIN;
		else if (code >= NOTIFY_BRNDOWN_MIN &&
			 code <= NOTIFY_BRNDOWN_MAX)
			code = NOTIFY_BRNDOWN_MIN;

		if (code == NOTIFY_BRNUP_MIN || code == NOTIFY_BRNDOWN_MIN) {
			if (!acpi_video_backlight_support())
				eeepc_wmi_backlight_notify(eeepc, orig_code);
		}

		if (!sparse_keymap_report_event(eeepc->inputdev,
						code, 1, true))
			pr_info("Unknown key %x pressed\n", code);
	}

	kfree(obj);
}

967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
/*
 * Sys helpers
 */
static int parse_arg(const char *buf, unsigned long count, int *val)
{
	if (!count)
		return 0;
	if (sscanf(buf, "%i", val) != 1)
		return -EINVAL;
	return count;
}

static ssize_t store_sys_wmi(int devid, const char *buf, size_t count)
{
	acpi_status status;
	u32 retval;
	int rv, value;

	value = eeepc_wmi_get_devstate_simple(devid);
	if (value == -ENODEV) /* Check device presence */
		return value;

	rv = parse_arg(buf, count, &value);
	status = eeepc_wmi_set_devstate(devid, value, &retval);

	if (ACPI_FAILURE(status))
		return -EIO;
	return rv;
}

static ssize_t show_sys_wmi(int devid, char *buf)
{
	int value = eeepc_wmi_get_devstate_simple(devid);

	if (value < 0)
		return value;

	return sprintf(buf, "%d\n", value);
}

#define EEEPC_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm)			\
	static ssize_t show_##_name(struct device *dev,			\
				    struct device_attribute *attr,	\
				    char *buf)				\
	{								\
		return show_sys_wmi(_cm, buf);				\
	}								\
	static ssize_t store_##_name(struct device *dev,		\
				     struct device_attribute *attr,	\
				     const char *buf, size_t count)	\
	{								\
		return store_sys_wmi(_cm, buf, count);			\
	}								\
	static struct device_attribute dev_attr_##_name = {		\
		.attr = {						\
			.name = __stringify(_name),			\
			.mode = _mode },				\
		.show   = show_##_name,					\
		.store  = store_##_name,				\
	}

1028
EEEPC_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, EEEPC_WMI_DEVID_TOUCHPAD);
1029 1030 1031
EEEPC_WMI_CREATE_DEVICE_ATTR(camera, 0644, EEEPC_WMI_DEVID_CAMERA);
EEEPC_WMI_CREATE_DEVICE_ATTR(cardr, 0644, EEEPC_WMI_DEVID_CARDREADER);

D
Dmitry Torokhov 已提交
1032 1033
static ssize_t store_cpufv(struct device *dev, struct device_attribute *attr,
			   const char *buf, size_t count)
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
{
	int value;
	struct acpi_buffer input = { (acpi_size)sizeof(value), &value };
	acpi_status status;

	if (!count || sscanf(buf, "%i", &value) != 1)
		return -EINVAL;
	if (value < 0 || value > 2)
		return -EINVAL;

	status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID,
				     1, EEEPC_WMI_METHODID_CFVS, &input, NULL);

	if (ACPI_FAILURE(status))
		return -EIO;
	else
		return count;
}

static DEVICE_ATTR(cpufv, S_IRUGO | S_IWUSR, NULL, store_cpufv);

1055 1056
static struct attribute *platform_attributes[] = {
	&dev_attr_cpufv.attr,
1057 1058
	&dev_attr_camera.attr,
	&dev_attr_cardr.attr,
1059
	&dev_attr_touchpad.attr,
1060 1061 1062
	NULL
};

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
static mode_t eeepc_sysfs_is_visible(struct kobject *kobj,
				     struct attribute *attr,
				     int idx)
{
	bool supported = true;
	int devid = -1;

	if (attr == &dev_attr_camera.attr)
		devid = EEEPC_WMI_DEVID_CAMERA;
	else if (attr == &dev_attr_cardr.attr)
		devid = EEEPC_WMI_DEVID_CARDREADER;
1074 1075
	else if (attr == &dev_attr_touchpad.attr)
		devid = EEEPC_WMI_DEVID_TOUCHPAD;
1076 1077 1078 1079 1080 1081 1082

	if (devid != -1)
		supported = eeepc_wmi_get_devstate_simple(devid) != -ENODEV;

	return supported ? attr->mode : 0;
}

1083
static struct attribute_group platform_attribute_group = {
1084 1085
	.is_visible	= eeepc_sysfs_is_visible,
	.attrs		= platform_attributes
1086 1087
};

1088 1089
static void eeepc_wmi_sysfs_exit(struct platform_device *device)
{
1090
	sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
1091 1092 1093 1094
}

static int eeepc_wmi_sysfs_init(struct platform_device *device)
{
1095
	return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
1096 1097
}

1098 1099 1100 1101
/*
 * Platform device
 */
static int __init eeepc_wmi_platform_init(struct eeepc_wmi *eeepc)
1102
{
1103
	return eeepc_wmi_sysfs_init(eeepc->platform_device);
1104 1105 1106 1107 1108 1109 1110
}

static void eeepc_wmi_platform_exit(struct eeepc_wmi *eeepc)
{
	eeepc_wmi_sysfs_exit(eeepc->platform_device);
}

C
Corentin Chary 已提交
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
/*
 * debugfs
 */
struct eeepc_wmi_debugfs_node {
	struct eeepc_wmi *eeepc;
	char *name;
	int (*show)(struct seq_file *m, void *data);
};

static int show_dsts(struct seq_file *m, void *data)
{
	struct eeepc_wmi *eeepc = m->private;
	acpi_status status;
	u32 retval = -1;

	status = eeepc_wmi_get_devstate(eeepc->debug.dev_id, &retval);

	if (ACPI_FAILURE(status))
		return -EIO;

	seq_printf(m, "DSTS(%x) = %x\n", eeepc->debug.dev_id, retval);

	return 0;
}

static int show_devs(struct seq_file *m, void *data)
{
	struct eeepc_wmi *eeepc = m->private;
	acpi_status status;
	u32 retval = -1;

	status = eeepc_wmi_set_devstate(eeepc->debug.dev_id,
					eeepc->debug.ctrl_param, &retval);
	if (ACPI_FAILURE(status))
		return -EIO;

	seq_printf(m, "DEVS(%x, %x) = %x\n", eeepc->debug.dev_id,
		   eeepc->debug.ctrl_param, retval);

	return 0;
}

static struct eeepc_wmi_debugfs_node eeepc_wmi_debug_files[] = {
	{ NULL, "devs", show_devs },
	{ NULL, "dsts", show_dsts },
};

static int eeepc_wmi_debugfs_open(struct inode *inode, struct file *file)
{
	struct eeepc_wmi_debugfs_node *node = inode->i_private;

	return single_open(file, node->show, node->eeepc);
}

static const struct file_operations eeepc_wmi_debugfs_io_ops = {
	.owner = THIS_MODULE,
	.open  = eeepc_wmi_debugfs_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

static void eeepc_wmi_debugfs_exit(struct eeepc_wmi *eeepc)
{
	debugfs_remove_recursive(eeepc->debug.root);
}

static int eeepc_wmi_debugfs_init(struct eeepc_wmi *eeepc)
{
	struct dentry *dent;
	int i;

	eeepc->debug.root = debugfs_create_dir(EEEPC_WMI_FILE, NULL);
	if (!eeepc->debug.root) {
		pr_err("failed to create debugfs directory");
		goto error_debugfs;
	}

	dent = debugfs_create_x32("dev_id", S_IRUGO|S_IWUSR,
				  eeepc->debug.root, &eeepc->debug.dev_id);
	if (!dent)
		goto error_debugfs;

	dent = debugfs_create_x32("ctrl_param", S_IRUGO|S_IWUSR,
				  eeepc->debug.root, &eeepc->debug.ctrl_param);
	if (!dent)
		goto error_debugfs;

	for (i = 0; i < ARRAY_SIZE(eeepc_wmi_debug_files); i++) {
		struct eeepc_wmi_debugfs_node *node = &eeepc_wmi_debug_files[i];

		node->eeepc = eeepc;
		dent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
					   eeepc->debug.root, node,
					   &eeepc_wmi_debugfs_io_ops);
		if (!dent) {
			pr_err("failed to create debug file: %s\n", node->name);
			goto error_debugfs;
		}
	}

	return 0;

error_debugfs:
	eeepc_wmi_debugfs_exit(eeepc);
	return -ENOMEM;
}

1219 1220 1221
/*
 * WMI Driver
 */
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
static void eeepc_dmi_check(struct eeepc_wmi *eeepc)
{
	const char *model;

	model = dmi_get_system_info(DMI_PRODUCT_NAME);
	if (!model)
		return;

	/*
	 * Whitelist for wlan hotplug
	 *
	 * Eeepc 1000H needs the current hotplug code to handle
	 * Fn+F2 correctly. We may add other Eeepc here later, but
	 * it seems that most of the laptops supported by eeepc-wmi
	 * don't need to be on this list
	 */
	if (strcmp(model, "1000H") == 0) {
		eeepc->hotplug_wireless = true;
		pr_info("wlan hotplug enabled\n");
	}
}

1244
static int __init eeepc_wmi_add(struct platform_device *pdev)
1245 1246
{
	struct eeepc_wmi *eeepc;
1247
	acpi_status status;
1248
	int err;
1249

1250 1251
	eeepc = kzalloc(sizeof(struct eeepc_wmi), GFP_KERNEL);
	if (!eeepc)
1252 1253 1254 1255
		return -ENOMEM;

	eeepc->platform_device = pdev;
	platform_set_drvdata(eeepc->platform_device, eeepc);
1256

1257 1258 1259
	eeepc->hotplug_wireless = hotplug_wireless;
	eeepc_dmi_check(eeepc);

1260 1261 1262
	err = eeepc_wmi_platform_init(eeepc);
	if (err)
		goto fail_platform;
1263 1264 1265

	err = eeepc_wmi_input_init(eeepc);
	if (err)
1266
		goto fail_input;
Y
Yong Wang 已提交
1267

1268 1269 1270 1271
	err = eeepc_wmi_led_init(eeepc);
	if (err)
		goto fail_leds;

1272 1273 1274 1275
	err = eeepc_wmi_rfkill_init(eeepc);
	if (err)
		goto fail_rfkill;

Y
Yong Wang 已提交
1276 1277
	if (!acpi_video_backlight_support()) {
		err = eeepc_wmi_backlight_init(eeepc);
1278
		if (err && err != -ENODEV)
1279
			goto fail_backlight;
Y
Yong Wang 已提交
1280 1281
	} else
		pr_info("Backlight controlled by ACPI video driver\n");
1282 1283

	status = wmi_install_notify_handler(EEEPC_WMI_EVENT_GUID,
1284
					    eeepc_wmi_notify, eeepc);
1285 1286 1287 1288
	if (ACPI_FAILURE(status)) {
		pr_err("Unable to register notify handler - %d\n",
			status);
		err = -ENODEV;
1289
		goto fail_wmi_handler;
1290 1291
	}

C
Corentin Chary 已提交
1292 1293 1294 1295
	err = eeepc_wmi_debugfs_init(eeepc);
	if (err)
		goto fail_debugfs;

1296
	return 0;
1297

C
Corentin Chary 已提交
1298 1299
fail_debugfs:
	wmi_remove_notify_handler(EEEPC_WMI_EVENT_GUID);
1300
fail_wmi_handler:
Y
Yong Wang 已提交
1301
	eeepc_wmi_backlight_exit(eeepc);
1302
fail_backlight:
1303 1304
	eeepc_wmi_rfkill_exit(eeepc);
fail_rfkill:
1305 1306
	eeepc_wmi_led_exit(eeepc);
fail_leds:
1307
	eeepc_wmi_input_exit(eeepc);
1308 1309 1310 1311
fail_input:
	eeepc_wmi_platform_exit(eeepc);
fail_platform:
	kfree(eeepc);
1312
	return err;
1313 1314
}

1315
static int __exit eeepc_wmi_remove(struct platform_device *device)
1316 1317 1318 1319 1320
{
	struct eeepc_wmi *eeepc;

	eeepc = platform_get_drvdata(device);
	wmi_remove_notify_handler(EEEPC_WMI_EVENT_GUID);
Y
Yong Wang 已提交
1321
	eeepc_wmi_backlight_exit(eeepc);
1322
	eeepc_wmi_input_exit(eeepc);
1323
	eeepc_wmi_led_exit(eeepc);
1324
	eeepc_wmi_rfkill_exit(eeepc);
C
Corentin Chary 已提交
1325
	eeepc_wmi_debugfs_exit(eeepc);
1326
	eeepc_wmi_platform_exit(eeepc);
1327

1328
	kfree(eeepc);
1329 1330 1331
	return 0;
}

1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
/*
 * Platform driver - hibernate/resume callbacks
 */
static int eeepc_hotk_thaw(struct device *device)
{
	struct eeepc_wmi *eeepc = dev_get_drvdata(device);

	if (eeepc->wlan_rfkill) {
		bool wlan;

		/*
		 * Work around bios bug - acpi _PTS turns off the wireless led
		 * during suspend.  Normally it restores it on resume, but
		 * we should kick it ourselves in case hibernation is aborted.
		 */
		wlan = eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_WLAN);
		eeepc_wmi_set_devstate(EEEPC_WMI_DEVID_WLAN, wlan, NULL);
	}

	return 0;
}

static int eeepc_hotk_restore(struct device *device)
{
	struct eeepc_wmi *eeepc = dev_get_drvdata(device);
	int bl;

	/* Refresh both wlan rfkill state and pci hotplug */
	if (eeepc->wlan_rfkill)
		eeepc_rfkill_hotplug(eeepc);

	if (eeepc->bluetooth_rfkill) {
		bl = !eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_BLUETOOTH);
		rfkill_set_sw_state(eeepc->bluetooth_rfkill, bl);
C
Corentin Chary 已提交
1366 1367 1368 1369 1370
	}
	if (eeepc->wimax_rfkill) {
		bl = !eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_WIMAX);
		rfkill_set_sw_state(eeepc->wimax_rfkill, bl);
	}
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
	if (eeepc->wwan3g_rfkill) {
		bl = !eeepc_wmi_get_devstate_simple(EEEPC_WMI_DEVID_WWAN3G);
		rfkill_set_sw_state(eeepc->wwan3g_rfkill, bl);
	}

	return 0;
}

static const struct dev_pm_ops eeepc_pm_ops = {
	.thaw = eeepc_hotk_thaw,
	.restore = eeepc_hotk_restore,
};

1384
static struct platform_driver platform_driver = {
1385
	.remove = __exit_p(eeepc_wmi_remove),
1386 1387 1388
	.driver = {
		.name = EEEPC_WMI_FILE,
		.owner = THIS_MODULE,
1389
		.pm = &eeepc_pm_ops,
1390 1391 1392
	},
};

1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
static acpi_status __init eeepc_wmi_parse_device(acpi_handle handle, u32 level,
						 void *context, void **retval)
{
	pr_warning("Found legacy ATKD device (%s)", EEEPC_ACPI_HID);
	*(bool *)context = true;
	return AE_CTRL_TERMINATE;
}

static int __init eeepc_wmi_check_atkd(void)
{
	acpi_status status;
	bool found = false;

	status = acpi_get_devices(EEEPC_ACPI_HID, eeepc_wmi_parse_device,
				  &found, NULL);

	if (ACPI_FAILURE(status) || !found)
		return 0;
	return -1;
}

1414
static int __init eeepc_wmi_probe(struct platform_device *pdev)
1415
{
Y
Yong Wang 已提交
1416 1417
	if (!wmi_has_guid(EEEPC_WMI_EVENT_GUID) ||
	    !wmi_has_guid(EEEPC_WMI_MGMT_GUID)) {
1418
		pr_warning("No known WMI GUID found\n");
1419 1420 1421
		return -ENODEV;
	}

1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	if (eeepc_wmi_check_atkd()) {
		pr_warning("WMI device present, but legacy ATKD device is also "
			   "present and enabled.");
		pr_warning("You probably booted with acpi_osi=\"Linux\" or "
			   "acpi_osi=\"!Windows 2009\"");
		pr_warning("Can't load eeepc-wmi, use default acpi_osi "
			   "(preferred) or eeepc-laptop");
		return -ENODEV;
	}

1432 1433
	return eeepc_wmi_add(pdev);
}
1434

1435
static struct platform_device *platform_device;
1436

1437 1438 1439 1440 1441 1442 1443
static int __init eeepc_wmi_init(void)
{
	platform_device = platform_create_bundle(&platform_driver,
						 eeepc_wmi_probe,
						 NULL, 0, NULL, 0);
	if (IS_ERR(platform_device))
		return PTR_ERR(platform_device);
1444 1445 1446 1447 1448
	return 0;
}

static void __exit eeepc_wmi_exit(void)
{
1449
	platform_device_unregister(platform_device);
1450
	platform_driver_unregister(&platform_driver);
1451 1452 1453 1454
}

module_init(eeepc_wmi_init);
module_exit(eeepc_wmi_exit);