blob: 42b9ba7e903caa69f660217af68584c17f0bc987 [file] [log] [blame]
David Woodhouse58ac7aa2010-08-10 23:44:05 +01001/*
Ike Panhca4b5a272010-12-13 18:00:48 +08002 * ideapad-laptop.c - Lenovo IdeaPad ACPI Extras
David Woodhouse58ac7aa2010-08-10 23:44:05 +01003 *
4 * Copyright © 2010 Intel Corporation
5 * Copyright © 2010 David Woodhouse <dwmw2@infradead.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301, USA.
21 */
22
Joe Perches9ab23982011-03-29 15:21:43 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
David Woodhouse58ac7aa2010-08-10 23:44:05 +010025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/init.h>
28#include <linux/types.h>
29#include <acpi/acpi_bus.h>
30#include <acpi/acpi_drivers.h>
31#include <linux/rfkill.h>
Ike Panhc98ee6912010-12-13 18:00:15 +080032#include <linux/platform_device.h>
Ike Panhcf63409a2010-12-13 18:00:38 +080033#include <linux/input.h>
34#include <linux/input/sparse-keymap.h>
David Woodhouse58ac7aa2010-08-10 23:44:05 +010035
Ike Panhcc1f73652010-12-13 18:01:12 +080036#define IDEAPAD_RFKILL_DEV_NUM (3)
David Woodhouse58ac7aa2010-08-10 23:44:05 +010037
Ike Panhc3371f482011-06-30 19:50:40 +080038#define CFG_BT_BIT (16)
39#define CFG_3G_BIT (17)
40#define CFG_WIFI_BIT (18)
41
David Woodhousece326322010-08-11 17:59:35 +010042struct ideapad_private {
Ike Panhcc1f73652010-12-13 18:01:12 +080043 struct rfkill *rfk[IDEAPAD_RFKILL_DEV_NUM];
Ike Panhc98ee6912010-12-13 18:00:15 +080044 struct platform_device *platform_device;
Ike Panhcf63409a2010-12-13 18:00:38 +080045 struct input_dev *inputdev;
Ike Panhc3371f482011-06-30 19:50:40 +080046 unsigned long cfg;
David Woodhouse58ac7aa2010-08-10 23:44:05 +010047};
48
Ike Panhcc1f73652010-12-13 18:01:12 +080049static acpi_handle ideapad_handle;
Ike Panhcbfa97b72010-10-01 15:40:22 +080050static bool no_bt_rfkill;
51module_param(no_bt_rfkill, bool, 0444);
52MODULE_PARM_DESC(no_bt_rfkill, "No rfkill for bluetooth.");
53
Ike Panhc6a09f212010-10-01 15:38:46 +080054/*
55 * ACPI Helpers
56 */
57#define IDEAPAD_EC_TIMEOUT (100) /* in ms */
58
59static int read_method_int(acpi_handle handle, const char *method, int *val)
60{
61 acpi_status status;
62 unsigned long long result;
63
64 status = acpi_evaluate_integer(handle, (char *)method, NULL, &result);
65 if (ACPI_FAILURE(status)) {
66 *val = -1;
67 return -1;
68 } else {
69 *val = result;
70 return 0;
71 }
72}
73
74static int method_vpcr(acpi_handle handle, int cmd, int *ret)
75{
76 acpi_status status;
77 unsigned long long result;
78 struct acpi_object_list params;
79 union acpi_object in_obj;
80
81 params.count = 1;
82 params.pointer = &in_obj;
83 in_obj.type = ACPI_TYPE_INTEGER;
84 in_obj.integer.value = cmd;
85
86 status = acpi_evaluate_integer(handle, "VPCR", &params, &result);
87
88 if (ACPI_FAILURE(status)) {
89 *ret = -1;
90 return -1;
91 } else {
92 *ret = result;
93 return 0;
94 }
95}
96
97static int method_vpcw(acpi_handle handle, int cmd, int data)
98{
99 struct acpi_object_list params;
100 union acpi_object in_obj[2];
101 acpi_status status;
102
103 params.count = 2;
104 params.pointer = in_obj;
105 in_obj[0].type = ACPI_TYPE_INTEGER;
106 in_obj[0].integer.value = cmd;
107 in_obj[1].type = ACPI_TYPE_INTEGER;
108 in_obj[1].integer.value = data;
109
110 status = acpi_evaluate_object(handle, "VPCW", &params, NULL);
111 if (status != AE_OK)
112 return -1;
113 return 0;
114}
115
116static int read_ec_data(acpi_handle handle, int cmd, unsigned long *data)
117{
118 int val;
119 unsigned long int end_jiffies;
120
121 if (method_vpcw(handle, 1, cmd))
122 return -1;
123
124 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
125 time_before(jiffies, end_jiffies);) {
126 schedule();
127 if (method_vpcr(handle, 1, &val))
128 return -1;
129 if (val == 0) {
130 if (method_vpcr(handle, 0, &val))
131 return -1;
132 *data = val;
133 return 0;
134 }
135 }
136 pr_err("timeout in read_ec_cmd\n");
137 return -1;
138}
139
140static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
141{
142 int val;
143 unsigned long int end_jiffies;
144
145 if (method_vpcw(handle, 0, data))
146 return -1;
147 if (method_vpcw(handle, 1, cmd))
148 return -1;
149
150 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
151 time_before(jiffies, end_jiffies);) {
152 schedule();
153 if (method_vpcr(handle, 1, &val))
154 return -1;
155 if (val == 0)
156 return 0;
157 }
158 pr_err("timeout in write_ec_cmd\n");
159 return -1;
160}
Ike Panhc6a09f212010-10-01 15:38:46 +0800161
Ike Panhca4b5a272010-12-13 18:00:48 +0800162/*
Ike Panhc3371f482011-06-30 19:50:40 +0800163 * sysfs
Ike Panhca4b5a272010-12-13 18:00:48 +0800164 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100165static ssize_t show_ideapad_cam(struct device *dev,
166 struct device_attribute *attr,
167 char *buf)
168{
Ike Panhc26c81d52010-10-01 15:39:40 +0800169 unsigned long result;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100170
Ike Panhcc1f73652010-12-13 18:01:12 +0800171 if (read_ec_data(ideapad_handle, 0x1D, &result))
Ike Panhc26c81d52010-10-01 15:39:40 +0800172 return sprintf(buf, "-1\n");
173 return sprintf(buf, "%lu\n", result);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100174}
175
176static ssize_t store_ideapad_cam(struct device *dev,
177 struct device_attribute *attr,
178 const char *buf, size_t count)
179{
180 int ret, state;
181
182 if (!count)
183 return 0;
184 if (sscanf(buf, "%i", &state) != 1)
185 return -EINVAL;
Ike Panhcc1f73652010-12-13 18:01:12 +0800186 ret = write_ec_cmd(ideapad_handle, 0x1E, state);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100187 if (ret < 0)
188 return ret;
189 return count;
190}
191
192static DEVICE_ATTR(camera_power, 0644, show_ideapad_cam, store_ideapad_cam);
193
Ike Panhc3371f482011-06-30 19:50:40 +0800194static ssize_t show_ideapad_cfg(struct device *dev,
195 struct device_attribute *attr,
196 char *buf)
197{
198 struct ideapad_private *priv = dev_get_drvdata(dev);
199
200 return sprintf(buf, "0x%.8lX\n", priv->cfg);
201}
202
203static DEVICE_ATTR(cfg, 0444, show_ideapad_cfg, NULL);
204
205static struct attribute *ideapad_attributes[] = {
206 &dev_attr_camera_power.attr,
207 &dev_attr_cfg.attr,
208 NULL
209};
210
211static struct attribute_group ideapad_attribute_group = {
212 .attrs = ideapad_attributes
213};
214
Ike Panhca4b5a272010-12-13 18:00:48 +0800215/*
216 * Rfkill
217 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800218struct ideapad_rfk_data {
219 char *name;
220 int cfgbit;
221 int opcode;
222 int type;
223};
224
225const struct ideapad_rfk_data ideapad_rfk_data[] = {
Ike Panhc3371f482011-06-30 19:50:40 +0800226 { "ideapad_wlan", CFG_WIFI_BIT, 0x15, RFKILL_TYPE_WLAN },
227 { "ideapad_bluetooth", CFG_BT_BIT, 0x17, RFKILL_TYPE_BLUETOOTH },
228 { "ideapad_3g", CFG_3G_BIT, 0x20, RFKILL_TYPE_WWAN },
Ike Panhcc1f73652010-12-13 18:01:12 +0800229};
230
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100231static int ideapad_rfk_set(void *data, bool blocked)
232{
Ike Panhcc1f73652010-12-13 18:01:12 +0800233 unsigned long opcode = (unsigned long)data;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100234
Ike Panhcc1f73652010-12-13 18:01:12 +0800235 return write_ec_cmd(ideapad_handle, opcode, !blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100236}
237
238static struct rfkill_ops ideapad_rfk_ops = {
239 .set_block = ideapad_rfk_set,
240};
241
David Woodhousece326322010-08-11 17:59:35 +0100242static void ideapad_sync_rfk_state(struct acpi_device *adevice)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100243{
David Woodhousece326322010-08-11 17:59:35 +0100244 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
Ike Panhc2b7266b2010-10-01 15:39:49 +0800245 unsigned long hw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100246 int i;
247
Ike Panhcc1f73652010-12-13 18:01:12 +0800248 if (read_ec_data(ideapad_handle, 0x23, &hw_blocked))
Ike Panhc2b7266b2010-10-01 15:39:49 +0800249 return;
250 hw_blocked = !hw_blocked;
251
Ike Panhcc1f73652010-12-13 18:01:12 +0800252 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100253 if (priv->rfk[i])
254 rfkill_set_hw_state(priv->rfk[i], hw_blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100255}
256
Ike Panhca4b5a272010-12-13 18:00:48 +0800257static int __devinit ideapad_register_rfkill(struct acpi_device *adevice,
258 int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100259{
David Woodhousece326322010-08-11 17:59:35 +0100260 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100261 int ret;
Ike Panhc2b7266b2010-10-01 15:39:49 +0800262 unsigned long sw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100263
Ike Panhcbfa97b72010-10-01 15:40:22 +0800264 if (no_bt_rfkill &&
265 (ideapad_rfk_data[dev].type == RFKILL_TYPE_BLUETOOTH)) {
266 /* Force to enable bluetooth when no_bt_rfkill=1 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800267 write_ec_cmd(ideapad_handle,
Ike Panhcbfa97b72010-10-01 15:40:22 +0800268 ideapad_rfk_data[dev].opcode, 1);
269 return 0;
270 }
271
Ike Panhc2b7266b2010-10-01 15:39:49 +0800272 priv->rfk[dev] = rfkill_alloc(ideapad_rfk_data[dev].name, &adevice->dev,
273 ideapad_rfk_data[dev].type, &ideapad_rfk_ops,
David Woodhousece326322010-08-11 17:59:35 +0100274 (void *)(long)dev);
275 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100276 return -ENOMEM;
277
Ike Panhcc1f73652010-12-13 18:01:12 +0800278 if (read_ec_data(ideapad_handle, ideapad_rfk_data[dev].opcode-1,
Ike Panhc2b7266b2010-10-01 15:39:49 +0800279 &sw_blocked)) {
280 rfkill_init_sw_state(priv->rfk[dev], 0);
281 } else {
282 sw_blocked = !sw_blocked;
283 rfkill_init_sw_state(priv->rfk[dev], sw_blocked);
284 }
285
David Woodhousece326322010-08-11 17:59:35 +0100286 ret = rfkill_register(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100287 if (ret) {
David Woodhousece326322010-08-11 17:59:35 +0100288 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100289 return ret;
290 }
291 return 0;
292}
293
Ike Panhca4b5a272010-12-13 18:00:48 +0800294static void __devexit ideapad_unregister_rfkill(struct acpi_device *adevice,
295 int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100296{
David Woodhousece326322010-08-11 17:59:35 +0100297 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
298
299 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100300 return;
301
David Woodhousece326322010-08-11 17:59:35 +0100302 rfkill_unregister(priv->rfk[dev]);
303 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100304}
305
Ike Panhc98ee6912010-12-13 18:00:15 +0800306/*
307 * Platform device
308 */
Ike Panhc8693ae82010-12-13 18:01:01 +0800309static int __devinit ideapad_platform_init(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800310{
311 int result;
312
Ike Panhc8693ae82010-12-13 18:01:01 +0800313 priv->platform_device = platform_device_alloc("ideapad", -1);
314 if (!priv->platform_device)
Ike Panhc98ee6912010-12-13 18:00:15 +0800315 return -ENOMEM;
Ike Panhc8693ae82010-12-13 18:01:01 +0800316 platform_set_drvdata(priv->platform_device, priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800317
Ike Panhc8693ae82010-12-13 18:01:01 +0800318 result = platform_device_add(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800319 if (result)
320 goto fail_platform_device;
321
Ike Panhc8693ae82010-12-13 18:01:01 +0800322 result = sysfs_create_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800323 &ideapad_attribute_group);
324 if (result)
325 goto fail_sysfs;
Ike Panhc98ee6912010-12-13 18:00:15 +0800326 return 0;
327
Ike Panhcc9f718d2010-12-13 18:00:27 +0800328fail_sysfs:
Ike Panhc8693ae82010-12-13 18:01:01 +0800329 platform_device_del(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800330fail_platform_device:
Ike Panhc8693ae82010-12-13 18:01:01 +0800331 platform_device_put(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800332 return result;
333}
334
Ike Panhc8693ae82010-12-13 18:01:01 +0800335static void ideapad_platform_exit(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800336{
Ike Panhc8693ae82010-12-13 18:01:01 +0800337 sysfs_remove_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800338 &ideapad_attribute_group);
Ike Panhc8693ae82010-12-13 18:01:01 +0800339 platform_device_unregister(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800340}
Ike Panhc98ee6912010-12-13 18:00:15 +0800341
Ike Panhcf63409a2010-12-13 18:00:38 +0800342/*
343 * input device
344 */
345static const struct key_entry ideapad_keymap[] = {
346 { KE_KEY, 0x06, { KEY_SWITCHVIDEOMODE } },
347 { KE_KEY, 0x0D, { KEY_WLAN } },
348 { KE_END, 0 },
349};
350
Ike Panhc8693ae82010-12-13 18:01:01 +0800351static int __devinit ideapad_input_init(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800352{
353 struct input_dev *inputdev;
354 int error;
355
356 inputdev = input_allocate_device();
357 if (!inputdev) {
358 pr_info("Unable to allocate input device\n");
359 return -ENOMEM;
360 }
361
362 inputdev->name = "Ideapad extra buttons";
363 inputdev->phys = "ideapad/input0";
364 inputdev->id.bustype = BUS_HOST;
Ike Panhc8693ae82010-12-13 18:01:01 +0800365 inputdev->dev.parent = &priv->platform_device->dev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800366
367 error = sparse_keymap_setup(inputdev, ideapad_keymap, NULL);
368 if (error) {
369 pr_err("Unable to setup input device keymap\n");
370 goto err_free_dev;
371 }
372
373 error = input_register_device(inputdev);
374 if (error) {
375 pr_err("Unable to register input device\n");
376 goto err_free_keymap;
377 }
378
Ike Panhc8693ae82010-12-13 18:01:01 +0800379 priv->inputdev = inputdev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800380 return 0;
381
382err_free_keymap:
383 sparse_keymap_free(inputdev);
384err_free_dev:
385 input_free_device(inputdev);
386 return error;
387}
388
Ike Panhc8693ae82010-12-13 18:01:01 +0800389static void __devexit ideapad_input_exit(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800390{
Ike Panhc8693ae82010-12-13 18:01:01 +0800391 sparse_keymap_free(priv->inputdev);
392 input_unregister_device(priv->inputdev);
393 priv->inputdev = NULL;
Ike Panhcf63409a2010-12-13 18:00:38 +0800394}
395
Ike Panhc8693ae82010-12-13 18:01:01 +0800396static void ideapad_input_report(struct ideapad_private *priv,
397 unsigned long scancode)
Ike Panhcf63409a2010-12-13 18:00:38 +0800398{
Ike Panhc8693ae82010-12-13 18:01:01 +0800399 sparse_keymap_report_event(priv->inputdev, scancode, 1, true);
Ike Panhcf63409a2010-12-13 18:00:38 +0800400}
Ike Panhcf63409a2010-12-13 18:00:38 +0800401
Ike Panhca4b5a272010-12-13 18:00:48 +0800402/*
403 * module init/exit
404 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100405static const struct acpi_device_id ideapad_device_ids[] = {
406 { "VPC2004", 0},
407 { "", 0},
408};
409MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);
410
Ike Panhca4b5a272010-12-13 18:00:48 +0800411static int __devinit ideapad_acpi_add(struct acpi_device *adevice)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100412{
Ike Panhc3371f482011-06-30 19:50:40 +0800413 int ret, i;
414 unsigned long cfg;
David Woodhousece326322010-08-11 17:59:35 +0100415 struct ideapad_private *priv;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100416
Ike Panhc3371f482011-06-30 19:50:40 +0800417 if (read_method_int(adevice->handle, "_CFG", (int *)&cfg))
Ike Panhc6f8371c2010-10-01 15:39:14 +0800418 return -ENODEV;
419
David Woodhousece326322010-08-11 17:59:35 +0100420 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
421 if (!priv)
422 return -ENOMEM;
Ike Panhcc9f718d2010-12-13 18:00:27 +0800423 dev_set_drvdata(&adevice->dev, priv);
Ike Panhcc1f73652010-12-13 18:01:12 +0800424 ideapad_handle = adevice->handle;
Ike Panhc3371f482011-06-30 19:50:40 +0800425 priv->cfg = cfg;
Ike Panhc98ee6912010-12-13 18:00:15 +0800426
Ike Panhc8693ae82010-12-13 18:01:01 +0800427 ret = ideapad_platform_init(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800428 if (ret)
429 goto platform_failed;
David Woodhousece326322010-08-11 17:59:35 +0100430
Ike Panhc8693ae82010-12-13 18:01:01 +0800431 ret = ideapad_input_init(priv);
Ike Panhcf63409a2010-12-13 18:00:38 +0800432 if (ret)
433 goto input_failed;
434
Ike Panhcc1f73652010-12-13 18:01:12 +0800435 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++) {
Ike Panhc3371f482011-06-30 19:50:40 +0800436 if (test_bit(ideapad_rfk_data[i].cfgbit, &cfg))
Ike Panhcc9f718d2010-12-13 18:00:27 +0800437 ideapad_register_rfkill(adevice, i);
Ike Panhcc1f73652010-12-13 18:01:12 +0800438 else
439 priv->rfk[i] = NULL;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100440 }
David Woodhousece326322010-08-11 17:59:35 +0100441 ideapad_sync_rfk_state(adevice);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800442
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100443 return 0;
Ike Panhc98ee6912010-12-13 18:00:15 +0800444
Ike Panhcf63409a2010-12-13 18:00:38 +0800445input_failed:
Ike Panhc8693ae82010-12-13 18:01:01 +0800446 ideapad_platform_exit(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800447platform_failed:
448 kfree(priv);
449 return ret;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100450}
451
Ike Panhca4b5a272010-12-13 18:00:48 +0800452static int __devexit ideapad_acpi_remove(struct acpi_device *adevice, int type)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100453{
David Woodhousece326322010-08-11 17:59:35 +0100454 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100455 int i;
David Woodhousece326322010-08-11 17:59:35 +0100456
Ike Panhcc1f73652010-12-13 18:01:12 +0800457 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100458 ideapad_unregister_rfkill(adevice, i);
Ike Panhc8693ae82010-12-13 18:01:01 +0800459 ideapad_input_exit(priv);
460 ideapad_platform_exit(priv);
David Woodhousece326322010-08-11 17:59:35 +0100461 dev_set_drvdata(&adevice->dev, NULL);
462 kfree(priv);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800463
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100464 return 0;
465}
466
David Woodhousece326322010-08-11 17:59:35 +0100467static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100468{
Ike Panhc8693ae82010-12-13 18:01:01 +0800469 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
Ike Panhc8e7d3542010-10-01 15:39:05 +0800470 acpi_handle handle = adevice->handle;
471 unsigned long vpc1, vpc2, vpc_bit;
472
473 if (read_ec_data(handle, 0x10, &vpc1))
474 return;
475 if (read_ec_data(handle, 0x1A, &vpc2))
476 return;
477
478 vpc1 = (vpc2 << 8) | vpc1;
479 for (vpc_bit = 0; vpc_bit < 16; vpc_bit++) {
480 if (test_bit(vpc_bit, &vpc1)) {
481 if (vpc_bit == 9)
482 ideapad_sync_rfk_state(adevice);
Ike Panhc883ae792011-02-23 21:39:59 +0800483 else if (vpc_bit == 4)
484 read_ec_data(handle, 0x12, &vpc2);
Ike Panhcf63409a2010-12-13 18:00:38 +0800485 else
Ike Panhc8693ae82010-12-13 18:01:01 +0800486 ideapad_input_report(priv, vpc_bit);
Ike Panhc8e7d3542010-10-01 15:39:05 +0800487 }
488 }
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100489}
490
491static struct acpi_driver ideapad_acpi_driver = {
492 .name = "ideapad_acpi",
493 .class = "IdeaPad",
494 .ids = ideapad_device_ids,
495 .ops.add = ideapad_acpi_add,
496 .ops.remove = ideapad_acpi_remove,
497 .ops.notify = ideapad_acpi_notify,
498 .owner = THIS_MODULE,
499};
500
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100501static int __init ideapad_acpi_module_init(void)
502{
Ike Panhca4b5a272010-12-13 18:00:48 +0800503 return acpi_bus_register_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100504}
505
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100506static void __exit ideapad_acpi_module_exit(void)
507{
508 acpi_bus_unregister_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100509}
510
511MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
512MODULE_DESCRIPTION("IdeaPad ACPI Extras");
513MODULE_LICENSE("GPL");
514
515module_init(ideapad_acpi_module_init);
516module_exit(ideapad_acpi_module_exit);