blob: 00d82f168c5801b7697eab1b54560f2cfa2ee336 [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>
Ike Panhca4ecbb82011-06-30 19:50:52 +080035#include <linux/backlight.h>
36#include <linux/fb.h>
Ike Panhc773e3202011-09-06 02:32:52 +080037#include <linux/debugfs.h>
38#include <linux/seq_file.h>
David Woodhouse58ac7aa2010-08-10 23:44:05 +010039
Ike Panhcc1f73652010-12-13 18:01:12 +080040#define IDEAPAD_RFKILL_DEV_NUM (3)
David Woodhouse58ac7aa2010-08-10 23:44:05 +010041
Ike Panhc3371f482011-06-30 19:50:40 +080042#define CFG_BT_BIT (16)
43#define CFG_3G_BIT (17)
44#define CFG_WIFI_BIT (18)
Ike Panhca84511f2011-06-30 19:50:47 +080045#define CFG_CAMERA_BIT (19)
Ike Panhc3371f482011-06-30 19:50:40 +080046
Ike Panhc2be1dc22011-09-06 02:31:53 +080047enum {
48 VPCCMD_R_VPC1 = 0x10,
49 VPCCMD_R_BL_MAX,
50 VPCCMD_R_BL,
51 VPCCMD_W_BL,
52 VPCCMD_R_WIFI,
53 VPCCMD_W_WIFI,
54 VPCCMD_R_BT,
55 VPCCMD_W_BT,
56 VPCCMD_R_BL_POWER,
57 VPCCMD_R_NOVO,
58 VPCCMD_R_VPC2,
59 VPCCMD_R_TOUCHPAD,
60 VPCCMD_W_TOUCHPAD,
61 VPCCMD_R_CAMERA,
62 VPCCMD_W_CAMERA,
63 VPCCMD_R_3G,
64 VPCCMD_W_3G,
65 VPCCMD_R_ODD, /* 0x21 */
66 VPCCMD_R_RF = 0x23,
67 VPCCMD_W_RF,
68 VPCCMD_W_BL_POWER = 0x33,
69};
70
David Woodhousece326322010-08-11 17:59:35 +010071struct ideapad_private {
Ike Panhcc1f73652010-12-13 18:01:12 +080072 struct rfkill *rfk[IDEAPAD_RFKILL_DEV_NUM];
Ike Panhc98ee6912010-12-13 18:00:15 +080073 struct platform_device *platform_device;
Ike Panhcf63409a2010-12-13 18:00:38 +080074 struct input_dev *inputdev;
Ike Panhca4ecbb82011-06-30 19:50:52 +080075 struct backlight_device *blightdev;
Ike Panhc773e3202011-09-06 02:32:52 +080076 struct dentry *debug;
Ike Panhc3371f482011-06-30 19:50:40 +080077 unsigned long cfg;
David Woodhouse58ac7aa2010-08-10 23:44:05 +010078};
79
Ike Panhcc1f73652010-12-13 18:01:12 +080080static acpi_handle ideapad_handle;
Ike Panhc773e3202011-09-06 02:32:52 +080081static struct ideapad_private *ideapad_priv;
Ike Panhcbfa97b72010-10-01 15:40:22 +080082static bool no_bt_rfkill;
83module_param(no_bt_rfkill, bool, 0444);
84MODULE_PARM_DESC(no_bt_rfkill, "No rfkill for bluetooth.");
85
Ike Panhc6a09f212010-10-01 15:38:46 +080086/*
87 * ACPI Helpers
88 */
89#define IDEAPAD_EC_TIMEOUT (100) /* in ms */
90
91static int read_method_int(acpi_handle handle, const char *method, int *val)
92{
93 acpi_status status;
94 unsigned long long result;
95
96 status = acpi_evaluate_integer(handle, (char *)method, NULL, &result);
97 if (ACPI_FAILURE(status)) {
98 *val = -1;
99 return -1;
100 } else {
101 *val = result;
102 return 0;
103 }
104}
105
106static int method_vpcr(acpi_handle handle, int cmd, int *ret)
107{
108 acpi_status status;
109 unsigned long long result;
110 struct acpi_object_list params;
111 union acpi_object in_obj;
112
113 params.count = 1;
114 params.pointer = &in_obj;
115 in_obj.type = ACPI_TYPE_INTEGER;
116 in_obj.integer.value = cmd;
117
118 status = acpi_evaluate_integer(handle, "VPCR", &params, &result);
119
120 if (ACPI_FAILURE(status)) {
121 *ret = -1;
122 return -1;
123 } else {
124 *ret = result;
125 return 0;
126 }
127}
128
129static int method_vpcw(acpi_handle handle, int cmd, int data)
130{
131 struct acpi_object_list params;
132 union acpi_object in_obj[2];
133 acpi_status status;
134
135 params.count = 2;
136 params.pointer = in_obj;
137 in_obj[0].type = ACPI_TYPE_INTEGER;
138 in_obj[0].integer.value = cmd;
139 in_obj[1].type = ACPI_TYPE_INTEGER;
140 in_obj[1].integer.value = data;
141
142 status = acpi_evaluate_object(handle, "VPCW", &params, NULL);
143 if (status != AE_OK)
144 return -1;
145 return 0;
146}
147
148static int read_ec_data(acpi_handle handle, int cmd, unsigned long *data)
149{
150 int val;
151 unsigned long int end_jiffies;
152
153 if (method_vpcw(handle, 1, cmd))
154 return -1;
155
156 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
157 time_before(jiffies, end_jiffies);) {
158 schedule();
159 if (method_vpcr(handle, 1, &val))
160 return -1;
161 if (val == 0) {
162 if (method_vpcr(handle, 0, &val))
163 return -1;
164 *data = val;
165 return 0;
166 }
167 }
168 pr_err("timeout in read_ec_cmd\n");
169 return -1;
170}
171
172static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
173{
174 int val;
175 unsigned long int end_jiffies;
176
177 if (method_vpcw(handle, 0, data))
178 return -1;
179 if (method_vpcw(handle, 1, cmd))
180 return -1;
181
182 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
183 time_before(jiffies, end_jiffies);) {
184 schedule();
185 if (method_vpcr(handle, 1, &val))
186 return -1;
187 if (val == 0)
188 return 0;
189 }
190 pr_err("timeout in write_ec_cmd\n");
191 return -1;
192}
Ike Panhc6a09f212010-10-01 15:38:46 +0800193
Ike Panhca4b5a272010-12-13 18:00:48 +0800194/*
Ike Panhc773e3202011-09-06 02:32:52 +0800195 * debugfs
196 */
Ike Panhc773e3202011-09-06 02:32:52 +0800197static int debugfs_status_show(struct seq_file *s, void *data)
198{
199 unsigned long value;
200
201 if (!read_ec_data(ideapad_handle, VPCCMD_R_BL_MAX, &value))
202 seq_printf(s, "Backlight max:\t%lu\n", value);
203 if (!read_ec_data(ideapad_handle, VPCCMD_R_BL, &value))
204 seq_printf(s, "Backlight now:\t%lu\n", value);
205 if (!read_ec_data(ideapad_handle, VPCCMD_R_BL_POWER, &value))
206 seq_printf(s, "BL power value:\t%s\n", value ? "On" : "Off");
207 seq_printf(s, "=====================\n");
208
209 if (!read_ec_data(ideapad_handle, VPCCMD_R_RF, &value))
210 seq_printf(s, "Radio status:\t%s(%lu)\n",
211 value ? "On" : "Off", value);
212 if (!read_ec_data(ideapad_handle, VPCCMD_R_WIFI, &value))
213 seq_printf(s, "Wifi status:\t%s(%lu)\n",
214 value ? "On" : "Off", value);
215 if (!read_ec_data(ideapad_handle, VPCCMD_R_BT, &value))
216 seq_printf(s, "BT status:\t%s(%lu)\n",
217 value ? "On" : "Off", value);
218 if (!read_ec_data(ideapad_handle, VPCCMD_R_3G, &value))
219 seq_printf(s, "3G status:\t%s(%lu)\n",
220 value ? "On" : "Off", value);
221 seq_printf(s, "=====================\n");
222
223 if (!read_ec_data(ideapad_handle, VPCCMD_R_TOUCHPAD, &value))
224 seq_printf(s, "Touchpad status:%s(%lu)\n",
225 value ? "On" : "Off", value);
226 if (!read_ec_data(ideapad_handle, VPCCMD_R_CAMERA, &value))
227 seq_printf(s, "Camera status:\t%s(%lu)\n",
228 value ? "On" : "Off", value);
229
230 return 0;
231}
232
233static int debugfs_status_open(struct inode *inode, struct file *file)
234{
235 return single_open(file, debugfs_status_show, NULL);
236}
237
238static const struct file_operations debugfs_status_fops = {
239 .owner = THIS_MODULE,
240 .open = debugfs_status_open,
241 .read = seq_read,
242 .llseek = seq_lseek,
243 .release = single_release,
244};
245
246static int debugfs_cfg_show(struct seq_file *s, void *data)
247{
248 if (!ideapad_priv) {
249 seq_printf(s, "cfg: N/A\n");
250 } else {
251 seq_printf(s, "cfg: 0x%.8lX\n\nCapability: ",
252 ideapad_priv->cfg);
253 if (test_bit(CFG_BT_BIT, &ideapad_priv->cfg))
254 seq_printf(s, "Bluetooth ");
255 if (test_bit(CFG_3G_BIT, &ideapad_priv->cfg))
256 seq_printf(s, "3G ");
257 if (test_bit(CFG_WIFI_BIT, &ideapad_priv->cfg))
258 seq_printf(s, "Wireless ");
259 if (test_bit(CFG_CAMERA_BIT, &ideapad_priv->cfg))
260 seq_printf(s, "Camera ");
261 seq_printf(s, "\nGraphic: ");
262 switch ((ideapad_priv->cfg)&0x700) {
263 case 0x100:
264 seq_printf(s, "Intel");
265 break;
266 case 0x200:
267 seq_printf(s, "ATI");
268 break;
269 case 0x300:
270 seq_printf(s, "Nvidia");
271 break;
272 case 0x400:
273 seq_printf(s, "Intel and ATI");
274 break;
275 case 0x500:
276 seq_printf(s, "Intel and Nvidia");
277 break;
278 }
279 seq_printf(s, "\n");
280 }
281 return 0;
282}
283
284static int debugfs_cfg_open(struct inode *inode, struct file *file)
285{
286 return single_open(file, debugfs_cfg_show, NULL);
287}
288
289static const struct file_operations debugfs_cfg_fops = {
290 .owner = THIS_MODULE,
291 .open = debugfs_cfg_open,
292 .read = seq_read,
293 .llseek = seq_lseek,
294 .release = single_release,
295};
296
297static int __devinit ideapad_debugfs_init(struct ideapad_private *priv)
298{
299 struct dentry *node;
300
301 priv->debug = debugfs_create_dir("ideapad", NULL);
302 if (priv->debug == NULL) {
303 pr_err("failed to create debugfs directory");
304 goto errout;
305 }
306
307 node = debugfs_create_file("cfg", S_IRUGO, priv->debug, NULL,
308 &debugfs_cfg_fops);
309 if (!node) {
310 pr_err("failed to create cfg in debugfs");
311 goto errout;
312 }
313
314 node = debugfs_create_file("status", S_IRUGO, priv->debug, NULL,
315 &debugfs_status_fops);
316 if (!node) {
Ike Panhca5c38922012-05-03 17:38:35 +0800317 pr_err("failed to create status in debugfs");
Ike Panhc773e3202011-09-06 02:32:52 +0800318 goto errout;
319 }
320
321 return 0;
322
323errout:
324 return -ENOMEM;
325}
326
327static void ideapad_debugfs_exit(struct ideapad_private *priv)
328{
329 debugfs_remove_recursive(priv->debug);
330 priv->debug = NULL;
331}
332
333/*
Ike Panhc3371f482011-06-30 19:50:40 +0800334 * sysfs
Ike Panhca4b5a272010-12-13 18:00:48 +0800335 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100336static ssize_t show_ideapad_cam(struct device *dev,
337 struct device_attribute *attr,
338 char *buf)
339{
Ike Panhc26c81d52010-10-01 15:39:40 +0800340 unsigned long result;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100341
Ike Panhc2be1dc22011-09-06 02:31:53 +0800342 if (read_ec_data(ideapad_handle, VPCCMD_R_CAMERA, &result))
Ike Panhc26c81d52010-10-01 15:39:40 +0800343 return sprintf(buf, "-1\n");
344 return sprintf(buf, "%lu\n", result);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100345}
346
347static ssize_t store_ideapad_cam(struct device *dev,
348 struct device_attribute *attr,
349 const char *buf, size_t count)
350{
351 int ret, state;
352
353 if (!count)
354 return 0;
355 if (sscanf(buf, "%i", &state) != 1)
356 return -EINVAL;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800357 ret = write_ec_cmd(ideapad_handle, VPCCMD_W_CAMERA, state);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100358 if (ret < 0)
359 return ret;
360 return count;
361}
362
363static DEVICE_ATTR(camera_power, 0644, show_ideapad_cam, store_ideapad_cam);
364
Ike Panhc3371f482011-06-30 19:50:40 +0800365static struct attribute *ideapad_attributes[] = {
366 &dev_attr_camera_power.attr,
Ike Panhc3371f482011-06-30 19:50:40 +0800367 NULL
368};
369
Al Viro587a1f12011-07-23 23:11:19 -0400370static umode_t ideapad_is_visible(struct kobject *kobj,
Ike Panhca84511f2011-06-30 19:50:47 +0800371 struct attribute *attr,
372 int idx)
373{
374 struct device *dev = container_of(kobj, struct device, kobj);
375 struct ideapad_private *priv = dev_get_drvdata(dev);
376 bool supported;
377
378 if (attr == &dev_attr_camera_power.attr)
379 supported = test_bit(CFG_CAMERA_BIT, &(priv->cfg));
380 else
381 supported = true;
382
383 return supported ? attr->mode : 0;
384}
385
Ike Panhc3371f482011-06-30 19:50:40 +0800386static struct attribute_group ideapad_attribute_group = {
Ike Panhca84511f2011-06-30 19:50:47 +0800387 .is_visible = ideapad_is_visible,
Ike Panhc3371f482011-06-30 19:50:40 +0800388 .attrs = ideapad_attributes
389};
390
Ike Panhca4b5a272010-12-13 18:00:48 +0800391/*
392 * Rfkill
393 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800394struct ideapad_rfk_data {
395 char *name;
396 int cfgbit;
397 int opcode;
398 int type;
399};
400
401const struct ideapad_rfk_data ideapad_rfk_data[] = {
Ike Panhc2be1dc22011-09-06 02:31:53 +0800402 { "ideapad_wlan", CFG_WIFI_BIT, VPCCMD_W_WIFI, RFKILL_TYPE_WLAN },
403 { "ideapad_bluetooth", CFG_BT_BIT, VPCCMD_W_BT, RFKILL_TYPE_BLUETOOTH },
404 { "ideapad_3g", CFG_3G_BIT, VPCCMD_W_3G, RFKILL_TYPE_WWAN },
Ike Panhcc1f73652010-12-13 18:01:12 +0800405};
406
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100407static int ideapad_rfk_set(void *data, bool blocked)
408{
Ike Panhcc1f73652010-12-13 18:01:12 +0800409 unsigned long opcode = (unsigned long)data;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100410
Ike Panhcc1f73652010-12-13 18:01:12 +0800411 return write_ec_cmd(ideapad_handle, opcode, !blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100412}
413
414static struct rfkill_ops ideapad_rfk_ops = {
415 .set_block = ideapad_rfk_set,
416};
417
Ike Panhc923de842011-09-06 02:32:01 +0800418static void ideapad_sync_rfk_state(struct ideapad_private *priv)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100419{
Ike Panhc2b7266b2010-10-01 15:39:49 +0800420 unsigned long hw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100421 int i;
422
Ike Panhc2be1dc22011-09-06 02:31:53 +0800423 if (read_ec_data(ideapad_handle, VPCCMD_R_RF, &hw_blocked))
Ike Panhc2b7266b2010-10-01 15:39:49 +0800424 return;
425 hw_blocked = !hw_blocked;
426
Ike Panhcc1f73652010-12-13 18:01:12 +0800427 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100428 if (priv->rfk[i])
429 rfkill_set_hw_state(priv->rfk[i], hw_blocked);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100430}
431
Ike Panhca4b5a272010-12-13 18:00:48 +0800432static int __devinit ideapad_register_rfkill(struct acpi_device *adevice,
433 int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100434{
David Woodhousece326322010-08-11 17:59:35 +0100435 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100436 int ret;
Ike Panhc2b7266b2010-10-01 15:39:49 +0800437 unsigned long sw_blocked;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100438
Ike Panhcbfa97b72010-10-01 15:40:22 +0800439 if (no_bt_rfkill &&
440 (ideapad_rfk_data[dev].type == RFKILL_TYPE_BLUETOOTH)) {
441 /* Force to enable bluetooth when no_bt_rfkill=1 */
Ike Panhcc1f73652010-12-13 18:01:12 +0800442 write_ec_cmd(ideapad_handle,
Ike Panhcbfa97b72010-10-01 15:40:22 +0800443 ideapad_rfk_data[dev].opcode, 1);
444 return 0;
445 }
446
Ike Panhc2b7266b2010-10-01 15:39:49 +0800447 priv->rfk[dev] = rfkill_alloc(ideapad_rfk_data[dev].name, &adevice->dev,
448 ideapad_rfk_data[dev].type, &ideapad_rfk_ops,
David Woodhousece326322010-08-11 17:59:35 +0100449 (void *)(long)dev);
450 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100451 return -ENOMEM;
452
Ike Panhcc1f73652010-12-13 18:01:12 +0800453 if (read_ec_data(ideapad_handle, ideapad_rfk_data[dev].opcode-1,
Ike Panhc2b7266b2010-10-01 15:39:49 +0800454 &sw_blocked)) {
455 rfkill_init_sw_state(priv->rfk[dev], 0);
456 } else {
457 sw_blocked = !sw_blocked;
458 rfkill_init_sw_state(priv->rfk[dev], sw_blocked);
459 }
460
David Woodhousece326322010-08-11 17:59:35 +0100461 ret = rfkill_register(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100462 if (ret) {
David Woodhousece326322010-08-11 17:59:35 +0100463 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100464 return ret;
465 }
466 return 0;
467}
468
Ike Panhca4ecbb82011-06-30 19:50:52 +0800469static void ideapad_unregister_rfkill(struct acpi_device *adevice, int dev)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100470{
David Woodhousece326322010-08-11 17:59:35 +0100471 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
472
473 if (!priv->rfk[dev])
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100474 return;
475
David Woodhousece326322010-08-11 17:59:35 +0100476 rfkill_unregister(priv->rfk[dev]);
477 rfkill_destroy(priv->rfk[dev]);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100478}
479
Ike Panhc98ee6912010-12-13 18:00:15 +0800480/*
481 * Platform device
482 */
Ike Panhc8693ae82010-12-13 18:01:01 +0800483static int __devinit ideapad_platform_init(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800484{
485 int result;
486
Ike Panhc8693ae82010-12-13 18:01:01 +0800487 priv->platform_device = platform_device_alloc("ideapad", -1);
488 if (!priv->platform_device)
Ike Panhc98ee6912010-12-13 18:00:15 +0800489 return -ENOMEM;
Ike Panhc8693ae82010-12-13 18:01:01 +0800490 platform_set_drvdata(priv->platform_device, priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800491
Ike Panhc8693ae82010-12-13 18:01:01 +0800492 result = platform_device_add(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800493 if (result)
494 goto fail_platform_device;
495
Ike Panhc8693ae82010-12-13 18:01:01 +0800496 result = sysfs_create_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800497 &ideapad_attribute_group);
498 if (result)
499 goto fail_sysfs;
Ike Panhc98ee6912010-12-13 18:00:15 +0800500 return 0;
501
Ike Panhcc9f718d2010-12-13 18:00:27 +0800502fail_sysfs:
Ike Panhc8693ae82010-12-13 18:01:01 +0800503 platform_device_del(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800504fail_platform_device:
Ike Panhc8693ae82010-12-13 18:01:01 +0800505 platform_device_put(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800506 return result;
507}
508
Ike Panhc8693ae82010-12-13 18:01:01 +0800509static void ideapad_platform_exit(struct ideapad_private *priv)
Ike Panhc98ee6912010-12-13 18:00:15 +0800510{
Ike Panhc8693ae82010-12-13 18:01:01 +0800511 sysfs_remove_group(&priv->platform_device->dev.kobj,
Ike Panhcc9f718d2010-12-13 18:00:27 +0800512 &ideapad_attribute_group);
Ike Panhc8693ae82010-12-13 18:01:01 +0800513 platform_device_unregister(priv->platform_device);
Ike Panhc98ee6912010-12-13 18:00:15 +0800514}
Ike Panhc98ee6912010-12-13 18:00:15 +0800515
Ike Panhcf63409a2010-12-13 18:00:38 +0800516/*
517 * input device
518 */
519static const struct key_entry ideapad_keymap[] = {
Ike Panhcf43d9ec2011-09-06 02:32:10 +0800520 { KE_KEY, 6, { KEY_SWITCHVIDEOMODE } },
521 { KE_KEY, 13, { KEY_WLAN } },
522 { KE_KEY, 16, { KEY_PROG1 } },
523 { KE_KEY, 17, { KEY_PROG2 } },
Ike Panhcf63409a2010-12-13 18:00:38 +0800524 { KE_END, 0 },
525};
526
Ike Panhc8693ae82010-12-13 18:01:01 +0800527static int __devinit ideapad_input_init(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800528{
529 struct input_dev *inputdev;
530 int error;
531
532 inputdev = input_allocate_device();
533 if (!inputdev) {
534 pr_info("Unable to allocate input device\n");
535 return -ENOMEM;
536 }
537
538 inputdev->name = "Ideapad extra buttons";
539 inputdev->phys = "ideapad/input0";
540 inputdev->id.bustype = BUS_HOST;
Ike Panhc8693ae82010-12-13 18:01:01 +0800541 inputdev->dev.parent = &priv->platform_device->dev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800542
543 error = sparse_keymap_setup(inputdev, ideapad_keymap, NULL);
544 if (error) {
545 pr_err("Unable to setup input device keymap\n");
546 goto err_free_dev;
547 }
548
549 error = input_register_device(inputdev);
550 if (error) {
551 pr_err("Unable to register input device\n");
552 goto err_free_keymap;
553 }
554
Ike Panhc8693ae82010-12-13 18:01:01 +0800555 priv->inputdev = inputdev;
Ike Panhcf63409a2010-12-13 18:00:38 +0800556 return 0;
557
558err_free_keymap:
559 sparse_keymap_free(inputdev);
560err_free_dev:
561 input_free_device(inputdev);
562 return error;
563}
564
Axel Lin7451a552011-07-27 15:27:34 +0800565static void ideapad_input_exit(struct ideapad_private *priv)
Ike Panhcf63409a2010-12-13 18:00:38 +0800566{
Ike Panhc8693ae82010-12-13 18:01:01 +0800567 sparse_keymap_free(priv->inputdev);
568 input_unregister_device(priv->inputdev);
569 priv->inputdev = NULL;
Ike Panhcf63409a2010-12-13 18:00:38 +0800570}
571
Ike Panhc8693ae82010-12-13 18:01:01 +0800572static void ideapad_input_report(struct ideapad_private *priv,
573 unsigned long scancode)
Ike Panhcf63409a2010-12-13 18:00:38 +0800574{
Ike Panhc8693ae82010-12-13 18:01:01 +0800575 sparse_keymap_report_event(priv->inputdev, scancode, 1, true);
Ike Panhcf63409a2010-12-13 18:00:38 +0800576}
Ike Panhcf63409a2010-12-13 18:00:38 +0800577
Ike Panhcf43d9ec2011-09-06 02:32:10 +0800578static void ideapad_input_novokey(struct ideapad_private *priv)
579{
580 unsigned long long_pressed;
581
582 if (read_ec_data(ideapad_handle, VPCCMD_R_NOVO, &long_pressed))
583 return;
584 if (long_pressed)
585 ideapad_input_report(priv, 17);
586 else
587 ideapad_input_report(priv, 16);
588}
589
Ike Panhca4b5a272010-12-13 18:00:48 +0800590/*
Ike Panhca4ecbb82011-06-30 19:50:52 +0800591 * backlight
592 */
593static int ideapad_backlight_get_brightness(struct backlight_device *blightdev)
594{
595 unsigned long now;
596
Ike Panhc2be1dc22011-09-06 02:31:53 +0800597 if (read_ec_data(ideapad_handle, VPCCMD_R_BL, &now))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800598 return -EIO;
599 return now;
600}
601
602static int ideapad_backlight_update_status(struct backlight_device *blightdev)
603{
Ike Panhc2be1dc22011-09-06 02:31:53 +0800604 if (write_ec_cmd(ideapad_handle, VPCCMD_W_BL,
605 blightdev->props.brightness))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800606 return -EIO;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800607 if (write_ec_cmd(ideapad_handle, VPCCMD_W_BL_POWER,
Ike Panhca4ecbb82011-06-30 19:50:52 +0800608 blightdev->props.power == FB_BLANK_POWERDOWN ? 0 : 1))
609 return -EIO;
610
611 return 0;
612}
613
614static const struct backlight_ops ideapad_backlight_ops = {
615 .get_brightness = ideapad_backlight_get_brightness,
616 .update_status = ideapad_backlight_update_status,
617};
618
619static int ideapad_backlight_init(struct ideapad_private *priv)
620{
621 struct backlight_device *blightdev;
622 struct backlight_properties props;
623 unsigned long max, now, power;
624
Ike Panhc2be1dc22011-09-06 02:31:53 +0800625 if (read_ec_data(ideapad_handle, VPCCMD_R_BL_MAX, &max))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800626 return -EIO;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800627 if (read_ec_data(ideapad_handle, VPCCMD_R_BL, &now))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800628 return -EIO;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800629 if (read_ec_data(ideapad_handle, VPCCMD_R_BL_POWER, &power))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800630 return -EIO;
631
632 memset(&props, 0, sizeof(struct backlight_properties));
633 props.max_brightness = max;
634 props.type = BACKLIGHT_PLATFORM;
635 blightdev = backlight_device_register("ideapad",
636 &priv->platform_device->dev,
637 priv,
638 &ideapad_backlight_ops,
639 &props);
640 if (IS_ERR(blightdev)) {
641 pr_err("Could not register backlight device\n");
642 return PTR_ERR(blightdev);
643 }
644
645 priv->blightdev = blightdev;
646 blightdev->props.brightness = now;
647 blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
648 backlight_update_status(blightdev);
649
650 return 0;
651}
652
653static void ideapad_backlight_exit(struct ideapad_private *priv)
654{
655 if (priv->blightdev)
656 backlight_device_unregister(priv->blightdev);
657 priv->blightdev = NULL;
658}
659
660static void ideapad_backlight_notify_power(struct ideapad_private *priv)
661{
662 unsigned long power;
663 struct backlight_device *blightdev = priv->blightdev;
664
Rene Bollfordd4afc772011-10-23 09:56:42 +0200665 if (!blightdev)
666 return;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800667 if (read_ec_data(ideapad_handle, VPCCMD_R_BL_POWER, &power))
Ike Panhca4ecbb82011-06-30 19:50:52 +0800668 return;
669 blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
670}
671
672static void ideapad_backlight_notify_brightness(struct ideapad_private *priv)
673{
674 unsigned long now;
675
676 /* if we control brightness via acpi video driver */
677 if (priv->blightdev == NULL) {
Ike Panhc2be1dc22011-09-06 02:31:53 +0800678 read_ec_data(ideapad_handle, VPCCMD_R_BL, &now);
Ike Panhca4ecbb82011-06-30 19:50:52 +0800679 return;
680 }
681
682 backlight_force_update(priv->blightdev, BACKLIGHT_UPDATE_HOTKEY);
683}
684
685/*
Ike Panhca4b5a272010-12-13 18:00:48 +0800686 * module init/exit
687 */
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100688static const struct acpi_device_id ideapad_device_ids[] = {
689 { "VPC2004", 0},
690 { "", 0},
691};
692MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);
693
Ike Panhca4b5a272010-12-13 18:00:48 +0800694static int __devinit ideapad_acpi_add(struct acpi_device *adevice)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100695{
Ike Panhc3371f482011-06-30 19:50:40 +0800696 int ret, i;
697 unsigned long cfg;
David Woodhousece326322010-08-11 17:59:35 +0100698 struct ideapad_private *priv;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100699
Ike Panhc3371f482011-06-30 19:50:40 +0800700 if (read_method_int(adevice->handle, "_CFG", (int *)&cfg))
Ike Panhc6f8371c2010-10-01 15:39:14 +0800701 return -ENODEV;
702
David Woodhousece326322010-08-11 17:59:35 +0100703 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
704 if (!priv)
705 return -ENOMEM;
Ike Panhcc9f718d2010-12-13 18:00:27 +0800706 dev_set_drvdata(&adevice->dev, priv);
Ike Panhc773e3202011-09-06 02:32:52 +0800707 ideapad_priv = priv;
Ike Panhcc1f73652010-12-13 18:01:12 +0800708 ideapad_handle = adevice->handle;
Ike Panhc3371f482011-06-30 19:50:40 +0800709 priv->cfg = cfg;
Ike Panhc98ee6912010-12-13 18:00:15 +0800710
Ike Panhc8693ae82010-12-13 18:01:01 +0800711 ret = ideapad_platform_init(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800712 if (ret)
713 goto platform_failed;
David Woodhousece326322010-08-11 17:59:35 +0100714
Ike Panhc773e3202011-09-06 02:32:52 +0800715 ret = ideapad_debugfs_init(priv);
716 if (ret)
717 goto debugfs_failed;
718
Ike Panhc8693ae82010-12-13 18:01:01 +0800719 ret = ideapad_input_init(priv);
Ike Panhcf63409a2010-12-13 18:00:38 +0800720 if (ret)
721 goto input_failed;
722
Ike Panhcc1f73652010-12-13 18:01:12 +0800723 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++) {
Ike Panhc3371f482011-06-30 19:50:40 +0800724 if (test_bit(ideapad_rfk_data[i].cfgbit, &cfg))
Ike Panhcc9f718d2010-12-13 18:00:27 +0800725 ideapad_register_rfkill(adevice, i);
Ike Panhcc1f73652010-12-13 18:01:12 +0800726 else
727 priv->rfk[i] = NULL;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100728 }
Ike Panhc923de842011-09-06 02:32:01 +0800729 ideapad_sync_rfk_state(priv);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800730
Ike Panhca4ecbb82011-06-30 19:50:52 +0800731 if (!acpi_video_backlight_support()) {
732 ret = ideapad_backlight_init(priv);
733 if (ret && ret != -ENODEV)
734 goto backlight_failed;
735 }
736
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100737 return 0;
Ike Panhc98ee6912010-12-13 18:00:15 +0800738
Ike Panhca4ecbb82011-06-30 19:50:52 +0800739backlight_failed:
740 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
741 ideapad_unregister_rfkill(adevice, i);
Axel Lin7451a552011-07-27 15:27:34 +0800742 ideapad_input_exit(priv);
Ike Panhcf63409a2010-12-13 18:00:38 +0800743input_failed:
Ike Panhc773e3202011-09-06 02:32:52 +0800744 ideapad_debugfs_exit(priv);
745debugfs_failed:
Ike Panhc8693ae82010-12-13 18:01:01 +0800746 ideapad_platform_exit(priv);
Ike Panhc98ee6912010-12-13 18:00:15 +0800747platform_failed:
748 kfree(priv);
749 return ret;
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100750}
751
Ike Panhca4b5a272010-12-13 18:00:48 +0800752static int __devexit ideapad_acpi_remove(struct acpi_device *adevice, int type)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100753{
David Woodhousece326322010-08-11 17:59:35 +0100754 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100755 int i;
David Woodhousece326322010-08-11 17:59:35 +0100756
Ike Panhca4ecbb82011-06-30 19:50:52 +0800757 ideapad_backlight_exit(priv);
Ike Panhcc1f73652010-12-13 18:01:12 +0800758 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
David Woodhousece326322010-08-11 17:59:35 +0100759 ideapad_unregister_rfkill(adevice, i);
Ike Panhc8693ae82010-12-13 18:01:01 +0800760 ideapad_input_exit(priv);
Ike Panhc773e3202011-09-06 02:32:52 +0800761 ideapad_debugfs_exit(priv);
Ike Panhc8693ae82010-12-13 18:01:01 +0800762 ideapad_platform_exit(priv);
David Woodhousece326322010-08-11 17:59:35 +0100763 dev_set_drvdata(&adevice->dev, NULL);
764 kfree(priv);
Ike Panhcc9f718d2010-12-13 18:00:27 +0800765
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100766 return 0;
767}
768
David Woodhousece326322010-08-11 17:59:35 +0100769static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100770{
Ike Panhc8693ae82010-12-13 18:01:01 +0800771 struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
Ike Panhc8e7d3542010-10-01 15:39:05 +0800772 acpi_handle handle = adevice->handle;
773 unsigned long vpc1, vpc2, vpc_bit;
774
Ike Panhc2be1dc22011-09-06 02:31:53 +0800775 if (read_ec_data(handle, VPCCMD_R_VPC1, &vpc1))
Ike Panhc8e7d3542010-10-01 15:39:05 +0800776 return;
Ike Panhc2be1dc22011-09-06 02:31:53 +0800777 if (read_ec_data(handle, VPCCMD_R_VPC2, &vpc2))
Ike Panhc8e7d3542010-10-01 15:39:05 +0800778 return;
779
780 vpc1 = (vpc2 << 8) | vpc1;
781 for (vpc_bit = 0; vpc_bit < 16; vpc_bit++) {
782 if (test_bit(vpc_bit, &vpc1)) {
Ike Panhca4ecbb82011-06-30 19:50:52 +0800783 switch (vpc_bit) {
784 case 9:
Ike Panhc923de842011-09-06 02:32:01 +0800785 ideapad_sync_rfk_state(priv);
Ike Panhca4ecbb82011-06-30 19:50:52 +0800786 break;
787 case 4:
788 ideapad_backlight_notify_brightness(priv);
789 break;
Ike Panhcf43d9ec2011-09-06 02:32:10 +0800790 case 3:
791 ideapad_input_novokey(priv);
792 break;
Ike Panhca4ecbb82011-06-30 19:50:52 +0800793 case 2:
794 ideapad_backlight_notify_power(priv);
795 break;
796 default:
Ike Panhc8693ae82010-12-13 18:01:01 +0800797 ideapad_input_report(priv, vpc_bit);
Ike Panhca4ecbb82011-06-30 19:50:52 +0800798 }
Ike Panhc8e7d3542010-10-01 15:39:05 +0800799 }
800 }
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100801}
802
803static struct acpi_driver ideapad_acpi_driver = {
804 .name = "ideapad_acpi",
805 .class = "IdeaPad",
806 .ids = ideapad_device_ids,
807 .ops.add = ideapad_acpi_add,
808 .ops.remove = ideapad_acpi_remove,
809 .ops.notify = ideapad_acpi_notify,
810 .owner = THIS_MODULE,
811};
812
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100813static int __init ideapad_acpi_module_init(void)
814{
Ike Panhca4b5a272010-12-13 18:00:48 +0800815 return acpi_bus_register_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100816}
817
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100818static void __exit ideapad_acpi_module_exit(void)
819{
820 acpi_bus_unregister_driver(&ideapad_acpi_driver);
David Woodhouse58ac7aa2010-08-10 23:44:05 +0100821}
822
823MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
824MODULE_DESCRIPTION("IdeaPad ACPI Extras");
825MODULE_LICENSE("GPL");
826
827module_init(ideapad_acpi_module_init);
828module_exit(ideapad_acpi_module_exit);