fd5b08eecf1ef957d69f916ff87c2e867819bb65
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / platform / x86 / asus-wmi.c
1 /*
2  * Asus PC WMI hotkey driver
3  *
4  * Copyright(C) 2010 Intel Corporation.
5  * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com>
6  *
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>
11  *
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.
16  *
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.
21  *
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
25  */
26
27 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28
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>
36 #include <linux/fb.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/debugfs.h>
43 #include <linux/seq_file.h>
44 #include <linux/platform_device.h>
45 #include <acpi/acpi_bus.h>
46 #include <acpi/acpi_drivers.h>
47
48 #include "asus-wmi.h"
49
50 MODULE_AUTHOR("Corentin Chary <corentincj@iksaif.net>, "
51               "Yong Wang <yong.y.wang@intel.com>");
52 MODULE_DESCRIPTION("Asus Generic WMI Driver");
53 MODULE_LICENSE("GPL");
54
55 #define to_platform_driver(drv)                                 \
56         (container_of((drv), struct platform_driver, driver))
57
58 #define to_asus_wmi_driver(pdrv)                                        \
59         (container_of((pdrv), struct asus_wmi_driver, platform_driver))
60
61 #define ASUS_WMI_MGMT_GUID      "97845ED0-4E6D-11DE-8A39-0800200C9A66"
62
63 #define NOTIFY_BRNUP_MIN                0x11
64 #define NOTIFY_BRNUP_MAX                0x1f
65 #define NOTIFY_BRNDOWN_MIN              0x20
66 #define NOTIFY_BRNDOWN_MAX              0x2e
67
68 /* WMI Methods */
69 #define ASUS_WMI_METHODID_DSTS          0x53544344
70 #define ASUS_WMI_METHODID_DSTS2         0x53545344
71 #define ASUS_WMI_METHODID_DEVS          0x53564544
72 #define ASUS_WMI_METHODID_CFVS          0x53564643
73
74 #define ASUS_WMI_UNSUPPORTED_METHOD     0xFFFFFFFE
75
76 /* Wireless */
77 #define ASUS_WMI_DEVID_WLAN             0x00010011
78 #define ASUS_WMI_DEVID_BLUETOOTH        0x00010013
79 #define ASUS_WMI_DEVID_WIMAX            0x00010017
80 #define ASUS_WMI_DEVID_WWAN3G           0x00010019
81
82 /* Backlight and Brightness */
83 #define ASUS_WMI_DEVID_BACKLIGHT        0x00050011
84 #define ASUS_WMI_DEVID_BRIGHTNESS       0x00050012
85
86 /* Misc */
87 #define ASUS_WMI_DEVID_CAMERA           0x00060013
88
89 /* Storage */
90 #define ASUS_WMI_DEVID_CARDREADER       0x00080013
91
92 /* Input */
93 #define ASUS_WMI_DEVID_TOUCHPAD         0x00100011
94 #define ASUS_WMI_DEVID_TOUCHPAD_LED     0x00100012
95
96 /* DSTS masks */
97 #define ASUS_WMI_DSTS_STATUS_BIT        0x00000001
98 #define ASUS_WMI_DSTS_UNKNOWN_BIT       0x00000002
99 #define ASUS_WMI_DSTS_PRESENCE_BIT      0x00010000
100 #define ASUS_WMI_DSTS_BRIGHTNESS_MASK   0x000000FF
101 #define ASUS_WMI_DSTS_MAX_BRIGTH_MASK   0x0000FF00
102
103 struct bios_args {
104         u32 arg0;
105         u32 arg1;
106 } __packed;
107
108 /*
109  * <platform>/    - debugfs root directory
110  *   dev_id      - current dev_id
111  *   ctrl_param  - current ctrl_param
112  *   devs        - call DEVS(dev_id, ctrl_param) and print result
113  *   dsts        - call DSTS(dev_id)  and print result
114  */
115 struct asus_wmi_debug {
116         struct dentry *root;
117         u32 dev_id;
118         u32 ctrl_param;
119 };
120
121 struct asus_rfkill {
122         struct asus_wmi *asus;
123         struct rfkill *rfkill;
124         u32 dev_id;
125 };
126
127 struct asus_wmi {
128         int dsts_id;
129
130         struct input_dev *inputdev;
131         struct backlight_device *backlight_device;
132         struct platform_device *platform_device;
133
134         struct led_classdev tpd_led;
135         int tpd_led_wk;
136         struct workqueue_struct *led_workqueue;
137         struct work_struct tpd_led_work;
138
139         struct asus_rfkill wlan;
140         struct asus_rfkill bluetooth;
141         struct asus_rfkill wimax;
142         struct asus_rfkill wwan3g;
143
144         struct hotplug_slot *hotplug_slot;
145         struct mutex hotplug_lock;
146         struct mutex wmi_lock;
147         struct workqueue_struct *hotplug_workqueue;
148         struct work_struct hotplug_work;
149
150         struct asus_wmi_debug debug;
151
152         struct asus_wmi_driver *driver;
153 };
154
155 static int asus_wmi_input_init(struct asus_wmi *asus)
156 {
157         int err;
158
159         asus->inputdev = input_allocate_device();
160         if (!asus->inputdev)
161                 return -ENOMEM;
162
163         asus->inputdev->name = asus->driver->input_phys;
164         asus->inputdev->phys = asus->driver->input_name;
165         asus->inputdev->id.bustype = BUS_HOST;
166         asus->inputdev->dev.parent = &asus->platform_device->dev;
167
168         err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL);
169         if (err)
170                 goto err_free_dev;
171
172         err = input_register_device(asus->inputdev);
173         if (err)
174                 goto err_free_keymap;
175
176         return 0;
177
178 err_free_keymap:
179         sparse_keymap_free(asus->inputdev);
180 err_free_dev:
181         input_free_device(asus->inputdev);
182         return err;
183 }
184
185 static void asus_wmi_input_exit(struct asus_wmi *asus)
186 {
187         if (asus->inputdev) {
188                 sparse_keymap_free(asus->inputdev);
189                 input_unregister_device(asus->inputdev);
190         }
191
192         asus->inputdev = NULL;
193 }
194
195 static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1,
196                                     u32 *retval)
197 {
198         struct bios_args args = {
199                 .arg0 = arg0,
200                 .arg1 = arg1,
201         };
202         struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
203         struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
204         acpi_status status;
205         union acpi_object *obj;
206         u32 tmp;
207
208         status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 1, method_id,
209                                      &input, &output);
210
211         if (ACPI_FAILURE(status))
212                 goto exit;
213
214         obj = (union acpi_object *)output.pointer;
215         if (obj && obj->type == ACPI_TYPE_INTEGER)
216                 tmp = (u32) obj->integer.value;
217         else
218                 tmp = 0;
219
220         if (retval)
221                 *retval = tmp;
222
223         kfree(obj);
224
225 exit:
226         if (ACPI_FAILURE(status))
227                 return -EIO;
228
229         if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
230                 return -ENODEV;
231
232         return 0;
233 }
234
235 static int asus_wmi_get_devstate(struct asus_wmi *asus, u32 dev_id, u32 *retval)
236 {
237         return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval);
238 }
239
240 static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param,
241                                  u32 *retval)
242 {
243         return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id,
244                                         ctrl_param, retval);
245 }
246
247 /* Helper for special devices with magic return codes */
248 static int asus_wmi_get_devstate_bits(struct asus_wmi *asus,
249                                       u32 dev_id, u32 mask)
250 {
251         u32 retval = 0;
252         int err;
253
254         err = asus_wmi_get_devstate(asus, dev_id, &retval);
255
256         if (err < 0)
257                 return err;
258
259         if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT))
260                 return -ENODEV;
261
262         if (mask == ASUS_WMI_DSTS_STATUS_BIT) {
263                 if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT)
264                         return -ENODEV;
265         }
266
267         return retval & mask;
268 }
269
270 static int asus_wmi_get_devstate_simple(struct asus_wmi *asus, u32 dev_id)
271 {
272         return asus_wmi_get_devstate_bits(asus, dev_id,
273                                           ASUS_WMI_DSTS_STATUS_BIT);
274 }
275
276 /*
277  * LEDs
278  */
279 /*
280  * These functions actually update the LED's, and are called from a
281  * workqueue. By doing this as separate work rather than when the LED
282  * subsystem asks, we avoid messing with the Asus ACPI stuff during a
283  * potentially bad time, such as a timer interrupt.
284  */
285 static void tpd_led_update(struct work_struct *work)
286 {
287         int ctrl_param;
288         struct asus_wmi *asus;
289
290         asus = container_of(work, struct asus_wmi, tpd_led_work);
291
292         ctrl_param = asus->tpd_led_wk;
293         asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL);
294 }
295
296 static void tpd_led_set(struct led_classdev *led_cdev,
297                         enum led_brightness value)
298 {
299         struct asus_wmi *asus;
300
301         asus = container_of(led_cdev, struct asus_wmi, tpd_led);
302
303         asus->tpd_led_wk = !!value;
304         queue_work(asus->led_workqueue, &asus->tpd_led_work);
305 }
306
307 static int read_tpd_led_state(struct asus_wmi *asus)
308 {
309         return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED);
310 }
311
312 static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
313 {
314         struct asus_wmi *asus;
315
316         asus = container_of(led_cdev, struct asus_wmi, tpd_led);
317
318         return read_tpd_led_state(asus);
319 }
320
321 static int asus_wmi_led_init(struct asus_wmi *asus)
322 {
323         int rv;
324
325         if (read_tpd_led_state(asus) < 0)
326                 return 0;
327
328         asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
329         if (!asus->led_workqueue)
330                 return -ENOMEM;
331         INIT_WORK(&asus->tpd_led_work, tpd_led_update);
332
333         asus->tpd_led.name = "asus::touchpad";
334         asus->tpd_led.brightness_set = tpd_led_set;
335         asus->tpd_led.brightness_get = tpd_led_get;
336         asus->tpd_led.max_brightness = 1;
337
338         rv = led_classdev_register(&asus->platform_device->dev, &asus->tpd_led);
339         if (rv) {
340                 destroy_workqueue(asus->led_workqueue);
341                 return rv;
342         }
343
344         return 0;
345 }
346
347 static void asus_wmi_led_exit(struct asus_wmi *asus)
348 {
349         if (asus->tpd_led.dev)
350                 led_classdev_unregister(&asus->tpd_led);
351         if (asus->led_workqueue)
352                 destroy_workqueue(asus->led_workqueue);
353 }
354
355 /*
356  * PCI hotplug (for wlan rfkill)
357  */
358 static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus)
359 {
360         int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
361
362         if (result < 0)
363                 return false;
364         return !result;
365 }
366
367 static void asus_rfkill_hotplug(struct asus_wmi *asus)
368 {
369         struct pci_dev *dev;
370         struct pci_bus *bus;
371         bool blocked;
372         bool absent;
373         u32 l;
374
375         mutex_lock(&asus->wmi_lock);
376         blocked = asus_wlan_rfkill_blocked(asus);
377         mutex_unlock(&asus->wmi_lock);
378
379         mutex_lock(&asus->hotplug_lock);
380
381         if (asus->wlan.rfkill)
382                 rfkill_set_sw_state(asus->wlan.rfkill, blocked);
383
384         if (asus->hotplug_slot) {
385                 bus = pci_find_bus(0, 1);
386                 if (!bus) {
387                         pr_warning("Unable to find PCI bus 1?\n");
388                         goto out_unlock;
389                 }
390
391                 if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) {
392                         pr_err("Unable to read PCI config space?\n");
393                         goto out_unlock;
394                 }
395                 absent = (l == 0xffffffff);
396
397                 if (blocked != absent) {
398                         pr_warning("BIOS says wireless lan is %s, "
399                                    "but the pci device is %s\n",
400                                    blocked ? "blocked" : "unblocked",
401                                    absent ? "absent" : "present");
402                         pr_warning("skipped wireless hotplug as probably "
403                                    "inappropriate for this model\n");
404                         goto out_unlock;
405                 }
406
407                 if (!blocked) {
408                         dev = pci_get_slot(bus, 0);
409                         if (dev) {
410                                 /* Device already present */
411                                 pci_dev_put(dev);
412                                 goto out_unlock;
413                         }
414                         dev = pci_scan_single_device(bus, 0);
415                         if (dev) {
416                                 pci_bus_assign_resources(bus);
417                                 if (pci_bus_add_device(dev))
418                                         pr_err("Unable to hotplug wifi\n");
419                         }
420                 } else {
421                         dev = pci_get_slot(bus, 0);
422                         if (dev) {
423                                 pci_remove_bus_device(dev);
424                                 pci_dev_put(dev);
425                         }
426                 }
427         }
428
429 out_unlock:
430         mutex_unlock(&asus->hotplug_lock);
431 }
432
433 static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data)
434 {
435         struct asus_wmi *asus = data;
436
437         if (event != ACPI_NOTIFY_BUS_CHECK)
438                 return;
439
440         /*
441          * We can't call directly asus_rfkill_hotplug because most
442          * of the time WMBC is still being executed and not reetrant.
443          * There is currently no way to tell ACPICA that  we want this
444          * method to be serialized, we schedule a asus_rfkill_hotplug
445          * call later, in a safer context.
446          */
447         queue_work(asus->hotplug_workqueue, &asus->hotplug_work);
448 }
449
450 static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node)
451 {
452         acpi_status status;
453         acpi_handle handle;
454
455         status = acpi_get_handle(NULL, node, &handle);
456
457         if (ACPI_SUCCESS(status)) {
458                 status = acpi_install_notify_handler(handle,
459                                                      ACPI_SYSTEM_NOTIFY,
460                                                      asus_rfkill_notify, asus);
461                 if (ACPI_FAILURE(status))
462                         pr_warning("Failed to register notify on %s\n", node);
463         } else
464                 return -ENODEV;
465
466         return 0;
467 }
468
469 static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node)
470 {
471         acpi_status status = AE_OK;
472         acpi_handle handle;
473
474         status = acpi_get_handle(NULL, node, &handle);
475
476         if (ACPI_SUCCESS(status)) {
477                 status = acpi_remove_notify_handler(handle,
478                                                     ACPI_SYSTEM_NOTIFY,
479                                                     asus_rfkill_notify);
480                 if (ACPI_FAILURE(status))
481                         pr_err("Error removing rfkill notify handler %s\n",
482                                node);
483         }
484 }
485
486 static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot,
487                                    u8 *value)
488 {
489         struct asus_wmi *asus = hotplug_slot->private;
490         int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
491
492         if (result < 0)
493                 return result;
494
495         *value = !!result;
496         return 0;
497 }
498
499 static void asus_cleanup_pci_hotplug(struct hotplug_slot *hotplug_slot)
500 {
501         kfree(hotplug_slot->info);
502         kfree(hotplug_slot);
503 }
504
505 static struct hotplug_slot_ops asus_hotplug_slot_ops = {
506         .owner = THIS_MODULE,
507         .get_adapter_status = asus_get_adapter_status,
508         .get_power_status = asus_get_adapter_status,
509 };
510
511 static void asus_hotplug_work(struct work_struct *work)
512 {
513         struct asus_wmi *asus;
514
515         asus = container_of(work, struct asus_wmi, hotplug_work);
516         asus_rfkill_hotplug(asus);
517 }
518
519 static int asus_setup_pci_hotplug(struct asus_wmi *asus)
520 {
521         int ret = -ENOMEM;
522         struct pci_bus *bus = pci_find_bus(0, 1);
523
524         if (!bus) {
525                 pr_err("Unable to find wifi PCI bus\n");
526                 return -ENODEV;
527         }
528
529         asus->hotplug_workqueue =
530             create_singlethread_workqueue("hotplug_workqueue");
531         if (!asus->hotplug_workqueue)
532                 goto error_workqueue;
533
534         INIT_WORK(&asus->hotplug_work, asus_hotplug_work);
535
536         asus->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
537         if (!asus->hotplug_slot)
538                 goto error_slot;
539
540         asus->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
541                                            GFP_KERNEL);
542         if (!asus->hotplug_slot->info)
543                 goto error_info;
544
545         asus->hotplug_slot->private = asus;
546         asus->hotplug_slot->release = &asus_cleanup_pci_hotplug;
547         asus->hotplug_slot->ops = &asus_hotplug_slot_ops;
548         asus_get_adapter_status(asus->hotplug_slot,
549                                 &asus->hotplug_slot->info->adapter_status);
550
551         ret = pci_hp_register(asus->hotplug_slot, bus, 0, "asus-wifi");
552         if (ret) {
553                 pr_err("Unable to register hotplug slot - %d\n", ret);
554                 goto error_register;
555         }
556
557         return 0;
558
559 error_register:
560         kfree(asus->hotplug_slot->info);
561 error_info:
562         kfree(asus->hotplug_slot);
563         asus->hotplug_slot = NULL;
564 error_slot:
565         destroy_workqueue(asus->hotplug_workqueue);
566 error_workqueue:
567         return ret;
568 }
569
570 /*
571  * Rfkill devices
572  */
573 static int asus_rfkill_set(void *data, bool blocked)
574 {
575         struct asus_rfkill *priv = data;
576         u32 ctrl_param = !blocked;
577
578         return asus_wmi_set_devstate(priv->dev_id, ctrl_param, NULL);
579 }
580
581 static void asus_rfkill_query(struct rfkill *rfkill, void *data)
582 {
583         struct asus_rfkill *priv = data;
584         int result;
585
586         result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id);
587
588         if (result < 0)
589                 return;
590
591         rfkill_set_sw_state(priv->rfkill, !result);
592 }
593
594 static int asus_rfkill_wlan_set(void *data, bool blocked)
595 {
596         struct asus_rfkill *priv = data;
597         struct asus_wmi *asus = priv->asus;
598         int ret;
599
600         /*
601          * This handler is enabled only if hotplug is enabled.
602          * In this case, the asus_wmi_set_devstate() will
603          * trigger a wmi notification and we need to wait
604          * this call to finish before being able to call
605          * any wmi method
606          */
607         mutex_lock(&asus->wmi_lock);
608         ret = asus_rfkill_set(data, blocked);
609         mutex_unlock(&asus->wmi_lock);
610         return ret;
611 }
612
613 static const struct rfkill_ops asus_rfkill_wlan_ops = {
614         .set_block = asus_rfkill_wlan_set,
615         .query = asus_rfkill_query,
616 };
617
618 static const struct rfkill_ops asus_rfkill_ops = {
619         .set_block = asus_rfkill_set,
620         .query = asus_rfkill_query,
621 };
622
623 static int asus_new_rfkill(struct asus_wmi *asus,
624                            struct asus_rfkill *arfkill,
625                            const char *name, enum rfkill_type type, int dev_id)
626 {
627         int result = asus_wmi_get_devstate_simple(asus, dev_id);
628         struct rfkill **rfkill = &arfkill->rfkill;
629
630         if (result < 0)
631                 return result;
632
633         arfkill->dev_id = dev_id;
634         arfkill->asus = asus;
635
636         if (dev_id == ASUS_WMI_DEVID_WLAN && asus->driver->hotplug_wireless)
637                 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
638                                        &asus_rfkill_wlan_ops, arfkill);
639         else
640                 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
641                                        &asus_rfkill_ops, arfkill);
642
643         if (!*rfkill)
644                 return -EINVAL;
645
646         rfkill_init_sw_state(*rfkill, !result);
647         result = rfkill_register(*rfkill);
648         if (result) {
649                 rfkill_destroy(*rfkill);
650                 *rfkill = NULL;
651                 return result;
652         }
653         return 0;
654 }
655
656 static void asus_wmi_rfkill_exit(struct asus_wmi *asus)
657 {
658         asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
659         asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
660         asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
661         if (asus->wlan.rfkill) {
662                 rfkill_unregister(asus->wlan.rfkill);
663                 rfkill_destroy(asus->wlan.rfkill);
664                 asus->wlan.rfkill = NULL;
665         }
666         /*
667          * Refresh pci hotplug in case the rfkill state was changed after
668          * asus_unregister_rfkill_notifier()
669          */
670         asus_rfkill_hotplug(asus);
671         if (asus->hotplug_slot)
672                 pci_hp_deregister(asus->hotplug_slot);
673         if (asus->hotplug_workqueue)
674                 destroy_workqueue(asus->hotplug_workqueue);
675
676         if (asus->bluetooth.rfkill) {
677                 rfkill_unregister(asus->bluetooth.rfkill);
678                 rfkill_destroy(asus->bluetooth.rfkill);
679                 asus->bluetooth.rfkill = NULL;
680         }
681         if (asus->wimax.rfkill) {
682                 rfkill_unregister(asus->wimax.rfkill);
683                 rfkill_destroy(asus->wimax.rfkill);
684                 asus->wimax.rfkill = NULL;
685         }
686         if (asus->wwan3g.rfkill) {
687                 rfkill_unregister(asus->wwan3g.rfkill);
688                 rfkill_destroy(asus->wwan3g.rfkill);
689                 asus->wwan3g.rfkill = NULL;
690         }
691 }
692
693 static int asus_wmi_rfkill_init(struct asus_wmi *asus)
694 {
695         int result = 0;
696
697         mutex_init(&asus->hotplug_lock);
698         mutex_init(&asus->wmi_lock);
699
700         result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan",
701                                  RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN);
702
703         if (result && result != -ENODEV)
704                 goto exit;
705
706         result = asus_new_rfkill(asus, &asus->bluetooth,
707                                  "asus-bluetooth", RFKILL_TYPE_BLUETOOTH,
708                                  ASUS_WMI_DEVID_BLUETOOTH);
709
710         if (result && result != -ENODEV)
711                 goto exit;
712
713         result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax",
714                                  RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX);
715
716         if (result && result != -ENODEV)
717                 goto exit;
718
719         result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g",
720                                  RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G);
721
722         if (result && result != -ENODEV)
723                 goto exit;
724
725         if (!asus->driver->hotplug_wireless)
726                 goto exit;
727
728         result = asus_setup_pci_hotplug(asus);
729         /*
730          * If we get -EBUSY then something else is handling the PCI hotplug -
731          * don't fail in this case
732          */
733         if (result == -EBUSY)
734                 result = 0;
735
736         asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
737         asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
738         asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
739         /*
740          * Refresh pci hotplug in case the rfkill state was changed during
741          * setup.
742          */
743         asus_rfkill_hotplug(asus);
744
745 exit:
746         if (result && result != -ENODEV)
747                 asus_wmi_rfkill_exit(asus);
748
749         if (result == -ENODEV)
750                 result = 0;
751
752         return result;
753 }
754
755 /*
756  * Backlight
757  */
758 static int read_backlight_power(struct asus_wmi *asus)
759 {
760         int ret = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_BACKLIGHT);
761
762         if (ret < 0)
763                 return ret;
764
765         return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
766 }
767
768 static int read_brightness(struct backlight_device *bd)
769 {
770         struct asus_wmi *asus = bl_get_data(bd);
771         u32 retval;
772         int err;
773
774         err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
775
776         if (err < 0)
777                 return err;
778
779         return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK;
780 }
781
782 static int update_bl_status(struct backlight_device *bd)
783 {
784         struct asus_wmi *asus = bl_get_data(bd);
785         u32 ctrl_param;
786         int power, err;
787
788         ctrl_param = bd->props.brightness;
789
790         err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS,
791                                     ctrl_param, NULL);
792
793         if (err < 0)
794                 return err;
795
796         power = read_backlight_power(asus);
797         if (power != -ENODEV && bd->props.power != power) {
798                 ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK);
799                 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT,
800                                             ctrl_param, NULL);
801         }
802         return 0;
803 }
804
805 static const struct backlight_ops asus_wmi_bl_ops = {
806         .get_brightness = read_brightness,
807         .update_status = update_bl_status,
808 };
809
810 static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code)
811 {
812         struct backlight_device *bd = asus->backlight_device;
813         int old = bd->props.brightness;
814         int new = old;
815
816         if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
817                 new = code - NOTIFY_BRNUP_MIN + 1;
818         else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX)
819                 new = code - NOTIFY_BRNDOWN_MIN;
820
821         bd->props.brightness = new;
822         backlight_update_status(bd);
823         backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
824
825         return old;
826 }
827
828 static int asus_wmi_backlight_init(struct asus_wmi *asus)
829 {
830         struct backlight_device *bd;
831         struct backlight_properties props;
832         int max;
833         int power;
834
835         max = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_BRIGHTNESS,
836                                          ASUS_WMI_DSTS_MAX_BRIGTH_MASK);
837         power = read_backlight_power(asus);
838
839         if (max < 0 && power < 0) {
840                 /* Try to keep the original error */
841                 if (max == -ENODEV && power == -ENODEV)
842                         return -ENODEV;
843                 if (max != -ENODEV)
844                         return max;
845                 else
846                         return power;
847         }
848         if (max == -ENODEV)
849                 max = 0;
850         if (power == -ENODEV)
851                 power = FB_BLANK_UNBLANK;
852
853         memset(&props, 0, sizeof(struct backlight_properties));
854         props.max_brightness = max;
855         bd = backlight_device_register(asus->driver->name,
856                                        &asus->platform_device->dev, asus,
857                                        &asus_wmi_bl_ops, &props);
858         if (IS_ERR(bd)) {
859                 pr_err("Could not register backlight device\n");
860                 return PTR_ERR(bd);
861         }
862
863         asus->backlight_device = bd;
864
865         bd->props.brightness = read_brightness(bd);
866         bd->props.power = power;
867         backlight_update_status(bd);
868
869         return 0;
870 }
871
872 static void asus_wmi_backlight_exit(struct asus_wmi *asus)
873 {
874         if (asus->backlight_device)
875                 backlight_device_unregister(asus->backlight_device);
876
877         asus->backlight_device = NULL;
878 }
879
880 static void asus_wmi_notify(u32 value, void *context)
881 {
882         struct asus_wmi *asus = context;
883         struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
884         union acpi_object *obj;
885         acpi_status status;
886         int code;
887         int orig_code;
888
889         status = wmi_get_event_data(value, &response);
890         if (status != AE_OK) {
891                 pr_err("bad event status 0x%x\n", status);
892                 return;
893         }
894
895         obj = (union acpi_object *)response.pointer;
896
897         if (!obj || obj->type != ACPI_TYPE_INTEGER)
898                 goto exit;
899
900         code = obj->integer.value;
901         orig_code = code;
902
903         if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
904                 code = NOTIFY_BRNUP_MIN;
905         else if (code >= NOTIFY_BRNDOWN_MIN &&
906                  code <= NOTIFY_BRNDOWN_MAX)
907                 code = NOTIFY_BRNDOWN_MIN;
908
909         if (code == NOTIFY_BRNUP_MIN || code == NOTIFY_BRNDOWN_MIN) {
910                 if (!acpi_video_backlight_support())
911                         asus_wmi_backlight_notify(asus, orig_code);
912         } else if (!sparse_keymap_report_event(asus->inputdev, code, 1, true))
913                 pr_info("Unknown key %x pressed\n", code);
914
915 exit:
916         kfree(obj);
917 }
918
919 /*
920  * Sys helpers
921  */
922 static int parse_arg(const char *buf, unsigned long count, int *val)
923 {
924         if (!count)
925                 return 0;
926         if (sscanf(buf, "%i", val) != 1)
927                 return -EINVAL;
928         return count;
929 }
930
931 static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid,
932                              const char *buf, size_t count)
933 {
934         u32 retval;
935         int rv, err, value;
936
937         value = asus_wmi_get_devstate_simple(asus, devid);
938         if (value == -ENODEV)   /* Check device presence */
939                 return value;
940
941         rv = parse_arg(buf, count, &value);
942         err = asus_wmi_set_devstate(devid, value, &retval);
943
944         if (err < 0)
945                 return err;
946
947         return rv;
948 }
949
950 static ssize_t show_sys_wmi(struct asus_wmi *asus, int devid, char *buf)
951 {
952         int value = asus_wmi_get_devstate_simple(asus, devid);
953
954         if (value < 0)
955                 return value;
956
957         return sprintf(buf, "%d\n", value);
958 }
959
960 #define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm)                  \
961         static ssize_t show_##_name(struct device *dev,                 \
962                                     struct device_attribute *attr,      \
963                                     char *buf)                          \
964         {                                                               \
965                 struct asus_wmi *asus = dev_get_drvdata(dev);           \
966                                                                         \
967                 return show_sys_wmi(asus, _cm, buf);                    \
968         }                                                               \
969         static ssize_t store_##_name(struct device *dev,                \
970                                      struct device_attribute *attr,     \
971                                      const char *buf, size_t count)     \
972         {                                                               \
973                 struct asus_wmi *asus = dev_get_drvdata(dev);           \
974                                                                         \
975                 return store_sys_wmi(asus, _cm, buf, count);            \
976         }                                                               \
977         static struct device_attribute dev_attr_##_name = {             \
978                 .attr = {                                               \
979                         .name = __stringify(_name),                     \
980                         .mode = _mode },                                \
981                 .show   = show_##_name,                                 \
982                 .store  = store_##_name,                                \
983         }
984
985 ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD);
986 ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA);
987 ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER);
988
989 static ssize_t store_cpufv(struct device *dev, struct device_attribute *attr,
990                            const char *buf, size_t count)
991 {
992         int value;
993
994         if (!count || sscanf(buf, "%i", &value) != 1)
995                 return -EINVAL;
996         if (value < 0 || value > 2)
997                 return -EINVAL;
998
999         return asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL);
1000 }
1001
1002 static DEVICE_ATTR(cpufv, S_IRUGO | S_IWUSR, NULL, store_cpufv);
1003
1004 static struct attribute *platform_attributes[] = {
1005         &dev_attr_cpufv.attr,
1006         &dev_attr_camera.attr,
1007         &dev_attr_cardr.attr,
1008         &dev_attr_touchpad.attr,
1009         NULL
1010 };
1011
1012 static mode_t asus_sysfs_is_visible(struct kobject *kobj,
1013                                     struct attribute *attr, int idx)
1014 {
1015         struct device *dev = container_of(kobj, struct device, kobj);
1016         struct platform_device *pdev = to_platform_device(dev);
1017         struct asus_wmi *asus = platform_get_drvdata(pdev);
1018         bool ok = true;
1019         int devid = -1;
1020
1021         if (attr == &dev_attr_camera.attr)
1022                 devid = ASUS_WMI_DEVID_CAMERA;
1023         else if (attr == &dev_attr_cardr.attr)
1024                 devid = ASUS_WMI_DEVID_CARDREADER;
1025         else if (attr == &dev_attr_touchpad.attr)
1026                 devid = ASUS_WMI_DEVID_TOUCHPAD;
1027
1028         if (devid != -1)
1029                 ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0);
1030
1031         return ok ? attr->mode : 0;
1032 }
1033
1034 static struct attribute_group platform_attribute_group = {
1035         .is_visible = asus_sysfs_is_visible,
1036         .attrs = platform_attributes
1037 };
1038
1039 static void asus_wmi_sysfs_exit(struct platform_device *device)
1040 {
1041         sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
1042 }
1043
1044 static int asus_wmi_sysfs_init(struct platform_device *device)
1045 {
1046         return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
1047 }
1048
1049 /*
1050  * Platform device
1051  */
1052 static int __init asus_wmi_platform_init(struct asus_wmi *asus)
1053 {
1054         /*
1055          * Eee PC and Notebooks seems to have different method_id for DSTS,
1056          * but it may also be related to the BIOS's SPEC.
1057          * Note, on most Eeepc, there is no way to check if a method exist
1058          * or note, while on notebooks, they returns 0xFFFFFFFE on failure,
1059          * but once again, SPEC may probably be used for that kind of things.
1060          */
1061         if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS, 0, 0, NULL))
1062                 asus->dsts_id = ASUS_WMI_METHODID_DSTS;
1063         else if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS2, 0, 0, NULL))
1064                 asus->dsts_id = ASUS_WMI_METHODID_DSTS2;
1065
1066         if (!asus->dsts_id) {
1067                 pr_err("Can't find DSTS");
1068                 return -ENODEV;
1069         }
1070
1071         return asus_wmi_sysfs_init(asus->platform_device);
1072 }
1073
1074 static void asus_wmi_platform_exit(struct asus_wmi *asus)
1075 {
1076         asus_wmi_sysfs_exit(asus->platform_device);
1077 }
1078
1079 /*
1080  * debugfs
1081  */
1082 struct asus_wmi_debugfs_node {
1083         struct asus_wmi *asus;
1084         char *name;
1085         int (*show) (struct seq_file *m, void *data);
1086 };
1087
1088 static int show_dsts(struct seq_file *m, void *data)
1089 {
1090         struct asus_wmi *asus = m->private;
1091         int err;
1092         u32 retval = -1;
1093
1094         err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
1095
1096         if (err < 0)
1097                 return err;
1098
1099         seq_printf(m, "DSTS(%x) = %x\n", asus->debug.dev_id, retval);
1100
1101         return 0;
1102 }
1103
1104 static int show_devs(struct seq_file *m, void *data)
1105 {
1106         struct asus_wmi *asus = m->private;
1107         int err;
1108         u32 retval = -1;
1109
1110         err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
1111                                     &retval);
1112
1113         if (err < 0)
1114                 return err;
1115
1116         seq_printf(m, "DEVS(%x, %x) = %x\n", asus->debug.dev_id,
1117                    asus->debug.ctrl_param, retval);
1118
1119         return 0;
1120 }
1121
1122 static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = {
1123         {NULL, "devs", show_devs},
1124         {NULL, "dsts", show_dsts},
1125 };
1126
1127 static int asus_wmi_debugfs_open(struct inode *inode, struct file *file)
1128 {
1129         struct asus_wmi_debugfs_node *node = inode->i_private;
1130
1131         return single_open(file, node->show, node->asus);
1132 }
1133
1134 static const struct file_operations asus_wmi_debugfs_io_ops = {
1135         .owner = THIS_MODULE,
1136         .open = asus_wmi_debugfs_open,
1137         .read = seq_read,
1138         .llseek = seq_lseek,
1139         .release = single_release,
1140 };
1141
1142 static void asus_wmi_debugfs_exit(struct asus_wmi *asus)
1143 {
1144         debugfs_remove_recursive(asus->debug.root);
1145 }
1146
1147 static int asus_wmi_debugfs_init(struct asus_wmi *asus)
1148 {
1149         struct dentry *dent;
1150         int i;
1151
1152         asus->debug.root = debugfs_create_dir(asus->driver->name, NULL);
1153         if (!asus->debug.root) {
1154                 pr_err("failed to create debugfs directory");
1155                 goto error_debugfs;
1156         }
1157
1158         dent = debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR,
1159                                   asus->debug.root, &asus->debug.dev_id);
1160         if (!dent)
1161                 goto error_debugfs;
1162
1163         dent = debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR,
1164                                   asus->debug.root, &asus->debug.ctrl_param);
1165         if (!dent)
1166                 goto error_debugfs;
1167
1168         for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) {
1169                 struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i];
1170
1171                 node->asus = asus;
1172                 dent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
1173                                            asus->debug.root, node,
1174                                            &asus_wmi_debugfs_io_ops);
1175                 if (!dent) {
1176                         pr_err("failed to create debug file: %s\n", node->name);
1177                         goto error_debugfs;
1178                 }
1179         }
1180
1181         return 0;
1182
1183 error_debugfs:
1184         asus_wmi_debugfs_exit(asus);
1185         return -ENOMEM;
1186 }
1187
1188 /*
1189  * WMI Driver
1190  */
1191 static int asus_wmi_add(struct platform_device *pdev)
1192 {
1193         struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
1194         struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
1195         struct asus_wmi *asus;
1196         acpi_status status;
1197         int err;
1198
1199         asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL);
1200         if (!asus)
1201                 return -ENOMEM;
1202
1203         asus->driver = wdrv;
1204         asus->platform_device = pdev;
1205         wdrv->platform_device = pdev;
1206         platform_set_drvdata(asus->platform_device, asus);
1207
1208         if (wdrv->quirks)
1209                 wdrv->quirks(asus->driver);
1210
1211         err = asus_wmi_platform_init(asus);
1212         if (err)
1213                 goto fail_platform;
1214
1215         err = asus_wmi_input_init(asus);
1216         if (err)
1217                 goto fail_input;
1218
1219         err = asus_wmi_led_init(asus);
1220         if (err)
1221                 goto fail_leds;
1222
1223         err = asus_wmi_rfkill_init(asus);
1224         if (err)
1225                 goto fail_rfkill;
1226
1227         if (!acpi_video_backlight_support()) {
1228                 err = asus_wmi_backlight_init(asus);
1229                 if (err && err != -ENODEV)
1230                         goto fail_backlight;
1231         } else
1232                 pr_info("Backlight controlled by ACPI video driver\n");
1233
1234         status = wmi_install_notify_handler(asus->driver->event_guid,
1235                                             asus_wmi_notify, asus);
1236         if (ACPI_FAILURE(status)) {
1237                 pr_err("Unable to register notify handler - %d\n", status);
1238                 err = -ENODEV;
1239                 goto fail_wmi_handler;
1240         }
1241
1242         err = asus_wmi_debugfs_init(asus);
1243         if (err)
1244                 goto fail_debugfs;
1245
1246         return 0;
1247
1248 fail_debugfs:
1249         wmi_remove_notify_handler(asus->driver->event_guid);
1250 fail_wmi_handler:
1251         asus_wmi_backlight_exit(asus);
1252 fail_backlight:
1253         asus_wmi_rfkill_exit(asus);
1254 fail_rfkill:
1255         asus_wmi_led_exit(asus);
1256 fail_leds:
1257         asus_wmi_input_exit(asus);
1258 fail_input:
1259         asus_wmi_platform_exit(asus);
1260 fail_platform:
1261         kfree(asus);
1262         return err;
1263 }
1264
1265 static int asus_wmi_remove(struct platform_device *device)
1266 {
1267         struct asus_wmi *asus;
1268
1269         asus = platform_get_drvdata(device);
1270         wmi_remove_notify_handler(asus->driver->event_guid);
1271         asus_wmi_backlight_exit(asus);
1272         asus_wmi_input_exit(asus);
1273         asus_wmi_led_exit(asus);
1274         asus_wmi_rfkill_exit(asus);
1275         asus_wmi_debugfs_exit(asus);
1276         asus_wmi_platform_exit(asus);
1277
1278         kfree(asus);
1279         return 0;
1280 }
1281
1282 /*
1283  * Platform driver - hibernate/resume callbacks
1284  */
1285 static int asus_hotk_thaw(struct device *device)
1286 {
1287         struct asus_wmi *asus = dev_get_drvdata(device);
1288
1289         if (asus->wlan.rfkill) {
1290                 bool wlan;
1291
1292                 /*
1293                  * Work around bios bug - acpi _PTS turns off the wireless led
1294                  * during suspend.  Normally it restores it on resume, but
1295                  * we should kick it ourselves in case hibernation is aborted.
1296                  */
1297                 wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
1298                 asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL);
1299         }
1300
1301         return 0;
1302 }
1303
1304 static int asus_hotk_restore(struct device *device)
1305 {
1306         struct asus_wmi *asus = dev_get_drvdata(device);
1307         int bl;
1308
1309         /* Refresh both wlan rfkill state and pci hotplug */
1310         if (asus->wlan.rfkill)
1311                 asus_rfkill_hotplug(asus);
1312
1313         if (asus->bluetooth.rfkill) {
1314                 bl = !asus_wmi_get_devstate_simple(asus,
1315                                                    ASUS_WMI_DEVID_BLUETOOTH);
1316                 rfkill_set_sw_state(asus->bluetooth.rfkill, bl);
1317         }
1318         if (asus->wimax.rfkill) {
1319                 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX);
1320                 rfkill_set_sw_state(asus->wimax.rfkill, bl);
1321         }
1322         if (asus->wwan3g.rfkill) {
1323                 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G);
1324                 rfkill_set_sw_state(asus->wwan3g.rfkill, bl);
1325         }
1326
1327         return 0;
1328 }
1329
1330 static const struct dev_pm_ops asus_pm_ops = {
1331         .thaw = asus_hotk_thaw,
1332         .restore = asus_hotk_restore,
1333 };
1334
1335 static int asus_wmi_probe(struct platform_device *pdev)
1336 {
1337         struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
1338         struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
1339         int ret;
1340
1341         if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
1342                 pr_warning("Management GUID not found\n");
1343                 return -ENODEV;
1344         }
1345
1346         if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) {
1347                 pr_warning("Event GUID not found\n");
1348                 return -ENODEV;
1349         }
1350
1351         if (wdrv->probe) {
1352                 ret = wdrv->probe(pdev);
1353                 if (ret)
1354                         return ret;
1355         }
1356
1357         return asus_wmi_add(pdev);
1358 }
1359
1360 static bool used;
1361
1362 int asus_wmi_register_driver(struct asus_wmi_driver *driver)
1363 {
1364         struct platform_driver *platform_driver;
1365         struct platform_device *platform_device;
1366
1367         if (used)
1368                 return -EBUSY;
1369
1370         platform_driver = &driver->platform_driver;
1371         platform_driver->remove = asus_wmi_remove;
1372         platform_driver->driver.owner = driver->owner;
1373         platform_driver->driver.name = driver->name;
1374         platform_driver->driver.pm = &asus_pm_ops;
1375
1376         platform_device = platform_create_bundle(platform_driver,
1377                                                  asus_wmi_probe,
1378                                                  NULL, 0, NULL, 0);
1379         if (IS_ERR(platform_device))
1380                 return PTR_ERR(platform_device);
1381
1382         used = true;
1383         return 0;
1384 }
1385 EXPORT_SYMBOL_GPL(asus_wmi_register_driver);
1386
1387 void asus_wmi_unregister_driver(struct asus_wmi_driver *driver)
1388 {
1389         platform_device_unregister(driver->platform_device);
1390         platform_driver_unregister(&driver->platform_driver);
1391         used = false;
1392 }
1393 EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver);
1394
1395 static int __init asus_wmi_init(void)
1396 {
1397         if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
1398                 pr_info("Asus Management GUID not found");
1399                 return -ENODEV;
1400         }
1401
1402         pr_info("ASUS WMI generic driver loaded");
1403         return 0;
1404 }
1405
1406 static void __exit asus_wmi_exit(void)
1407 {
1408         pr_info("ASUS WMI generic driver unloaded");
1409 }
1410
1411 module_init(asus_wmi_init);
1412 module_exit(asus_wmi_exit);