2 * Asus PC WMI hotkey driver
4 * Copyright(C) 2010 Intel Corporation.
5 * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com>
7 * Portions based on wistron_btns.c:
8 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
9 * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org>
10 * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/types.h>
33 #include <linux/slab.h>
34 #include <linux/input.h>
35 #include <linux/input/sparse-keymap.h>
37 #include <linux/backlight.h>
38 #include <linux/leds.h>
39 #include <linux/rfkill.h>
40 #include <linux/pci.h>
41 #include <linux/pci_hotplug.h>
42 #include <linux/hwmon.h>
43 #include <linux/hwmon-sysfs.h>
44 #include <linux/debugfs.h>
45 #include <linux/seq_file.h>
46 #include <linux/platform_device.h>
47 #include <acpi/acpi_bus.h>
48 #include <acpi/acpi_drivers.h>
52 MODULE_AUTHOR("Corentin Chary <corentincj@iksaif.net>, "
53 "Yong Wang <yong.y.wang@intel.com>");
54 MODULE_DESCRIPTION("Asus Generic WMI Driver");
55 MODULE_LICENSE("GPL");
57 #define to_platform_driver(drv) \
58 (container_of((drv), struct platform_driver, driver))
60 #define to_asus_wmi_driver(pdrv) \
61 (container_of((pdrv), struct asus_wmi_driver, platform_driver))
63 #define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66"
65 #define NOTIFY_BRNUP_MIN 0x11
66 #define NOTIFY_BRNUP_MAX 0x1f
67 #define NOTIFY_BRNDOWN_MIN 0x20
68 #define NOTIFY_BRNDOWN_MAX 0x2e
71 #define ASUS_WMI_METHODID_SPEC 0x43455053 /* BIOS SPECification */
72 #define ASUS_WMI_METHODID_SFBD 0x44424653 /* Set First Boot Device */
73 #define ASUS_WMI_METHODID_GLCD 0x44434C47 /* Get LCD status */
74 #define ASUS_WMI_METHODID_GPID 0x44495047 /* Get Panel ID?? (Resol) */
75 #define ASUS_WMI_METHODID_QMOD 0x444F4D51 /* Quiet MODe */
76 #define ASUS_WMI_METHODID_SPLV 0x4C425053 /* Set Panel Light Value */
77 #define ASUS_WMI_METHODID_SFUN 0x4E554653 /* FUNCtionalities */
78 #define ASUS_WMI_METHODID_SDSP 0x50534453 /* Set DiSPlay output */
79 #define ASUS_WMI_METHODID_GDSP 0x50534447 /* Get DiSPlay output */
80 #define ASUS_WMI_METHODID_DEVP 0x50564544 /* DEVice Policy */
81 #define ASUS_WMI_METHODID_OSVR 0x5256534F /* OS VeRsion */
82 #define ASUS_WMI_METHODID_DSTS 0x53544344 /* Device STatuS */
83 #define ASUS_WMI_METHODID_DSTS2 0x53545344 /* Device STatuS #2*/
84 #define ASUS_WMI_METHODID_BSTS 0x53545342 /* Bios STatuS ? */
85 #define ASUS_WMI_METHODID_DEVS 0x53564544 /* DEVice Set */
86 #define ASUS_WMI_METHODID_CFVS 0x53564643 /* CPU Frequency Volt Set */
87 #define ASUS_WMI_METHODID_KBFT 0x5446424B /* KeyBoard FilTer */
88 #define ASUS_WMI_METHODID_INIT 0x54494E49 /* INITialize */
89 #define ASUS_WMI_METHODID_HKEY 0x59454B48 /* Hot KEY ?? */
91 #define ASUS_WMI_UNSUPPORTED_METHOD 0xFFFFFFFE
94 #define ASUS_WMI_DEVID_HW_SWITCH 0x00010001
95 #define ASUS_WMI_DEVID_WIRELESS_LED 0x00010002
96 #define ASUS_WMI_DEVID_WLAN 0x00010011
97 #define ASUS_WMI_DEVID_BLUETOOTH 0x00010013
98 #define ASUS_WMI_DEVID_GPS 0x00010015
99 #define ASUS_WMI_DEVID_WIMAX 0x00010017
100 #define ASUS_WMI_DEVID_WWAN3G 0x00010019
101 #define ASUS_WMI_DEVID_UWB 0x00010021
104 /* 0x000200XX and 0x000400XX */
106 /* Backlight and Brightness */
107 #define ASUS_WMI_DEVID_BACKLIGHT 0x00050011
108 #define ASUS_WMI_DEVID_BRIGHTNESS 0x00050012
109 #define ASUS_WMI_DEVID_KBD_BACKLIGHT 0x00050021
110 #define ASUS_WMI_DEVID_LIGHT_SENSOR 0x00050022 /* ?? */
113 #define ASUS_WMI_DEVID_CAMERA 0x00060013
116 #define ASUS_WMI_DEVID_CARDREADER 0x00080013
119 #define ASUS_WMI_DEVID_TOUCHPAD 0x00100011
120 #define ASUS_WMI_DEVID_TOUCHPAD_LED 0x00100012
123 #define ASUS_WMI_DEVID_THERMAL_CTRL 0x00110011
124 #define ASUS_WMI_DEVID_FAN_CTRL 0x00110012
127 #define ASUS_WMI_DEVID_PROCESSOR_STATE 0x00120012
130 #define ASUS_WMI_DSTS_STATUS_BIT 0x00000001
131 #define ASUS_WMI_DSTS_UNKNOWN_BIT 0x00000002
132 #define ASUS_WMI_DSTS_PRESENCE_BIT 0x00010000
133 #define ASUS_WMI_DSTS_USER_BIT 0x00020000
134 #define ASUS_WMI_DSTS_BIOS_BIT 0x00040000
135 #define ASUS_WMI_DSTS_BRIGHTNESS_MASK 0x000000FF
136 #define ASUS_WMI_DSTS_MAX_BRIGTH_MASK 0x0000FF00
144 * <platform>/ - debugfs root directory
145 * dev_id - current dev_id
146 * ctrl_param - current ctrl_param
147 * method_id - current method_id
148 * devs - call DEVS(dev_id, ctrl_param) and print result
149 * dsts - call DSTS(dev_id) and print result
150 * call - call method_id(dev_id, ctrl_param) and print result
152 struct asus_wmi_debug
{
160 struct asus_wmi
*asus
;
161 struct rfkill
*rfkill
;
170 struct input_dev
*inputdev
;
171 struct backlight_device
*backlight_device
;
172 struct device
*hwmon_device
;
173 struct platform_device
*platform_device
;
175 struct led_classdev tpd_led
;
177 struct workqueue_struct
*led_workqueue
;
178 struct work_struct tpd_led_work
;
180 struct asus_rfkill wlan
;
181 struct asus_rfkill bluetooth
;
182 struct asus_rfkill wimax
;
183 struct asus_rfkill wwan3g
;
185 struct hotplug_slot
*hotplug_slot
;
186 struct mutex hotplug_lock
;
187 struct mutex wmi_lock
;
188 struct workqueue_struct
*hotplug_workqueue
;
189 struct work_struct hotplug_work
;
191 struct asus_wmi_debug debug
;
193 struct asus_wmi_driver
*driver
;
196 static int asus_wmi_input_init(struct asus_wmi
*asus
)
200 asus
->inputdev
= input_allocate_device();
204 asus
->inputdev
->name
= asus
->driver
->input_name
;
205 asus
->inputdev
->phys
= asus
->driver
->input_phys
;
206 asus
->inputdev
->id
.bustype
= BUS_HOST
;
207 asus
->inputdev
->dev
.parent
= &asus
->platform_device
->dev
;
209 err
= sparse_keymap_setup(asus
->inputdev
, asus
->driver
->keymap
, NULL
);
213 err
= input_register_device(asus
->inputdev
);
215 goto err_free_keymap
;
220 sparse_keymap_free(asus
->inputdev
);
222 input_free_device(asus
->inputdev
);
226 static void asus_wmi_input_exit(struct asus_wmi
*asus
)
228 if (asus
->inputdev
) {
229 sparse_keymap_free(asus
->inputdev
);
230 input_unregister_device(asus
->inputdev
);
233 asus
->inputdev
= NULL
;
236 static int asus_wmi_evaluate_method(u32 method_id
, u32 arg0
, u32 arg1
,
239 struct bios_args args
= {
243 struct acpi_buffer input
= { (acpi_size
) sizeof(args
), &args
};
244 struct acpi_buffer output
= { ACPI_ALLOCATE_BUFFER
, NULL
};
246 union acpi_object
*obj
;
249 status
= wmi_evaluate_method(ASUS_WMI_MGMT_GUID
, 1, method_id
,
252 if (ACPI_FAILURE(status
))
255 obj
= (union acpi_object
*)output
.pointer
;
256 if (obj
&& obj
->type
== ACPI_TYPE_INTEGER
)
257 tmp
= (u32
) obj
->integer
.value
;
267 if (ACPI_FAILURE(status
))
270 if (tmp
== ASUS_WMI_UNSUPPORTED_METHOD
)
276 static int asus_wmi_get_devstate(struct asus_wmi
*asus
, u32 dev_id
, u32
*retval
)
278 return asus_wmi_evaluate_method(asus
->dsts_id
, dev_id
, 0, retval
);
281 static int asus_wmi_set_devstate(u32 dev_id
, u32 ctrl_param
,
284 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS
, dev_id
,
288 /* Helper for special devices with magic return codes */
289 static int asus_wmi_get_devstate_bits(struct asus_wmi
*asus
,
290 u32 dev_id
, u32 mask
)
295 err
= asus_wmi_get_devstate(asus
, dev_id
, &retval
);
300 if (!(retval
& ASUS_WMI_DSTS_PRESENCE_BIT
))
303 if (mask
== ASUS_WMI_DSTS_STATUS_BIT
) {
304 if (retval
& ASUS_WMI_DSTS_UNKNOWN_BIT
)
308 return retval
& mask
;
311 static int asus_wmi_get_devstate_simple(struct asus_wmi
*asus
, u32 dev_id
)
313 return asus_wmi_get_devstate_bits(asus
, dev_id
,
314 ASUS_WMI_DSTS_STATUS_BIT
);
321 * These functions actually update the LED's, and are called from a
322 * workqueue. By doing this as separate work rather than when the LED
323 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
324 * potentially bad time, such as a timer interrupt.
326 static void tpd_led_update(struct work_struct
*work
)
329 struct asus_wmi
*asus
;
331 asus
= container_of(work
, struct asus_wmi
, tpd_led_work
);
333 ctrl_param
= asus
->tpd_led_wk
;
334 asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED
, ctrl_param
, NULL
);
337 static void tpd_led_set(struct led_classdev
*led_cdev
,
338 enum led_brightness value
)
340 struct asus_wmi
*asus
;
342 asus
= container_of(led_cdev
, struct asus_wmi
, tpd_led
);
344 asus
->tpd_led_wk
= !!value
;
345 queue_work(asus
->led_workqueue
, &asus
->tpd_led_work
);
348 static int read_tpd_led_state(struct asus_wmi
*asus
)
350 return asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_TOUCHPAD_LED
);
353 static enum led_brightness
tpd_led_get(struct led_classdev
*led_cdev
)
355 struct asus_wmi
*asus
;
357 asus
= container_of(led_cdev
, struct asus_wmi
, tpd_led
);
359 return read_tpd_led_state(asus
);
362 static int asus_wmi_led_init(struct asus_wmi
*asus
)
366 if (read_tpd_led_state(asus
) < 0)
369 asus
->led_workqueue
= create_singlethread_workqueue("led_workqueue");
370 if (!asus
->led_workqueue
)
372 INIT_WORK(&asus
->tpd_led_work
, tpd_led_update
);
374 asus
->tpd_led
.name
= "asus::touchpad";
375 asus
->tpd_led
.brightness_set
= tpd_led_set
;
376 asus
->tpd_led
.brightness_get
= tpd_led_get
;
377 asus
->tpd_led
.max_brightness
= 1;
379 rv
= led_classdev_register(&asus
->platform_device
->dev
, &asus
->tpd_led
);
381 destroy_workqueue(asus
->led_workqueue
);
388 static void asus_wmi_led_exit(struct asus_wmi
*asus
)
390 if (asus
->tpd_led
.dev
)
391 led_classdev_unregister(&asus
->tpd_led
);
392 if (asus
->led_workqueue
)
393 destroy_workqueue(asus
->led_workqueue
);
397 * PCI hotplug (for wlan rfkill)
399 static bool asus_wlan_rfkill_blocked(struct asus_wmi
*asus
)
401 int result
= asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_WLAN
);
408 static void asus_rfkill_hotplug(struct asus_wmi
*asus
)
416 mutex_lock(&asus
->wmi_lock
);
417 blocked
= asus_wlan_rfkill_blocked(asus
);
418 mutex_unlock(&asus
->wmi_lock
);
420 mutex_lock(&asus
->hotplug_lock
);
422 if (asus
->wlan
.rfkill
)
423 rfkill_set_sw_state(asus
->wlan
.rfkill
, blocked
);
425 if (asus
->hotplug_slot
) {
426 bus
= pci_find_bus(0, 1);
428 pr_warn("Unable to find PCI bus 1?\n");
432 if (pci_bus_read_config_dword(bus
, 0, PCI_VENDOR_ID
, &l
)) {
433 pr_err("Unable to read PCI config space?\n");
436 absent
= (l
== 0xffffffff);
438 if (blocked
!= absent
) {
439 pr_warn("BIOS says wireless lan is %s, "
440 "but the pci device is %s\n",
441 blocked
? "blocked" : "unblocked",
442 absent
? "absent" : "present");
443 pr_warn("skipped wireless hotplug as probably "
444 "inappropriate for this model\n");
449 dev
= pci_get_slot(bus
, 0);
451 /* Device already present */
455 dev
= pci_scan_single_device(bus
, 0);
457 pci_bus_assign_resources(bus
);
458 if (pci_bus_add_device(dev
))
459 pr_err("Unable to hotplug wifi\n");
462 dev
= pci_get_slot(bus
, 0);
464 pci_remove_bus_device(dev
);
471 mutex_unlock(&asus
->hotplug_lock
);
474 static void asus_rfkill_notify(acpi_handle handle
, u32 event
, void *data
)
476 struct asus_wmi
*asus
= data
;
478 if (event
!= ACPI_NOTIFY_BUS_CHECK
)
482 * We can't call directly asus_rfkill_hotplug because most
483 * of the time WMBC is still being executed and not reetrant.
484 * There is currently no way to tell ACPICA that we want this
485 * method to be serialized, we schedule a asus_rfkill_hotplug
486 * call later, in a safer context.
488 queue_work(asus
->hotplug_workqueue
, &asus
->hotplug_work
);
491 static int asus_register_rfkill_notifier(struct asus_wmi
*asus
, char *node
)
496 status
= acpi_get_handle(NULL
, node
, &handle
);
498 if (ACPI_SUCCESS(status
)) {
499 status
= acpi_install_notify_handler(handle
,
501 asus_rfkill_notify
, asus
);
502 if (ACPI_FAILURE(status
))
503 pr_warn("Failed to register notify on %s\n", node
);
510 static void asus_unregister_rfkill_notifier(struct asus_wmi
*asus
, char *node
)
512 acpi_status status
= AE_OK
;
515 status
= acpi_get_handle(NULL
, node
, &handle
);
517 if (ACPI_SUCCESS(status
)) {
518 status
= acpi_remove_notify_handler(handle
,
521 if (ACPI_FAILURE(status
))
522 pr_err("Error removing rfkill notify handler %s\n",
527 static int asus_get_adapter_status(struct hotplug_slot
*hotplug_slot
,
530 struct asus_wmi
*asus
= hotplug_slot
->private;
531 int result
= asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_WLAN
);
540 static void asus_cleanup_pci_hotplug(struct hotplug_slot
*hotplug_slot
)
542 kfree(hotplug_slot
->info
);
546 static struct hotplug_slot_ops asus_hotplug_slot_ops
= {
547 .owner
= THIS_MODULE
,
548 .get_adapter_status
= asus_get_adapter_status
,
549 .get_power_status
= asus_get_adapter_status
,
552 static void asus_hotplug_work(struct work_struct
*work
)
554 struct asus_wmi
*asus
;
556 asus
= container_of(work
, struct asus_wmi
, hotplug_work
);
557 asus_rfkill_hotplug(asus
);
560 static int asus_setup_pci_hotplug(struct asus_wmi
*asus
)
563 struct pci_bus
*bus
= pci_find_bus(0, 1);
566 pr_err("Unable to find wifi PCI bus\n");
570 asus
->hotplug_workqueue
=
571 create_singlethread_workqueue("hotplug_workqueue");
572 if (!asus
->hotplug_workqueue
)
573 goto error_workqueue
;
575 INIT_WORK(&asus
->hotplug_work
, asus_hotplug_work
);
577 asus
->hotplug_slot
= kzalloc(sizeof(struct hotplug_slot
), GFP_KERNEL
);
578 if (!asus
->hotplug_slot
)
581 asus
->hotplug_slot
->info
= kzalloc(sizeof(struct hotplug_slot_info
),
583 if (!asus
->hotplug_slot
->info
)
586 asus
->hotplug_slot
->private = asus
;
587 asus
->hotplug_slot
->release
= &asus_cleanup_pci_hotplug
;
588 asus
->hotplug_slot
->ops
= &asus_hotplug_slot_ops
;
589 asus_get_adapter_status(asus
->hotplug_slot
,
590 &asus
->hotplug_slot
->info
->adapter_status
);
592 ret
= pci_hp_register(asus
->hotplug_slot
, bus
, 0, "asus-wifi");
594 pr_err("Unable to register hotplug slot - %d\n", ret
);
601 kfree(asus
->hotplug_slot
->info
);
603 kfree(asus
->hotplug_slot
);
604 asus
->hotplug_slot
= NULL
;
606 destroy_workqueue(asus
->hotplug_workqueue
);
614 static int asus_rfkill_set(void *data
, bool blocked
)
616 struct asus_rfkill
*priv
= data
;
617 u32 ctrl_param
= !blocked
;
619 return asus_wmi_set_devstate(priv
->dev_id
, ctrl_param
, NULL
);
622 static void asus_rfkill_query(struct rfkill
*rfkill
, void *data
)
624 struct asus_rfkill
*priv
= data
;
627 result
= asus_wmi_get_devstate_simple(priv
->asus
, priv
->dev_id
);
632 rfkill_set_sw_state(priv
->rfkill
, !result
);
635 static int asus_rfkill_wlan_set(void *data
, bool blocked
)
637 struct asus_rfkill
*priv
= data
;
638 struct asus_wmi
*asus
= priv
->asus
;
642 * This handler is enabled only if hotplug is enabled.
643 * In this case, the asus_wmi_set_devstate() will
644 * trigger a wmi notification and we need to wait
645 * this call to finish before being able to call
648 mutex_lock(&asus
->wmi_lock
);
649 ret
= asus_rfkill_set(data
, blocked
);
650 mutex_unlock(&asus
->wmi_lock
);
654 static const struct rfkill_ops asus_rfkill_wlan_ops
= {
655 .set_block
= asus_rfkill_wlan_set
,
656 .query
= asus_rfkill_query
,
659 static const struct rfkill_ops asus_rfkill_ops
= {
660 .set_block
= asus_rfkill_set
,
661 .query
= asus_rfkill_query
,
664 static int asus_new_rfkill(struct asus_wmi
*asus
,
665 struct asus_rfkill
*arfkill
,
666 const char *name
, enum rfkill_type type
, int dev_id
)
668 int result
= asus_wmi_get_devstate_simple(asus
, dev_id
);
669 struct rfkill
**rfkill
= &arfkill
->rfkill
;
674 arfkill
->dev_id
= dev_id
;
675 arfkill
->asus
= asus
;
677 if (dev_id
== ASUS_WMI_DEVID_WLAN
&& asus
->driver
->hotplug_wireless
)
678 *rfkill
= rfkill_alloc(name
, &asus
->platform_device
->dev
, type
,
679 &asus_rfkill_wlan_ops
, arfkill
);
681 *rfkill
= rfkill_alloc(name
, &asus
->platform_device
->dev
, type
,
682 &asus_rfkill_ops
, arfkill
);
687 rfkill_init_sw_state(*rfkill
, !result
);
688 result
= rfkill_register(*rfkill
);
690 rfkill_destroy(*rfkill
);
697 static void asus_wmi_rfkill_exit(struct asus_wmi
*asus
)
699 asus_unregister_rfkill_notifier(asus
, "\\_SB.PCI0.P0P5");
700 asus_unregister_rfkill_notifier(asus
, "\\_SB.PCI0.P0P6");
701 asus_unregister_rfkill_notifier(asus
, "\\_SB.PCI0.P0P7");
702 if (asus
->wlan
.rfkill
) {
703 rfkill_unregister(asus
->wlan
.rfkill
);
704 rfkill_destroy(asus
->wlan
.rfkill
);
705 asus
->wlan
.rfkill
= NULL
;
708 * Refresh pci hotplug in case the rfkill state was changed after
709 * asus_unregister_rfkill_notifier()
711 asus_rfkill_hotplug(asus
);
712 if (asus
->hotplug_slot
)
713 pci_hp_deregister(asus
->hotplug_slot
);
714 if (asus
->hotplug_workqueue
)
715 destroy_workqueue(asus
->hotplug_workqueue
);
717 if (asus
->bluetooth
.rfkill
) {
718 rfkill_unregister(asus
->bluetooth
.rfkill
);
719 rfkill_destroy(asus
->bluetooth
.rfkill
);
720 asus
->bluetooth
.rfkill
= NULL
;
722 if (asus
->wimax
.rfkill
) {
723 rfkill_unregister(asus
->wimax
.rfkill
);
724 rfkill_destroy(asus
->wimax
.rfkill
);
725 asus
->wimax
.rfkill
= NULL
;
727 if (asus
->wwan3g
.rfkill
) {
728 rfkill_unregister(asus
->wwan3g
.rfkill
);
729 rfkill_destroy(asus
->wwan3g
.rfkill
);
730 asus
->wwan3g
.rfkill
= NULL
;
734 static int asus_wmi_rfkill_init(struct asus_wmi
*asus
)
738 mutex_init(&asus
->hotplug_lock
);
739 mutex_init(&asus
->wmi_lock
);
741 result
= asus_new_rfkill(asus
, &asus
->wlan
, "asus-wlan",
742 RFKILL_TYPE_WLAN
, ASUS_WMI_DEVID_WLAN
);
744 if (result
&& result
!= -ENODEV
)
747 result
= asus_new_rfkill(asus
, &asus
->bluetooth
,
748 "asus-bluetooth", RFKILL_TYPE_BLUETOOTH
,
749 ASUS_WMI_DEVID_BLUETOOTH
);
751 if (result
&& result
!= -ENODEV
)
754 result
= asus_new_rfkill(asus
, &asus
->wimax
, "asus-wimax",
755 RFKILL_TYPE_WIMAX
, ASUS_WMI_DEVID_WIMAX
);
757 if (result
&& result
!= -ENODEV
)
760 result
= asus_new_rfkill(asus
, &asus
->wwan3g
, "asus-wwan3g",
761 RFKILL_TYPE_WWAN
, ASUS_WMI_DEVID_WWAN3G
);
763 if (result
&& result
!= -ENODEV
)
766 if (!asus
->driver
->hotplug_wireless
)
769 result
= asus_setup_pci_hotplug(asus
);
771 * If we get -EBUSY then something else is handling the PCI hotplug -
772 * don't fail in this case
774 if (result
== -EBUSY
)
777 asus_register_rfkill_notifier(asus
, "\\_SB.PCI0.P0P5");
778 asus_register_rfkill_notifier(asus
, "\\_SB.PCI0.P0P6");
779 asus_register_rfkill_notifier(asus
, "\\_SB.PCI0.P0P7");
781 * Refresh pci hotplug in case the rfkill state was changed during
784 asus_rfkill_hotplug(asus
);
787 if (result
&& result
!= -ENODEV
)
788 asus_wmi_rfkill_exit(asus
);
790 if (result
== -ENODEV
)
799 static ssize_t
asus_hwmon_pwm1(struct device
*dev
,
800 struct device_attribute
*attr
,
803 struct asus_wmi
*asus
= dev_get_drvdata(dev
);
807 err
= asus_wmi_get_devstate(asus
, ASUS_WMI_DEVID_FAN_CTRL
, &value
);
814 if (value
== 1) /* Low Speed */
820 else if (value
!= 0) {
821 pr_err("Unknown fan speed %#x", value
);
825 return sprintf(buf
, "%d\n", value
);
828 static SENSOR_DEVICE_ATTR(pwm1
, S_IRUGO
, asus_hwmon_pwm1
, NULL
, 0);
831 show_name(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
833 return sprintf(buf
, "asus\n");
835 static SENSOR_DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
, 0);
837 static struct attribute
*hwmon_attributes
[] = {
838 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
839 &sensor_dev_attr_name
.dev_attr
.attr
,
843 static mode_t
asus_hwmon_sysfs_is_visible(struct kobject
*kobj
,
844 struct attribute
*attr
, int idx
)
846 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
847 struct platform_device
*pdev
= to_platform_device(dev
->parent
);
848 struct asus_wmi
*asus
= platform_get_drvdata(pdev
);
851 u32 value
= ASUS_WMI_UNSUPPORTED_METHOD
;
853 if (attr
== &sensor_dev_attr_pwm1
.dev_attr
.attr
)
854 dev_id
= ASUS_WMI_DEVID_FAN_CTRL
;
857 int err
= asus_wmi_get_devstate(asus
, dev_id
, &value
);
863 if (dev_id
== ASUS_WMI_DEVID_FAN_CTRL
) {
865 * We need to find a better way, probably using sfun,
867 * Currently we disable it if:
868 * - ASUS_WMI_UNSUPPORTED_METHOD is returned
869 * - reverved bits are non-zero
870 * - sfun and presence bit are not set
872 if (value
== ASUS_WMI_UNSUPPORTED_METHOD
|| value
& 0xFFF80000
873 || (!asus
->sfun
&& !(value
& ASUS_WMI_DSTS_PRESENCE_BIT
)))
877 return ok
? attr
->mode
: 0;
880 static struct attribute_group hwmon_attribute_group
= {
881 .is_visible
= asus_hwmon_sysfs_is_visible
,
882 .attrs
= hwmon_attributes
885 static void asus_wmi_hwmon_exit(struct asus_wmi
*asus
)
887 struct device
*hwmon
;
889 hwmon
= asus
->hwmon_device
;
892 sysfs_remove_group(&hwmon
->kobj
, &hwmon_attribute_group
);
893 hwmon_device_unregister(hwmon
);
894 asus
->hwmon_device
= NULL
;
897 static int asus_wmi_hwmon_init(struct asus_wmi
*asus
)
899 struct device
*hwmon
;
902 hwmon
= hwmon_device_register(&asus
->platform_device
->dev
);
904 pr_err("Could not register asus hwmon device\n");
905 return PTR_ERR(hwmon
);
907 dev_set_drvdata(hwmon
, asus
);
908 asus
->hwmon_device
= hwmon
;
909 result
= sysfs_create_group(&hwmon
->kobj
, &hwmon_attribute_group
);
911 asus_wmi_hwmon_exit(asus
);
918 static int read_backlight_power(struct asus_wmi
*asus
)
920 int ret
= asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_BACKLIGHT
);
925 return ret
? FB_BLANK_UNBLANK
: FB_BLANK_POWERDOWN
;
928 static int read_brightness_max(struct asus_wmi
*asus
)
933 err
= asus_wmi_get_devstate(asus
, ASUS_WMI_DEVID_BRIGHTNESS
, &retval
);
938 retval
= retval
& ASUS_WMI_DSTS_MAX_BRIGTH_MASK
;
947 static int read_brightness(struct backlight_device
*bd
)
949 struct asus_wmi
*asus
= bl_get_data(bd
);
953 err
= asus_wmi_get_devstate(asus
, ASUS_WMI_DEVID_BRIGHTNESS
, &retval
);
958 return retval
& ASUS_WMI_DSTS_BRIGHTNESS_MASK
;
961 static int update_bl_status(struct backlight_device
*bd
)
963 struct asus_wmi
*asus
= bl_get_data(bd
);
967 ctrl_param
= bd
->props
.brightness
;
969 err
= asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS
,
975 power
= read_backlight_power(asus
);
976 if (power
!= -ENODEV
&& bd
->props
.power
!= power
) {
977 ctrl_param
= !!(bd
->props
.power
== FB_BLANK_UNBLANK
);
978 err
= asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT
,
984 static const struct backlight_ops asus_wmi_bl_ops
= {
985 .get_brightness
= read_brightness
,
986 .update_status
= update_bl_status
,
989 static int asus_wmi_backlight_notify(struct asus_wmi
*asus
, int code
)
991 struct backlight_device
*bd
= asus
->backlight_device
;
992 int old
= bd
->props
.brightness
;
995 if (code
>= NOTIFY_BRNUP_MIN
&& code
<= NOTIFY_BRNUP_MAX
)
996 new = code
- NOTIFY_BRNUP_MIN
+ 1;
997 else if (code
>= NOTIFY_BRNDOWN_MIN
&& code
<= NOTIFY_BRNDOWN_MAX
)
998 new = code
- NOTIFY_BRNDOWN_MIN
;
1000 bd
->props
.brightness
= new;
1001 backlight_update_status(bd
);
1002 backlight_force_update(bd
, BACKLIGHT_UPDATE_HOTKEY
);
1007 static int asus_wmi_backlight_init(struct asus_wmi
*asus
)
1009 struct backlight_device
*bd
;
1010 struct backlight_properties props
;
1014 max
= read_brightness_max(asus
);
1021 power
= read_backlight_power(asus
);
1023 if (power
== -ENODEV
)
1024 power
= FB_BLANK_UNBLANK
;
1028 memset(&props
, 0, sizeof(struct backlight_properties
));
1029 props
.type
= BACKLIGHT_PLATFORM
;
1030 props
.max_brightness
= max
;
1031 bd
= backlight_device_register(asus
->driver
->name
,
1032 &asus
->platform_device
->dev
, asus
,
1033 &asus_wmi_bl_ops
, &props
);
1035 pr_err("Could not register backlight device\n");
1039 asus
->backlight_device
= bd
;
1041 bd
->props
.brightness
= read_brightness(bd
);
1042 bd
->props
.power
= power
;
1043 backlight_update_status(bd
);
1048 static void asus_wmi_backlight_exit(struct asus_wmi
*asus
)
1050 if (asus
->backlight_device
)
1051 backlight_device_unregister(asus
->backlight_device
);
1053 asus
->backlight_device
= NULL
;
1056 static void asus_wmi_notify(u32 value
, void *context
)
1058 struct asus_wmi
*asus
= context
;
1059 struct acpi_buffer response
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1060 union acpi_object
*obj
;
1065 status
= wmi_get_event_data(value
, &response
);
1066 if (status
!= AE_OK
) {
1067 pr_err("bad event status 0x%x\n", status
);
1071 obj
= (union acpi_object
*)response
.pointer
;
1073 if (!obj
|| obj
->type
!= ACPI_TYPE_INTEGER
)
1076 code
= obj
->integer
.value
;
1079 if (code
>= NOTIFY_BRNUP_MIN
&& code
<= NOTIFY_BRNUP_MAX
)
1080 code
= NOTIFY_BRNUP_MIN
;
1081 else if (code
>= NOTIFY_BRNDOWN_MIN
&&
1082 code
<= NOTIFY_BRNDOWN_MAX
)
1083 code
= NOTIFY_BRNDOWN_MIN
;
1085 if (code
== NOTIFY_BRNUP_MIN
|| code
== NOTIFY_BRNDOWN_MIN
) {
1086 if (!acpi_video_backlight_support())
1087 asus_wmi_backlight_notify(asus
, orig_code
);
1088 } else if (!sparse_keymap_report_event(asus
->inputdev
, code
, 1, true))
1089 pr_info("Unknown key %x pressed\n", code
);
1098 static int parse_arg(const char *buf
, unsigned long count
, int *val
)
1102 if (sscanf(buf
, "%i", val
) != 1)
1107 static ssize_t
store_sys_wmi(struct asus_wmi
*asus
, int devid
,
1108 const char *buf
, size_t count
)
1113 value
= asus_wmi_get_devstate_simple(asus
, devid
);
1114 if (value
== -ENODEV
) /* Check device presence */
1117 rv
= parse_arg(buf
, count
, &value
);
1118 err
= asus_wmi_set_devstate(devid
, value
, &retval
);
1126 static ssize_t
show_sys_wmi(struct asus_wmi
*asus
, int devid
, char *buf
)
1128 int value
= asus_wmi_get_devstate_simple(asus
, devid
);
1133 return sprintf(buf
, "%d\n", value
);
1136 #define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \
1137 static ssize_t show_##_name(struct device *dev, \
1138 struct device_attribute *attr, \
1141 struct asus_wmi *asus = dev_get_drvdata(dev); \
1143 return show_sys_wmi(asus, _cm, buf); \
1145 static ssize_t store_##_name(struct device *dev, \
1146 struct device_attribute *attr, \
1147 const char *buf, size_t count) \
1149 struct asus_wmi *asus = dev_get_drvdata(dev); \
1151 return store_sys_wmi(asus, _cm, buf, count); \
1153 static struct device_attribute dev_attr_##_name = { \
1155 .name = __stringify(_name), \
1157 .show = show_##_name, \
1158 .store = store_##_name, \
1161 ASUS_WMI_CREATE_DEVICE_ATTR(touchpad
, 0644, ASUS_WMI_DEVID_TOUCHPAD
);
1162 ASUS_WMI_CREATE_DEVICE_ATTR(camera
, 0644, ASUS_WMI_DEVID_CAMERA
);
1163 ASUS_WMI_CREATE_DEVICE_ATTR(cardr
, 0644, ASUS_WMI_DEVID_CARDREADER
);
1165 static ssize_t
store_cpufv(struct device
*dev
, struct device_attribute
*attr
,
1166 const char *buf
, size_t count
)
1170 if (!count
|| sscanf(buf
, "%i", &value
) != 1)
1172 if (value
< 0 || value
> 2)
1175 rv
= asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS
, value
, 0, NULL
);
1182 static DEVICE_ATTR(cpufv
, S_IRUGO
| S_IWUSR
, NULL
, store_cpufv
);
1184 static struct attribute
*platform_attributes
[] = {
1185 &dev_attr_cpufv
.attr
,
1186 &dev_attr_camera
.attr
,
1187 &dev_attr_cardr
.attr
,
1188 &dev_attr_touchpad
.attr
,
1192 static mode_t
asus_sysfs_is_visible(struct kobject
*kobj
,
1193 struct attribute
*attr
, int idx
)
1195 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1196 struct platform_device
*pdev
= to_platform_device(dev
);
1197 struct asus_wmi
*asus
= platform_get_drvdata(pdev
);
1201 if (attr
== &dev_attr_camera
.attr
)
1202 devid
= ASUS_WMI_DEVID_CAMERA
;
1203 else if (attr
== &dev_attr_cardr
.attr
)
1204 devid
= ASUS_WMI_DEVID_CARDREADER
;
1205 else if (attr
== &dev_attr_touchpad
.attr
)
1206 devid
= ASUS_WMI_DEVID_TOUCHPAD
;
1209 ok
= !(asus_wmi_get_devstate_simple(asus
, devid
) < 0);
1211 return ok
? attr
->mode
: 0;
1214 static struct attribute_group platform_attribute_group
= {
1215 .is_visible
= asus_sysfs_is_visible
,
1216 .attrs
= platform_attributes
1219 static void asus_wmi_sysfs_exit(struct platform_device
*device
)
1221 sysfs_remove_group(&device
->dev
.kobj
, &platform_attribute_group
);
1224 static int asus_wmi_sysfs_init(struct platform_device
*device
)
1226 return sysfs_create_group(&device
->dev
.kobj
, &platform_attribute_group
);
1232 static int asus_wmi_platform_init(struct asus_wmi
*asus
)
1236 /* INIT enable hotkeys on some models */
1237 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_INIT
, 0, 0, &rv
))
1238 pr_info("Initialization: %#x", rv
);
1240 /* We don't know yet what to do with this version... */
1241 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC
, 0, 0x9, &rv
)) {
1242 pr_info("BIOS WMI version: %d.%d", rv
>> 8, rv
& 0xFF);
1247 * The SFUN method probably allows the original driver to get the list
1248 * of features supported by a given model. For now, 0x0100 or 0x0800
1249 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
1250 * The significance of others is yet to be found.
1252 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SFUN
, 0, 0, &rv
)) {
1253 pr_info("SFUN value: %#x", rv
);
1258 * Eee PC and Notebooks seems to have different method_id for DSTS,
1259 * but it may also be related to the BIOS's SPEC.
1260 * Note, on most Eeepc, there is no way to check if a method exist
1261 * or note, while on notebooks, they returns 0xFFFFFFFE on failure,
1262 * but once again, SPEC may probably be used for that kind of things.
1264 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS
, 0, 0, NULL
))
1265 asus
->dsts_id
= ASUS_WMI_METHODID_DSTS
;
1266 else if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS2
, 0, 0, NULL
))
1267 asus
->dsts_id
= ASUS_WMI_METHODID_DSTS2
;
1269 if (!asus
->dsts_id
) {
1270 pr_err("Can't find DSTS");
1274 return asus_wmi_sysfs_init(asus
->platform_device
);
1277 static void asus_wmi_platform_exit(struct asus_wmi
*asus
)
1279 asus_wmi_sysfs_exit(asus
->platform_device
);
1285 struct asus_wmi_debugfs_node
{
1286 struct asus_wmi
*asus
;
1288 int (*show
) (struct seq_file
*m
, void *data
);
1291 static int show_dsts(struct seq_file
*m
, void *data
)
1293 struct asus_wmi
*asus
= m
->private;
1297 err
= asus_wmi_get_devstate(asus
, asus
->debug
.dev_id
, &retval
);
1302 seq_printf(m
, "DSTS(%#x) = %#x\n", asus
->debug
.dev_id
, retval
);
1307 static int show_devs(struct seq_file
*m
, void *data
)
1309 struct asus_wmi
*asus
= m
->private;
1313 err
= asus_wmi_set_devstate(asus
->debug
.dev_id
, asus
->debug
.ctrl_param
,
1319 seq_printf(m
, "DEVS(%#x, %#x) = %#x\n", asus
->debug
.dev_id
,
1320 asus
->debug
.ctrl_param
, retval
);
1325 static int show_call(struct seq_file
*m
, void *data
)
1327 struct asus_wmi
*asus
= m
->private;
1328 struct bios_args args
= {
1329 .arg0
= asus
->debug
.dev_id
,
1330 .arg1
= asus
->debug
.ctrl_param
,
1332 struct acpi_buffer input
= { (acpi_size
) sizeof(args
), &args
};
1333 struct acpi_buffer output
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1334 union acpi_object
*obj
;
1337 status
= wmi_evaluate_method(ASUS_WMI_MGMT_GUID
,
1338 1, asus
->debug
.method_id
,
1341 if (ACPI_FAILURE(status
))
1344 obj
= (union acpi_object
*)output
.pointer
;
1345 if (obj
&& obj
->type
== ACPI_TYPE_INTEGER
)
1346 seq_printf(m
, "%#x(%#x, %#x) = %#x\n", asus
->debug
.method_id
,
1347 asus
->debug
.dev_id
, asus
->debug
.ctrl_param
,
1348 (u32
) obj
->integer
.value
);
1350 seq_printf(m
, "%#x(%#x, %#x) = t:%d\n", asus
->debug
.method_id
,
1351 asus
->debug
.dev_id
, asus
->debug
.ctrl_param
,
1352 obj
? obj
->type
: -1);
1359 static struct asus_wmi_debugfs_node asus_wmi_debug_files
[] = {
1360 {NULL
, "devs", show_devs
},
1361 {NULL
, "dsts", show_dsts
},
1362 {NULL
, "call", show_call
},
1365 static int asus_wmi_debugfs_open(struct inode
*inode
, struct file
*file
)
1367 struct asus_wmi_debugfs_node
*node
= inode
->i_private
;
1369 return single_open(file
, node
->show
, node
->asus
);
1372 static const struct file_operations asus_wmi_debugfs_io_ops
= {
1373 .owner
= THIS_MODULE
,
1374 .open
= asus_wmi_debugfs_open
,
1376 .llseek
= seq_lseek
,
1377 .release
= single_release
,
1380 static void asus_wmi_debugfs_exit(struct asus_wmi
*asus
)
1382 debugfs_remove_recursive(asus
->debug
.root
);
1385 static int asus_wmi_debugfs_init(struct asus_wmi
*asus
)
1387 struct dentry
*dent
;
1390 asus
->debug
.root
= debugfs_create_dir(asus
->driver
->name
, NULL
);
1391 if (!asus
->debug
.root
) {
1392 pr_err("failed to create debugfs directory");
1396 dent
= debugfs_create_x32("method_id", S_IRUGO
| S_IWUSR
,
1397 asus
->debug
.root
, &asus
->debug
.method_id
);
1401 dent
= debugfs_create_x32("dev_id", S_IRUGO
| S_IWUSR
,
1402 asus
->debug
.root
, &asus
->debug
.dev_id
);
1406 dent
= debugfs_create_x32("ctrl_param", S_IRUGO
| S_IWUSR
,
1407 asus
->debug
.root
, &asus
->debug
.ctrl_param
);
1411 for (i
= 0; i
< ARRAY_SIZE(asus_wmi_debug_files
); i
++) {
1412 struct asus_wmi_debugfs_node
*node
= &asus_wmi_debug_files
[i
];
1415 dent
= debugfs_create_file(node
->name
, S_IFREG
| S_IRUGO
,
1416 asus
->debug
.root
, node
,
1417 &asus_wmi_debugfs_io_ops
);
1419 pr_err("failed to create debug file: %s\n", node
->name
);
1427 asus_wmi_debugfs_exit(asus
);
1434 static int asus_wmi_add(struct platform_device
*pdev
)
1436 struct platform_driver
*pdrv
= to_platform_driver(pdev
->dev
.driver
);
1437 struct asus_wmi_driver
*wdrv
= to_asus_wmi_driver(pdrv
);
1438 struct asus_wmi
*asus
;
1442 asus
= kzalloc(sizeof(struct asus_wmi
), GFP_KERNEL
);
1446 asus
->driver
= wdrv
;
1447 asus
->platform_device
= pdev
;
1448 wdrv
->platform_device
= pdev
;
1449 platform_set_drvdata(asus
->platform_device
, asus
);
1452 wdrv
->quirks(asus
->driver
);
1454 err
= asus_wmi_platform_init(asus
);
1458 err
= asus_wmi_input_init(asus
);
1462 err
= asus_wmi_hwmon_init(asus
);
1466 err
= asus_wmi_led_init(asus
);
1470 err
= asus_wmi_rfkill_init(asus
);
1474 if (!acpi_video_backlight_support()) {
1475 err
= asus_wmi_backlight_init(asus
);
1476 if (err
&& err
!= -ENODEV
)
1477 goto fail_backlight
;
1479 pr_info("Backlight controlled by ACPI video driver\n");
1481 status
= wmi_install_notify_handler(asus
->driver
->event_guid
,
1482 asus_wmi_notify
, asus
);
1483 if (ACPI_FAILURE(status
)) {
1484 pr_err("Unable to register notify handler - %d\n", status
);
1486 goto fail_wmi_handler
;
1489 err
= asus_wmi_debugfs_init(asus
);
1496 wmi_remove_notify_handler(asus
->driver
->event_guid
);
1498 asus_wmi_backlight_exit(asus
);
1500 asus_wmi_rfkill_exit(asus
);
1502 asus_wmi_led_exit(asus
);
1504 asus_wmi_hwmon_exit(asus
);
1506 asus_wmi_input_exit(asus
);
1508 asus_wmi_platform_exit(asus
);
1514 static int asus_wmi_remove(struct platform_device
*device
)
1516 struct asus_wmi
*asus
;
1518 asus
= platform_get_drvdata(device
);
1519 wmi_remove_notify_handler(asus
->driver
->event_guid
);
1520 asus_wmi_backlight_exit(asus
);
1521 asus_wmi_input_exit(asus
);
1522 asus_wmi_hwmon_exit(asus
);
1523 asus_wmi_led_exit(asus
);
1524 asus_wmi_rfkill_exit(asus
);
1525 asus_wmi_debugfs_exit(asus
);
1526 asus_wmi_platform_exit(asus
);
1533 * Platform driver - hibernate/resume callbacks
1535 static int asus_hotk_thaw(struct device
*device
)
1537 struct asus_wmi
*asus
= dev_get_drvdata(device
);
1539 if (asus
->wlan
.rfkill
) {
1543 * Work around bios bug - acpi _PTS turns off the wireless led
1544 * during suspend. Normally it restores it on resume, but
1545 * we should kick it ourselves in case hibernation is aborted.
1547 wlan
= asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_WLAN
);
1548 asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN
, wlan
, NULL
);
1554 static int asus_hotk_restore(struct device
*device
)
1556 struct asus_wmi
*asus
= dev_get_drvdata(device
);
1559 /* Refresh both wlan rfkill state and pci hotplug */
1560 if (asus
->wlan
.rfkill
)
1561 asus_rfkill_hotplug(asus
);
1563 if (asus
->bluetooth
.rfkill
) {
1564 bl
= !asus_wmi_get_devstate_simple(asus
,
1565 ASUS_WMI_DEVID_BLUETOOTH
);
1566 rfkill_set_sw_state(asus
->bluetooth
.rfkill
, bl
);
1568 if (asus
->wimax
.rfkill
) {
1569 bl
= !asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_WIMAX
);
1570 rfkill_set_sw_state(asus
->wimax
.rfkill
, bl
);
1572 if (asus
->wwan3g
.rfkill
) {
1573 bl
= !asus_wmi_get_devstate_simple(asus
, ASUS_WMI_DEVID_WWAN3G
);
1574 rfkill_set_sw_state(asus
->wwan3g
.rfkill
, bl
);
1580 static const struct dev_pm_ops asus_pm_ops
= {
1581 .thaw
= asus_hotk_thaw
,
1582 .restore
= asus_hotk_restore
,
1585 static int asus_wmi_probe(struct platform_device
*pdev
)
1587 struct platform_driver
*pdrv
= to_platform_driver(pdev
->dev
.driver
);
1588 struct asus_wmi_driver
*wdrv
= to_asus_wmi_driver(pdrv
);
1591 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID
)) {
1592 pr_warn("Management GUID not found\n");
1596 if (wdrv
->event_guid
&& !wmi_has_guid(wdrv
->event_guid
)) {
1597 pr_warn("Event GUID not found\n");
1602 ret
= wdrv
->probe(pdev
);
1607 return asus_wmi_add(pdev
);
1612 int asus_wmi_register_driver(struct asus_wmi_driver
*driver
)
1614 struct platform_driver
*platform_driver
;
1615 struct platform_device
*platform_device
;
1620 platform_driver
= &driver
->platform_driver
;
1621 platform_driver
->remove
= asus_wmi_remove
;
1622 platform_driver
->driver
.owner
= driver
->owner
;
1623 platform_driver
->driver
.name
= driver
->name
;
1624 platform_driver
->driver
.pm
= &asus_pm_ops
;
1626 platform_device
= platform_create_bundle(platform_driver
,
1629 if (IS_ERR(platform_device
))
1630 return PTR_ERR(platform_device
);
1635 EXPORT_SYMBOL_GPL(asus_wmi_register_driver
);
1637 void asus_wmi_unregister_driver(struct asus_wmi_driver
*driver
)
1639 platform_device_unregister(driver
->platform_device
);
1640 platform_driver_unregister(&driver
->platform_driver
);
1643 EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver
);
1645 static int __init
asus_wmi_init(void)
1647 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID
)) {
1648 pr_info("Asus Management GUID not found");
1652 pr_info("ASUS WMI generic driver loaded");
1656 static void __exit
asus_wmi_exit(void)
1658 pr_info("ASUS WMI generic driver unloaded");
1661 module_init(asus_wmi_init
);
1662 module_exit(asus_wmi_exit
);