blob: fd5b08eecf1ef957d69f916ff87c2e867819bb65 [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 Chary8c1b2d82010-11-29 08:14:09 +010042#include <linux/debugfs.h>
43#include <linux/seq_file.h>
Yong Wang45f2c692010-04-11 09:27:19 +080044#include <linux/platform_device.h>
Yong Wangee027e42010-03-21 10:26:34 +080045#include <acpi/acpi_bus.h>
46#include <acpi/acpi_drivers.h>
47
Corentin Charye12e6d92011-02-26 10:20:31 +010048#include "asus-wmi.h"
Yong Wang45f2c692010-04-11 09:27:19 +080049
Corentin Charye12e6d92011-02-26 10:20:31 +010050MODULE_AUTHOR("Corentin Chary <corentincj@iksaif.net>, "
51 "Yong Wang <yong.y.wang@intel.com>");
52MODULE_DESCRIPTION("Asus Generic WMI Driver");
Yong Wangee027e42010-03-21 10:26:34 +080053MODULE_LICENSE("GPL");
54
Corentin Charye12e6d92011-02-26 10:20:31 +010055#define to_platform_driver(drv) \
56 (container_of((drv), struct platform_driver, driver))
Corentin Charyd358cb52010-11-29 08:14:14 +010057
Corentin Charye12e6d92011-02-26 10:20:31 +010058#define to_asus_wmi_driver(pdrv) \
59 (container_of((pdrv), struct asus_wmi_driver, platform_driver))
Yong Wangee027e42010-03-21 10:26:34 +080060
Corentin Charye12e6d92011-02-26 10:20:31 +010061#define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66"
Yong Wangee027e42010-03-21 10:26:34 +080062
Corentin Chary33e0e6f2011-02-06 13:28:34 +010063#define NOTIFY_BRNUP_MIN 0x11
64#define NOTIFY_BRNUP_MAX 0x1f
65#define NOTIFY_BRNDOWN_MIN 0x20
66#define NOTIFY_BRNDOWN_MAX 0x2e
Yong Wangee027e42010-03-21 10:26:34 +080067
Corentin Chary43815942011-02-06 13:28:43 +010068/* WMI Methods */
Corentin Charye12e6d92011-02-26 10:20:31 +010069#define ASUS_WMI_METHODID_DSTS 0x53544344
Corentin Chary1d070f82011-02-26 10:20:36 +010070#define ASUS_WMI_METHODID_DSTS2 0x53545344
Corentin Charye12e6d92011-02-26 10:20:31 +010071#define ASUS_WMI_METHODID_DEVS 0x53564544
72#define ASUS_WMI_METHODID_CFVS 0x53564643
Yong Wang3d7b1652010-04-11 09:27:54 +080073
Corentin Charyd33da3b2011-02-26 10:20:35 +010074#define ASUS_WMI_UNSUPPORTED_METHOD 0xFFFFFFFE
75
Corentin Chary43815942011-02-06 13:28:43 +010076/* Wireless */
Corentin Charye12e6d92011-02-26 10:20:31 +010077#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
Corentin Chary43815942011-02-06 13:28:43 +010081
82/* Backlight and Brightness */
Corentin Charye12e6d92011-02-26 10:20:31 +010083#define ASUS_WMI_DEVID_BACKLIGHT 0x00050011
84#define ASUS_WMI_DEVID_BRIGHTNESS 0x00050012
Corentin Chary43815942011-02-06 13:28:43 +010085
86/* Misc */
Corentin Charye12e6d92011-02-26 10:20:31 +010087#define ASUS_WMI_DEVID_CAMERA 0x00060013
Corentin Chary43815942011-02-06 13:28:43 +010088
89/* Storage */
Corentin Charye12e6d92011-02-26 10:20:31 +010090#define ASUS_WMI_DEVID_CARDREADER 0x00080013
Corentin Chary43815942011-02-06 13:28:43 +010091
92/* Input */
Corentin Chary57ab7da2011-02-26 10:20:32 +010093#define ASUS_WMI_DEVID_TOUCHPAD 0x00100011
Corentin Charye12e6d92011-02-26 10:20:31 +010094#define ASUS_WMI_DEVID_TOUCHPAD_LED 0x00100012
Yong Wang3d7b1652010-04-11 09:27:54 +080095
Corentin Chary43815942011-02-06 13:28:43 +010096/* DSTS masks */
Corentin Charye12e6d92011-02-26 10:20:31 +010097#define ASUS_WMI_DSTS_STATUS_BIT 0x00000001
Corentin Charya75fe0d2011-02-26 10:20:34 +010098#define ASUS_WMI_DSTS_UNKNOWN_BIT 0x00000002
Corentin Charye12e6d92011-02-26 10:20:31 +010099#define ASUS_WMI_DSTS_PRESENCE_BIT 0x00010000
100#define ASUS_WMI_DSTS_BRIGHTNESS_MASK 0x000000FF
101#define ASUS_WMI_DSTS_MAX_BRIGTH_MASK 0x0000FF00
Yong Wangee027e42010-03-21 10:26:34 +0800102
Yong Wang3d7b1652010-04-11 09:27:54 +0800103struct bios_args {
Corentin Charyd33da3b2011-02-26 10:20:35 +0100104 u32 arg0;
105 u32 arg1;
106} __packed;
Yong Wang3d7b1652010-04-11 09:27:54 +0800107
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100108/*
Corentin Charye12e6d92011-02-26 10:20:31 +0100109 * <platform>/ - debugfs root directory
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100110 * 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 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100115struct asus_wmi_debug {
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100116 struct dentry *root;
117 u32 dev_id;
118 u32 ctrl_param;
119};
120
Corentin Charya7ce3f02011-02-26 10:20:33 +0100121struct asus_rfkill {
122 struct asus_wmi *asus;
123 struct rfkill *rfkill;
124 u32 dev_id;
125};
126
Corentin Charye12e6d92011-02-26 10:20:31 +0100127struct asus_wmi {
Corentin Chary1d070f82011-02-26 10:20:36 +0100128 int dsts_id;
129
Yong Wang81248882010-04-11 09:26:33 +0800130 struct input_dev *inputdev;
Yong Wang3d7b1652010-04-11 09:27:54 +0800131 struct backlight_device *backlight_device;
Corentin Chary27c136c2010-11-29 08:14:05 +0100132 struct platform_device *platform_device;
Corentin Chary084fca62010-11-29 08:14:06 +0100133
134 struct led_classdev tpd_led;
135 int tpd_led_wk;
136 struct workqueue_struct *led_workqueue;
137 struct work_struct tpd_led_work;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100138
Corentin Charya7ce3f02011-02-26 10:20:33 +0100139 struct asus_rfkill wlan;
140 struct asus_rfkill bluetooth;
141 struct asus_rfkill wimax;
142 struct asus_rfkill wwan3g;
Corentin Chary8c1b2d82010-11-29 08:14:09 +0100143
Corentin Charyafa7c882011-02-06 13:28:28 +0100144 struct hotplug_slot *hotplug_slot;
145 struct mutex hotplug_lock;
Corentin Chary279f8f92011-02-06 13:28:29 +0100146 struct mutex wmi_lock;
147 struct workqueue_struct *hotplug_workqueue;
148 struct work_struct hotplug_work;
Corentin Charyafa7c882011-02-06 13:28:28 +0100149
Corentin Charye12e6d92011-02-26 10:20:31 +0100150 struct asus_wmi_debug debug;
151
152 struct asus_wmi_driver *driver;
Yong Wang81248882010-04-11 09:26:33 +0800153};
154
Corentin Charye12e6d92011-02-26 10:20:31 +0100155static int asus_wmi_input_init(struct asus_wmi *asus)
Yong Wangee027e42010-03-21 10:26:34 +0800156{
157 int err;
158
Corentin Charye12e6d92011-02-26 10:20:31 +0100159 asus->inputdev = input_allocate_device();
160 if (!asus->inputdev)
Yong Wangee027e42010-03-21 10:26:34 +0800161 return -ENOMEM;
162
Corentin Charye12e6d92011-02-26 10:20:31 +0100163 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;
Yong Wangee027e42010-03-21 10:26:34 +0800167
Corentin Charye12e6d92011-02-26 10:20:31 +0100168 err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL);
Yong Wangee027e42010-03-21 10:26:34 +0800169 if (err)
170 goto err_free_dev;
171
Corentin Charye12e6d92011-02-26 10:20:31 +0100172 err = input_register_device(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800173 if (err)
174 goto err_free_keymap;
175
176 return 0;
177
178err_free_keymap:
Corentin Charye12e6d92011-02-26 10:20:31 +0100179 sparse_keymap_free(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800180err_free_dev:
Corentin Charye12e6d92011-02-26 10:20:31 +0100181 input_free_device(asus->inputdev);
Yong Wangee027e42010-03-21 10:26:34 +0800182 return err;
183}
184
Corentin Charye12e6d92011-02-26 10:20:31 +0100185static void asus_wmi_input_exit(struct asus_wmi *asus)
Yong Wang81248882010-04-11 09:26:33 +0800186{
Corentin Charye12e6d92011-02-26 10:20:31 +0100187 if (asus->inputdev) {
188 sparse_keymap_free(asus->inputdev);
189 input_unregister_device(asus->inputdev);
Yong Wang81248882010-04-11 09:26:33 +0800190 }
191
Corentin Charye12e6d92011-02-26 10:20:31 +0100192 asus->inputdev = NULL;
Yong Wang81248882010-04-11 09:26:33 +0800193}
194
Corentin Charyd33da3b2011-02-26 10:20:35 +0100195static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1,
196 u32 *retval)
Yong Wang3d7b1652010-04-11 09:27:54 +0800197{
Corentin Charyd33da3b2011-02-26 10:20:35 +0100198 struct bios_args args = {
199 .arg0 = arg0,
200 .arg1 = arg1,
201 };
202 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
Yong Wang3d7b1652010-04-11 09:27:54 +0800203 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
Yong Wang3d7b1652010-04-11 09:27:54 +0800204 acpi_status status;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100205 union acpi_object *obj;
Yong Wang3d7b1652010-04-11 09:27:54 +0800206 u32 tmp;
207
Corentin Charyd33da3b2011-02-26 10:20:35 +0100208 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 1, method_id,
Corentin Charyafa7c882011-02-06 13:28:28 +0100209 &input, &output);
Yong Wang3d7b1652010-04-11 09:27:54 +0800210
211 if (ACPI_FAILURE(status))
Corentin Charyd33da3b2011-02-26 10:20:35 +0100212 goto exit;
Yong Wang3d7b1652010-04-11 09:27:54 +0800213
214 obj = (union acpi_object *)output.pointer;
215 if (obj && obj->type == ACPI_TYPE_INTEGER)
Corentin Charye12e6d92011-02-26 10:20:31 +0100216 tmp = (u32) obj->integer.value;
Yong Wang3d7b1652010-04-11 09:27:54 +0800217 else
218 tmp = 0;
219
Corentin Chary2a3f0062010-11-29 08:14:10 +0100220 if (retval)
221 *retval = tmp;
Yong Wang3d7b1652010-04-11 09:27:54 +0800222
223 kfree(obj);
224
Corentin Charyd33da3b2011-02-26 10:20:35 +0100225exit:
226 if (ACPI_FAILURE(status))
227 return -EIO;
Yong Wang3d7b1652010-04-11 09:27:54 +0800228
Corentin Charyd33da3b2011-02-26 10:20:35 +0100229 if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
230 return -ENODEV;
231
232 return 0;
Yong Wang3d7b1652010-04-11 09:27:54 +0800233}
234
Corentin Chary1d070f82011-02-26 10:20:36 +0100235static int asus_wmi_get_devstate(struct asus_wmi *asus, u32 dev_id, u32 *retval)
Corentin Charyd33da3b2011-02-26 10:20:35 +0100236{
Corentin Chary1d070f82011-02-26 10:20:36 +0100237 return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval);
Corentin Charyd33da3b2011-02-26 10:20:35 +0100238}
239
240static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param,
Corentin Chary1d070f82011-02-26 10:20:36 +0100241 u32 *retval)
Yong Wang3d7b1652010-04-11 09:27:54 +0800242{
Corentin Charyd33da3b2011-02-26 10:20:35 +0100243 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id,
244 ctrl_param, retval);
Yong Wang3d7b1652010-04-11 09:27:54 +0800245}
246
Corentin Chary5c956382011-02-06 13:28:31 +0100247/* Helper for special devices with magic return codes */
Corentin Chary1d070f82011-02-26 10:20:36 +0100248static int asus_wmi_get_devstate_bits(struct asus_wmi *asus,
249 u32 dev_id, u32 mask)
Corentin Chary5c956382011-02-06 13:28:31 +0100250{
251 u32 retval = 0;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100252 int err;
Corentin Chary5c956382011-02-06 13:28:31 +0100253
Corentin Chary1d070f82011-02-26 10:20:36 +0100254 err = asus_wmi_get_devstate(asus, dev_id, &retval);
Corentin Chary5c956382011-02-06 13:28:31 +0100255
Corentin Charyd33da3b2011-02-26 10:20:35 +0100256 if (err < 0)
257 return err;
Corentin Chary5c956382011-02-06 13:28:31 +0100258
Corentin Charye12e6d92011-02-26 10:20:31 +0100259 if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT))
Corentin Chary5c956382011-02-06 13:28:31 +0100260 return -ENODEV;
261
Corentin Charya75fe0d2011-02-26 10:20:34 +0100262 if (mask == ASUS_WMI_DSTS_STATUS_BIT) {
263 if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT)
264 return -ENODEV;
265 }
266
Corentin Charyb7187262011-02-06 13:28:39 +0100267 return retval & mask;
268}
269
Corentin Chary1d070f82011-02-26 10:20:36 +0100270static int asus_wmi_get_devstate_simple(struct asus_wmi *asus, u32 dev_id)
Corentin Charyb7187262011-02-06 13:28:39 +0100271{
Corentin Chary1d070f82011-02-26 10:20:36 +0100272 return asus_wmi_get_devstate_bits(asus, dev_id,
273 ASUS_WMI_DSTS_STATUS_BIT);
Corentin Chary5c956382011-02-06 13:28:31 +0100274}
275
Corentin Chary084fca62010-11-29 08:14:06 +0100276/*
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
Corentin Charye12e6d92011-02-26 10:20:31 +0100282 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
Corentin Chary084fca62010-11-29 08:14:06 +0100283 * potentially bad time, such as a timer interrupt.
284 */
285static void tpd_led_update(struct work_struct *work)
286{
287 int ctrl_param;
Corentin Charye12e6d92011-02-26 10:20:31 +0100288 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100289
Corentin Charye12e6d92011-02-26 10:20:31 +0100290 asus = container_of(work, struct asus_wmi, tpd_led_work);
Corentin Chary084fca62010-11-29 08:14:06 +0100291
Corentin Charye12e6d92011-02-26 10:20:31 +0100292 ctrl_param = asus->tpd_led_wk;
293 asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL);
Corentin Chary084fca62010-11-29 08:14:06 +0100294}
295
296static void tpd_led_set(struct led_classdev *led_cdev,
297 enum led_brightness value)
298{
Corentin Charye12e6d92011-02-26 10:20:31 +0100299 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100300
Corentin Charye12e6d92011-02-26 10:20:31 +0100301 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
Corentin Chary084fca62010-11-29 08:14:06 +0100302
Corentin Charye12e6d92011-02-26 10:20:31 +0100303 asus->tpd_led_wk = !!value;
304 queue_work(asus->led_workqueue, &asus->tpd_led_work);
Corentin Chary084fca62010-11-29 08:14:06 +0100305}
306
Corentin Charye12e6d92011-02-26 10:20:31 +0100307static int read_tpd_led_state(struct asus_wmi *asus)
Corentin Chary084fca62010-11-29 08:14:06 +0100308{
Corentin Chary1d070f82011-02-26 10:20:36 +0100309 return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED);
Corentin Chary084fca62010-11-29 08:14:06 +0100310}
311
312static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
313{
Corentin Charye12e6d92011-02-26 10:20:31 +0100314 struct asus_wmi *asus;
Corentin Chary084fca62010-11-29 08:14:06 +0100315
Corentin Charye12e6d92011-02-26 10:20:31 +0100316 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
Corentin Chary084fca62010-11-29 08:14:06 +0100317
Corentin Charye12e6d92011-02-26 10:20:31 +0100318 return read_tpd_led_state(asus);
Corentin Chary084fca62010-11-29 08:14:06 +0100319}
320
Corentin Charye12e6d92011-02-26 10:20:31 +0100321static int asus_wmi_led_init(struct asus_wmi *asus)
Corentin Chary084fca62010-11-29 08:14:06 +0100322{
323 int rv;
324
Corentin Charye12e6d92011-02-26 10:20:31 +0100325 if (read_tpd_led_state(asus) < 0)
Corentin Chary084fca62010-11-29 08:14:06 +0100326 return 0;
327
Corentin Charye12e6d92011-02-26 10:20:31 +0100328 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
329 if (!asus->led_workqueue)
Corentin Chary084fca62010-11-29 08:14:06 +0100330 return -ENOMEM;
Corentin Charye12e6d92011-02-26 10:20:31 +0100331 INIT_WORK(&asus->tpd_led_work, tpd_led_update);
Corentin Chary084fca62010-11-29 08:14:06 +0100332
Corentin Charye12e6d92011-02-26 10:20:31 +0100333 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;
Corentin Chary084fca62010-11-29 08:14:06 +0100337
Corentin Charye12e6d92011-02-26 10:20:31 +0100338 rv = led_classdev_register(&asus->platform_device->dev, &asus->tpd_led);
Corentin Chary084fca62010-11-29 08:14:06 +0100339 if (rv) {
Corentin Charye12e6d92011-02-26 10:20:31 +0100340 destroy_workqueue(asus->led_workqueue);
Corentin Chary084fca62010-11-29 08:14:06 +0100341 return rv;
342 }
343
344 return 0;
345}
346
Corentin Charye12e6d92011-02-26 10:20:31 +0100347static void asus_wmi_led_exit(struct asus_wmi *asus)
Corentin Chary084fca62010-11-29 08:14:06 +0100348{
Corentin Charye12e6d92011-02-26 10:20:31 +0100349 if (asus->tpd_led.dev)
350 led_classdev_unregister(&asus->tpd_led);
351 if (asus->led_workqueue)
352 destroy_workqueue(asus->led_workqueue);
Corentin Chary084fca62010-11-29 08:14:06 +0100353}
354
355/*
Corentin Charyafa7c882011-02-06 13:28:28 +0100356 * PCI hotplug (for wlan rfkill)
357 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100358static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100359{
Corentin Chary1d070f82011-02-26 10:20:36 +0100360 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charyafa7c882011-02-06 13:28:28 +0100361
Corentin Chary5c956382011-02-06 13:28:31 +0100362 if (result < 0)
Corentin Charyafa7c882011-02-06 13:28:28 +0100363 return false;
Corentin Chary5c956382011-02-06 13:28:31 +0100364 return !result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100365}
366
Corentin Charye12e6d92011-02-26 10:20:31 +0100367static void asus_rfkill_hotplug(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100368{
369 struct pci_dev *dev;
370 struct pci_bus *bus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100371 bool blocked;
Corentin Charyafa7c882011-02-06 13:28:28 +0100372 bool absent;
373 u32 l;
374
Corentin Charye12e6d92011-02-26 10:20:31 +0100375 mutex_lock(&asus->wmi_lock);
376 blocked = asus_wlan_rfkill_blocked(asus);
377 mutex_unlock(&asus->wmi_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100378
Corentin Charye12e6d92011-02-26 10:20:31 +0100379 mutex_lock(&asus->hotplug_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100380
Corentin Charya7ce3f02011-02-26 10:20:33 +0100381 if (asus->wlan.rfkill)
382 rfkill_set_sw_state(asus->wlan.rfkill, blocked);
Corentin Chary279f8f92011-02-06 13:28:29 +0100383
Corentin Charye12e6d92011-02-26 10:20:31 +0100384 if (asus->hotplug_slot) {
Corentin Charyafa7c882011-02-06 13:28:28 +0100385 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, "
Corentin Charye12e6d92011-02-26 10:20:31 +0100399 "but the pci device is %s\n",
400 blocked ? "blocked" : "unblocked",
401 absent ? "absent" : "present");
Corentin Charyafa7c882011-02-06 13:28:28 +0100402 pr_warning("skipped wireless hotplug as probably "
Corentin Charye12e6d92011-02-26 10:20:31 +0100403 "inappropriate for this model\n");
Corentin Charyafa7c882011-02-06 13:28:28 +0100404 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
429out_unlock:
Corentin Charye12e6d92011-02-26 10:20:31 +0100430 mutex_unlock(&asus->hotplug_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100431}
432
Corentin Charye12e6d92011-02-26 10:20:31 +0100433static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data)
Corentin Charyafa7c882011-02-06 13:28:28 +0100434{
Corentin Charye12e6d92011-02-26 10:20:31 +0100435 struct asus_wmi *asus = data;
Corentin Charyafa7c882011-02-06 13:28:28 +0100436
437 if (event != ACPI_NOTIFY_BUS_CHECK)
438 return;
439
Corentin Chary279f8f92011-02-06 13:28:29 +0100440 /*
Corentin Charye12e6d92011-02-26 10:20:31 +0100441 * We can't call directly asus_rfkill_hotplug because most
Corentin Chary279f8f92011-02-06 13:28:29 +0100442 * of the time WMBC is still being executed and not reetrant.
443 * There is currently no way to tell ACPICA that we want this
Corentin Charye12e6d92011-02-26 10:20:31 +0100444 * method to be serialized, we schedule a asus_rfkill_hotplug
Corentin Chary279f8f92011-02-06 13:28:29 +0100445 * call later, in a safer context.
446 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100447 queue_work(asus->hotplug_workqueue, &asus->hotplug_work);
Corentin Charyafa7c882011-02-06 13:28:28 +0100448}
449
Corentin Charye12e6d92011-02-26 10:20:31 +0100450static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node)
Corentin Charyafa7c882011-02-06 13:28:28 +0100451{
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,
Corentin Charye12e6d92011-02-26 10:20:31 +0100460 asus_rfkill_notify, asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100461 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
Corentin Charye12e6d92011-02-26 10:20:31 +0100469static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node)
Corentin Charyafa7c882011-02-06 13:28:28 +0100470{
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,
Corentin Charye12e6d92011-02-26 10:20:31 +0100478 ACPI_SYSTEM_NOTIFY,
479 asus_rfkill_notify);
Corentin Charyafa7c882011-02-06 13:28:28 +0100480 if (ACPI_FAILURE(status))
481 pr_err("Error removing rfkill notify handler %s\n",
Corentin Charye12e6d92011-02-26 10:20:31 +0100482 node);
Corentin Charyafa7c882011-02-06 13:28:28 +0100483 }
484}
485
Corentin Charye12e6d92011-02-26 10:20:31 +0100486static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot,
487 u8 *value)
Corentin Charyafa7c882011-02-06 13:28:28 +0100488{
Corentin Chary1d070f82011-02-26 10:20:36 +0100489 struct asus_wmi *asus = hotplug_slot->private;
490 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charyafa7c882011-02-06 13:28:28 +0100491
Corentin Chary5c956382011-02-06 13:28:31 +0100492 if (result < 0)
493 return result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100494
Corentin Chary5c956382011-02-06 13:28:31 +0100495 *value = !!result;
Corentin Charyafa7c882011-02-06 13:28:28 +0100496 return 0;
497}
498
Corentin Charye12e6d92011-02-26 10:20:31 +0100499static void asus_cleanup_pci_hotplug(struct hotplug_slot *hotplug_slot)
Corentin Charyafa7c882011-02-06 13:28:28 +0100500{
501 kfree(hotplug_slot->info);
502 kfree(hotplug_slot);
503}
504
Corentin Charye12e6d92011-02-26 10:20:31 +0100505static struct hotplug_slot_ops asus_hotplug_slot_ops = {
Corentin Charyafa7c882011-02-06 13:28:28 +0100506 .owner = THIS_MODULE,
Corentin Charye12e6d92011-02-26 10:20:31 +0100507 .get_adapter_status = asus_get_adapter_status,
508 .get_power_status = asus_get_adapter_status,
Corentin Charyafa7c882011-02-06 13:28:28 +0100509};
510
Corentin Charye12e6d92011-02-26 10:20:31 +0100511static void asus_hotplug_work(struct work_struct *work)
Corentin Chary279f8f92011-02-06 13:28:29 +0100512{
Corentin Charye12e6d92011-02-26 10:20:31 +0100513 struct asus_wmi *asus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100514
Corentin Charye12e6d92011-02-26 10:20:31 +0100515 asus = container_of(work, struct asus_wmi, hotplug_work);
516 asus_rfkill_hotplug(asus);
Corentin Chary279f8f92011-02-06 13:28:29 +0100517}
518
Corentin Charye12e6d92011-02-26 10:20:31 +0100519static int asus_setup_pci_hotplug(struct asus_wmi *asus)
Corentin Charyafa7c882011-02-06 13:28:28 +0100520{
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
Corentin Charye12e6d92011-02-26 10:20:31 +0100529 asus->hotplug_workqueue =
530 create_singlethread_workqueue("hotplug_workqueue");
531 if (!asus->hotplug_workqueue)
Corentin Chary279f8f92011-02-06 13:28:29 +0100532 goto error_workqueue;
533
Corentin Charye12e6d92011-02-26 10:20:31 +0100534 INIT_WORK(&asus->hotplug_work, asus_hotplug_work);
Corentin Chary279f8f92011-02-06 13:28:29 +0100535
Corentin Charye12e6d92011-02-26 10:20:31 +0100536 asus->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
537 if (!asus->hotplug_slot)
Corentin Charyafa7c882011-02-06 13:28:28 +0100538 goto error_slot;
539
Corentin Charye12e6d92011-02-26 10:20:31 +0100540 asus->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
541 GFP_KERNEL);
542 if (!asus->hotplug_slot->info)
Corentin Charyafa7c882011-02-06 13:28:28 +0100543 goto error_info;
544
Corentin Charye12e6d92011-02-26 10:20:31 +0100545 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);
Corentin Charyafa7c882011-02-06 13:28:28 +0100550
Corentin Charye12e6d92011-02-26 10:20:31 +0100551 ret = pci_hp_register(asus->hotplug_slot, bus, 0, "asus-wifi");
Corentin Charyafa7c882011-02-06 13:28:28 +0100552 if (ret) {
553 pr_err("Unable to register hotplug slot - %d\n", ret);
554 goto error_register;
555 }
556
557 return 0;
558
559error_register:
Corentin Charye12e6d92011-02-26 10:20:31 +0100560 kfree(asus->hotplug_slot->info);
Corentin Charyafa7c882011-02-06 13:28:28 +0100561error_info:
Corentin Charye12e6d92011-02-26 10:20:31 +0100562 kfree(asus->hotplug_slot);
563 asus->hotplug_slot = NULL;
Corentin Charyafa7c882011-02-06 13:28:28 +0100564error_slot:
Corentin Charye12e6d92011-02-26 10:20:31 +0100565 destroy_workqueue(asus->hotplug_workqueue);
Corentin Chary279f8f92011-02-06 13:28:29 +0100566error_workqueue:
Corentin Charyafa7c882011-02-06 13:28:28 +0100567 return ret;
568}
569
570/*
Corentin Charyba48fdb2010-11-29 08:14:07 +0100571 * Rfkill devices
572 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100573static int asus_rfkill_set(void *data, bool blocked)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100574{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100575 struct asus_rfkill *priv = data;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100576 u32 ctrl_param = !blocked;
577
Corentin Charyd33da3b2011-02-26 10:20:35 +0100578 return asus_wmi_set_devstate(priv->dev_id, ctrl_param, NULL);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100579}
580
Corentin Charye12e6d92011-02-26 10:20:31 +0100581static void asus_rfkill_query(struct rfkill *rfkill, void *data)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100582{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100583 struct asus_rfkill *priv = data;
Corentin Chary5c956382011-02-06 13:28:31 +0100584 int result;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100585
Corentin Chary1d070f82011-02-26 10:20:36 +0100586 result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100587
Corentin Chary5c956382011-02-06 13:28:31 +0100588 if (result < 0)
Corentin Charye12e6d92011-02-26 10:20:31 +0100589 return;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100590
Corentin Charya7ce3f02011-02-26 10:20:33 +0100591 rfkill_set_sw_state(priv->rfkill, !result);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100592}
593
Corentin Charye12e6d92011-02-26 10:20:31 +0100594static int asus_rfkill_wlan_set(void *data, bool blocked)
Corentin Chary279f8f92011-02-06 13:28:29 +0100595{
Corentin Charya7ce3f02011-02-26 10:20:33 +0100596 struct asus_rfkill *priv = data;
597 struct asus_wmi *asus = priv->asus;
Corentin Chary279f8f92011-02-06 13:28:29 +0100598 int ret;
599
600 /*
601 * This handler is enabled only if hotplug is enabled.
Corentin Charye12e6d92011-02-26 10:20:31 +0100602 * In this case, the asus_wmi_set_devstate() will
Corentin Chary279f8f92011-02-06 13:28:29 +0100603 * trigger a wmi notification and we need to wait
604 * this call to finish before being able to call
605 * any wmi method
606 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100607 mutex_lock(&asus->wmi_lock);
Corentin Charya7ce3f02011-02-26 10:20:33 +0100608 ret = asus_rfkill_set(data, blocked);
Corentin Charye12e6d92011-02-26 10:20:31 +0100609 mutex_unlock(&asus->wmi_lock);
Corentin Chary279f8f92011-02-06 13:28:29 +0100610 return ret;
611}
612
Corentin Charye12e6d92011-02-26 10:20:31 +0100613static const struct rfkill_ops asus_rfkill_wlan_ops = {
614 .set_block = asus_rfkill_wlan_set,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100615 .query = asus_rfkill_query,
Corentin Chary279f8f92011-02-06 13:28:29 +0100616};
617
Corentin Charye12e6d92011-02-26 10:20:31 +0100618static const struct rfkill_ops asus_rfkill_ops = {
619 .set_block = asus_rfkill_set,
620 .query = asus_rfkill_query,
Corentin Charyba48fdb2010-11-29 08:14:07 +0100621};
622
Corentin Charye12e6d92011-02-26 10:20:31 +0100623static int asus_new_rfkill(struct asus_wmi *asus,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100624 struct asus_rfkill *arfkill,
Corentin Charye12e6d92011-02-26 10:20:31 +0100625 const char *name, enum rfkill_type type, int dev_id)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100626{
Corentin Chary1d070f82011-02-26 10:20:36 +0100627 int result = asus_wmi_get_devstate_simple(asus, dev_id);
Corentin Charya7ce3f02011-02-26 10:20:33 +0100628 struct rfkill **rfkill = &arfkill->rfkill;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100629
Corentin Chary5c956382011-02-06 13:28:31 +0100630 if (result < 0)
631 return result;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100632
Corentin Charya7ce3f02011-02-26 10:20:33 +0100633 arfkill->dev_id = dev_id;
634 arfkill->asus = asus;
635
Corentin Charye12e6d92011-02-26 10:20:31 +0100636 if (dev_id == ASUS_WMI_DEVID_WLAN && asus->driver->hotplug_wireless)
637 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100638 &asus_rfkill_wlan_ops, arfkill);
Corentin Chary279f8f92011-02-06 13:28:29 +0100639 else
Corentin Charye12e6d92011-02-26 10:20:31 +0100640 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
Corentin Charya7ce3f02011-02-26 10:20:33 +0100641 &asus_rfkill_ops, arfkill);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100642
643 if (!*rfkill)
644 return -EINVAL;
645
Corentin Chary5c956382011-02-06 13:28:31 +0100646 rfkill_init_sw_state(*rfkill, !result);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100647 result = rfkill_register(*rfkill);
648 if (result) {
649 rfkill_destroy(*rfkill);
650 *rfkill = NULL;
651 return result;
652 }
653 return 0;
654}
655
Corentin Charye12e6d92011-02-26 10:20:31 +0100656static void asus_wmi_rfkill_exit(struct asus_wmi *asus)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100657{
Corentin Charye12e6d92011-02-26 10:20:31 +0100658 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");
Corentin Charya7ce3f02011-02-26 10:20:33 +0100661 if (asus->wlan.rfkill) {
662 rfkill_unregister(asus->wlan.rfkill);
663 rfkill_destroy(asus->wlan.rfkill);
664 asus->wlan.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100665 }
Corentin Charyafa7c882011-02-06 13:28:28 +0100666 /*
667 * Refresh pci hotplug in case the rfkill state was changed after
Corentin Charye12e6d92011-02-26 10:20:31 +0100668 * asus_unregister_rfkill_notifier()
Corentin Charyafa7c882011-02-06 13:28:28 +0100669 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100670 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);
Corentin Charyafa7c882011-02-06 13:28:28 +0100675
Corentin Charya7ce3f02011-02-26 10:20:33 +0100676 if (asus->bluetooth.rfkill) {
677 rfkill_unregister(asus->bluetooth.rfkill);
678 rfkill_destroy(asus->bluetooth.rfkill);
679 asus->bluetooth.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100680 }
Corentin Charya7ce3f02011-02-26 10:20:33 +0100681 if (asus->wimax.rfkill) {
682 rfkill_unregister(asus->wimax.rfkill);
683 rfkill_destroy(asus->wimax.rfkill);
684 asus->wimax.rfkill = NULL;
Corentin Chary2e9e1592011-02-06 13:28:37 +0100685 }
Corentin Charya7ce3f02011-02-26 10:20:33 +0100686 if (asus->wwan3g.rfkill) {
687 rfkill_unregister(asus->wwan3g.rfkill);
688 rfkill_destroy(asus->wwan3g.rfkill);
689 asus->wwan3g.rfkill = NULL;
Corentin Charyba48fdb2010-11-29 08:14:07 +0100690 }
691}
692
Corentin Charye12e6d92011-02-26 10:20:31 +0100693static int asus_wmi_rfkill_init(struct asus_wmi *asus)
Corentin Charyba48fdb2010-11-29 08:14:07 +0100694{
695 int result = 0;
696
Corentin Charye12e6d92011-02-26 10:20:31 +0100697 mutex_init(&asus->hotplug_lock);
698 mutex_init(&asus->wmi_lock);
Corentin Charyafa7c882011-02-06 13:28:28 +0100699
Corentin Charya7ce3f02011-02-26 10:20:33 +0100700 result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan",
701 RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100702
703 if (result && result != -ENODEV)
704 goto exit;
705
Corentin Charya7ce3f02011-02-26 10:20:33 +0100706 result = asus_new_rfkill(asus, &asus->bluetooth,
Corentin Charye12e6d92011-02-26 10:20:31 +0100707 "asus-bluetooth", RFKILL_TYPE_BLUETOOTH,
708 ASUS_WMI_DEVID_BLUETOOTH);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100709
710 if (result && result != -ENODEV)
711 goto exit;
712
Corentin Charya7ce3f02011-02-26 10:20:33 +0100713 result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax",
714 RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX);
Corentin Chary2e9e1592011-02-06 13:28:37 +0100715
716 if (result && result != -ENODEV)
717 goto exit;
718
Corentin Charya7ce3f02011-02-26 10:20:33 +0100719 result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g",
720 RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100721
722 if (result && result != -ENODEV)
723 goto exit;
724
Corentin Charye12e6d92011-02-26 10:20:31 +0100725 if (!asus->driver->hotplug_wireless)
Corentin Charyc14d4b82011-02-06 13:28:40 +0100726 goto exit;
727
Corentin Charye12e6d92011-02-26 10:20:31 +0100728 result = asus_setup_pci_hotplug(asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100729 /*
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
Corentin Charye12e6d92011-02-26 10:20:31 +0100736 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");
Corentin Charyafa7c882011-02-06 13:28:28 +0100739 /*
740 * Refresh pci hotplug in case the rfkill state was changed during
741 * setup.
742 */
Corentin Charye12e6d92011-02-26 10:20:31 +0100743 asus_rfkill_hotplug(asus);
Corentin Charyafa7c882011-02-06 13:28:28 +0100744
Corentin Charyba48fdb2010-11-29 08:14:07 +0100745exit:
746 if (result && result != -ENODEV)
Corentin Charye12e6d92011-02-26 10:20:31 +0100747 asus_wmi_rfkill_exit(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +0100748
749 if (result == -ENODEV)
750 result = 0;
751
752 return result;
753}
754
755/*
Corentin Chary084fca62010-11-29 08:14:06 +0100756 * Backlight
757 */
Corentin Chary1d070f82011-02-26 10:20:36 +0100758static int read_backlight_power(struct asus_wmi *asus)
Corentin Charyb7187262011-02-06 13:28:39 +0100759{
Corentin Chary1d070f82011-02-26 10:20:36 +0100760 int ret = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_BACKLIGHT);
Corentin Charyb7187262011-02-06 13:28:39 +0100761
762 if (ret < 0)
763 return ret;
764
765 return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
766}
767
Yong Wang3d7b1652010-04-11 09:27:54 +0800768static int read_brightness(struct backlight_device *bd)
769{
Corentin Chary1d070f82011-02-26 10:20:36 +0100770 struct asus_wmi *asus = bl_get_data(bd);
Corentin Charydfed65d2010-11-29 08:14:12 +0100771 u32 retval;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100772 int err;
Yong Wang3d7b1652010-04-11 09:27:54 +0800773
Corentin Chary1d070f82011-02-26 10:20:36 +0100774 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
Yong Wang3d7b1652010-04-11 09:27:54 +0800775
Corentin Charyd33da3b2011-02-26 10:20:35 +0100776 if (err < 0)
777 return err;
778
779 return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK;
Yong Wang3d7b1652010-04-11 09:27:54 +0800780}
781
782static int update_bl_status(struct backlight_device *bd)
783{
Corentin Chary1d070f82011-02-26 10:20:36 +0100784 struct asus_wmi *asus = bl_get_data(bd);
Corentin Charydfed65d2010-11-29 08:14:12 +0100785 u32 ctrl_param;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100786 int power, err;
Yong Wang3d7b1652010-04-11 09:27:54 +0800787
788 ctrl_param = bd->props.brightness;
789
Corentin Charyd33da3b2011-02-26 10:20:35 +0100790 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS,
791 ctrl_param, NULL);
Yong Wang3d7b1652010-04-11 09:27:54 +0800792
Corentin Charyd33da3b2011-02-26 10:20:35 +0100793 if (err < 0)
794 return err;
Corentin Charyb7187262011-02-06 13:28:39 +0100795
Corentin Chary1d070f82011-02-26 10:20:36 +0100796 power = read_backlight_power(asus);
Corentin Charyb7187262011-02-06 13:28:39 +0100797 if (power != -ENODEV && bd->props.power != power) {
798 ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK);
Corentin Charyd33da3b2011-02-26 10:20:35 +0100799 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT,
800 ctrl_param, NULL);
Corentin Charyb7187262011-02-06 13:28:39 +0100801 }
802 return 0;
Yong Wang3d7b1652010-04-11 09:27:54 +0800803}
804
Corentin Charye12e6d92011-02-26 10:20:31 +0100805static const struct backlight_ops asus_wmi_bl_ops = {
Yong Wang3d7b1652010-04-11 09:27:54 +0800806 .get_brightness = read_brightness,
807 .update_status = update_bl_status,
808};
809
Corentin Charye12e6d92011-02-26 10:20:31 +0100810static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code)
Yong Wang3d7b1652010-04-11 09:27:54 +0800811{
Corentin Charye12e6d92011-02-26 10:20:31 +0100812 struct backlight_device *bd = asus->backlight_device;
Yong Wang3d7b1652010-04-11 09:27:54 +0800813 int old = bd->props.brightness;
Daniel Mackb7670ed2010-05-19 12:37:01 +0200814 int new = old;
Yong Wang3d7b1652010-04-11 09:27:54 +0800815
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
Corentin Charye12e6d92011-02-26 10:20:31 +0100828static int asus_wmi_backlight_init(struct asus_wmi *asus)
Yong Wang3d7b1652010-04-11 09:27:54 +0800829{
830 struct backlight_device *bd;
831 struct backlight_properties props;
Corentin Charyb7187262011-02-06 13:28:39 +0100832 int max;
833 int power;
834
Corentin Chary1d070f82011-02-26 10:20:36 +0100835 max = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_BRIGHTNESS,
Corentin Charye12e6d92011-02-26 10:20:31 +0100836 ASUS_WMI_DSTS_MAX_BRIGTH_MASK);
Corentin Chary1d070f82011-02-26 10:20:36 +0100837 power = read_backlight_power(asus);
Corentin Charyb7187262011-02-06 13:28:39 +0100838
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;
Yong Wang3d7b1652010-04-11 09:27:54 +0800852
853 memset(&props, 0, sizeof(struct backlight_properties));
Corentin Charyb7187262011-02-06 13:28:39 +0100854 props.max_brightness = max;
Corentin Charye12e6d92011-02-26 10:20:31 +0100855 bd = backlight_device_register(asus->driver->name,
856 &asus->platform_device->dev, asus,
857 &asus_wmi_bl_ops, &props);
Yong Wang3d7b1652010-04-11 09:27:54 +0800858 if (IS_ERR(bd)) {
859 pr_err("Could not register backlight device\n");
860 return PTR_ERR(bd);
861 }
862
Corentin Charye12e6d92011-02-26 10:20:31 +0100863 asus->backlight_device = bd;
Yong Wang3d7b1652010-04-11 09:27:54 +0800864
865 bd->props.brightness = read_brightness(bd);
Corentin Charyb7187262011-02-06 13:28:39 +0100866 bd->props.power = power;
Yong Wang3d7b1652010-04-11 09:27:54 +0800867 backlight_update_status(bd);
868
869 return 0;
870}
871
Corentin Charye12e6d92011-02-26 10:20:31 +0100872static void asus_wmi_backlight_exit(struct asus_wmi *asus)
Yong Wang3d7b1652010-04-11 09:27:54 +0800873{
Corentin Charye12e6d92011-02-26 10:20:31 +0100874 if (asus->backlight_device)
875 backlight_device_unregister(asus->backlight_device);
Yong Wang3d7b1652010-04-11 09:27:54 +0800876
Corentin Charye12e6d92011-02-26 10:20:31 +0100877 asus->backlight_device = NULL;
Yong Wang3d7b1652010-04-11 09:27:54 +0800878}
879
Corentin Charye12e6d92011-02-26 10:20:31 +0100880static void asus_wmi_notify(u32 value, void *context)
Yong Wang3d7b1652010-04-11 09:27:54 +0800881{
Corentin Charye12e6d92011-02-26 10:20:31 +0100882 struct asus_wmi *asus = context;
Yong Wang3d7b1652010-04-11 09:27:54 +0800883 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
Corentin Chary57ab7da2011-02-26 10:20:32 +0100897 if (!obj || obj->type != ACPI_TYPE_INTEGER)
898 goto exit;
Yong Wang3d7b1652010-04-11 09:27:54 +0800899
Corentin Chary57ab7da2011-02-26 10:20:32 +0100900 code = obj->integer.value;
901 orig_code = code;
Yong Wang3d7b1652010-04-11 09:27:54 +0800902
Corentin Chary57ab7da2011-02-26 10:20:32 +0100903 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;
Yong Wang3d7b1652010-04-11 09:27:54 +0800908
Corentin Chary57ab7da2011-02-26 10:20:32 +0100909 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);
Yong Wang3d7b1652010-04-11 09:27:54 +0800914
Corentin Chary57ab7da2011-02-26 10:20:32 +0100915exit:
Yong Wang3d7b1652010-04-11 09:27:54 +0800916 kfree(obj);
917}
918
Corentin Chary9e1565b2011-02-06 13:28:36 +0100919/*
920 * Sys helpers
921 */
922static 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
Corentin Chary1d070f82011-02-26 10:20:36 +0100931static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid,
932 const char *buf, size_t count)
Corentin Chary9e1565b2011-02-06 13:28:36 +0100933{
Corentin Chary9e1565b2011-02-06 13:28:36 +0100934 u32 retval;
Corentin Charyd33da3b2011-02-26 10:20:35 +0100935 int rv, err, value;
Corentin Chary9e1565b2011-02-06 13:28:36 +0100936
Corentin Chary1d070f82011-02-26 10:20:36 +0100937 value = asus_wmi_get_devstate_simple(asus, devid);
Corentin Charye12e6d92011-02-26 10:20:31 +0100938 if (value == -ENODEV) /* Check device presence */
Corentin Chary9e1565b2011-02-06 13:28:36 +0100939 return value;
940
941 rv = parse_arg(buf, count, &value);
Corentin Charyd33da3b2011-02-26 10:20:35 +0100942 err = asus_wmi_set_devstate(devid, value, &retval);
Corentin Chary9e1565b2011-02-06 13:28:36 +0100943
Corentin Charyd33da3b2011-02-26 10:20:35 +0100944 if (err < 0)
945 return err;
946
Corentin Chary9e1565b2011-02-06 13:28:36 +0100947 return rv;
948}
949
Corentin Chary1d070f82011-02-26 10:20:36 +0100950static ssize_t show_sys_wmi(struct asus_wmi *asus, int devid, char *buf)
Corentin Chary9e1565b2011-02-06 13:28:36 +0100951{
Corentin Chary1d070f82011-02-26 10:20:36 +0100952 int value = asus_wmi_get_devstate_simple(asus, devid);
Corentin Chary9e1565b2011-02-06 13:28:36 +0100953
954 if (value < 0)
955 return value;
956
957 return sprintf(buf, "%d\n", value);
958}
959
Corentin Charye12e6d92011-02-26 10:20:31 +0100960#define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \
Corentin Chary9e1565b2011-02-06 13:28:36 +0100961 static ssize_t show_##_name(struct device *dev, \
962 struct device_attribute *attr, \
963 char *buf) \
964 { \
Corentin Chary1d070f82011-02-26 10:20:36 +0100965 struct asus_wmi *asus = dev_get_drvdata(dev); \
966 \
967 return show_sys_wmi(asus, _cm, buf); \
Corentin Chary9e1565b2011-02-06 13:28:36 +0100968 } \
969 static ssize_t store_##_name(struct device *dev, \
970 struct device_attribute *attr, \
971 const char *buf, size_t count) \
972 { \
Corentin Chary1d070f82011-02-26 10:20:36 +0100973 struct asus_wmi *asus = dev_get_drvdata(dev); \
974 \
975 return store_sys_wmi(asus, _cm, buf, count); \
Corentin Chary9e1565b2011-02-06 13:28:36 +0100976 } \
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
Corentin Charye12e6d92011-02-26 10:20:31 +0100985ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD);
986ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA);
987ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER);
Corentin Chary9e1565b2011-02-06 13:28:36 +0100988
Dmitry Torokhov67fa38e2010-11-03 11:14:01 -0700989static ssize_t store_cpufv(struct device *dev, struct device_attribute *attr,
990 const char *buf, size_t count)
Chris Bagwell7f80d732010-10-11 18:47:18 -0500991{
992 int value;
Chris Bagwell7f80d732010-10-11 18:47:18 -0500993
994 if (!count || sscanf(buf, "%i", &value) != 1)
995 return -EINVAL;
996 if (value < 0 || value > 2)
997 return -EINVAL;
998
Corentin Charyd33da3b2011-02-26 10:20:35 +0100999 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001000}
1001
1002static DEVICE_ATTR(cpufv, S_IRUGO | S_IWUSR, NULL, store_cpufv);
1003
Corentin Chary4e37b422010-11-29 08:14:08 +01001004static struct attribute *platform_attributes[] = {
1005 &dev_attr_cpufv.attr,
Corentin Chary9e1565b2011-02-06 13:28:36 +01001006 &dev_attr_camera.attr,
1007 &dev_attr_cardr.attr,
Corentin Chary4615bb62011-02-06 13:28:42 +01001008 &dev_attr_touchpad.attr,
Corentin Chary4e37b422010-11-29 08:14:08 +01001009 NULL
1010};
1011
Corentin Charye12e6d92011-02-26 10:20:31 +01001012static mode_t asus_sysfs_is_visible(struct kobject *kobj,
1013 struct attribute *attr, int idx)
Corentin Chary9e1565b2011-02-06 13:28:36 +01001014{
Corentin Chary1d070f82011-02-26 10:20:36 +01001015 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;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001019 int devid = -1;
1020
1021 if (attr == &dev_attr_camera.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001022 devid = ASUS_WMI_DEVID_CAMERA;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001023 else if (attr == &dev_attr_cardr.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001024 devid = ASUS_WMI_DEVID_CARDREADER;
Corentin Chary4615bb62011-02-06 13:28:42 +01001025 else if (attr == &dev_attr_touchpad.attr)
Corentin Charye12e6d92011-02-26 10:20:31 +01001026 devid = ASUS_WMI_DEVID_TOUCHPAD;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001027
1028 if (devid != -1)
Corentin Chary1d070f82011-02-26 10:20:36 +01001029 ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0);
Corentin Chary9e1565b2011-02-06 13:28:36 +01001030
Corentin Chary1d070f82011-02-26 10:20:36 +01001031 return ok ? attr->mode : 0;
Corentin Chary9e1565b2011-02-06 13:28:36 +01001032}
1033
Corentin Chary4e37b422010-11-29 08:14:08 +01001034static struct attribute_group platform_attribute_group = {
Corentin Charye12e6d92011-02-26 10:20:31 +01001035 .is_visible = asus_sysfs_is_visible,
1036 .attrs = platform_attributes
Corentin Chary4e37b422010-11-29 08:14:08 +01001037};
1038
Corentin Charye12e6d92011-02-26 10:20:31 +01001039static void asus_wmi_sysfs_exit(struct platform_device *device)
Chris Bagwell7f80d732010-10-11 18:47:18 -05001040{
Corentin Chary4e37b422010-11-29 08:14:08 +01001041 sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001042}
1043
Corentin Charye12e6d92011-02-26 10:20:31 +01001044static int asus_wmi_sysfs_init(struct platform_device *device)
Chris Bagwell7f80d732010-10-11 18:47:18 -05001045{
Corentin Chary4e37b422010-11-29 08:14:08 +01001046 return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
Chris Bagwell7f80d732010-10-11 18:47:18 -05001047}
1048
Corentin Chary27c136c2010-11-29 08:14:05 +01001049/*
1050 * Platform device
1051 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001052static int __init asus_wmi_platform_init(struct asus_wmi *asus)
Corentin Chary27c136c2010-11-29 08:14:05 +01001053{
Corentin Chary1d070f82011-02-26 10:20:36 +01001054 /*
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
Corentin Charye12e6d92011-02-26 10:20:31 +01001071 return asus_wmi_sysfs_init(asus->platform_device);
Corentin Chary27c136c2010-11-29 08:14:05 +01001072}
1073
Corentin Charye12e6d92011-02-26 10:20:31 +01001074static void asus_wmi_platform_exit(struct asus_wmi *asus)
Corentin Chary27c136c2010-11-29 08:14:05 +01001075{
Corentin Charye12e6d92011-02-26 10:20:31 +01001076 asus_wmi_sysfs_exit(asus->platform_device);
Corentin Chary27c136c2010-11-29 08:14:05 +01001077}
1078
1079/*
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001080 * debugfs
1081 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001082struct asus_wmi_debugfs_node {
1083 struct asus_wmi *asus;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001084 char *name;
Corentin Charye12e6d92011-02-26 10:20:31 +01001085 int (*show) (struct seq_file *m, void *data);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001086};
1087
1088static int show_dsts(struct seq_file *m, void *data)
1089{
Corentin Charye12e6d92011-02-26 10:20:31 +01001090 struct asus_wmi *asus = m->private;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001091 int err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001092 u32 retval = -1;
1093
Corentin Chary1d070f82011-02-26 10:20:36 +01001094 err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001095
Corentin Charyd33da3b2011-02-26 10:20:35 +01001096 if (err < 0)
1097 return err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001098
Corentin Charye12e6d92011-02-26 10:20:31 +01001099 seq_printf(m, "DSTS(%x) = %x\n", asus->debug.dev_id, retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001100
1101 return 0;
1102}
1103
1104static int show_devs(struct seq_file *m, void *data)
1105{
Corentin Charye12e6d92011-02-26 10:20:31 +01001106 struct asus_wmi *asus = m->private;
Corentin Charyd33da3b2011-02-26 10:20:35 +01001107 int err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001108 u32 retval = -1;
1109
Corentin Charyd33da3b2011-02-26 10:20:35 +01001110 err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
1111 &retval);
1112
1113 if (err < 0)
1114 return err;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001115
Corentin Charye12e6d92011-02-26 10:20:31 +01001116 seq_printf(m, "DEVS(%x, %x) = %x\n", asus->debug.dev_id,
1117 asus->debug.ctrl_param, retval);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001118
1119 return 0;
1120}
1121
Corentin Charye12e6d92011-02-26 10:20:31 +01001122static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = {
1123 {NULL, "devs", show_devs},
1124 {NULL, "dsts", show_dsts},
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001125};
1126
Corentin Charye12e6d92011-02-26 10:20:31 +01001127static int asus_wmi_debugfs_open(struct inode *inode, struct file *file)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001128{
Corentin Charye12e6d92011-02-26 10:20:31 +01001129 struct asus_wmi_debugfs_node *node = inode->i_private;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001130
Corentin Charye12e6d92011-02-26 10:20:31 +01001131 return single_open(file, node->show, node->asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001132}
1133
Corentin Charye12e6d92011-02-26 10:20:31 +01001134static const struct file_operations asus_wmi_debugfs_io_ops = {
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001135 .owner = THIS_MODULE,
Corentin Charye12e6d92011-02-26 10:20:31 +01001136 .open = asus_wmi_debugfs_open,
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001137 .read = seq_read,
1138 .llseek = seq_lseek,
1139 .release = single_release,
1140};
1141
Corentin Charye12e6d92011-02-26 10:20:31 +01001142static void asus_wmi_debugfs_exit(struct asus_wmi *asus)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001143{
Corentin Charye12e6d92011-02-26 10:20:31 +01001144 debugfs_remove_recursive(asus->debug.root);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001145}
1146
Corentin Charye12e6d92011-02-26 10:20:31 +01001147static int asus_wmi_debugfs_init(struct asus_wmi *asus)
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001148{
1149 struct dentry *dent;
1150 int i;
1151
Corentin Charye12e6d92011-02-26 10:20:31 +01001152 asus->debug.root = debugfs_create_dir(asus->driver->name, NULL);
1153 if (!asus->debug.root) {
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001154 pr_err("failed to create debugfs directory");
1155 goto error_debugfs;
1156 }
1157
Corentin Charye12e6d92011-02-26 10:20:31 +01001158 dent = debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR,
1159 asus->debug.root, &asus->debug.dev_id);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001160 if (!dent)
1161 goto error_debugfs;
1162
Corentin Charye12e6d92011-02-26 10:20:31 +01001163 dent = debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR,
1164 asus->debug.root, &asus->debug.ctrl_param);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001165 if (!dent)
1166 goto error_debugfs;
1167
Corentin Charye12e6d92011-02-26 10:20:31 +01001168 for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) {
1169 struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i];
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001170
Corentin Charye12e6d92011-02-26 10:20:31 +01001171 node->asus = asus;
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001172 dent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
Corentin Charye12e6d92011-02-26 10:20:31 +01001173 asus->debug.root, node,
1174 &asus_wmi_debugfs_io_ops);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001175 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
1183error_debugfs:
Corentin Charye12e6d92011-02-26 10:20:31 +01001184 asus_wmi_debugfs_exit(asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001185 return -ENOMEM;
1186}
1187
1188/*
Corentin Chary27c136c2010-11-29 08:14:05 +01001189 * WMI Driver
1190 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001191static int asus_wmi_add(struct platform_device *pdev)
Corentin Charyafa7c882011-02-06 13:28:28 +01001192{
Corentin Charye12e6d92011-02-26 10:20:31 +01001193 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;
Yong Wangee027e42010-03-21 10:26:34 +08001196 acpi_status status;
Corentin Chary27c136c2010-11-29 08:14:05 +01001197 int err;
Yong Wangee027e42010-03-21 10:26:34 +08001198
Corentin Charye12e6d92011-02-26 10:20:31 +01001199 asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL);
1200 if (!asus)
Corentin Charya04ce292011-02-06 13:28:33 +01001201 return -ENOMEM;
1202
Corentin Charye12e6d92011-02-26 10:20:31 +01001203 asus->driver = wdrv;
1204 asus->platform_device = pdev;
1205 wdrv->platform_device = pdev;
1206 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001207
Corentin Charye12e6d92011-02-26 10:20:31 +01001208 if (wdrv->quirks)
1209 wdrv->quirks(asus->driver);
Corentin Charyafa7c882011-02-06 13:28:28 +01001210
Corentin Charye12e6d92011-02-26 10:20:31 +01001211 err = asus_wmi_platform_init(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001212 if (err)
1213 goto fail_platform;
Yong Wang45f2c692010-04-11 09:27:19 +08001214
Corentin Charye12e6d92011-02-26 10:20:31 +01001215 err = asus_wmi_input_init(asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001216 if (err)
Corentin Chary27c136c2010-11-29 08:14:05 +01001217 goto fail_input;
Yong Wang3d7b1652010-04-11 09:27:54 +08001218
Corentin Charye12e6d92011-02-26 10:20:31 +01001219 err = asus_wmi_led_init(asus);
Corentin Chary084fca62010-11-29 08:14:06 +01001220 if (err)
1221 goto fail_leds;
1222
Corentin Charye12e6d92011-02-26 10:20:31 +01001223 err = asus_wmi_rfkill_init(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +01001224 if (err)
1225 goto fail_rfkill;
1226
Yong Wang3d7b1652010-04-11 09:27:54 +08001227 if (!acpi_video_backlight_support()) {
Corentin Charye12e6d92011-02-26 10:20:31 +01001228 err = asus_wmi_backlight_init(asus);
Corentin Charyb7187262011-02-06 13:28:39 +01001229 if (err && err != -ENODEV)
Corentin Chary27c136c2010-11-29 08:14:05 +01001230 goto fail_backlight;
Yong Wang3d7b1652010-04-11 09:27:54 +08001231 } else
1232 pr_info("Backlight controlled by ACPI video driver\n");
Yong Wang45f2c692010-04-11 09:27:19 +08001233
Corentin Charye12e6d92011-02-26 10:20:31 +01001234 status = wmi_install_notify_handler(asus->driver->event_guid,
1235 asus_wmi_notify, asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001236 if (ACPI_FAILURE(status)) {
Corentin Charye12e6d92011-02-26 10:20:31 +01001237 pr_err("Unable to register notify handler - %d\n", status);
Yong Wang45f2c692010-04-11 09:27:19 +08001238 err = -ENODEV;
Corentin Chary27c136c2010-11-29 08:14:05 +01001239 goto fail_wmi_handler;
Yong Wang45f2c692010-04-11 09:27:19 +08001240 }
1241
Corentin Charye12e6d92011-02-26 10:20:31 +01001242 err = asus_wmi_debugfs_init(asus);
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001243 if (err)
1244 goto fail_debugfs;
1245
Corentin Charya04ce292011-02-06 13:28:33 +01001246 return 0;
Yong Wang45f2c692010-04-11 09:27:19 +08001247
Corentin Chary8c1b2d82010-11-29 08:14:09 +01001248fail_debugfs:
Corentin Charye12e6d92011-02-26 10:20:31 +01001249 wmi_remove_notify_handler(asus->driver->event_guid);
Corentin Chary27c136c2010-11-29 08:14:05 +01001250fail_wmi_handler:
Corentin Charye12e6d92011-02-26 10:20:31 +01001251 asus_wmi_backlight_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001252fail_backlight:
Corentin Charye12e6d92011-02-26 10:20:31 +01001253 asus_wmi_rfkill_exit(asus);
Corentin Charyba48fdb2010-11-29 08:14:07 +01001254fail_rfkill:
Corentin Charye12e6d92011-02-26 10:20:31 +01001255 asus_wmi_led_exit(asus);
Corentin Chary084fca62010-11-29 08:14:06 +01001256fail_leds:
Corentin Charye12e6d92011-02-26 10:20:31 +01001257 asus_wmi_input_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001258fail_input:
Corentin Charye12e6d92011-02-26 10:20:31 +01001259 asus_wmi_platform_exit(asus);
Corentin Chary27c136c2010-11-29 08:14:05 +01001260fail_platform:
Corentin Charye12e6d92011-02-26 10:20:31 +01001261 kfree(asus);
Corentin Charya04ce292011-02-06 13:28:33 +01001262 return err;
Yong Wang45f2c692010-04-11 09:27:19 +08001263}
1264
Corentin Charye12e6d92011-02-26 10:20:31 +01001265static int asus_wmi_remove(struct platform_device *device)
Yong Wang45f2c692010-04-11 09:27:19 +08001266{
Corentin Charye12e6d92011-02-26 10:20:31 +01001267 struct asus_wmi *asus;
Yong Wang45f2c692010-04-11 09:27:19 +08001268
Corentin Charye12e6d92011-02-26 10:20:31 +01001269 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);
Yong Wang45f2c692010-04-11 09:27:19 +08001277
Corentin Charye12e6d92011-02-26 10:20:31 +01001278 kfree(asus);
Yong Wang45f2c692010-04-11 09:27:19 +08001279 return 0;
1280}
1281
Corentin Chary0773d7f2011-02-06 13:28:32 +01001282/*
1283 * Platform driver - hibernate/resume callbacks
1284 */
Corentin Charye12e6d92011-02-26 10:20:31 +01001285static int asus_hotk_thaw(struct device *device)
Corentin Chary0773d7f2011-02-06 13:28:32 +01001286{
Corentin Charye12e6d92011-02-26 10:20:31 +01001287 struct asus_wmi *asus = dev_get_drvdata(device);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001288
Corentin Charya7ce3f02011-02-26 10:20:33 +01001289 if (asus->wlan.rfkill) {
Corentin Chary0773d7f2011-02-06 13:28:32 +01001290 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 */
Corentin Chary1d070f82011-02-26 10:20:36 +01001297 wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
Corentin Charye12e6d92011-02-26 10:20:31 +01001298 asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001299 }
1300
1301 return 0;
1302}
1303
Corentin Charye12e6d92011-02-26 10:20:31 +01001304static int asus_hotk_restore(struct device *device)
Corentin Chary0773d7f2011-02-06 13:28:32 +01001305{
Corentin Charye12e6d92011-02-26 10:20:31 +01001306 struct asus_wmi *asus = dev_get_drvdata(device);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001307 int bl;
1308
1309 /* Refresh both wlan rfkill state and pci hotplug */
Corentin Charya7ce3f02011-02-26 10:20:33 +01001310 if (asus->wlan.rfkill)
Corentin Charye12e6d92011-02-26 10:20:31 +01001311 asus_rfkill_hotplug(asus);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001312
Corentin Charya7ce3f02011-02-26 10:20:33 +01001313 if (asus->bluetooth.rfkill) {
Corentin Chary1d070f82011-02-26 10:20:36 +01001314 bl = !asus_wmi_get_devstate_simple(asus,
1315 ASUS_WMI_DEVID_BLUETOOTH);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001316 rfkill_set_sw_state(asus->bluetooth.rfkill, bl);
Corentin Chary2e9e1592011-02-06 13:28:37 +01001317 }
Corentin Charya7ce3f02011-02-26 10:20:33 +01001318 if (asus->wimax.rfkill) {
Corentin Chary1d070f82011-02-26 10:20:36 +01001319 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001320 rfkill_set_sw_state(asus->wimax.rfkill, bl);
Corentin Chary2e9e1592011-02-06 13:28:37 +01001321 }
Corentin Charya7ce3f02011-02-26 10:20:33 +01001322 if (asus->wwan3g.rfkill) {
Corentin Chary1d070f82011-02-26 10:20:36 +01001323 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G);
Corentin Charya7ce3f02011-02-26 10:20:33 +01001324 rfkill_set_sw_state(asus->wwan3g.rfkill, bl);
Corentin Chary0773d7f2011-02-06 13:28:32 +01001325 }
1326
1327 return 0;
1328}
1329
Corentin Charye12e6d92011-02-26 10:20:31 +01001330static const struct dev_pm_ops asus_pm_ops = {
1331 .thaw = asus_hotk_thaw,
1332 .restore = asus_hotk_restore,
Corentin Chary0773d7f2011-02-06 13:28:32 +01001333};
1334
Corentin Charye12e6d92011-02-26 10:20:31 +01001335static int asus_wmi_probe(struct platform_device *pdev)
Corentin Charyd358cb52010-11-29 08:14:14 +01001336{
Corentin Charye12e6d92011-02-26 10:20:31 +01001337 struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
1338 struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
1339 int ret;
Corentin Charyd358cb52010-11-29 08:14:14 +01001340
Corentin Charye12e6d92011-02-26 10:20:31 +01001341 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
1342 pr_warning("Management GUID not found\n");
Yong Wangee027e42010-03-21 10:26:34 +08001343 return -ENODEV;
1344 }
1345
Corentin Charye12e6d92011-02-26 10:20:31 +01001346 if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) {
1347 pr_warning("Event GUID not found\n");
Corentin Charyd358cb52010-11-29 08:14:14 +01001348 return -ENODEV;
1349 }
1350
Corentin Charye12e6d92011-02-26 10:20:31 +01001351 if (wdrv->probe) {
1352 ret = wdrv->probe(pdev);
1353 if (ret)
1354 return ret;
1355 }
1356
1357 return asus_wmi_add(pdev);
Corentin Charya04ce292011-02-06 13:28:33 +01001358}
Yong Wangee027e42010-03-21 10:26:34 +08001359
Corentin Charye12e6d92011-02-26 10:20:31 +01001360static bool used;
Yong Wangee027e42010-03-21 10:26:34 +08001361
Corentin Charye12e6d92011-02-26 10:20:31 +01001362int asus_wmi_register_driver(struct asus_wmi_driver *driver)
Corentin Charya04ce292011-02-06 13:28:33 +01001363{
Corentin Charye12e6d92011-02-26 10:20:31 +01001364 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,
Corentin Charya04ce292011-02-06 13:28:33 +01001378 NULL, 0, NULL, 0);
1379 if (IS_ERR(platform_device))
1380 return PTR_ERR(platform_device);
Corentin Charye12e6d92011-02-26 10:20:31 +01001381
1382 used = true;
1383 return 0;
1384}
1385EXPORT_SYMBOL_GPL(asus_wmi_register_driver);
1386
1387void 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}
1393EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver);
1394
1395static 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");
Yong Wangee027e42010-03-21 10:26:34 +08001403 return 0;
1404}
1405
Corentin Charye12e6d92011-02-26 10:20:31 +01001406static void __exit asus_wmi_exit(void)
Yong Wangee027e42010-03-21 10:26:34 +08001407{
Corentin Charye12e6d92011-02-26 10:20:31 +01001408 pr_info("ASUS WMI generic driver unloaded");
Yong Wangee027e42010-03-21 10:26:34 +08001409}
1410
Corentin Charye12e6d92011-02-26 10:20:31 +01001411module_init(asus_wmi_init);
1412module_exit(asus_wmi_exit);