blob: 4b0384e140f809fe8d6f317a4645e899fb45e767 [file] [log] [blame]
Yong Wangee027e42010-03-21 10:26:34 +08001/*
Corentin Charye12e6d92011-02-26 10:20:31 +01002 * Asus PC WMI hotkey driver
Yong Wangee027e42010-03-21 10:26:34 +08003 *
4 * Copyright(C) 2010 Intel Corporation.
Corentin Chary57ab7da2011-02-26 10:20:32 +01005 * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com>
Yong Wangee027e42010-03-21 10:26:34 +08006 *
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
Yong Wang81248882010-04-11 09:26:33 +080027#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28
Yong Wangee027e42010-03-21 10:26:34 +080029#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
Tejun Heoa32f3922010-04-05 11:37:59 +090033#include <linux/slab.h>
Yong Wangee027e42010-03-21 10:26:34 +080034#include <linux/input.h>
35#include <linux/input/sparse-keymap.h>
Yong Wang3d7b1652010-04-11 09:27:54 +080036#include <linux/fb.h>
37#include <linux/backlight.h>
Corentin Chary084fca62010-11-29 08:14:06 +010038#include <linux/leds.h>
Corentin Charyba48fdb2010-11-29 08:14:07 +010039#include <linux/rfkill.h>
Corentin Charyafa7c882011-02-06 13:28:28 +010040#include <linux/pci.h>
41#include <linux/pci_hotplug.h>
Corentin Charye07babd2011-02-26 10:20:42 +010042#include <linux/hwmon.h>
43#include <linux/hwmon-sysfs.h>
Corentin Chary8c1b2d82010-11-29 08:14:09 +010044#include <linux/debugfs.h>
45#include <linux/seq_file.h>
Yong Wang45f2c692010-04-11 09:27:19 +080046#include <linux/platform_device.h>
Yong Wangee027e42010-03-21 10:26:34 +080047#include <acpi/acpi_bus.h>
48#include <acpi/acpi_drivers.h>
49
Corentin Charye12e6d92011-02-26 10:20:31 +010050#include "asus-wmi.h"
Yong Wang45f2c692010-04-11 09:27:19 +080051
Corentin Charye12e6d92011-02-26 10:20:31 +010052MODULE_AUTHOR("Corentin Chary <corentincj@iksaif.net>, "
53 "Yong Wang <yong.y.wang@intel.com>");
54MODULE_DESCRIPTION("Asus Generic WMI Driver");
Yong Wangee027e42010-03-21 10:26:34 +080055MODULE_LICENSE("GPL");
56
Corentin Charye12e6d92011-02-26 10:20:31 +010057#define to_platform_driver(drv) \
58 (container_of((drv), struct platform_driver, driver))
Corentin Charyd358cb52010-11-29 08:14:14 +010059
Corentin Charye12e6d92011-02-26 10:20:31 +010060#define to_asus_wmi_driver(pdrv) \
61 (container_of((pdrv), struct asus_wmi_driver, platform_driver))
Yong Wangee027e42010-03-21 10:26:34 +080062
Corentin Charye12e6d92011-02-26 10:20:31 +010063#define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66"
Yong Wangee027e42010-03-21 10:26:34 +080064
Corentin Chary33e0e6f2011-02-06 13:28:34 +010065#define NOTIFY_BRNUP_MIN 0x11
66#define NOTIFY_BRNUP_MAX 0x1f
67#define NOTIFY_BRNDOWN_MIN 0x20
68#define NOTIFY_BRNDOWN_MAX 0x2e
Corentin Charye9809c02011-07-01 11:34:31 +020069#define NOTIFY_KBD_BRTUP 0xc4
70#define NOTIFY_KBD_BRTDWN 0xc5
Yong Wangee027e42010-03-21 10:26:34 +080071
Corentin Chary43815942011-02-06 13:28:43 +010072/* WMI Methods */
Corentin Chary2f686b52011-02-26 10:20:41 +010073#define ASUS_WMI_METHODID_SPEC 0x43455053 /* BIOS SPECification */
74#define ASUS_WMI_METHODID_SFBD 0x44424653 /* Set First Boot Device */
75#define ASUS_WMI_METHODID_GLCD 0x44434C47 /* Get LCD status */
76#define ASUS_WMI_METHODID_GPID 0x44495047 /* Get Panel ID?? (Resol) */
77#define ASUS_WMI_METHODID_QMOD 0x444F4D51 /* Quiet MODe */
78#define ASUS_WMI_METHODID_SPLV 0x4C425053 /* Set Panel Light Value */
79#define ASUS_WMI_METHODID_SFUN 0x4E554653 /* FUNCtionalities */
80#define ASUS_WMI_METHODID_SDSP 0x50534453 /* Set DiSPlay output */
81#define ASUS_WMI_METHODID_GDSP 0x50534447 /* Get DiSPlay output */
82#define ASUS_WMI_METHODID_DEVP 0x50564544 /* DEVice Policy */
83#define ASUS_WMI_METHODID_OSVR 0x5256534F /* OS VeRsion */
84#define ASUS_WMI_METHODID_DSTS 0x53544344 /* Device STatuS */
85#define ASUS_WMI_METHODID_DSTS2 0x53545344 /* Device STatuS #2*/
86#define ASUS_WMI_METHODID_BSTS 0x53545342 /* Bios STatuS ? */
87#define ASUS_WMI_METHODID_DEVS 0x53564544 /* DEVice Set */
88#define ASUS_WMI_METHODID_CFVS 0x53564643 /* CPU Frequency Volt Set */
89#define ASUS_WMI_METHODID_KBFT 0x5446424B /* KeyBoard FilTer */
90#define ASUS_WMI_METHODID_INIT 0x54494E49 /* INITialize */
91#define ASUS_WMI_METHODID_HKEY 0x59454B48 /* Hot KEY ?? */
Yong Wang3d7b1652010-04-11 09:27:54 +080092
Corentin Charyd33da3b2011-02-26 10:20:35 +010093#define ASUS_WMI_UNSUPPORTED_METHOD 0xFFFFFFFE
94
Corentin Chary43815942011-02-06 13:28:43 +010095/* Wireless */
Corentin Chary2f686b52011-02-26 10:20:41 +010096#define ASUS_WMI_DEVID_HW_SWITCH 0x00010001
97#define ASUS_WMI_DEVID_WIRELESS_LED 0x00010002
Corentin Charye12e6d92011-02-26 10:20:31 +010098#define ASUS_WMI_DEVID_WLAN 0x00010011
99#define ASUS_WMI_DEVID_BLUETOOTH 0x00010013
Corentin Chary2f686b52011-02-26 10:20:41 +0100100#define ASUS_WMI_DEVID_GPS 0x00010015
Corentin Charye12e6d92011-02-26 10:20:31 +0100101#define ASUS_WMI_DEVID_WIMAX 0x00010017
102#define ASUS_WMI_DEVID_WWAN3G 0x00010019
Corentin Chary2f686b52011-02-26 10:20:41 +0100103#define ASUS_WMI_DEVID_UWB 0x00010021
104
105/* Leds */
106/* 0x000200XX and 0x000400XX */
Corentin Chary43815942011-02-06 13:28:43 +0100107
108/* Backlight and Brightness */
Corentin Charye12e6d92011-02-26 10:20:31 +0100109#define ASUS_WMI_DEVID_BACKLIGHT 0x00050011
110#define ASUS_WMI_DEVID_BRIGHTNESS 0x00050012
Corentin Chary2f686b52011-02-26 10:20:41 +0100111#define ASUS_WMI_DEVID_KBD_BACKLIGHT 0x00050021
112#define ASUS_WMI_DEVID_LIGHT_SENSOR 0x00050022 /* ?? */
Corentin Chary43815942011-02-06 13:28:43 +0100113
114/* Misc */
Corentin Charye12e6d92011-02-26 10:20:31 +0100115#define ASUS_WMI_DEVID_CAMERA 0x00060013
Corentin Chary43815942011-02-06 13:28:43 +0100116
117/* Storage */
Corentin Charye12e6d92011-02-26 10:20:31 +0100118#define ASUS_WMI_DEVID_CARDREADER 0x00080013
Corentin Chary43815942011-02-06 13:28:43 +0100119
120/* Input */
Corentin Chary57ab7da2011-02-26 10:20:32 +0100121#define ASUS_WMI_DEVID_TOUCHPAD 0x00100011
Corentin Charye12e6d92011-02-26 10:20:31 +0100122#define ASUS_WMI_DEVID_TOUCHPAD_LED 0x00100012
Yong Wang3d7b1652010-04-11 09:27:54 +0800123
Corentin Chary2f686b52011-02-26 10:20:41 +0100124/* Fan, Thermal */
125#define ASUS_WMI_DEVID_THERMAL_CTRL 0x00110011
126#define ASUS_WMI_DEVID_FAN_CTRL 0x00110012
127
128/* Power */
129#define ASUS_WMI_DEVID_PROCESSOR_STATE 0x00120012
130
Corentin Chary43815942011-02-06 13:28:43 +0100131/* DSTS masks */
Corentin Charye12e6d92011-02-26 10:20:31 +0100132#define ASUS_WMI_DSTS_STATUS_BIT 0x00000001
Corentin Charya75fe0d2011-02-26 10:20:34 +0100133#define ASUS_WMI_DSTS_UNKNOWN_BIT 0x00000002
Corentin Charye12e6d92011-02-26 10:20:31 +0100134#define ASUS_WMI_DSTS_PRESENCE_BIT 0x00010000
Corentin Chary2f686b52011-02-26 10:20:41 +0100135#define ASUS_WMI_DSTS_USER_BIT 0x00020000
136#define ASUS_WMI_DSTS_BIOS_BIT 0x00040000
Corentin Charye12e6d92011-02-26 10:20:31 +0100137#define ASUS_WMI_DSTS_BRIGHTNESS_MASK 0x000000FF
138#define ASUS_WMI_DSTS_MAX_BRIGTH_MASK 0x0000FF00
Yong Wangee027e42010-03-21 10:26:34 +0800139
Yong Wang3d7b1652010-04-11 09:27:54 +0800140struct bios_args {
Corentin Charyd33da3b2011-02-26 10:20:35 +0100141 u32 arg0;
142 u32 arg1;
143} __packed;
Yong Wang3d7b1652010-04-11 09:27:54 +0800144
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100145/*
Corentin Charye12e6d92011-02-26 10:20:31 +0100146 * <platform>/ - debugfs root directory
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100147 * dev_id - current dev_id
148 * ctrl_param - current ctrl_param
Corentin Charyef343492011-02-26 10:20:39 +0100149 * method_id - current method_id
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100150 * devs - call DEVS(dev_id, ctrl_param) and print result
151 * dsts - call DSTS(dev_id) and print result
Corentin Charyef343492011-02-26 10:20:39 +0100152 * call - call method_id(dev_id, ctrl_param) and print result
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100153 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100154struct asus_wmi_debug {
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100155 struct dentry *root;
Corentin Charyef343492011-02-26 10:20:39 +0100156 u32 method_id;
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100157 u32 dev_id;
158 u32 ctrl_param;
159};
160
Corentin Charya7ce3f02011-02-26 10:20:33 +0100161struct asus_rfkill {
162 struct asus_wmi *asus;
163 struct rfkill *rfkill;
164 u32 dev_id;
165};
166
Corentin Charye12e6d92011-02-26 10:20:31 +0100167struct asus_wmi {
Corentin Chary1d070f892011-02-26 10:20:36 +0100168 int dsts_id;
Corentin Chary46dbca82011-02-26 10:20:38 +0100169 int spec;
170 int sfun;
Corentin Chary1d070f892011-02-26 10:20:36 +0100171
Yong Wang81248882010-04-11 09:26:33 +0800172 struct input_dev *inputdev;
Yong Wang3d7b1652010-04-11 09:27:54 +0800173 struct backlight_device *backlight_device;
Corentin Charye07babd2011-02-26 10:20:42 +0100174 struct device *hwmon_device;
Corentin Chary27c136c2010-11-29 08:14:05 +0100175 struct platform_device *platform_device;
Corentin Chary084fca62010-11-29 08:14:06 +0100176
177 struct led_classdev tpd_led;
178 int tpd_led_wk;
Corentin Charye9809c02011-07-01 11:34:31 +0200179 struct led_classdev kbd_led;
180 int kbd_led_wk;
Corentin Chary084fca62010-11-29 08:14:06 +0100181 struct workqueue_struct *led_workqueue;
182 struct work_struct tpd_led_work;
Corentin Charye9809c02011-07-01 11:34:31 +0200183 struct work_struct kbd_led_work;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100184
Corentin Charya7ce3f02011-02-26 10:20:33 +0100185 struct asus_rfkill wlan;
186 struct asus_rfkill bluetooth;
187 struct asus_rfkill wimax;
188 struct asus_rfkill wwan3g;
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100189
Corentin Charyafa7c882011-02-06 13:28:28 +0100190 struct hotplug_slot *hotplug_slot;
191 struct mutex hotplug_lock;
Corentin Chary279f8f92011-02-06 13:28:29 +0100192 struct mutex wmi_lock;
193 struct workqueue_struct *hotplug_workqueue;
194 struct work_struct hotplug_work;
Corentin Charyafa7c882011-02-06 13:28:28 +0100195
Corentin Charye12e6d92011-02-26 10:20:31 +0100196 struct asus_wmi_debug debug;
197
198 struct asus_wmi_driver *driver;
Yong Wang81248882010-04-11 09:26:33 +0800199};
200
Corentin Charye12e6d92011-02-26 10:20:31 +0100201static int asus_wmi_input_init(struct asus_wmi *asus)
Yong Wangee027e42010-03-21 10:26:34 +0800202{
203 int err;
204
Corentin Charye12e6d92011-02-26 10:20:31 +0100205 asus->inputdev = input_allocate_device();
206 if (!asus->inputdev)
Yong Wangee027e42010-03-21 10:26:34 +0800207 return -ENOMEM;
208
Corentin Chary58a9f392011-03-30 16:32:32 +0200209 asus->inputdev->name = asus->driver->input_name;
210 asus->inputdev->phys = asus->driver->input_phys;
Corentin Charye12e6d92011-02-26 10:20:31 +0100211 asus->inputdev->id.bustype = BUS_HOST;
212 asus->inputdev->dev.parent = &asus->platform_device->dev;
Seth Forshee39bbde02011-07-04 09:49:20 +0200213 set_bit(EV_REP, asus->inputdev->evbit);
Yong Wangee027e42010-03-21 10:26:34 +0800214
Corentin Charye12e6d92011-02-26 10:20:31 +0100215 err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL);
Yong Wangee027e42010-03-21 10:26:34 +0800216 if (err)
217 goto err_free_dev;
218
Corentin Charye12e6d92011-02-26 10:20:31 +0100219 err = input_register_device(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800220 if (err)
221 goto err_free_keymap;
222
223 return 0;
224
225err_free_keymap:
Corentin Charye12e6d92011-02-26 10:20:31 +0100226 sparse_keymap_free(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800227err_free_dev:
Corentin Charye12e6d92011-02-26 10:20:31 +0100228 input_free_device(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800229 return err;
230}
231
Corentin Charye12e6d92011-02-26 10:20:31 +0100232static void asus_wmi_input_exit(struct asus_wmi *asus)
Yong Wang81248882010-04-11 09:26:33 +0800233{
Corentin Charye12e6d92011-02-26 10:20:31 +0100234 if (asus->inputdev) {
235 sparse_keymap_free(asus->inputdev);
236 input_unregister_device(asus->inputdev);
Yong Wang81248882010-04-11 09:26:33 +0800237 }
238
Corentin Charye12e6d92011-02-26 10:20:31 +0100239 asus->inputdev = NULL;
Yong Wang81248882010-04-11 09:26:33 +0800240}
241
Corentin Charyd33da3b2011-02-26 10:20:35 +0100242static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1,
243 u32 *retval)
Yong Wang3d7b1652010-04-11 09:27:54 +0800244{
Corentin Charyd33da3b2011-02-26 10:20:35 +0100245 struct bios_args args = {
246 .arg0 = arg0,
247 .arg1 = arg1,
248 };
249 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
Yong Wang3d7b1652010-04-11 09:27:54 +0800250 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
Yong Wang3d7b1652010-04-11 09:27:54 +0800251 acpi_status status;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100252 union acpi_object *obj;
Yong Wang3d7b1652010-04-11 09:27:54 +0800253 u32 tmp;
254
Corentin Charyd33da3b2011-02-26 10:20:35 +0100255 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 1, method_id,
Corentin Charyafa7c882011-02-06 13:28:28 +0100256 &input, &output);
Yong Wang3d7b1652010-04-11 09:27:54 +0800257
258 if (ACPI_FAILURE(status))
Corentin Charyd33da3b2011-02-26 10:20:35 +0100259 goto exit;
Yong Wang3d7b1652010-04-11 09:27:54 +0800260
261 obj = (union acpi_object *)output.pointer;
262 if (obj && obj->type == ACPI_TYPE_INTEGER)
Corentin Charye12e6d92011-02-26 10:20:31 +0100263 tmp = (u32) obj->integer.value;
Yong Wang3d7b1652010-04-11 09:27:54 +0800264 else
265 tmp = 0;
266
Corentin Chary2a3f0062010-11-29 08:14:10 +0100267 if (retval)
268 *retval = tmp;
Yong Wang3d7b1652010-04-11 09:27:54 +0800269
270 kfree(obj);
271
Corentin Charyd33da3b2011-02-26 10:20:35 +0100272exit:
273 if (ACPI_FAILURE(status))
274 return -EIO;
Yong Wang3d7b1652010-04-11 09:27:54 +0800275
Corentin Charyd33da3b2011-02-26 10:20:35 +0100276 if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
277 return -ENODEV;
278
279 return 0;
Yong Wang3d7b1652010-04-11 09:27:54 +0800280}
281
Corentin Chary1d070f892011-02-26 10:20:36 +0100282static int asus_wmi_get_devstate(struct asus_wmi *asus, u32 dev_id, u32 *retval)
Corentin Charyd33da3b2011-02-26 10:20:35 +0100283{
Corentin Chary1d070f892011-02-26 10:20:36 +0100284 return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval);
Corentin Charyd33da3b2011-02-26 10:20:35 +0100285}
286
287static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param,
Corentin Chary1d070f892011-02-26 10:20:36 +0100288 u32 *retval)
Yong Wang3d7b1652010-04-11 09:27:54 +0800289{
Corentin Charyd33da3b2011-02-26 10:20:35 +0100290 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id,
291 ctrl_param, retval);
Yong Wang3d7b1652010-04-11 09:27:54 +0800292}
293
Corentin Chary5c956382011-02-06 13:28:31 +0100294/* Helper for special devices with magic return codes */
Corentin Chary1d070f892011-02-26 10:20:36 +0100295static int asus_wmi_get_devstate_bits(struct asus_wmi *asus,
296 u32 dev_id, u32 mask)
Corentin Chary5c956382011-02-06 13:28:31 +0100297{
298 u32 retval = 0;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100299 int err;
Corentin Chary5c956382011-02-06 13:28:31 +0100300
Corentin Chary1d070f892011-02-26 10:20:36 +0100301 err = asus_wmi_get_devstate(asus, dev_id, &retval);
Corentin Chary5c956382011-02-06 13:28:31 +0100302
Corentin Charyd33da3b2011-02-26 10:20:35 +0100303 if (err < 0)
304 return err;
Corentin Chary5c956382011-02-06 13:28:31 +0100305
Corentin Charye12e6d92011-02-26 10:20:31 +0100306 if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT))
Corentin Chary5c956382011-02-06 13:28:31 +0100307 return -ENODEV;
308
Corentin Charya75fe0d2011-02-26 10:20:34 +0100309 if (mask == ASUS_WMI_DSTS_STATUS_BIT) {
310 if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT)
311 return -ENODEV;
312 }
313
Corentin Charyb7187262011-02-06 13:28:39 +0100314 return retval & mask;
315}
316
Corentin Chary1d070f892011-02-26 10:20:36 +0100317static int asus_wmi_get_devstate_simple(struct asus_wmi *asus, u32 dev_id)
Corentin Charyb7187262011-02-06 13:28:39 +0100318{
Corentin Chary1d070f892011-02-26 10:20:36 +0100319 return asus_wmi_get_devstate_bits(asus, dev_id,
320 ASUS_WMI_DSTS_STATUS_BIT);
Corentin Chary5c956382011-02-06 13:28:31 +0100321}
322
Corentin Chary084fca62010-11-29 08:14:06 +0100323/*
324 * LEDs
325 */
326/*
327 * These functions actually update the LED's, and are called from a
328 * workqueue. By doing this as separate work rather than when the LED
Corentin Charye12e6d92011-02-26 10:20:31 +0100329 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
Corentin Chary084fca62010-11-29 08:14:06 +0100330 * potentially bad time, such as a timer interrupt.
331 */
332static void tpd_led_update(struct work_struct *work)
333{
334 int ctrl_param;
Corentin Charye12e6d92011-02-26 10:20:31 +0100335 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100336
Corentin Charye12e6d92011-02-26 10:20:31 +0100337 asus = container_of(work, struct asus_wmi, tpd_led_work);
Corentin Chary084fca62010-11-29 08:14:06 +0100338
Corentin Charye12e6d92011-02-26 10:20:31 +0100339 ctrl_param = asus->tpd_led_wk;
340 asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL);
Corentin Chary084fca62010-11-29 08:14:06 +0100341}
342
343static void tpd_led_set(struct led_classdev *led_cdev,
344 enum led_brightness value)
345{
Corentin Charye12e6d92011-02-26 10:20:31 +0100346 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100347
Corentin Charye12e6d92011-02-26 10:20:31 +0100348 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
Corentin Chary084fca62010-11-29 08:14:06 +0100349
Corentin Charye12e6d92011-02-26 10:20:31 +0100350 asus->tpd_led_wk = !!value;
351 queue_work(asus->led_workqueue, &asus->tpd_led_work);
Corentin Chary084fca62010-11-29 08:14:06 +0100352}
353
Corentin Charye12e6d92011-02-26 10:20:31 +0100354static int read_tpd_led_state(struct asus_wmi *asus)
Corentin Chary084fca62010-11-29 08:14:06 +0100355{
Corentin Chary1d070f892011-02-26 10:20:36 +0100356 return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED);
Corentin Chary084fca62010-11-29 08:14:06 +0100357}
358
359static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
360{
Corentin Charye12e6d92011-02-26 10:20:31 +0100361 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100362
Corentin Charye12e6d92011-02-26 10:20:31 +0100363 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
Corentin Chary084fca62010-11-29 08:14:06 +0100364
Corentin Charye12e6d92011-02-26 10:20:31 +0100365 return read_tpd_led_state(asus);
Corentin Chary084fca62010-11-29 08:14:06 +0100366}
367
Corentin Charye9809c02011-07-01 11:34:31 +0200368static void kbd_led_update(struct work_struct *work)
Corentin Chary084fca62010-11-29 08:14:06 +0100369{
Corentin Charye9809c02011-07-01 11:34:31 +0200370 int ctrl_param = 0;
371 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100372
Corentin Charye9809c02011-07-01 11:34:31 +0200373 asus = container_of(work, struct asus_wmi, kbd_led_work);
Corentin Chary084fca62010-11-29 08:14:06 +0100374
Corentin Charye9809c02011-07-01 11:34:31 +0200375 /*
376 * bits 0-2: level
377 * bit 7: light on/off
378 */
379 if (asus->kbd_led_wk > 0)
380 ctrl_param = 0x80 | (asus->kbd_led_wk & 0x7F);
Corentin Chary084fca62010-11-29 08:14:06 +0100381
Corentin Charye9809c02011-07-01 11:34:31 +0200382 asus_wmi_set_devstate(ASUS_WMI_DEVID_KBD_BACKLIGHT, ctrl_param, NULL);
383}
Corentin Chary084fca62010-11-29 08:14:06 +0100384
Corentin Charye9809c02011-07-01 11:34:31 +0200385static int kbd_led_read(struct asus_wmi *asus, int *level, int *env)
386{
387 int retval;
388
389 /*
390 * bits 0-2: level
391 * bit 7: light on/off
392 * bit 8-10: environment (0: dark, 1: normal, 2: light)
393 * bit 17: status unknown
394 */
395 retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT,
396 0xFFFF);
397
Corentin Charyaf965e92011-07-01 11:34:34 +0200398 /* Unknown status is considered as off */
Corentin Charye9809c02011-07-01 11:34:31 +0200399 if (retval == 0x8000)
Corentin Charyaf965e92011-07-01 11:34:34 +0200400 retval = 0;
Corentin Charye9809c02011-07-01 11:34:31 +0200401
402 if (retval >= 0) {
403 if (level)
404 *level = retval & 0x80 ? retval & 0x7F : 0;
405 if (env)
406 *env = (retval >> 8) & 0x7F;
407 retval = 0;
Corentin Chary084fca62010-11-29 08:14:06 +0100408 }
409
Corentin Charye9809c02011-07-01 11:34:31 +0200410 return retval;
411}
412
413static void kbd_led_set(struct led_classdev *led_cdev,
414 enum led_brightness value)
415{
416 struct asus_wmi *asus;
417
418 asus = container_of(led_cdev, struct asus_wmi, kbd_led);
419
420 if (value > asus->kbd_led.max_brightness)
421 value = asus->kbd_led.max_brightness;
422 else if (value < 0)
423 value = 0;
424
425 asus->kbd_led_wk = value;
426 queue_work(asus->led_workqueue, &asus->kbd_led_work);
427}
428
429static enum led_brightness kbd_led_get(struct led_classdev *led_cdev)
430{
431 struct asus_wmi *asus;
432 int retval, value;
433
434 asus = container_of(led_cdev, struct asus_wmi, kbd_led);
435
436 retval = kbd_led_read(asus, &value, NULL);
437
438 if (retval < 0)
439 return retval;
440
441 return value;
Corentin Chary084fca62010-11-29 08:14:06 +0100442}
443
Corentin Charye12e6d92011-02-26 10:20:31 +0100444static void asus_wmi_led_exit(struct asus_wmi *asus)
Corentin Chary084fca62010-11-29 08:14:06 +0100445{
Corentin Charye12e6d92011-02-26 10:20:31 +0100446 if (asus->tpd_led.dev)
447 led_classdev_unregister(&asus->tpd_led);
448 if (asus->led_workqueue)
449 destroy_workqueue(asus->led_workqueue);
Corentin Chary084fca62010-11-29 08:14:06 +0100450}
451
Corentin Charye9809c02011-07-01 11:34:31 +0200452static int asus_wmi_led_init(struct asus_wmi *asus)
453{
454 int rv = 0;
455
456 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
457 if (!asus->led_workqueue)
458 return -ENOMEM;
459
460 if (read_tpd_led_state(asus) >= 0) {
461 INIT_WORK(&asus->tpd_led_work, tpd_led_update);
462
463 asus->tpd_led.name = "asus::touchpad";
464 asus->tpd_led.brightness_set = tpd_led_set;
465 asus->tpd_led.brightness_get = tpd_led_get;
466 asus->tpd_led.max_brightness = 1;
467
468 rv = led_classdev_register(&asus->platform_device->dev,
469 &asus->tpd_led);
470 if (rv)
471 goto error;
472 }
473
474 if (kbd_led_read(asus, NULL, NULL) >= 0) {
475 INIT_WORK(&asus->kbd_led_work, kbd_led_update);
476
477 asus->kbd_led.name = "asus::kbd_backlight";
478 asus->kbd_led.brightness_set = kbd_led_set;
479 asus->kbd_led.brightness_get = kbd_led_get;
480 asus->kbd_led.max_brightness = 3;
481
482 rv = led_classdev_register(&asus->platform_device->dev,
483 &asus->kbd_led);
484 }
485
486error:
487 if (rv)
488 asus_wmi_led_exit(asus);
489
490 return rv;
491}
492
493
Corentin Chary084fca62010-11-29 08:14:06 +0100494/*
Corentin Charyafa7c882011-02-06 13:28:28 +0100495 * PCI hotplug (for wlan rfkill)
496 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100497static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100498{
Corentin Chary1d070f892011-02-26 10:20:36 +0100499 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charyafa7c882011-02-06 13:28:28 +0100500
Corentin Chary5c956382011-02-06 13:28:31 +0100501 if (result < 0)
Corentin Charyafa7c882011-02-06 13:28:28 +0100502 return false;
Corentin Chary5c956382011-02-06 13:28:31 +0100503 return !result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100504}
505
Corentin Charye12e6d92011-02-26 10:20:31 +0100506static void asus_rfkill_hotplug(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100507{
508 struct pci_dev *dev;
509 struct pci_bus *bus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100510 bool blocked;
Corentin Charyafa7c882011-02-06 13:28:28 +0100511 bool absent;
512 u32 l;
513
Corentin Charye12e6d92011-02-26 10:20:31 +0100514 mutex_lock(&asus->wmi_lock);
515 blocked = asus_wlan_rfkill_blocked(asus);
516 mutex_unlock(&asus->wmi_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100517
Corentin Charye12e6d92011-02-26 10:20:31 +0100518 mutex_lock(&asus->hotplug_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100519
Corentin Charya7ce3f02011-02-26 10:20:33 +0100520 if (asus->wlan.rfkill)
521 rfkill_set_sw_state(asus->wlan.rfkill, blocked);
Corentin Chary279f8f92011-02-06 13:28:29 +0100522
Corentin Charye12e6d92011-02-26 10:20:31 +0100523 if (asus->hotplug_slot) {
Corentin Charyafa7c882011-02-06 13:28:28 +0100524 bus = pci_find_bus(0, 1);
525 if (!bus) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700526 pr_warn("Unable to find PCI bus 1?\n");
Corentin Charyafa7c882011-02-06 13:28:28 +0100527 goto out_unlock;
528 }
529
530 if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) {
531 pr_err("Unable to read PCI config space?\n");
532 goto out_unlock;
533 }
534 absent = (l == 0xffffffff);
535
536 if (blocked != absent) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700537 pr_warn("BIOS says wireless lan is %s, "
538 "but the pci device is %s\n",
539 blocked ? "blocked" : "unblocked",
540 absent ? "absent" : "present");
541 pr_warn("skipped wireless hotplug as probably "
542 "inappropriate for this model\n");
Corentin Charyafa7c882011-02-06 13:28:28 +0100543 goto out_unlock;
544 }
545
546 if (!blocked) {
547 dev = pci_get_slot(bus, 0);
548 if (dev) {
549 /* Device already present */
550 pci_dev_put(dev);
551 goto out_unlock;
552 }
553 dev = pci_scan_single_device(bus, 0);
554 if (dev) {
555 pci_bus_assign_resources(bus);
556 if (pci_bus_add_device(dev))
557 pr_err("Unable to hotplug wifi\n");
558 }
559 } else {
560 dev = pci_get_slot(bus, 0);
561 if (dev) {
562 pci_remove_bus_device(dev);
563 pci_dev_put(dev);
564 }
565 }
566 }
567
568out_unlock:
Corentin Charye12e6d92011-02-26 10:20:31 +0100569 mutex_unlock(&asus->hotplug_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100570}
571
Corentin Charye12e6d92011-02-26 10:20:31 +0100572static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data)
Corentin Charyafa7c882011-02-06 13:28:28 +0100573{
Corentin Charye12e6d92011-02-26 10:20:31 +0100574 struct asus_wmi *asus = data;
Corentin Charyafa7c882011-02-06 13:28:28 +0100575
576 if (event != ACPI_NOTIFY_BUS_CHECK)
577 return;
578
Corentin Chary279f8f92011-02-06 13:28:29 +0100579 /*
Corentin Charye12e6d92011-02-26 10:20:31 +0100580 * We can't call directly asus_rfkill_hotplug because most
Corentin Chary279f8f92011-02-06 13:28:29 +0100581 * of the time WMBC is still being executed and not reetrant.
582 * There is currently no way to tell ACPICA that we want this
Corentin Charye12e6d92011-02-26 10:20:31 +0100583 * method to be serialized, we schedule a asus_rfkill_hotplug
Corentin Chary279f8f92011-02-06 13:28:29 +0100584 * call later, in a safer context.
585 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100586 queue_work(asus->hotplug_workqueue, &asus->hotplug_work);
Corentin Charyafa7c882011-02-06 13:28:28 +0100587}
588
Corentin Charye12e6d92011-02-26 10:20:31 +0100589static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node)
Corentin Charyafa7c882011-02-06 13:28:28 +0100590{
591 acpi_status status;
592 acpi_handle handle;
593
594 status = acpi_get_handle(NULL, node, &handle);
595
596 if (ACPI_SUCCESS(status)) {
597 status = acpi_install_notify_handler(handle,
598 ACPI_SYSTEM_NOTIFY,
Corentin Charye12e6d92011-02-26 10:20:31 +0100599 asus_rfkill_notify, asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100600 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700601 pr_warn("Failed to register notify on %s\n", node);
Corentin Charyafa7c882011-02-06 13:28:28 +0100602 } else
603 return -ENODEV;
604
605 return 0;
606}
607
Corentin Charye12e6d92011-02-26 10:20:31 +0100608static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node)
Corentin Charyafa7c882011-02-06 13:28:28 +0100609{
610 acpi_status status = AE_OK;
611 acpi_handle handle;
612
613 status = acpi_get_handle(NULL, node, &handle);
614
615 if (ACPI_SUCCESS(status)) {
616 status = acpi_remove_notify_handler(handle,
Corentin Charye12e6d92011-02-26 10:20:31 +0100617 ACPI_SYSTEM_NOTIFY,
618 asus_rfkill_notify);
Corentin Charyafa7c882011-02-06 13:28:28 +0100619 if (ACPI_FAILURE(status))
620 pr_err("Error removing rfkill notify handler %s\n",
Corentin Charye12e6d92011-02-26 10:20:31 +0100621 node);
Corentin Charyafa7c882011-02-06 13:28:28 +0100622 }
623}
624
Corentin Charye12e6d92011-02-26 10:20:31 +0100625static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot,
626 u8 *value)
Corentin Charyafa7c882011-02-06 13:28:28 +0100627{
Corentin Chary1d070f892011-02-26 10:20:36 +0100628 struct asus_wmi *asus = hotplug_slot->private;
629 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charyafa7c882011-02-06 13:28:28 +0100630
Corentin Chary5c956382011-02-06 13:28:31 +0100631 if (result < 0)
632 return result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100633
Corentin Chary5c956382011-02-06 13:28:31 +0100634 *value = !!result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100635 return 0;
636}
637
Corentin Charye12e6d92011-02-26 10:20:31 +0100638static void asus_cleanup_pci_hotplug(struct hotplug_slot *hotplug_slot)
Corentin Charyafa7c882011-02-06 13:28:28 +0100639{
640 kfree(hotplug_slot->info);
641 kfree(hotplug_slot);
642}
643
Corentin Charye12e6d92011-02-26 10:20:31 +0100644static struct hotplug_slot_ops asus_hotplug_slot_ops = {
Corentin Charyafa7c882011-02-06 13:28:28 +0100645 .owner = THIS_MODULE,
Corentin Charye12e6d92011-02-26 10:20:31 +0100646 .get_adapter_status = asus_get_adapter_status,
647 .get_power_status = asus_get_adapter_status,
Corentin Charyafa7c882011-02-06 13:28:28 +0100648};
649
Corentin Charye12e6d92011-02-26 10:20:31 +0100650static void asus_hotplug_work(struct work_struct *work)
Corentin Chary279f8f92011-02-06 13:28:29 +0100651{
Corentin Charye12e6d92011-02-26 10:20:31 +0100652 struct asus_wmi *asus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100653
Corentin Charye12e6d92011-02-26 10:20:31 +0100654 asus = container_of(work, struct asus_wmi, hotplug_work);
655 asus_rfkill_hotplug(asus);
Corentin Chary279f8f92011-02-06 13:28:29 +0100656}
657
Corentin Charye12e6d92011-02-26 10:20:31 +0100658static int asus_setup_pci_hotplug(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100659{
660 int ret = -ENOMEM;
661 struct pci_bus *bus = pci_find_bus(0, 1);
662
663 if (!bus) {
664 pr_err("Unable to find wifi PCI bus\n");
665 return -ENODEV;
666 }
667
Corentin Charye12e6d92011-02-26 10:20:31 +0100668 asus->hotplug_workqueue =
669 create_singlethread_workqueue("hotplug_workqueue");
670 if (!asus->hotplug_workqueue)
Corentin Chary279f8f92011-02-06 13:28:29 +0100671 goto error_workqueue;
672
Corentin Charye12e6d92011-02-26 10:20:31 +0100673 INIT_WORK(&asus->hotplug_work, asus_hotplug_work);
Corentin Chary279f8f92011-02-06 13:28:29 +0100674
Corentin Charye12e6d92011-02-26 10:20:31 +0100675 asus->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
676 if (!asus->hotplug_slot)
Corentin Charyafa7c882011-02-06 13:28:28 +0100677 goto error_slot;
678
Corentin Charye12e6d92011-02-26 10:20:31 +0100679 asus->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
680 GFP_KERNEL);
681 if (!asus->hotplug_slot->info)
Corentin Charyafa7c882011-02-06 13:28:28 +0100682 goto error_info;
683
Corentin Charye12e6d92011-02-26 10:20:31 +0100684 asus->hotplug_slot->private = asus;
685 asus->hotplug_slot->release = &asus_cleanup_pci_hotplug;
686 asus->hotplug_slot->ops = &asus_hotplug_slot_ops;
687 asus_get_adapter_status(asus->hotplug_slot,
688 &asus->hotplug_slot->info->adapter_status);
Corentin Charyafa7c882011-02-06 13:28:28 +0100689
Corentin Charye12e6d92011-02-26 10:20:31 +0100690 ret = pci_hp_register(asus->hotplug_slot, bus, 0, "asus-wifi");
Corentin Charyafa7c882011-02-06 13:28:28 +0100691 if (ret) {
692 pr_err("Unable to register hotplug slot - %d\n", ret);
693 goto error_register;
694 }
695
696 return 0;
697
698error_register:
Corentin Charye12e6d92011-02-26 10:20:31 +0100699 kfree(asus->hotplug_slot->info);
Corentin Charyafa7c882011-02-06 13:28:28 +0100700error_info:
Corentin Charye12e6d92011-02-26 10:20:31 +0100701 kfree(asus->hotplug_slot);
702 asus->hotplug_slot = NULL;
Corentin Charyafa7c882011-02-06 13:28:28 +0100703error_slot:
Corentin Charye12e6d92011-02-26 10:20:31 +0100704 destroy_workqueue(asus->hotplug_workqueue);
Corentin Chary279f8f92011-02-06 13:28:29 +0100705error_workqueue:
Corentin Charyafa7c882011-02-06 13:28:28 +0100706 return ret;
707}
708
709/*
Corentin Charyba48fdb2010-11-29 08:14:07 +0100710 * Rfkill devices
711 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100712static int asus_rfkill_set(void *data, bool blocked)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100713{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100714 struct asus_rfkill *priv = data;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100715 u32 ctrl_param = !blocked;
716
Corentin Charyd33da3b2011-02-26 10:20:35 +0100717 return asus_wmi_set_devstate(priv->dev_id, ctrl_param, NULL);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100718}
719
Corentin Charye12e6d92011-02-26 10:20:31 +0100720static void asus_rfkill_query(struct rfkill *rfkill, void *data)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100721{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100722 struct asus_rfkill *priv = data;
Corentin Chary5c956382011-02-06 13:28:31 +0100723 int result;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100724
Corentin Chary1d070f892011-02-26 10:20:36 +0100725 result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100726
Corentin Chary5c956382011-02-06 13:28:31 +0100727 if (result < 0)
Corentin Charye12e6d92011-02-26 10:20:31 +0100728 return;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100729
Corentin Charya7ce3f02011-02-26 10:20:33 +0100730 rfkill_set_sw_state(priv->rfkill, !result);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100731}
732
Corentin Charye12e6d92011-02-26 10:20:31 +0100733static int asus_rfkill_wlan_set(void *data, bool blocked)
Corentin Chary279f8f92011-02-06 13:28:29 +0100734{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100735 struct asus_rfkill *priv = data;
736 struct asus_wmi *asus = priv->asus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100737 int ret;
738
739 /*
740 * This handler is enabled only if hotplug is enabled.
Corentin Charye12e6d92011-02-26 10:20:31 +0100741 * In this case, the asus_wmi_set_devstate() will
Corentin Chary279f8f92011-02-06 13:28:29 +0100742 * trigger a wmi notification and we need to wait
743 * this call to finish before being able to call
744 * any wmi method
745 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100746 mutex_lock(&asus->wmi_lock);
Corentin Charya7ce3f02011-02-26 10:20:33 +0100747 ret = asus_rfkill_set(data, blocked);
Corentin Charye12e6d92011-02-26 10:20:31 +0100748 mutex_unlock(&asus->wmi_lock);
Corentin Chary279f8f92011-02-06 13:28:29 +0100749 return ret;
750}
751
Corentin Charye12e6d92011-02-26 10:20:31 +0100752static const struct rfkill_ops asus_rfkill_wlan_ops = {
753 .set_block = asus_rfkill_wlan_set,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100754 .query = asus_rfkill_query,
Corentin Chary279f8f92011-02-06 13:28:29 +0100755};
756
Corentin Charye12e6d92011-02-26 10:20:31 +0100757static const struct rfkill_ops asus_rfkill_ops = {
758 .set_block = asus_rfkill_set,
759 .query = asus_rfkill_query,
Corentin Charyba48fdb2010-11-29 08:14:07 +0100760};
761
Corentin Charye12e6d92011-02-26 10:20:31 +0100762static int asus_new_rfkill(struct asus_wmi *asus,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100763 struct asus_rfkill *arfkill,
Corentin Charye12e6d92011-02-26 10:20:31 +0100764 const char *name, enum rfkill_type type, int dev_id)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100765{
Corentin Chary1d070f892011-02-26 10:20:36 +0100766 int result = asus_wmi_get_devstate_simple(asus, dev_id);
Corentin Charya7ce3f02011-02-26 10:20:33 +0100767 struct rfkill **rfkill = &arfkill->rfkill;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100768
Corentin Chary5c956382011-02-06 13:28:31 +0100769 if (result < 0)
770 return result;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100771
Corentin Charya7ce3f02011-02-26 10:20:33 +0100772 arfkill->dev_id = dev_id;
773 arfkill->asus = asus;
774
Corentin Charye12e6d92011-02-26 10:20:31 +0100775 if (dev_id == ASUS_WMI_DEVID_WLAN && asus->driver->hotplug_wireless)
776 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100777 &asus_rfkill_wlan_ops, arfkill);
Corentin Chary279f8f92011-02-06 13:28:29 +0100778 else
Corentin Charye12e6d92011-02-26 10:20:31 +0100779 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100780 &asus_rfkill_ops, arfkill);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100781
782 if (!*rfkill)
783 return -EINVAL;
784
Corentin Chary5c956382011-02-06 13:28:31 +0100785 rfkill_init_sw_state(*rfkill, !result);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100786 result = rfkill_register(*rfkill);
787 if (result) {
788 rfkill_destroy(*rfkill);
789 *rfkill = NULL;
790 return result;
791 }
792 return 0;
793}
794
Corentin Charye12e6d92011-02-26 10:20:31 +0100795static void asus_wmi_rfkill_exit(struct asus_wmi *asus)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100796{
Corentin Charye12e6d92011-02-26 10:20:31 +0100797 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
798 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
799 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
Corentin Charya7ce3f02011-02-26 10:20:33 +0100800 if (asus->wlan.rfkill) {
801 rfkill_unregister(asus->wlan.rfkill);
802 rfkill_destroy(asus->wlan.rfkill);
803 asus->wlan.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100804 }
Corentin Charyafa7c882011-02-06 13:28:28 +0100805 /*
806 * Refresh pci hotplug in case the rfkill state was changed after
Corentin Charye12e6d92011-02-26 10:20:31 +0100807 * asus_unregister_rfkill_notifier()
Corentin Charyafa7c882011-02-06 13:28:28 +0100808 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100809 asus_rfkill_hotplug(asus);
810 if (asus->hotplug_slot)
811 pci_hp_deregister(asus->hotplug_slot);
812 if (asus->hotplug_workqueue)
813 destroy_workqueue(asus->hotplug_workqueue);
Corentin Charyafa7c882011-02-06 13:28:28 +0100814
Corentin Charya7ce3f02011-02-26 10:20:33 +0100815 if (asus->bluetooth.rfkill) {
816 rfkill_unregister(asus->bluetooth.rfkill);
817 rfkill_destroy(asus->bluetooth.rfkill);
818 asus->bluetooth.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100819 }
Corentin Charya7ce3f02011-02-26 10:20:33 +0100820 if (asus->wimax.rfkill) {
821 rfkill_unregister(asus->wimax.rfkill);
822 rfkill_destroy(asus->wimax.rfkill);
823 asus->wimax.rfkill = NULL;
Corentin Chary2e9e1592011-02-06 13:28:37 +0100824 }
Corentin Charya7ce3f02011-02-26 10:20:33 +0100825 if (asus->wwan3g.rfkill) {
826 rfkill_unregister(asus->wwan3g.rfkill);
827 rfkill_destroy(asus->wwan3g.rfkill);
828 asus->wwan3g.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100829 }
830}
831
Corentin Charye12e6d92011-02-26 10:20:31 +0100832static int asus_wmi_rfkill_init(struct asus_wmi *asus)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100833{
834 int result = 0;
835
Corentin Charye12e6d92011-02-26 10:20:31 +0100836 mutex_init(&asus->hotplug_lock);
837 mutex_init(&asus->wmi_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100838
Corentin Charya7ce3f02011-02-26 10:20:33 +0100839 result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan",
840 RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100841
842 if (result && result != -ENODEV)
843 goto exit;
844
Corentin Charya7ce3f02011-02-26 10:20:33 +0100845 result = asus_new_rfkill(asus, &asus->bluetooth,
Corentin Charye12e6d92011-02-26 10:20:31 +0100846 "asus-bluetooth", RFKILL_TYPE_BLUETOOTH,
847 ASUS_WMI_DEVID_BLUETOOTH);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100848
849 if (result && result != -ENODEV)
850 goto exit;
851
Corentin Charya7ce3f02011-02-26 10:20:33 +0100852 result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax",
853 RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX);
Corentin Chary2e9e1592011-02-06 13:28:37 +0100854
855 if (result && result != -ENODEV)
856 goto exit;
857
Corentin Charya7ce3f02011-02-26 10:20:33 +0100858 result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g",
859 RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100860
861 if (result && result != -ENODEV)
862 goto exit;
863
Corentin Charye12e6d92011-02-26 10:20:31 +0100864 if (!asus->driver->hotplug_wireless)
Corentin Charyc14d4b82011-02-06 13:28:40 +0100865 goto exit;
866
Corentin Charye12e6d92011-02-26 10:20:31 +0100867 result = asus_setup_pci_hotplug(asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100868 /*
869 * If we get -EBUSY then something else is handling the PCI hotplug -
870 * don't fail in this case
871 */
872 if (result == -EBUSY)
873 result = 0;
874
Corentin Charye12e6d92011-02-26 10:20:31 +0100875 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
876 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
877 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
Corentin Charyafa7c882011-02-06 13:28:28 +0100878 /*
879 * Refresh pci hotplug in case the rfkill state was changed during
880 * setup.
881 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100882 asus_rfkill_hotplug(asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100883
Corentin Charyba48fdb2010-11-29 08:14:07 +0100884exit:
885 if (result && result != -ENODEV)
Corentin Charye12e6d92011-02-26 10:20:31 +0100886 asus_wmi_rfkill_exit(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100887
888 if (result == -ENODEV)
889 result = 0;
890
891 return result;
892}
893
894/*
Corentin Charye07babd2011-02-26 10:20:42 +0100895 * Hwmon device
896 */
897static ssize_t asus_hwmon_pwm1(struct device *dev,
Corentin Chary49979d02011-07-01 11:34:26 +0200898 struct device_attribute *attr,
899 char *buf)
Corentin Charye07babd2011-02-26 10:20:42 +0100900{
901 struct asus_wmi *asus = dev_get_drvdata(dev);
902 u32 value;
903 int err;
904
905 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, &value);
906
907 if (err < 0)
908 return err;
909
Corentin Chary49979d02011-07-01 11:34:26 +0200910 value &= 0xFF;
Corentin Charye07babd2011-02-26 10:20:42 +0100911
912 if (value == 1) /* Low Speed */
913 value = 85;
914 else if (value == 2)
915 value = 170;
916 else if (value == 3)
917 value = 255;
918 else if (value != 0) {
919 pr_err("Unknown fan speed %#x", value);
920 value = -1;
921 }
922
923 return sprintf(buf, "%d\n", value);
924}
925
926static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO, asus_hwmon_pwm1, NULL, 0);
927
928static ssize_t
929show_name(struct device *dev, struct device_attribute *attr, char *buf)
930{
931 return sprintf(buf, "asus\n");
932}
933static SENSOR_DEVICE_ATTR(name, S_IRUGO, show_name, NULL, 0);
934
935static struct attribute *hwmon_attributes[] = {
936 &sensor_dev_attr_pwm1.dev_attr.attr,
937 &sensor_dev_attr_name.dev_attr.attr,
938 NULL
939};
940
941static mode_t asus_hwmon_sysfs_is_visible(struct kobject *kobj,
942 struct attribute *attr, int idx)
943{
944 struct device *dev = container_of(kobj, struct device, kobj);
945 struct platform_device *pdev = to_platform_device(dev->parent);
946 struct asus_wmi *asus = platform_get_drvdata(pdev);
947 bool ok = true;
948 int dev_id = -1;
949 u32 value = ASUS_WMI_UNSUPPORTED_METHOD;
950
951 if (attr == &sensor_dev_attr_pwm1.dev_attr.attr)
952 dev_id = ASUS_WMI_DEVID_FAN_CTRL;
953
954 if (dev_id != -1) {
955 int err = asus_wmi_get_devstate(asus, dev_id, &value);
956
957 if (err < 0)
Al Viroe772aed2011-07-23 20:59:40 -0400958 return 0; /* can't return negative here */
Corentin Charye07babd2011-02-26 10:20:42 +0100959 }
960
961 if (dev_id == ASUS_WMI_DEVID_FAN_CTRL) {
962 /*
963 * We need to find a better way, probably using sfun,
964 * bits or spec ...
965 * Currently we disable it if:
966 * - ASUS_WMI_UNSUPPORTED_METHOD is returned
967 * - reverved bits are non-zero
968 * - sfun and presence bit are not set
969 */
Corentin Chary49979d02011-07-01 11:34:26 +0200970 if (value == ASUS_WMI_UNSUPPORTED_METHOD || value & 0xFFF80000
Corentin Charye07babd2011-02-26 10:20:42 +0100971 || (!asus->sfun && !(value & ASUS_WMI_DSTS_PRESENCE_BIT)))
972 ok = false;
973 }
974
975 return ok ? attr->mode : 0;
976}
977
978static struct attribute_group hwmon_attribute_group = {
979 .is_visible = asus_hwmon_sysfs_is_visible,
980 .attrs = hwmon_attributes
981};
982
983static void asus_wmi_hwmon_exit(struct asus_wmi *asus)
984{
985 struct device *hwmon;
986
987 hwmon = asus->hwmon_device;
988 if (!hwmon)
989 return;
990 sysfs_remove_group(&hwmon->kobj, &hwmon_attribute_group);
991 hwmon_device_unregister(hwmon);
992 asus->hwmon_device = NULL;
993}
994
995static int asus_wmi_hwmon_init(struct asus_wmi *asus)
996{
997 struct device *hwmon;
998 int result;
999
1000 hwmon = hwmon_device_register(&asus->platform_device->dev);
1001 if (IS_ERR(hwmon)) {
1002 pr_err("Could not register asus hwmon device\n");
1003 return PTR_ERR(hwmon);
1004 }
Corentin Chary49979d02011-07-01 11:34:26 +02001005 dev_set_drvdata(hwmon, asus);
Corentin Charye07babd2011-02-26 10:20:42 +01001006 asus->hwmon_device = hwmon;
1007 result = sysfs_create_group(&hwmon->kobj, &hwmon_attribute_group);
1008 if (result)
1009 asus_wmi_hwmon_exit(asus);
1010 return result;
1011}
1012
1013/*
Corentin Chary084fca62010-11-29 08:14:06 +01001014 * Backlight
1015 */
Corentin Chary1d070f892011-02-26 10:20:36 +01001016static int read_backlight_power(struct asus_wmi *asus)
Corentin Charyb7187262011-02-06 13:28:39 +01001017{
Corentin Chary1d070f892011-02-26 10:20:36 +01001018 int ret = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_BACKLIGHT);
Corentin Charyb7187262011-02-06 13:28:39 +01001019
1020 if (ret < 0)
1021 return ret;
1022
1023 return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
1024}
1025
Corentin Chary8fbea012011-02-26 10:20:37 +01001026static int read_brightness_max(struct asus_wmi *asus)
1027{
1028 u32 retval;
1029 int err;
1030
1031 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
1032
1033 if (err < 0)
1034 return err;
1035
1036 retval = retval & ASUS_WMI_DSTS_MAX_BRIGTH_MASK;
1037 retval >>= 8;
1038
1039 if (!retval)
1040 return -ENODEV;
1041
1042 return retval;
1043}
1044
Yong Wang3d7b1652010-04-11 09:27:54 +08001045static int read_brightness(struct backlight_device *bd)
1046{
Corentin Chary1d070f892011-02-26 10:20:36 +01001047 struct asus_wmi *asus = bl_get_data(bd);
Dan Carpenter0986f252011-03-15 10:06:23 +03001048 u32 retval;
1049 int err;
Yong Wang3d7b1652010-04-11 09:27:54 +08001050
Corentin Chary1d070f892011-02-26 10:20:36 +01001051 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
Yong Wang3d7b1652010-04-11 09:27:54 +08001052
Corentin Charyd33da3b2011-02-26 10:20:35 +01001053 if (err < 0)
1054 return err;
1055
1056 return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK;
Yong Wang3d7b1652010-04-11 09:27:54 +08001057}
1058
1059static int update_bl_status(struct backlight_device *bd)
1060{
Corentin Chary1d070f892011-02-26 10:20:36 +01001061 struct asus_wmi *asus = bl_get_data(bd);
Corentin Charydfed65d2010-11-29 08:14:12 +01001062 u32 ctrl_param;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001063 int power, err;
Yong Wang3d7b1652010-04-11 09:27:54 +08001064
1065 ctrl_param = bd->props.brightness;
1066
Corentin Charyd33da3b2011-02-26 10:20:35 +01001067 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS,
1068 ctrl_param, NULL);
Yong Wang3d7b1652010-04-11 09:27:54 +08001069
Corentin Charyd33da3b2011-02-26 10:20:35 +01001070 if (err < 0)
1071 return err;
Corentin Charyb7187262011-02-06 13:28:39 +01001072
Corentin Chary1d070f892011-02-26 10:20:36 +01001073 power = read_backlight_power(asus);
Corentin Charyb7187262011-02-06 13:28:39 +01001074 if (power != -ENODEV && bd->props.power != power) {
1075 ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK);
Corentin Charyd33da3b2011-02-26 10:20:35 +01001076 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT,
1077 ctrl_param, NULL);
Corentin Charyb7187262011-02-06 13:28:39 +01001078 }
Corentin Chary8fbea012011-02-26 10:20:37 +01001079 return err;
Yong Wang3d7b1652010-04-11 09:27:54 +08001080}
1081
Corentin Charye12e6d92011-02-26 10:20:31 +01001082static const struct backlight_ops asus_wmi_bl_ops = {
Yong Wang3d7b1652010-04-11 09:27:54 +08001083 .get_brightness = read_brightness,
1084 .update_status = update_bl_status,
1085};
1086
Corentin Charye12e6d92011-02-26 10:20:31 +01001087static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code)
Yong Wang3d7b1652010-04-11 09:27:54 +08001088{
Corentin Charye12e6d92011-02-26 10:20:31 +01001089 struct backlight_device *bd = asus->backlight_device;
Yong Wang3d7b1652010-04-11 09:27:54 +08001090 int old = bd->props.brightness;
Daniel Mackb7670ed2010-05-19 12:37:01 +02001091 int new = old;
Yong Wang3d7b1652010-04-11 09:27:54 +08001092
1093 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
1094 new = code - NOTIFY_BRNUP_MIN + 1;
1095 else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX)
1096 new = code - NOTIFY_BRNDOWN_MIN;
1097
1098 bd->props.brightness = new;
1099 backlight_update_status(bd);
1100 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
1101
1102 return old;
1103}
1104
Corentin Charye12e6d92011-02-26 10:20:31 +01001105static int asus_wmi_backlight_init(struct asus_wmi *asus)
Yong Wang3d7b1652010-04-11 09:27:54 +08001106{
1107 struct backlight_device *bd;
1108 struct backlight_properties props;
Corentin Charyb7187262011-02-06 13:28:39 +01001109 int max;
1110 int power;
1111
Corentin Chary8fbea012011-02-26 10:20:37 +01001112 max = read_brightness_max(asus);
Corentin Charyb7187262011-02-06 13:28:39 +01001113
Corentin Charyb7187262011-02-06 13:28:39 +01001114 if (max == -ENODEV)
1115 max = 0;
Corentin Chary8fbea012011-02-26 10:20:37 +01001116 else if (max < 0)
1117 return max;
1118
1119 power = read_backlight_power(asus);
1120
Corentin Charyb7187262011-02-06 13:28:39 +01001121 if (power == -ENODEV)
1122 power = FB_BLANK_UNBLANK;
Corentin Chary8fbea012011-02-26 10:20:37 +01001123 else if (power < 0)
1124 return power;
Yong Wang3d7b1652010-04-11 09:27:54 +08001125
1126 memset(&props, 0, sizeof(struct backlight_properties));
Axel Lin60cfa092011-06-29 11:43:30 +08001127 props.type = BACKLIGHT_PLATFORM;
Corentin Charyb7187262011-02-06 13:28:39 +01001128 props.max_brightness = max;
Corentin Charye12e6d92011-02-26 10:20:31 +01001129 bd = backlight_device_register(asus->driver->name,
1130 &asus->platform_device->dev, asus,
1131 &asus_wmi_bl_ops, &props);
Yong Wang3d7b1652010-04-11 09:27:54 +08001132 if (IS_ERR(bd)) {
1133 pr_err("Could not register backlight device\n");
1134 return PTR_ERR(bd);
1135 }
1136
Corentin Charye12e6d92011-02-26 10:20:31 +01001137 asus->backlight_device = bd;
Yong Wang3d7b1652010-04-11 09:27:54 +08001138
1139 bd->props.brightness = read_brightness(bd);
Corentin Charyb7187262011-02-06 13:28:39 +01001140 bd->props.power = power;
Yong Wang3d7b1652010-04-11 09:27:54 +08001141 backlight_update_status(bd);
1142
1143 return 0;
1144}
1145
Corentin Charye12e6d92011-02-26 10:20:31 +01001146static void asus_wmi_backlight_exit(struct asus_wmi *asus)
Yong Wang3d7b1652010-04-11 09:27:54 +08001147{
Corentin Charye12e6d92011-02-26 10:20:31 +01001148 if (asus->backlight_device)
1149 backlight_device_unregister(asus->backlight_device);
Yong Wang3d7b1652010-04-11 09:27:54 +08001150
Corentin Charye12e6d92011-02-26 10:20:31 +01001151 asus->backlight_device = NULL;
Yong Wang3d7b1652010-04-11 09:27:54 +08001152}
1153
Corentin Charye12e6d92011-02-26 10:20:31 +01001154static void asus_wmi_notify(u32 value, void *context)
Yong Wang3d7b1652010-04-11 09:27:54 +08001155{
Corentin Charye12e6d92011-02-26 10:20:31 +01001156 struct asus_wmi *asus = context;
Yong Wang3d7b1652010-04-11 09:27:54 +08001157 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
1158 union acpi_object *obj;
1159 acpi_status status;
1160 int code;
1161 int orig_code;
Seth Forsheec4453f62011-07-01 11:34:27 +02001162 unsigned int key_value = 1;
1163 bool autorelease = 1;
Yong Wang3d7b1652010-04-11 09:27:54 +08001164
1165 status = wmi_get_event_data(value, &response);
1166 if (status != AE_OK) {
1167 pr_err("bad event status 0x%x\n", status);
1168 return;
1169 }
1170
1171 obj = (union acpi_object *)response.pointer;
1172
Corentin Chary57ab7da2011-02-26 10:20:32 +01001173 if (!obj || obj->type != ACPI_TYPE_INTEGER)
1174 goto exit;
Yong Wang3d7b1652010-04-11 09:27:54 +08001175
Corentin Chary57ab7da2011-02-26 10:20:32 +01001176 code = obj->integer.value;
1177 orig_code = code;
Yong Wang3d7b1652010-04-11 09:27:54 +08001178
Seth Forsheec4453f62011-07-01 11:34:27 +02001179 if (asus->driver->key_filter) {
1180 asus->driver->key_filter(asus->driver, &code, &key_value,
1181 &autorelease);
1182 if (code == ASUS_WMI_KEY_IGNORE)
1183 goto exit;
1184 }
1185
Corentin Chary57ab7da2011-02-26 10:20:32 +01001186 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
1187 code = NOTIFY_BRNUP_MIN;
1188 else if (code >= NOTIFY_BRNDOWN_MIN &&
1189 code <= NOTIFY_BRNDOWN_MAX)
1190 code = NOTIFY_BRNDOWN_MIN;
Yong Wang3d7b1652010-04-11 09:27:54 +08001191
Corentin Chary57ab7da2011-02-26 10:20:32 +01001192 if (code == NOTIFY_BRNUP_MIN || code == NOTIFY_BRNDOWN_MIN) {
1193 if (!acpi_video_backlight_support())
1194 asus_wmi_backlight_notify(asus, orig_code);
Seth Forsheec4453f62011-07-01 11:34:27 +02001195 } else if (!sparse_keymap_report_event(asus->inputdev, code,
1196 key_value, autorelease))
Corentin Chary57ab7da2011-02-26 10:20:32 +01001197 pr_info("Unknown key %x pressed\n", code);
Yong Wang3d7b1652010-04-11 09:27:54 +08001198
Corentin Chary57ab7da2011-02-26 10:20:32 +01001199exit:
Yong Wang3d7b1652010-04-11 09:27:54 +08001200 kfree(obj);
1201}
1202
Corentin Chary9e1565b2011-02-06 13:28:36 +01001203/*
1204 * Sys helpers
1205 */
1206static int parse_arg(const char *buf, unsigned long count, int *val)
1207{
1208 if (!count)
1209 return 0;
1210 if (sscanf(buf, "%i", val) != 1)
1211 return -EINVAL;
1212 return count;
1213}
1214
Corentin Chary1d070f892011-02-26 10:20:36 +01001215static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid,
1216 const char *buf, size_t count)
Corentin Chary9e1565b2011-02-06 13:28:36 +01001217{
Corentin Chary9e1565b2011-02-06 13:28:36 +01001218 u32 retval;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001219 int rv, err, value;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001220
Corentin Chary1d070f892011-02-26 10:20:36 +01001221 value = asus_wmi_get_devstate_simple(asus, devid);
Corentin Charye12e6d92011-02-26 10:20:31 +01001222 if (value == -ENODEV) /* Check device presence */
Corentin Chary9e1565b2011-02-06 13:28:36 +01001223 return value;
1224
1225 rv = parse_arg(buf, count, &value);
Corentin Charyd33da3b2011-02-26 10:20:35 +01001226 err = asus_wmi_set_devstate(devid, value, &retval);
Corentin Chary9e1565b2011-02-06 13:28:36 +01001227
Corentin Charyd33da3b2011-02-26 10:20:35 +01001228 if (err < 0)
1229 return err;
1230
Corentin Chary9e1565b2011-02-06 13:28:36 +01001231 return rv;
1232}
1233
Corentin Chary1d070f892011-02-26 10:20:36 +01001234static ssize_t show_sys_wmi(struct asus_wmi *asus, int devid, char *buf)
Corentin Chary9e1565b2011-02-06 13:28:36 +01001235{
Corentin Chary1d070f892011-02-26 10:20:36 +01001236 int value = asus_wmi_get_devstate_simple(asus, devid);
Corentin Chary9e1565b2011-02-06 13:28:36 +01001237
1238 if (value < 0)
1239 return value;
1240
1241 return sprintf(buf, "%d\n", value);
1242}
1243
Corentin Charye12e6d92011-02-26 10:20:31 +01001244#define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \
Corentin Chary9e1565b2011-02-06 13:28:36 +01001245 static ssize_t show_##_name(struct device *dev, \
1246 struct device_attribute *attr, \
1247 char *buf) \
1248 { \
Corentin Chary1d070f892011-02-26 10:20:36 +01001249 struct asus_wmi *asus = dev_get_drvdata(dev); \
1250 \
1251 return show_sys_wmi(asus, _cm, buf); \
Corentin Chary9e1565b2011-02-06 13:28:36 +01001252 } \
1253 static ssize_t store_##_name(struct device *dev, \
1254 struct device_attribute *attr, \
1255 const char *buf, size_t count) \
1256 { \
Corentin Chary1d070f892011-02-26 10:20:36 +01001257 struct asus_wmi *asus = dev_get_drvdata(dev); \
1258 \
1259 return store_sys_wmi(asus, _cm, buf, count); \
Corentin Chary9e1565b2011-02-06 13:28:36 +01001260 } \
1261 static struct device_attribute dev_attr_##_name = { \
1262 .attr = { \
1263 .name = __stringify(_name), \
1264 .mode = _mode }, \
1265 .show = show_##_name, \
1266 .store = store_##_name, \
1267 }
1268
Corentin Charye12e6d92011-02-26 10:20:31 +01001269ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD);
1270ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA);
1271ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER);
Corentin Chary9e1565b2011-02-06 13:28:36 +01001272
Dmitry Torokhov67fa38e2010-11-03 11:14:01 -07001273static ssize_t store_cpufv(struct device *dev, struct device_attribute *attr,
1274 const char *buf, size_t count)
Chris Bagwell7f80d732010-10-11 18:47:18 -05001275{
1276 int value;
Chris Bagwell7f80d732010-10-11 18:47:18 -05001277
1278 if (!count || sscanf(buf, "%i", &value) != 1)
1279 return -EINVAL;
1280 if (value < 0 || value > 2)
1281 return -EINVAL;
1282
Corentin Charyd33da3b2011-02-26 10:20:35 +01001283 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001284}
1285
1286static DEVICE_ATTR(cpufv, S_IRUGO | S_IWUSR, NULL, store_cpufv);
1287
Corentin Chary4e37b422010-11-29 08:14:08 +01001288static struct attribute *platform_attributes[] = {
1289 &dev_attr_cpufv.attr,
Corentin Chary9e1565b2011-02-06 13:28:36 +01001290 &dev_attr_camera.attr,
1291 &dev_attr_cardr.attr,
Corentin Chary4615bb62011-02-06 13:28:42 +01001292 &dev_attr_touchpad.attr,
Corentin Chary4e37b422010-11-29 08:14:08 +01001293 NULL
1294};
1295
Corentin Charye12e6d92011-02-26 10:20:31 +01001296static mode_t asus_sysfs_is_visible(struct kobject *kobj,
1297 struct attribute *attr, int idx)
Corentin Chary9e1565b2011-02-06 13:28:36 +01001298{
Corentin Chary1d070f892011-02-26 10:20:36 +01001299 struct device *dev = container_of(kobj, struct device, kobj);
1300 struct platform_device *pdev = to_platform_device(dev);
1301 struct asus_wmi *asus = platform_get_drvdata(pdev);
1302 bool ok = true;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001303 int devid = -1;
1304
1305 if (attr == &dev_attr_camera.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001306 devid = ASUS_WMI_DEVID_CAMERA;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001307 else if (attr == &dev_attr_cardr.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001308 devid = ASUS_WMI_DEVID_CARDREADER;
Corentin Chary4615bb62011-02-06 13:28:42 +01001309 else if (attr == &dev_attr_touchpad.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001310 devid = ASUS_WMI_DEVID_TOUCHPAD;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001311
1312 if (devid != -1)
Corentin Chary1d070f892011-02-26 10:20:36 +01001313 ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0);
Corentin Chary9e1565b2011-02-06 13:28:36 +01001314
Corentin Chary1d070f892011-02-26 10:20:36 +01001315 return ok ? attr->mode : 0;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001316}
1317
Corentin Chary4e37b422010-11-29 08:14:08 +01001318static struct attribute_group platform_attribute_group = {
Corentin Charye12e6d92011-02-26 10:20:31 +01001319 .is_visible = asus_sysfs_is_visible,
1320 .attrs = platform_attributes
Corentin Chary4e37b422010-11-29 08:14:08 +01001321};
1322
Corentin Charye12e6d92011-02-26 10:20:31 +01001323static void asus_wmi_sysfs_exit(struct platform_device *device)
Chris Bagwell7f80d732010-10-11 18:47:18 -05001324{
Corentin Chary4e37b422010-11-29 08:14:08 +01001325 sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001326}
1327
Corentin Charye12e6d92011-02-26 10:20:31 +01001328static int asus_wmi_sysfs_init(struct platform_device *device)
Chris Bagwell7f80d732010-10-11 18:47:18 -05001329{
Corentin Chary4e37b422010-11-29 08:14:08 +01001330 return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001331}
1332
Corentin Chary27c136c2010-11-29 08:14:05 +01001333/*
1334 * Platform device
1335 */
Joe Perches39ddf3b2011-03-29 15:21:32 -07001336static int asus_wmi_platform_init(struct asus_wmi *asus)
Corentin Chary27c136c2010-11-29 08:14:05 +01001337{
Corentin Chary46dbca82011-02-26 10:20:38 +01001338 int rv;
1339
1340 /* INIT enable hotkeys on some models */
1341 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_INIT, 0, 0, &rv))
1342 pr_info("Initialization: %#x", rv);
1343
1344 /* We don't know yet what to do with this version... */
1345 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC, 0, 0x9, &rv)) {
Corentin Chary57d5c8e2011-07-01 11:34:30 +02001346 pr_info("BIOS WMI version: %d.%d", rv >> 16, rv & 0xFF);
Corentin Chary46dbca82011-02-26 10:20:38 +01001347 asus->spec = rv;
1348 }
1349
1350 /*
1351 * The SFUN method probably allows the original driver to get the list
1352 * of features supported by a given model. For now, 0x0100 or 0x0800
1353 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
1354 * The significance of others is yet to be found.
1355 */
1356 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SFUN, 0, 0, &rv)) {
1357 pr_info("SFUN value: %#x", rv);
1358 asus->sfun = rv;
1359 }
1360
Corentin Chary1d070f892011-02-26 10:20:36 +01001361 /*
1362 * Eee PC and Notebooks seems to have different method_id for DSTS,
1363 * but it may also be related to the BIOS's SPEC.
1364 * Note, on most Eeepc, there is no way to check if a method exist
1365 * or note, while on notebooks, they returns 0xFFFFFFFE on failure,
1366 * but once again, SPEC may probably be used for that kind of things.
1367 */
1368 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS, 0, 0, NULL))
1369 asus->dsts_id = ASUS_WMI_METHODID_DSTS;
1370 else if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS2, 0, 0, NULL))
1371 asus->dsts_id = ASUS_WMI_METHODID_DSTS2;
1372
1373 if (!asus->dsts_id) {
1374 pr_err("Can't find DSTS");
1375 return -ENODEV;
1376 }
1377
Corentin Charye12e6d92011-02-26 10:20:31 +01001378 return asus_wmi_sysfs_init(asus->platform_device);
Corentin Chary27c136c2010-11-29 08:14:05 +01001379}
1380
Corentin Charye12e6d92011-02-26 10:20:31 +01001381static void asus_wmi_platform_exit(struct asus_wmi *asus)
Corentin Chary27c136c2010-11-29 08:14:05 +01001382{
Corentin Charye12e6d92011-02-26 10:20:31 +01001383 asus_wmi_sysfs_exit(asus->platform_device);
Corentin Chary27c136c2010-11-29 08:14:05 +01001384}
1385
1386/*
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001387 * debugfs
1388 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001389struct asus_wmi_debugfs_node {
1390 struct asus_wmi *asus;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001391 char *name;
Corentin Charye12e6d92011-02-26 10:20:31 +01001392 int (*show) (struct seq_file *m, void *data);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001393};
1394
1395static int show_dsts(struct seq_file *m, void *data)
1396{
Corentin Charye12e6d92011-02-26 10:20:31 +01001397 struct asus_wmi *asus = m->private;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001398 int err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001399 u32 retval = -1;
1400
Corentin Chary1d070f892011-02-26 10:20:36 +01001401 err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001402
Corentin Charyd33da3b2011-02-26 10:20:35 +01001403 if (err < 0)
1404 return err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001405
Corentin Charyef343492011-02-26 10:20:39 +01001406 seq_printf(m, "DSTS(%#x) = %#x\n", asus->debug.dev_id, retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001407
1408 return 0;
1409}
1410
1411static int show_devs(struct seq_file *m, void *data)
1412{
Corentin Charye12e6d92011-02-26 10:20:31 +01001413 struct asus_wmi *asus = m->private;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001414 int err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001415 u32 retval = -1;
1416
Corentin Charyd33da3b2011-02-26 10:20:35 +01001417 err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
1418 &retval);
1419
1420 if (err < 0)
1421 return err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001422
Corentin Charyef343492011-02-26 10:20:39 +01001423 seq_printf(m, "DEVS(%#x, %#x) = %#x\n", asus->debug.dev_id,
Corentin Charye12e6d92011-02-26 10:20:31 +01001424 asus->debug.ctrl_param, retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001425
1426 return 0;
1427}
1428
Corentin Charyef343492011-02-26 10:20:39 +01001429static int show_call(struct seq_file *m, void *data)
1430{
1431 struct asus_wmi *asus = m->private;
1432 struct bios_args args = {
1433 .arg0 = asus->debug.dev_id,
1434 .arg1 = asus->debug.ctrl_param,
1435 };
1436 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
1437 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
1438 union acpi_object *obj;
1439 acpi_status status;
1440
1441 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID,
1442 1, asus->debug.method_id,
1443 &input, &output);
1444
1445 if (ACPI_FAILURE(status))
1446 return -EIO;
1447
1448 obj = (union acpi_object *)output.pointer;
1449 if (obj && obj->type == ACPI_TYPE_INTEGER)
1450 seq_printf(m, "%#x(%#x, %#x) = %#x\n", asus->debug.method_id,
1451 asus->debug.dev_id, asus->debug.ctrl_param,
1452 (u32) obj->integer.value);
1453 else
1454 seq_printf(m, "%#x(%#x, %#x) = t:%d\n", asus->debug.method_id,
1455 asus->debug.dev_id, asus->debug.ctrl_param,
Dan Carpentera1d60862011-03-15 10:07:37 +03001456 obj ? obj->type : -1);
Corentin Charyef343492011-02-26 10:20:39 +01001457
1458 kfree(obj);
1459
1460 return 0;
1461}
1462
Corentin Charye12e6d92011-02-26 10:20:31 +01001463static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = {
1464 {NULL, "devs", show_devs},
1465 {NULL, "dsts", show_dsts},
Corentin Charyef343492011-02-26 10:20:39 +01001466 {NULL, "call", show_call},
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001467};
1468
Corentin Charye12e6d92011-02-26 10:20:31 +01001469static int asus_wmi_debugfs_open(struct inode *inode, struct file *file)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001470{
Corentin Charye12e6d92011-02-26 10:20:31 +01001471 struct asus_wmi_debugfs_node *node = inode->i_private;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001472
Corentin Charye12e6d92011-02-26 10:20:31 +01001473 return single_open(file, node->show, node->asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001474}
1475
Corentin Charye12e6d92011-02-26 10:20:31 +01001476static const struct file_operations asus_wmi_debugfs_io_ops = {
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001477 .owner = THIS_MODULE,
Corentin Charye12e6d92011-02-26 10:20:31 +01001478 .open = asus_wmi_debugfs_open,
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001479 .read = seq_read,
1480 .llseek = seq_lseek,
1481 .release = single_release,
1482};
1483
Corentin Charye12e6d92011-02-26 10:20:31 +01001484static void asus_wmi_debugfs_exit(struct asus_wmi *asus)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001485{
Corentin Charye12e6d92011-02-26 10:20:31 +01001486 debugfs_remove_recursive(asus->debug.root);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001487}
1488
Corentin Charye12e6d92011-02-26 10:20:31 +01001489static int asus_wmi_debugfs_init(struct asus_wmi *asus)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001490{
1491 struct dentry *dent;
1492 int i;
1493
Corentin Charye12e6d92011-02-26 10:20:31 +01001494 asus->debug.root = debugfs_create_dir(asus->driver->name, NULL);
1495 if (!asus->debug.root) {
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001496 pr_err("failed to create debugfs directory");
1497 goto error_debugfs;
1498 }
1499
Corentin Charyef343492011-02-26 10:20:39 +01001500 dent = debugfs_create_x32("method_id", S_IRUGO | S_IWUSR,
1501 asus->debug.root, &asus->debug.method_id);
1502 if (!dent)
1503 goto error_debugfs;
1504
Corentin Charye12e6d92011-02-26 10:20:31 +01001505 dent = debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR,
1506 asus->debug.root, &asus->debug.dev_id);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001507 if (!dent)
1508 goto error_debugfs;
1509
Corentin Charye12e6d92011-02-26 10:20:31 +01001510 dent = debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR,
1511 asus->debug.root, &asus->debug.ctrl_param);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001512 if (!dent)
1513 goto error_debugfs;
1514
Corentin Charye12e6d92011-02-26 10:20:31 +01001515 for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) {
1516 struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i];
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001517
Corentin Charye12e6d92011-02-26 10:20:31 +01001518 node->asus = asus;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001519 dent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
Corentin Charye12e6d92011-02-26 10:20:31 +01001520 asus->debug.root, node,
1521 &asus_wmi_debugfs_io_ops);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001522 if (!dent) {
1523 pr_err("failed to create debug file: %s\n", node->name);
1524 goto error_debugfs;
1525 }
1526 }
1527
1528 return 0;
1529
1530error_debugfs:
Corentin Charye12e6d92011-02-26 10:20:31 +01001531 asus_wmi_debugfs_exit(asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001532 return -ENOMEM;
1533}
1534
1535/*
Corentin Chary27c136c2010-11-29 08:14:05 +01001536 * WMI Driver
1537 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001538static int asus_wmi_add(struct platform_device *pdev)
Corentin Charyafa7c882011-02-06 13:28:28 +01001539{
Corentin Charye12e6d92011-02-26 10:20:31 +01001540 struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
1541 struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
1542 struct asus_wmi *asus;
Yong Wangee027e42010-03-21 10:26:34 +08001543 acpi_status status;
Corentin Chary27c136c2010-11-29 08:14:05 +01001544 int err;
Yong Wangee027e42010-03-21 10:26:34 +08001545
Corentin Charye12e6d92011-02-26 10:20:31 +01001546 asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL);
1547 if (!asus)
Corentin Charya04ce292011-02-06 13:28:33 +01001548 return -ENOMEM;
1549
Corentin Charye12e6d92011-02-26 10:20:31 +01001550 asus->driver = wdrv;
1551 asus->platform_device = pdev;
1552 wdrv->platform_device = pdev;
1553 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001554
Corentin Charye12e6d92011-02-26 10:20:31 +01001555 if (wdrv->quirks)
1556 wdrv->quirks(asus->driver);
Corentin Charyafa7c882011-02-06 13:28:28 +01001557
Corentin Charye12e6d92011-02-26 10:20:31 +01001558 err = asus_wmi_platform_init(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001559 if (err)
1560 goto fail_platform;
Yong Wang45f2c692010-04-11 09:27:19 +08001561
Corentin Charye12e6d92011-02-26 10:20:31 +01001562 err = asus_wmi_input_init(asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001563 if (err)
Corentin Chary27c136c2010-11-29 08:14:05 +01001564 goto fail_input;
Yong Wang3d7b1652010-04-11 09:27:54 +08001565
Corentin Charye07babd2011-02-26 10:20:42 +01001566 err = asus_wmi_hwmon_init(asus);
1567 if (err)
1568 goto fail_hwmon;
1569
Corentin Charye12e6d92011-02-26 10:20:31 +01001570 err = asus_wmi_led_init(asus);
Corentin Chary084fca62010-11-29 08:14:06 +01001571 if (err)
1572 goto fail_leds;
1573
Corentin Charye12e6d92011-02-26 10:20:31 +01001574 err = asus_wmi_rfkill_init(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +01001575 if (err)
1576 goto fail_rfkill;
1577
Yong Wang3d7b1652010-04-11 09:27:54 +08001578 if (!acpi_video_backlight_support()) {
Corentin Charye12e6d92011-02-26 10:20:31 +01001579 err = asus_wmi_backlight_init(asus);
Corentin Charyb7187262011-02-06 13:28:39 +01001580 if (err && err != -ENODEV)
Corentin Chary27c136c2010-11-29 08:14:05 +01001581 goto fail_backlight;
Yong Wang3d7b1652010-04-11 09:27:54 +08001582 } else
1583 pr_info("Backlight controlled by ACPI video driver\n");
Yong Wang45f2c692010-04-11 09:27:19 +08001584
Corentin Charye12e6d92011-02-26 10:20:31 +01001585 status = wmi_install_notify_handler(asus->driver->event_guid,
1586 asus_wmi_notify, asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001587 if (ACPI_FAILURE(status)) {
Corentin Charye12e6d92011-02-26 10:20:31 +01001588 pr_err("Unable to register notify handler - %d\n", status);
Yong Wang45f2c692010-04-11 09:27:19 +08001589 err = -ENODEV;
Corentin Chary27c136c2010-11-29 08:14:05 +01001590 goto fail_wmi_handler;
Yong Wang45f2c692010-04-11 09:27:19 +08001591 }
1592
Corentin Charye12e6d92011-02-26 10:20:31 +01001593 err = asus_wmi_debugfs_init(asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001594 if (err)
1595 goto fail_debugfs;
1596
Corentin Charya04ce292011-02-06 13:28:33 +01001597 return 0;
Yong Wang45f2c692010-04-11 09:27:19 +08001598
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001599fail_debugfs:
Corentin Charye12e6d92011-02-26 10:20:31 +01001600 wmi_remove_notify_handler(asus->driver->event_guid);
Corentin Chary27c136c2010-11-29 08:14:05 +01001601fail_wmi_handler:
Corentin Charye12e6d92011-02-26 10:20:31 +01001602 asus_wmi_backlight_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001603fail_backlight:
Corentin Charye12e6d92011-02-26 10:20:31 +01001604 asus_wmi_rfkill_exit(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +01001605fail_rfkill:
Corentin Charye12e6d92011-02-26 10:20:31 +01001606 asus_wmi_led_exit(asus);
Corentin Chary084fca62010-11-29 08:14:06 +01001607fail_leds:
Corentin Charye07babd2011-02-26 10:20:42 +01001608 asus_wmi_hwmon_exit(asus);
1609fail_hwmon:
Corentin Charye12e6d92011-02-26 10:20:31 +01001610 asus_wmi_input_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001611fail_input:
Corentin Charye12e6d92011-02-26 10:20:31 +01001612 asus_wmi_platform_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001613fail_platform:
Corentin Charye12e6d92011-02-26 10:20:31 +01001614 kfree(asus);
Corentin Charya04ce292011-02-06 13:28:33 +01001615 return err;
Yong Wang45f2c692010-04-11 09:27:19 +08001616}
1617
Corentin Charye12e6d92011-02-26 10:20:31 +01001618static int asus_wmi_remove(struct platform_device *device)
Yong Wang45f2c692010-04-11 09:27:19 +08001619{
Corentin Charye12e6d92011-02-26 10:20:31 +01001620 struct asus_wmi *asus;
Yong Wang45f2c692010-04-11 09:27:19 +08001621
Corentin Charye12e6d92011-02-26 10:20:31 +01001622 asus = platform_get_drvdata(device);
1623 wmi_remove_notify_handler(asus->driver->event_guid);
1624 asus_wmi_backlight_exit(asus);
1625 asus_wmi_input_exit(asus);
Corentin Charye07babd2011-02-26 10:20:42 +01001626 asus_wmi_hwmon_exit(asus);
Corentin Charye12e6d92011-02-26 10:20:31 +01001627 asus_wmi_led_exit(asus);
1628 asus_wmi_rfkill_exit(asus);
1629 asus_wmi_debugfs_exit(asus);
1630 asus_wmi_platform_exit(asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001631
Corentin Charye12e6d92011-02-26 10:20:31 +01001632 kfree(asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001633 return 0;
1634}
1635
Corentin Chary0773d7f2011-02-06 13:28:32 +01001636/*
1637 * Platform driver - hibernate/resume callbacks
1638 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001639static int asus_hotk_thaw(struct device *device)
Corentin Chary0773d7f2011-02-06 13:28:32 +01001640{
Corentin Charye12e6d92011-02-26 10:20:31 +01001641 struct asus_wmi *asus = dev_get_drvdata(device);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001642
Corentin Charya7ce3f02011-02-26 10:20:33 +01001643 if (asus->wlan.rfkill) {
Corentin Chary0773d7f2011-02-06 13:28:32 +01001644 bool wlan;
1645
1646 /*
1647 * Work around bios bug - acpi _PTS turns off the wireless led
1648 * during suspend. Normally it restores it on resume, but
1649 * we should kick it ourselves in case hibernation is aborted.
1650 */
Corentin Chary1d070f892011-02-26 10:20:36 +01001651 wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charye12e6d92011-02-26 10:20:31 +01001652 asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001653 }
1654
1655 return 0;
1656}
1657
Corentin Charye12e6d92011-02-26 10:20:31 +01001658static int asus_hotk_restore(struct device *device)
Corentin Chary0773d7f2011-02-06 13:28:32 +01001659{
Corentin Charye12e6d92011-02-26 10:20:31 +01001660 struct asus_wmi *asus = dev_get_drvdata(device);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001661 int bl;
1662
1663 /* Refresh both wlan rfkill state and pci hotplug */
Corentin Charya7ce3f02011-02-26 10:20:33 +01001664 if (asus->wlan.rfkill)
Corentin Charye12e6d92011-02-26 10:20:31 +01001665 asus_rfkill_hotplug(asus);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001666
Corentin Charya7ce3f02011-02-26 10:20:33 +01001667 if (asus->bluetooth.rfkill) {
Corentin Chary1d070f892011-02-26 10:20:36 +01001668 bl = !asus_wmi_get_devstate_simple(asus,
1669 ASUS_WMI_DEVID_BLUETOOTH);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001670 rfkill_set_sw_state(asus->bluetooth.rfkill, bl);
Corentin Chary2e9e1592011-02-06 13:28:37 +01001671 }
Corentin Charya7ce3f02011-02-26 10:20:33 +01001672 if (asus->wimax.rfkill) {
Corentin Chary1d070f892011-02-26 10:20:36 +01001673 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001674 rfkill_set_sw_state(asus->wimax.rfkill, bl);
Corentin Chary2e9e1592011-02-06 13:28:37 +01001675 }
Corentin Charya7ce3f02011-02-26 10:20:33 +01001676 if (asus->wwan3g.rfkill) {
Corentin Chary1d070f892011-02-26 10:20:36 +01001677 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001678 rfkill_set_sw_state(asus->wwan3g.rfkill, bl);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001679 }
1680
1681 return 0;
1682}
1683
Corentin Charye12e6d92011-02-26 10:20:31 +01001684static const struct dev_pm_ops asus_pm_ops = {
1685 .thaw = asus_hotk_thaw,
1686 .restore = asus_hotk_restore,
Corentin Chary0773d7f2011-02-06 13:28:32 +01001687};
1688
Corentin Charye12e6d92011-02-26 10:20:31 +01001689static int asus_wmi_probe(struct platform_device *pdev)
Corentin Charyd358cb52010-11-29 08:14:14 +01001690{
Corentin Charye12e6d92011-02-26 10:20:31 +01001691 struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
1692 struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
1693 int ret;
Corentin Charyd358cb52010-11-29 08:14:14 +01001694
Corentin Charye12e6d92011-02-26 10:20:31 +01001695 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001696 pr_warn("Management GUID not found\n");
Yong Wangee027e42010-03-21 10:26:34 +08001697 return -ENODEV;
1698 }
1699
Corentin Charye12e6d92011-02-26 10:20:31 +01001700 if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001701 pr_warn("Event GUID not found\n");
Corentin Charyd358cb52010-11-29 08:14:14 +01001702 return -ENODEV;
1703 }
1704
Corentin Charye12e6d92011-02-26 10:20:31 +01001705 if (wdrv->probe) {
1706 ret = wdrv->probe(pdev);
1707 if (ret)
1708 return ret;
1709 }
1710
1711 return asus_wmi_add(pdev);
Corentin Charya04ce292011-02-06 13:28:33 +01001712}
Yong Wangee027e42010-03-21 10:26:34 +08001713
Corentin Charye12e6d92011-02-26 10:20:31 +01001714static bool used;
Yong Wangee027e42010-03-21 10:26:34 +08001715
Corentin Chary8fe8c252011-07-01 11:34:32 +02001716int __init_or_module asus_wmi_register_driver(struct asus_wmi_driver *driver)
Corentin Charya04ce292011-02-06 13:28:33 +01001717{
Corentin Charye12e6d92011-02-26 10:20:31 +01001718 struct platform_driver *platform_driver;
1719 struct platform_device *platform_device;
1720
1721 if (used)
1722 return -EBUSY;
1723
1724 platform_driver = &driver->platform_driver;
1725 platform_driver->remove = asus_wmi_remove;
1726 platform_driver->driver.owner = driver->owner;
1727 platform_driver->driver.name = driver->name;
1728 platform_driver->driver.pm = &asus_pm_ops;
1729
1730 platform_device = platform_create_bundle(platform_driver,
1731 asus_wmi_probe,
Corentin Charya04ce292011-02-06 13:28:33 +01001732 NULL, 0, NULL, 0);
1733 if (IS_ERR(platform_device))
1734 return PTR_ERR(platform_device);
Corentin Charye12e6d92011-02-26 10:20:31 +01001735
1736 used = true;
1737 return 0;
1738}
1739EXPORT_SYMBOL_GPL(asus_wmi_register_driver);
1740
1741void asus_wmi_unregister_driver(struct asus_wmi_driver *driver)
1742{
1743 platform_device_unregister(driver->platform_device);
1744 platform_driver_unregister(&driver->platform_driver);
1745 used = false;
1746}
1747EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver);
1748
1749static int __init asus_wmi_init(void)
1750{
1751 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
1752 pr_info("Asus Management GUID not found");
1753 return -ENODEV;
1754 }
1755
1756 pr_info("ASUS WMI generic driver loaded");
Yong Wangee027e42010-03-21 10:26:34 +08001757 return 0;
1758}
1759
Corentin Charye12e6d92011-02-26 10:20:31 +01001760static void __exit asus_wmi_exit(void)
Yong Wangee027e42010-03-21 10:26:34 +08001761{
Corentin Charye12e6d92011-02-26 10:20:31 +01001762 pr_info("ASUS WMI generic driver unloaded");
Yong Wangee027e42010-03-21 10:26:34 +08001763}
1764
Corentin Charye12e6d92011-02-26 10:20:31 +01001765module_init(asus_wmi_init);
1766module_exit(asus_wmi_exit);