blob: 114d95247cdf8f6ad3c07d14a6a88496d6f63f43 [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
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/types.h>
27#include <acpi/acpi_bus.h>
28#include <acpi/acpi_drivers.h>
29#include <linux/rfkill.h>
Ike Panhc98ee6912010-12-13 18:00:15 +080030#include <linux/platform_device.h>
Ike Panhcf63409a2010-12-13 18:00:38 +080031#include <linux/input.h>
32#include <linux/input/sparse-keymap.h>
David Woodhouse58ac7aa2010-08-10 23:44:05 +010033
Ike Panhcc1f73652010-12-13 18:01:12 +080034#define IDEAPAD_RFKILL_DEV_NUM (3)
David Woodhouse58ac7aa2010-08-10 23:44:05 +010035
David Woodhousece326322010-08-11 17:59:35 +010036struct ideapad_private {
Ike Panhcc1f73652010-12-13 18:01:12 +080037 struct rfkill *rfk[IDEAPAD_RFKILL_DEV_NUM];
Ike Panhc98ee6912010-12-13 18:00:15 +080038 struct platform_device *platform_device;
Ike Panhcf63409a2010-12-13 18:00:38 +080039 struct input_dev *inputdev;
David Woodhouse58ac7aa2010-08-10 23:44:05 +010040};
41
Ike Panhcc1f73652010-12-13 18:01:12 +080042static acpi_handle ideapad_handle;
Ike Panhcbfa97b72010-10-01 15:40:22 +080043static bool no_bt_rfkill;
44module_param(no_bt_rfkill, bool, 0444);
45MODULE_PARM_DESC(no_bt_rfkill, "No rfkill for bluetooth.");
46
Ike Panhc6a09f212010-10-01 15:38:46 +080047/*
48 * ACPI Helpers
49 */
50#define IDEAPAD_EC_TIMEOUT (100) /* in ms */
51
52static int read_method_int(acpi_handle handle, const char *method, int *val)
53{
54 acpi_status status;
55 unsigned long long result;
56
57 status = acpi_evaluate_integer(handle, (char *)method, NULL, &result);
58 if (ACPI_FAILURE(status)) {
59 *val = -1;
60 return -1;
61 } else {
62 *val = result;
63 return 0;
64 }
65}
66
67static int method_vpcr(acpi_handle handle, int cmd, int *ret)
68{
69 acpi_status status;
70 unsigned long long result;
71 struct acpi_object_list params;
72 union acpi_object in_obj;
73
74 params.count = 1;
75 params.pointer = &in_obj;
76 in_obj.type = ACPI_TYPE_INTEGER;
77 in_obj.integer.value = cmd;
78
79 status = acpi_evaluate_integer(handle, "VPCR", &params, &result);
80
81 if (ACPI_FAILURE(status)) {
82 *ret = -1;
83 return -1;
84 } else {
85 *ret = result;
86 return 0;
87 }
88}
89
90static int method_vpcw(acpi_handle handle, int cmd, int data)
91{
92 struct acpi_object_list params;
93 union acpi_object in_obj[2];
94 acpi_status status;
95
96 params.count = 2;
97 params.pointer = in_obj;
98 in_obj[0].type = ACPI_TYPE_INTEGER;
99 in_obj[0].integer.value = cmd;
100 in_obj[1].type = ACPI_TYPE_INTEGER;
101 in_obj[1].integer.value = data;
102
103 status = acpi_evaluate_object(handle, "VPCW", &params, NULL);
104 if (status != AE_OK)
105 return -1;
106 return 0;
107}
108
109static int read_ec_data(acpi_handle handle, int cmd, unsigned long *data)
110{
111 int val;
112 unsigned long int end_jiffies;
113
114 if (method_vpcw(handle, 1, cmd))
115 return -1;
116
117 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
118 time_before(jiffies, end_jiffies);) {
119 schedule();
120 if (method_vpcr(handle, 1, &val))
121 return -1;
122 if (val == 0) {
123 if (method_vpcr(handle, 0, &val))
124 return -1;
125 *data = val;
126 return 0;
127 }
128 }
129 pr_err("timeout in read_ec_cmd\n");
130 return -1;
131}
132
133static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
134{
135 int val;
136 unsigned long int end_jiffies;
137
138 if (method_vpcw(handle, 0, data))
139 return -1;
140 if (method_vpcw(handle, 1, cmd))
141 return -1;
142
143 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
144 time_before(jiffies, end_jiffies);) {
145 schedule();
146 if (method_vpcr(handle, 1, &val))
147 return -1;
148 if (val == 0)
149 return 0;
150 }
151 pr_err("timeout in write_ec_cmd\n");
152 return -1;
153}
Ike Panhc6a09f212010-10-01 15:38:46 +0800154
Ike Panhca4b5a272010-12-13 18:00:48 +0800155/*
156 * camera power
157 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100158static ssize_t show_ideapad_cam(struct device *dev,
159 struct device_attribute *attr,
160 char *buf)
161{
Ike Panhc26c81d52010-10-01 15:39:40 +0800162 unsigned long result;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100163
Ike Panhcc1f73652010-12-13 18:01:12 +0800164 if (read_ec_data(ideapad_handle, 0x1D, &result))
Ike Panhc26c81d52010-10-01 15:39:40 +0800165 return sprintf(buf, "-1\n");
166 return sprintf(buf, "%lu\n", result);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100167}
168
169static ssize_t store_ideapad_cam(struct device *dev,
170 struct device_attribute *attr,
171 const char *buf, size_t count)
172{
173 int ret, state;
174
175 if (!count)
176 return 0;
177 if (sscanf(buf, "%i", &state) != 1)
178 return -EINVAL;
Ike Panhcc1f73652010-12-13 18:01:12 +0800179 ret = write_ec_cmd(ideapad_handle, 0x1E, state);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100180 if (ret < 0)
181 return ret;
182 return count;
183}
184
185static DEVICE_ATTR(camera_power, 0644, show_ideapad_cam, store_ideapad_cam);
186
Ike Panhca4b5a272010-12-13 18:00:48 +0800187/*
188 * Rfkill
189 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800190struct ideapad_rfk_data {
191 char *name;
192 int cfgbit;
193 int opcode;
194 int type;
195};
196
197const struct ideapad_rfk_data ideapad_rfk_data[] = {
198 { "ideapad_wlan", 18, 0x15, RFKILL_TYPE_WLAN },
199 { "ideapad_bluetooth", 16, 0x17, RFKILL_TYPE_BLUETOOTH },
200 { "ideapad_3g", 17, 0x20, RFKILL_TYPE_WWAN },
201};
202
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100203static int ideapad_rfk_set(void *data, bool blocked)
204{
Ike Panhcc1f73652010-12-13 18:01:12 +0800205 unsigned long opcode = (unsigned long)data;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100206
Ike Panhcc1f73652010-12-13 18:01:12 +0800207 return write_ec_cmd(ideapad_handle, opcode, !blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100208}
209
210static struct rfkill_ops ideapad_rfk_ops = {
211 .set_block = ideapad_rfk_set,
212};
213
David Woodhousece326322010-08-11 17:59:35 +0100214static void ideapad_sync_rfk_state(struct acpi_device *adevice)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100215{
David Woodhousece326322010-08-11 17:59:35 +0100216 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
Ike Panhc2b7266b2010-10-01 15:39:49 +0800217 unsigned long hw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100218 int i;
219
Ike Panhcc1f73652010-12-13 18:01:12 +0800220 if (read_ec_data(ideapad_handle, 0x23, &hw_blocked))
Ike Panhc2b7266b2010-10-01 15:39:49 +0800221 return;
222 hw_blocked = !hw_blocked;
223
Ike Panhcc1f73652010-12-13 18:01:12 +0800224 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100225 if (priv->rfk[i])
226 rfkill_set_hw_state(priv->rfk[i], hw_blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100227}
228
Ike Panhca4b5a272010-12-13 18:00:48 +0800229static int __devinit ideapad_register_rfkill(struct acpi_device *adevice,
230 int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100231{
David Woodhousece326322010-08-11 17:59:35 +0100232 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100233 int ret;
Ike Panhc2b7266b2010-10-01 15:39:49 +0800234 unsigned long sw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100235
Ike Panhcbfa97b72010-10-01 15:40:22 +0800236 if (no_bt_rfkill &&
237 (ideapad_rfk_data[dev].type == RFKILL_TYPE_BLUETOOTH)) {
238 /* Force to enable bluetooth when no_bt_rfkill=1 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800239 write_ec_cmd(ideapad_handle,
Ike Panhcbfa97b72010-10-01 15:40:22 +0800240 ideapad_rfk_data[dev].opcode, 1);
241 return 0;
242 }
243
Ike Panhc2b7266b2010-10-01 15:39:49 +0800244 priv->rfk[dev] = rfkill_alloc(ideapad_rfk_data[dev].name, &adevice->dev,
245 ideapad_rfk_data[dev].type, &ideapad_rfk_ops,
David Woodhousece326322010-08-11 17:59:35 +0100246 (void *)(long)dev);
247 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100248 return -ENOMEM;
249
Ike Panhcc1f73652010-12-13 18:01:12 +0800250 if (read_ec_data(ideapad_handle, ideapad_rfk_data[dev].opcode-1,
Ike Panhc2b7266b2010-10-01 15:39:49 +0800251 &sw_blocked)) {
252 rfkill_init_sw_state(priv->rfk[dev], 0);
253 } else {
254 sw_blocked = !sw_blocked;
255 rfkill_init_sw_state(priv->rfk[dev], sw_blocked);
256 }
257
David Woodhousece326322010-08-11 17:59:35 +0100258 ret = rfkill_register(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100259 if (ret) {
David Woodhousece326322010-08-11 17:59:35 +0100260 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100261 return ret;
262 }
263 return 0;
264}
265
Ike Panhca4b5a272010-12-13 18:00:48 +0800266static void __devexit ideapad_unregister_rfkill(struct acpi_device *adevice,
267 int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100268{
David Woodhousece326322010-08-11 17:59:35 +0100269 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
270
271 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100272 return;
273
David Woodhousece326322010-08-11 17:59:35 +0100274 rfkill_unregister(priv->rfk[dev]);
275 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100276}
277
Ike Panhc98ee6912010-12-13 18:00:15 +0800278/*
279 * Platform device
280 */
Ike Panhcc9f718d2010-12-13 18:00:27 +0800281static struct attribute *ideapad_attributes[] = {
282 &dev_attr_camera_power.attr,
283 NULL
284};
285
286static struct attribute_group ideapad_attribute_group = {
287 .attrs = ideapad_attributes
288};
289
Ike Panhc8693ae82010-12-13 18:01:01 +0800290static int __devinit ideapad_platform_init(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800291{
292 int result;
293
Ike Panhc8693ae82010-12-13 18:01:01 +0800294 priv->platform_device = platform_device_alloc("ideapad", -1);
295 if (!priv->platform_device)
Ike Panhc98ee6912010-12-13 18:00:15 +0800296 return -ENOMEM;
Ike Panhc8693ae82010-12-13 18:01:01 +0800297 platform_set_drvdata(priv->platform_device, priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800298
Ike Panhc8693ae82010-12-13 18:01:01 +0800299 result = platform_device_add(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800300 if (result)
301 goto fail_platform_device;
302
Ike Panhc8693ae82010-12-13 18:01:01 +0800303 result = sysfs_create_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800304 &ideapad_attribute_group);
305 if (result)
306 goto fail_sysfs;
Ike Panhc98ee6912010-12-13 18:00:15 +0800307 return 0;
308
Ike Panhcc9f718d2010-12-13 18:00:27 +0800309fail_sysfs:
Ike Panhc8693ae82010-12-13 18:01:01 +0800310 platform_device_del(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800311fail_platform_device:
Ike Panhc8693ae82010-12-13 18:01:01 +0800312 platform_device_put(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800313 return result;
314}
315
Ike Panhc8693ae82010-12-13 18:01:01 +0800316static void ideapad_platform_exit(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800317{
Ike Panhc8693ae82010-12-13 18:01:01 +0800318 sysfs_remove_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800319 &ideapad_attribute_group);
Ike Panhc8693ae82010-12-13 18:01:01 +0800320 platform_device_unregister(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800321}
Ike Panhc98ee6912010-12-13 18:00:15 +0800322
Ike Panhcf63409a2010-12-13 18:00:38 +0800323/*
324 * input device
325 */
326static const struct key_entry ideapad_keymap[] = {
327 { KE_KEY, 0x06, { KEY_SWITCHVIDEOMODE } },
328 { KE_KEY, 0x0D, { KEY_WLAN } },
329 { KE_END, 0 },
330};
331
Ike Panhc8693ae82010-12-13 18:01:01 +0800332static int __devinit ideapad_input_init(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800333{
334 struct input_dev *inputdev;
335 int error;
336
337 inputdev = input_allocate_device();
338 if (!inputdev) {
339 pr_info("Unable to allocate input device\n");
340 return -ENOMEM;
341 }
342
343 inputdev->name = "Ideapad extra buttons";
344 inputdev->phys = "ideapad/input0";
345 inputdev->id.bustype = BUS_HOST;
Ike Panhc8693ae82010-12-13 18:01:01 +0800346 inputdev->dev.parent = &priv->platform_device->dev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800347
348 error = sparse_keymap_setup(inputdev, ideapad_keymap, NULL);
349 if (error) {
350 pr_err("Unable to setup input device keymap\n");
351 goto err_free_dev;
352 }
353
354 error = input_register_device(inputdev);
355 if (error) {
356 pr_err("Unable to register input device\n");
357 goto err_free_keymap;
358 }
359
Ike Panhc8693ae82010-12-13 18:01:01 +0800360 priv->inputdev = inputdev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800361 return 0;
362
363err_free_keymap:
364 sparse_keymap_free(inputdev);
365err_free_dev:
366 input_free_device(inputdev);
367 return error;
368}
369
Ike Panhc8693ae82010-12-13 18:01:01 +0800370static void __devexit ideapad_input_exit(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800371{
Ike Panhc8693ae82010-12-13 18:01:01 +0800372 sparse_keymap_free(priv->inputdev);
373 input_unregister_device(priv->inputdev);
374 priv->inputdev = NULL;
Ike Panhcf63409a2010-12-13 18:00:38 +0800375}
376
Ike Panhc8693ae82010-12-13 18:01:01 +0800377static void ideapad_input_report(struct ideapad_private *priv,
378 unsigned long scancode)
Ike Panhcf63409a2010-12-13 18:00:38 +0800379{
Ike Panhc8693ae82010-12-13 18:01:01 +0800380 sparse_keymap_report_event(priv->inputdev, scancode, 1, true);
Ike Panhcf63409a2010-12-13 18:00:38 +0800381}
Ike Panhcf63409a2010-12-13 18:00:38 +0800382
Ike Panhca4b5a272010-12-13 18:00:48 +0800383/*
384 * module init/exit
385 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100386static const struct acpi_device_id ideapad_device_ids[] = {
387 { "VPC2004", 0},
388 { "", 0},
389};
390MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);
391
Ike Panhca4b5a272010-12-13 18:00:48 +0800392static int __devinit ideapad_acpi_add(struct acpi_device *adevice)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100393{
Ike Panhc98ee6912010-12-13 18:00:15 +0800394 int ret, i, cfg;
David Woodhousece326322010-08-11 17:59:35 +0100395 struct ideapad_private *priv;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100396
Ike Panhc6f8371c2010-10-01 15:39:14 +0800397 if (read_method_int(adevice->handle, "_CFG", &cfg))
398 return -ENODEV;
399
David Woodhousece326322010-08-11 17:59:35 +0100400 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
401 if (!priv)
402 return -ENOMEM;
Ike Panhcc9f718d2010-12-13 18:00:27 +0800403 dev_set_drvdata(&adevice->dev, priv);
Ike Panhcc1f73652010-12-13 18:01:12 +0800404 ideapad_handle = adevice->handle;
Ike Panhc98ee6912010-12-13 18:00:15 +0800405
Ike Panhc8693ae82010-12-13 18:01:01 +0800406 ret = ideapad_platform_init(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800407 if (ret)
408 goto platform_failed;
David Woodhousece326322010-08-11 17:59:35 +0100409
Ike Panhc8693ae82010-12-13 18:01:01 +0800410 ret = ideapad_input_init(priv);
Ike Panhcf63409a2010-12-13 18:00:38 +0800411 if (ret)
412 goto input_failed;
413
Ike Panhcc1f73652010-12-13 18:01:12 +0800414 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++) {
Ike Panhcc9f718d2010-12-13 18:00:27 +0800415 if (test_bit(ideapad_rfk_data[i].cfgbit, (unsigned long *)&cfg))
416 ideapad_register_rfkill(adevice, i);
Ike Panhcc1f73652010-12-13 18:01:12 +0800417 else
418 priv->rfk[i] = NULL;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100419 }
David Woodhousece326322010-08-11 17:59:35 +0100420 ideapad_sync_rfk_state(adevice);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800421
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100422 return 0;
Ike Panhc98ee6912010-12-13 18:00:15 +0800423
Ike Panhcf63409a2010-12-13 18:00:38 +0800424input_failed:
Ike Panhc8693ae82010-12-13 18:01:01 +0800425 ideapad_platform_exit(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800426platform_failed:
427 kfree(priv);
428 return ret;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100429}
430
Ike Panhca4b5a272010-12-13 18:00:48 +0800431static int __devexit ideapad_acpi_remove(struct acpi_device *adevice, int type)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100432{
David Woodhousece326322010-08-11 17:59:35 +0100433 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100434 int i;
David Woodhousece326322010-08-11 17:59:35 +0100435
Ike Panhcc1f73652010-12-13 18:01:12 +0800436 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100437 ideapad_unregister_rfkill(adevice, i);
Ike Panhc8693ae82010-12-13 18:01:01 +0800438 ideapad_input_exit(priv);
439 ideapad_platform_exit(priv);
David Woodhousece326322010-08-11 17:59:35 +0100440 dev_set_drvdata(&adevice->dev, NULL);
441 kfree(priv);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800442
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100443 return 0;
444}
445
David Woodhousece326322010-08-11 17:59:35 +0100446static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100447{
Ike Panhc8693ae82010-12-13 18:01:01 +0800448 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
Ike Panhc8e7d3542010-10-01 15:39:05 +0800449 acpi_handle handle = adevice->handle;
450 unsigned long vpc1, vpc2, vpc_bit;
451
452 if (read_ec_data(handle, 0x10, &vpc1))
453 return;
454 if (read_ec_data(handle, 0x1A, &vpc2))
455 return;
456
457 vpc1 = (vpc2 << 8) | vpc1;
458 for (vpc_bit = 0; vpc_bit < 16; vpc_bit++) {
459 if (test_bit(vpc_bit, &vpc1)) {
460 if (vpc_bit == 9)
461 ideapad_sync_rfk_state(adevice);
Ike Panhcf63409a2010-12-13 18:00:38 +0800462 else
Ike Panhc8693ae82010-12-13 18:01:01 +0800463 ideapad_input_report(priv, vpc_bit);
Ike Panhc8e7d3542010-10-01 15:39:05 +0800464 }
465 }
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100466}
467
468static struct acpi_driver ideapad_acpi_driver = {
469 .name = "ideapad_acpi",
470 .class = "IdeaPad",
471 .ids = ideapad_device_ids,
472 .ops.add = ideapad_acpi_add,
473 .ops.remove = ideapad_acpi_remove,
474 .ops.notify = ideapad_acpi_notify,
475 .owner = THIS_MODULE,
476};
477
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100478static int __init ideapad_acpi_module_init(void)
479{
Ike Panhca4b5a272010-12-13 18:00:48 +0800480 return acpi_bus_register_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100481}
482
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100483static void __exit ideapad_acpi_module_exit(void)
484{
485 acpi_bus_unregister_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100486}
487
488MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
489MODULE_DESCRIPTION("IdeaPad ACPI Extras");
490MODULE_LICENSE("GPL");
491
492module_init(ideapad_acpi_module_init);
493module_exit(ideapad_acpi_module_exit);