Merge remote-tracking branches 'regulator/topic/db8500', 'regulator/topic/gpio',...
[linux-2.6-block.git] / drivers / platform / x86 / ideapad-laptop.c
CommitLineData
58ac7aa0 1/*
a4b5a279 2 * ideapad-laptop.c - Lenovo IdeaPad ACPI Extras
58ac7aa0
DW
3 *
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
9ab23989
JP
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
58ac7aa0
DW
25#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>
98ee6919 32#include <linux/platform_device.h>
f63409ae
IP
33#include <linux/input.h>
34#include <linux/input/sparse-keymap.h>
a4ecbb8a
IP
35#include <linux/backlight.h>
36#include <linux/fb.h>
773e3206
IP
37#include <linux/debugfs.h>
38#include <linux/seq_file.h>
07a4a4fc 39#include <linux/i8042.h>
58ac7aa0 40
c1f73658 41#define IDEAPAD_RFKILL_DEV_NUM (3)
58ac7aa0 42
3371f481
IP
43#define CFG_BT_BIT (16)
44#define CFG_3G_BIT (17)
45#define CFG_WIFI_BIT (18)
a84511f7 46#define CFG_CAMERA_BIT (19)
3371f481 47
2be1dc21
IP
48enum {
49 VPCCMD_R_VPC1 = 0x10,
50 VPCCMD_R_BL_MAX,
51 VPCCMD_R_BL,
52 VPCCMD_W_BL,
53 VPCCMD_R_WIFI,
54 VPCCMD_W_WIFI,
55 VPCCMD_R_BT,
56 VPCCMD_W_BT,
57 VPCCMD_R_BL_POWER,
58 VPCCMD_R_NOVO,
59 VPCCMD_R_VPC2,
60 VPCCMD_R_TOUCHPAD,
61 VPCCMD_W_TOUCHPAD,
62 VPCCMD_R_CAMERA,
63 VPCCMD_W_CAMERA,
64 VPCCMD_R_3G,
65 VPCCMD_W_3G,
66 VPCCMD_R_ODD, /* 0x21 */
0c7bbeb9
MM
67 VPCCMD_W_FAN,
68 VPCCMD_R_RF,
2be1dc21 69 VPCCMD_W_RF,
0c7bbeb9 70 VPCCMD_R_FAN = 0x2B,
296f9fe0 71 VPCCMD_R_SPECIAL_BUTTONS = 0x31,
2be1dc21
IP
72 VPCCMD_W_BL_POWER = 0x33,
73};
74
331e0ea2
ZR
75struct ideapad_rfk_priv {
76 int dev;
77 struct ideapad_private *priv;
78};
79
ce326329 80struct ideapad_private {
469f6434 81 struct acpi_device *adev;
c1f73658 82 struct rfkill *rfk[IDEAPAD_RFKILL_DEV_NUM];
331e0ea2 83 struct ideapad_rfk_priv rfk_priv[IDEAPAD_RFKILL_DEV_NUM];
98ee6919 84 struct platform_device *platform_device;
f63409ae 85 struct input_dev *inputdev;
a4ecbb8a 86 struct backlight_device *blightdev;
773e3206 87 struct dentry *debug;
3371f481 88 unsigned long cfg;
58ac7aa0
DW
89};
90
bfa97b7d
IP
91static bool no_bt_rfkill;
92module_param(no_bt_rfkill, bool, 0444);
93MODULE_PARM_DESC(no_bt_rfkill, "No rfkill for bluetooth.");
94
6a09f21d
IP
95/*
96 * ACPI Helpers
97 */
98#define IDEAPAD_EC_TIMEOUT (100) /* in ms */
99
100static int read_method_int(acpi_handle handle, const char *method, int *val)
101{
102 acpi_status status;
103 unsigned long long result;
104
105 status = acpi_evaluate_integer(handle, (char *)method, NULL, &result);
106 if (ACPI_FAILURE(status)) {
107 *val = -1;
108 return -1;
109 } else {
110 *val = result;
111 return 0;
112 }
113}
114
115static int method_vpcr(acpi_handle handle, int cmd, int *ret)
116{
117 acpi_status status;
118 unsigned long long result;
119 struct acpi_object_list params;
120 union acpi_object in_obj;
121
122 params.count = 1;
123 params.pointer = &in_obj;
124 in_obj.type = ACPI_TYPE_INTEGER;
125 in_obj.integer.value = cmd;
126
127 status = acpi_evaluate_integer(handle, "VPCR", &params, &result);
128
129 if (ACPI_FAILURE(status)) {
130 *ret = -1;
131 return -1;
132 } else {
133 *ret = result;
134 return 0;
135 }
136}
137
138static int method_vpcw(acpi_handle handle, int cmd, int data)
139{
140 struct acpi_object_list params;
141 union acpi_object in_obj[2];
142 acpi_status status;
143
144 params.count = 2;
145 params.pointer = in_obj;
146 in_obj[0].type = ACPI_TYPE_INTEGER;
147 in_obj[0].integer.value = cmd;
148 in_obj[1].type = ACPI_TYPE_INTEGER;
149 in_obj[1].integer.value = data;
150
151 status = acpi_evaluate_object(handle, "VPCW", &params, NULL);
152 if (status != AE_OK)
153 return -1;
154 return 0;
155}
156
157static int read_ec_data(acpi_handle handle, int cmd, unsigned long *data)
158{
159 int val;
160 unsigned long int end_jiffies;
161
162 if (method_vpcw(handle, 1, cmd))
163 return -1;
164
165 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
166 time_before(jiffies, end_jiffies);) {
167 schedule();
168 if (method_vpcr(handle, 1, &val))
169 return -1;
170 if (val == 0) {
171 if (method_vpcr(handle, 0, &val))
172 return -1;
173 *data = val;
174 return 0;
175 }
176 }
177 pr_err("timeout in read_ec_cmd\n");
178 return -1;
179}
180
181static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
182{
183 int val;
184 unsigned long int end_jiffies;
185
186 if (method_vpcw(handle, 0, data))
187 return -1;
188 if (method_vpcw(handle, 1, cmd))
189 return -1;
190
191 for (end_jiffies = jiffies+(HZ)*IDEAPAD_EC_TIMEOUT/1000+1;
192 time_before(jiffies, end_jiffies);) {
193 schedule();
194 if (method_vpcr(handle, 1, &val))
195 return -1;
196 if (val == 0)
197 return 0;
198 }
199 pr_err("timeout in write_ec_cmd\n");
200 return -1;
201}
6a09f21d 202
773e3206
IP
203/*
204 * debugfs
205 */
773e3206
IP
206static int debugfs_status_show(struct seq_file *s, void *data)
207{
331e0ea2 208 struct ideapad_private *priv = s->private;
773e3206
IP
209 unsigned long value;
210
331e0ea2
ZR
211 if (!priv)
212 return -EINVAL;
213
214 if (!read_ec_data(priv->adev->handle, VPCCMD_R_BL_MAX, &value))
773e3206 215 seq_printf(s, "Backlight max:\t%lu\n", value);
331e0ea2 216 if (!read_ec_data(priv->adev->handle, VPCCMD_R_BL, &value))
773e3206 217 seq_printf(s, "Backlight now:\t%lu\n", value);
331e0ea2 218 if (!read_ec_data(priv->adev->handle, VPCCMD_R_BL_POWER, &value))
773e3206
IP
219 seq_printf(s, "BL power value:\t%s\n", value ? "On" : "Off");
220 seq_printf(s, "=====================\n");
221
331e0ea2 222 if (!read_ec_data(priv->adev->handle, VPCCMD_R_RF, &value))
773e3206
IP
223 seq_printf(s, "Radio status:\t%s(%lu)\n",
224 value ? "On" : "Off", value);
331e0ea2 225 if (!read_ec_data(priv->adev->handle, VPCCMD_R_WIFI, &value))
773e3206
IP
226 seq_printf(s, "Wifi status:\t%s(%lu)\n",
227 value ? "On" : "Off", value);
331e0ea2 228 if (!read_ec_data(priv->adev->handle, VPCCMD_R_BT, &value))
773e3206
IP
229 seq_printf(s, "BT status:\t%s(%lu)\n",
230 value ? "On" : "Off", value);
331e0ea2 231 if (!read_ec_data(priv->adev->handle, VPCCMD_R_3G, &value))
773e3206
IP
232 seq_printf(s, "3G status:\t%s(%lu)\n",
233 value ? "On" : "Off", value);
234 seq_printf(s, "=====================\n");
235
331e0ea2 236 if (!read_ec_data(priv->adev->handle, VPCCMD_R_TOUCHPAD, &value))
773e3206
IP
237 seq_printf(s, "Touchpad status:%s(%lu)\n",
238 value ? "On" : "Off", value);
331e0ea2 239 if (!read_ec_data(priv->adev->handle, VPCCMD_R_CAMERA, &value))
773e3206
IP
240 seq_printf(s, "Camera status:\t%s(%lu)\n",
241 value ? "On" : "Off", value);
242
243 return 0;
244}
245
246static int debugfs_status_open(struct inode *inode, struct file *file)
247{
331e0ea2 248 return single_open(file, debugfs_status_show, inode->i_private);
773e3206
IP
249}
250
251static const struct file_operations debugfs_status_fops = {
252 .owner = THIS_MODULE,
253 .open = debugfs_status_open,
254 .read = seq_read,
255 .llseek = seq_lseek,
256 .release = single_release,
257};
258
259static int debugfs_cfg_show(struct seq_file *s, void *data)
260{
331e0ea2
ZR
261 struct ideapad_private *priv = s->private;
262
263 if (!priv) {
773e3206
IP
264 seq_printf(s, "cfg: N/A\n");
265 } else {
266 seq_printf(s, "cfg: 0x%.8lX\n\nCapability: ",
331e0ea2
ZR
267 priv->cfg);
268 if (test_bit(CFG_BT_BIT, &priv->cfg))
773e3206 269 seq_printf(s, "Bluetooth ");
331e0ea2 270 if (test_bit(CFG_3G_BIT, &priv->cfg))
773e3206 271 seq_printf(s, "3G ");
331e0ea2 272 if (test_bit(CFG_WIFI_BIT, &priv->cfg))
773e3206 273 seq_printf(s, "Wireless ");
331e0ea2 274 if (test_bit(CFG_CAMERA_BIT, &priv->cfg))
773e3206
IP
275 seq_printf(s, "Camera ");
276 seq_printf(s, "\nGraphic: ");
331e0ea2 277 switch ((priv->cfg)&0x700) {
773e3206
IP
278 case 0x100:
279 seq_printf(s, "Intel");
280 break;
281 case 0x200:
282 seq_printf(s, "ATI");
283 break;
284 case 0x300:
285 seq_printf(s, "Nvidia");
286 break;
287 case 0x400:
288 seq_printf(s, "Intel and ATI");
289 break;
290 case 0x500:
291 seq_printf(s, "Intel and Nvidia");
292 break;
293 }
294 seq_printf(s, "\n");
295 }
296 return 0;
297}
298
299static int debugfs_cfg_open(struct inode *inode, struct file *file)
300{
331e0ea2 301 return single_open(file, debugfs_cfg_show, inode->i_private);
773e3206
IP
302}
303
304static const struct file_operations debugfs_cfg_fops = {
305 .owner = THIS_MODULE,
306 .open = debugfs_cfg_open,
307 .read = seq_read,
308 .llseek = seq_lseek,
309 .release = single_release,
310};
311
b859f159 312static int ideapad_debugfs_init(struct ideapad_private *priv)
773e3206
IP
313{
314 struct dentry *node;
315
316 priv->debug = debugfs_create_dir("ideapad", NULL);
317 if (priv->debug == NULL) {
318 pr_err("failed to create debugfs directory");
319 goto errout;
320 }
321
331e0ea2 322 node = debugfs_create_file("cfg", S_IRUGO, priv->debug, priv,
773e3206
IP
323 &debugfs_cfg_fops);
324 if (!node) {
325 pr_err("failed to create cfg in debugfs");
326 goto errout;
327 }
328
331e0ea2 329 node = debugfs_create_file("status", S_IRUGO, priv->debug, priv,
773e3206
IP
330 &debugfs_status_fops);
331 if (!node) {
a5c3892f 332 pr_err("failed to create status in debugfs");
773e3206
IP
333 goto errout;
334 }
335
336 return 0;
337
338errout:
339 return -ENOMEM;
340}
341
342static void ideapad_debugfs_exit(struct ideapad_private *priv)
343{
344 debugfs_remove_recursive(priv->debug);
345 priv->debug = NULL;
346}
347
a4b5a279 348/*
3371f481 349 * sysfs
a4b5a279 350 */
58ac7aa0
DW
351static ssize_t show_ideapad_cam(struct device *dev,
352 struct device_attribute *attr,
353 char *buf)
354{
26c81d5c 355 unsigned long result;
331e0ea2 356 struct ideapad_private *priv = dev_get_drvdata(dev);
58ac7aa0 357
331e0ea2 358 if (read_ec_data(priv->adev->handle, VPCCMD_R_CAMERA, &result))
26c81d5c
IP
359 return sprintf(buf, "-1\n");
360 return sprintf(buf, "%lu\n", result);
58ac7aa0
DW
361}
362
363static ssize_t store_ideapad_cam(struct device *dev,
364 struct device_attribute *attr,
365 const char *buf, size_t count)
366{
367 int ret, state;
331e0ea2 368 struct ideapad_private *priv = dev_get_drvdata(dev);
58ac7aa0
DW
369
370 if (!count)
371 return 0;
372 if (sscanf(buf, "%i", &state) != 1)
373 return -EINVAL;
331e0ea2 374 ret = write_ec_cmd(priv->adev->handle, VPCCMD_W_CAMERA, state);
58ac7aa0 375 if (ret < 0)
0c7bbeb9 376 return -EIO;
58ac7aa0
DW
377 return count;
378}
379
380static DEVICE_ATTR(camera_power, 0644, show_ideapad_cam, store_ideapad_cam);
381
0c7bbeb9
MM
382static ssize_t show_ideapad_fan(struct device *dev,
383 struct device_attribute *attr,
384 char *buf)
385{
386 unsigned long result;
331e0ea2 387 struct ideapad_private *priv = dev_get_drvdata(dev);
0c7bbeb9 388
331e0ea2 389 if (read_ec_data(priv->adev->handle, VPCCMD_R_FAN, &result))
0c7bbeb9
MM
390 return sprintf(buf, "-1\n");
391 return sprintf(buf, "%lu\n", result);
392}
393
394static ssize_t store_ideapad_fan(struct device *dev,
395 struct device_attribute *attr,
396 const char *buf, size_t count)
397{
398 int ret, state;
331e0ea2 399 struct ideapad_private *priv = dev_get_drvdata(dev);
0c7bbeb9
MM
400
401 if (!count)
402 return 0;
403 if (sscanf(buf, "%i", &state) != 1)
404 return -EINVAL;
405 if (state < 0 || state > 4 || state == 3)
406 return -EINVAL;
331e0ea2 407 ret = write_ec_cmd(priv->adev->handle, VPCCMD_W_FAN, state);
0c7bbeb9
MM
408 if (ret < 0)
409 return -EIO;
410 return count;
411}
412
413static DEVICE_ATTR(fan_mode, 0644, show_ideapad_fan, store_ideapad_fan);
414
3371f481
IP
415static struct attribute *ideapad_attributes[] = {
416 &dev_attr_camera_power.attr,
0c7bbeb9 417 &dev_attr_fan_mode.attr,
3371f481
IP
418 NULL
419};
420
587a1f16 421static umode_t ideapad_is_visible(struct kobject *kobj,
a84511f7
IP
422 struct attribute *attr,
423 int idx)
424{
425 struct device *dev = container_of(kobj, struct device, kobj);
426 struct ideapad_private *priv = dev_get_drvdata(dev);
427 bool supported;
428
429 if (attr == &dev_attr_camera_power.attr)
430 supported = test_bit(CFG_CAMERA_BIT, &(priv->cfg));
0c7bbeb9
MM
431 else if (attr == &dev_attr_fan_mode.attr) {
432 unsigned long value;
331e0ea2
ZR
433 supported = !read_ec_data(priv->adev->handle, VPCCMD_R_FAN,
434 &value);
0c7bbeb9 435 } else
a84511f7
IP
436 supported = true;
437
438 return supported ? attr->mode : 0;
439}
440
3371f481 441static struct attribute_group ideapad_attribute_group = {
a84511f7 442 .is_visible = ideapad_is_visible,
3371f481
IP
443 .attrs = ideapad_attributes
444};
445
a4b5a279
IP
446/*
447 * Rfkill
448 */
c1f73658
IP
449struct ideapad_rfk_data {
450 char *name;
451 int cfgbit;
452 int opcode;
453 int type;
454};
455
456const struct ideapad_rfk_data ideapad_rfk_data[] = {
2be1dc21
IP
457 { "ideapad_wlan", CFG_WIFI_BIT, VPCCMD_W_WIFI, RFKILL_TYPE_WLAN },
458 { "ideapad_bluetooth", CFG_BT_BIT, VPCCMD_W_BT, RFKILL_TYPE_BLUETOOTH },
459 { "ideapad_3g", CFG_3G_BIT, VPCCMD_W_3G, RFKILL_TYPE_WWAN },
c1f73658
IP
460};
461
58ac7aa0
DW
462static int ideapad_rfk_set(void *data, bool blocked)
463{
331e0ea2 464 struct ideapad_rfk_priv *priv = data;
fa08359e 465
331e0ea2 466 return write_ec_cmd(priv->priv->adev->handle, priv->dev, !blocked);
58ac7aa0
DW
467}
468
469static struct rfkill_ops ideapad_rfk_ops = {
470 .set_block = ideapad_rfk_set,
471};
472
923de84a 473static void ideapad_sync_rfk_state(struct ideapad_private *priv)
58ac7aa0 474{
2b7266bd 475 unsigned long hw_blocked;
58ac7aa0
DW
476 int i;
477
331e0ea2 478 if (read_ec_data(priv->adev->handle, VPCCMD_R_RF, &hw_blocked))
58ac7aa0 479 return;
2b7266bd 480 hw_blocked = !hw_blocked;
58ac7aa0 481
c1f73658 482 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
ce326329 483 if (priv->rfk[i])
2b7266bd 484 rfkill_set_hw_state(priv->rfk[i], hw_blocked);
58ac7aa0
DW
485}
486
75a11f11 487static int ideapad_register_rfkill(struct ideapad_private *priv, int dev)
58ac7aa0
DW
488{
489 int ret;
2b7266bd 490 unsigned long sw_blocked;
58ac7aa0 491
bfa97b7d
IP
492 if (no_bt_rfkill &&
493 (ideapad_rfk_data[dev].type == RFKILL_TYPE_BLUETOOTH)) {
494 /* Force to enable bluetooth when no_bt_rfkill=1 */
331e0ea2 495 write_ec_cmd(priv->adev->handle,
bfa97b7d
IP
496 ideapad_rfk_data[dev].opcode, 1);
497 return 0;
498 }
331e0ea2
ZR
499 priv->rfk_priv[dev].dev = dev;
500 priv->rfk_priv[dev].priv = priv;
bfa97b7d 501
75a11f11 502 priv->rfk[dev] = rfkill_alloc(ideapad_rfk_data[dev].name,
b5c37b79 503 &priv->platform_device->dev,
75a11f11
ZR
504 ideapad_rfk_data[dev].type,
505 &ideapad_rfk_ops,
331e0ea2 506 &priv->rfk_priv[dev]);
ce326329 507 if (!priv->rfk[dev])
58ac7aa0
DW
508 return -ENOMEM;
509
331e0ea2 510 if (read_ec_data(priv->adev->handle, ideapad_rfk_data[dev].opcode-1,
2b7266bd
IP
511 &sw_blocked)) {
512 rfkill_init_sw_state(priv->rfk[dev], 0);
513 } else {
514 sw_blocked = !sw_blocked;
515 rfkill_init_sw_state(priv->rfk[dev], sw_blocked);
516 }
517
ce326329 518 ret = rfkill_register(priv->rfk[dev]);
58ac7aa0 519 if (ret) {
ce326329 520 rfkill_destroy(priv->rfk[dev]);
58ac7aa0
DW
521 return ret;
522 }
523 return 0;
524}
525
75a11f11 526static void ideapad_unregister_rfkill(struct ideapad_private *priv, int dev)
58ac7aa0 527{
ce326329 528 if (!priv->rfk[dev])
58ac7aa0
DW
529 return;
530
ce326329
DW
531 rfkill_unregister(priv->rfk[dev]);
532 rfkill_destroy(priv->rfk[dev]);
58ac7aa0
DW
533}
534
98ee6919
IP
535/*
536 * Platform device
537 */
b5c37b79 538static int ideapad_sysfs_init(struct ideapad_private *priv)
98ee6919 539{
b5c37b79 540 return sysfs_create_group(&priv->platform_device->dev.kobj,
c9f718d0 541 &ideapad_attribute_group);
98ee6919
IP
542}
543
b5c37b79 544static void ideapad_sysfs_exit(struct ideapad_private *priv)
98ee6919 545{
8693ae84 546 sysfs_remove_group(&priv->platform_device->dev.kobj,
c9f718d0 547 &ideapad_attribute_group);
98ee6919 548}
98ee6919 549
f63409ae
IP
550/*
551 * input device
552 */
553static const struct key_entry ideapad_keymap[] = {
f43d9ec0 554 { KE_KEY, 6, { KEY_SWITCHVIDEOMODE } },
296f9fe0
MM
555 { KE_KEY, 7, { KEY_CAMERA } },
556 { KE_KEY, 11, { KEY_F16 } },
f43d9ec0
IP
557 { KE_KEY, 13, { KEY_WLAN } },
558 { KE_KEY, 16, { KEY_PROG1 } },
559 { KE_KEY, 17, { KEY_PROG2 } },
296f9fe0
MM
560 { KE_KEY, 64, { KEY_PROG3 } },
561 { KE_KEY, 65, { KEY_PROG4 } },
07a4a4fc
MM
562 { KE_KEY, 66, { KEY_TOUCHPAD_OFF } },
563 { KE_KEY, 67, { KEY_TOUCHPAD_ON } },
f63409ae
IP
564 { KE_END, 0 },
565};
566
b859f159 567static int ideapad_input_init(struct ideapad_private *priv)
f63409ae
IP
568{
569 struct input_dev *inputdev;
570 int error;
571
572 inputdev = input_allocate_device();
b222cca6 573 if (!inputdev)
f63409ae 574 return -ENOMEM;
f63409ae
IP
575
576 inputdev->name = "Ideapad extra buttons";
577 inputdev->phys = "ideapad/input0";
578 inputdev->id.bustype = BUS_HOST;
8693ae84 579 inputdev->dev.parent = &priv->platform_device->dev;
f63409ae
IP
580
581 error = sparse_keymap_setup(inputdev, ideapad_keymap, NULL);
582 if (error) {
583 pr_err("Unable to setup input device keymap\n");
584 goto err_free_dev;
585 }
586
587 error = input_register_device(inputdev);
588 if (error) {
589 pr_err("Unable to register input device\n");
590 goto err_free_keymap;
591 }
592
8693ae84 593 priv->inputdev = inputdev;
f63409ae
IP
594 return 0;
595
596err_free_keymap:
597 sparse_keymap_free(inputdev);
598err_free_dev:
599 input_free_device(inputdev);
600 return error;
601}
602
7451a55a 603static void ideapad_input_exit(struct ideapad_private *priv)
f63409ae 604{
8693ae84
IP
605 sparse_keymap_free(priv->inputdev);
606 input_unregister_device(priv->inputdev);
607 priv->inputdev = NULL;
f63409ae
IP
608}
609
8693ae84
IP
610static void ideapad_input_report(struct ideapad_private *priv,
611 unsigned long scancode)
f63409ae 612{
8693ae84 613 sparse_keymap_report_event(priv->inputdev, scancode, 1, true);
f63409ae 614}
f63409ae 615
f43d9ec0
IP
616static void ideapad_input_novokey(struct ideapad_private *priv)
617{
618 unsigned long long_pressed;
619
331e0ea2 620 if (read_ec_data(priv->adev->handle, VPCCMD_R_NOVO, &long_pressed))
f43d9ec0
IP
621 return;
622 if (long_pressed)
623 ideapad_input_report(priv, 17);
624 else
625 ideapad_input_report(priv, 16);
626}
627
296f9fe0
MM
628static void ideapad_check_special_buttons(struct ideapad_private *priv)
629{
630 unsigned long bit, value;
631
331e0ea2 632 read_ec_data(priv->adev->handle, VPCCMD_R_SPECIAL_BUTTONS, &value);
296f9fe0
MM
633
634 for (bit = 0; bit < 16; bit++) {
635 if (test_bit(bit, &value)) {
636 switch (bit) {
a1ec56ed
MM
637 case 0: /* Z580 */
638 case 6: /* Z570 */
296f9fe0
MM
639 /* Thermal Management button */
640 ideapad_input_report(priv, 65);
641 break;
642 case 1:
643 /* OneKey Theater button */
644 ideapad_input_report(priv, 64);
645 break;
a1ec56ed
MM
646 default:
647 pr_info("Unknown special button: %lu\n", bit);
648 break;
296f9fe0
MM
649 }
650 }
651 }
652}
653
a4ecbb8a
IP
654/*
655 * backlight
656 */
657static int ideapad_backlight_get_brightness(struct backlight_device *blightdev)
658{
331e0ea2 659 struct ideapad_private *priv = bl_get_data(blightdev);
a4ecbb8a
IP
660 unsigned long now;
661
331e0ea2
ZR
662 if (!priv)
663 return -EINVAL;
664
665 if (read_ec_data(priv->adev->handle, VPCCMD_R_BL, &now))
a4ecbb8a
IP
666 return -EIO;
667 return now;
668}
669
670static int ideapad_backlight_update_status(struct backlight_device *blightdev)
671{
331e0ea2
ZR
672 struct ideapad_private *priv = bl_get_data(blightdev);
673
674 if (!priv)
675 return -EINVAL;
676
677 if (write_ec_cmd(priv->adev->handle, VPCCMD_W_BL,
2be1dc21 678 blightdev->props.brightness))
a4ecbb8a 679 return -EIO;
331e0ea2 680 if (write_ec_cmd(priv->adev->handle, VPCCMD_W_BL_POWER,
a4ecbb8a
IP
681 blightdev->props.power == FB_BLANK_POWERDOWN ? 0 : 1))
682 return -EIO;
683
684 return 0;
685}
686
687static const struct backlight_ops ideapad_backlight_ops = {
688 .get_brightness = ideapad_backlight_get_brightness,
689 .update_status = ideapad_backlight_update_status,
690};
691
692static int ideapad_backlight_init(struct ideapad_private *priv)
693{
694 struct backlight_device *blightdev;
695 struct backlight_properties props;
696 unsigned long max, now, power;
697
331e0ea2 698 if (read_ec_data(priv->adev->handle, VPCCMD_R_BL_MAX, &max))
a4ecbb8a 699 return -EIO;
331e0ea2 700 if (read_ec_data(priv->adev->handle, VPCCMD_R_BL, &now))
a4ecbb8a 701 return -EIO;
331e0ea2 702 if (read_ec_data(priv->adev->handle, VPCCMD_R_BL_POWER, &power))
a4ecbb8a
IP
703 return -EIO;
704
705 memset(&props, 0, sizeof(struct backlight_properties));
706 props.max_brightness = max;
707 props.type = BACKLIGHT_PLATFORM;
708 blightdev = backlight_device_register("ideapad",
709 &priv->platform_device->dev,
710 priv,
711 &ideapad_backlight_ops,
712 &props);
713 if (IS_ERR(blightdev)) {
714 pr_err("Could not register backlight device\n");
715 return PTR_ERR(blightdev);
716 }
717
718 priv->blightdev = blightdev;
719 blightdev->props.brightness = now;
720 blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
721 backlight_update_status(blightdev);
722
723 return 0;
724}
725
726static void ideapad_backlight_exit(struct ideapad_private *priv)
727{
728 if (priv->blightdev)
729 backlight_device_unregister(priv->blightdev);
730 priv->blightdev = NULL;
731}
732
733static void ideapad_backlight_notify_power(struct ideapad_private *priv)
734{
735 unsigned long power;
736 struct backlight_device *blightdev = priv->blightdev;
737
d4afc775
RB
738 if (!blightdev)
739 return;
331e0ea2 740 if (read_ec_data(priv->adev->handle, VPCCMD_R_BL_POWER, &power))
a4ecbb8a
IP
741 return;
742 blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
743}
744
745static void ideapad_backlight_notify_brightness(struct ideapad_private *priv)
746{
747 unsigned long now;
748
749 /* if we control brightness via acpi video driver */
750 if (priv->blightdev == NULL) {
331e0ea2 751 read_ec_data(priv->adev->handle, VPCCMD_R_BL, &now);
a4ecbb8a
IP
752 return;
753 }
754
755 backlight_force_update(priv->blightdev, BACKLIGHT_UPDATE_HOTKEY);
756}
757
a4b5a279
IP
758/*
759 * module init/exit
760 */
75a11f11 761static void ideapad_sync_touchpad_state(struct ideapad_private *priv)
07a4a4fc 762{
07a4a4fc
MM
763 unsigned long value;
764
765 /* Without reading from EC touchpad LED doesn't switch state */
75a11f11 766 if (!read_ec_data(priv->adev->handle, VPCCMD_R_TOUCHPAD, &value)) {
07a4a4fc
MM
767 /* Some IdeaPads don't really turn off touchpad - they only
768 * switch the LED state. We (de)activate KBC AUX port to turn
769 * touchpad off and on. We send KEY_TOUCHPAD_OFF and
770 * KEY_TOUCHPAD_ON to not to get out of sync with LED */
771 unsigned char param;
772 i8042_command(&param, value ? I8042_CMD_AUX_ENABLE :
773 I8042_CMD_AUX_DISABLE);
774 ideapad_input_report(priv, value ? 67 : 66);
775 }
776}
777
b5c37b79
ZR
778static void ideapad_acpi_notify(acpi_handle handle, u32 event, void *data)
779{
780 struct ideapad_private *priv = data;
781 unsigned long vpc1, vpc2, vpc_bit;
782
783 if (read_ec_data(handle, VPCCMD_R_VPC1, &vpc1))
784 return;
785 if (read_ec_data(handle, VPCCMD_R_VPC2, &vpc2))
786 return;
787
788 vpc1 = (vpc2 << 8) | vpc1;
789 for (vpc_bit = 0; vpc_bit < 16; vpc_bit++) {
790 if (test_bit(vpc_bit, &vpc1)) {
791 switch (vpc_bit) {
792 case 9:
793 ideapad_sync_rfk_state(priv);
794 break;
795 case 13:
796 case 11:
797 case 7:
798 case 6:
799 ideapad_input_report(priv, vpc_bit);
800 break;
801 case 5:
802 ideapad_sync_touchpad_state(priv);
803 break;
804 case 4:
805 ideapad_backlight_notify_brightness(priv);
806 break;
807 case 3:
808 ideapad_input_novokey(priv);
809 break;
810 case 2:
811 ideapad_backlight_notify_power(priv);
812 break;
813 case 0:
814 ideapad_check_special_buttons(priv);
815 break;
816 default:
817 pr_info("Unknown event: %lu\n", vpc_bit);
818 }
819 }
820 }
821}
822
823static int ideapad_acpi_add(struct platform_device *pdev)
58ac7aa0 824{
3371f481 825 int ret, i;
57f9616b 826 int cfg;
ce326329 827 struct ideapad_private *priv;
b5c37b79
ZR
828 struct acpi_device *adev;
829
830 ret = acpi_bus_get_device(ACPI_HANDLE(&pdev->dev), &adev);
831 if (ret)
832 return -ENODEV;
58ac7aa0 833
469f6434 834 if (read_method_int(adev->handle, "_CFG", &cfg))
6f8371c0
IP
835 return -ENODEV;
836
ce326329
DW
837 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
838 if (!priv)
839 return -ENOMEM;
b5c37b79
ZR
840
841 dev_set_drvdata(&pdev->dev, priv);
3371f481 842 priv->cfg = cfg;
469f6434 843 priv->adev = adev;
b5c37b79 844 priv->platform_device = pdev;
98ee6919 845
b5c37b79 846 ret = ideapad_sysfs_init(priv);
98ee6919 847 if (ret)
b5c37b79 848 goto sysfs_failed;
ce326329 849
773e3206
IP
850 ret = ideapad_debugfs_init(priv);
851 if (ret)
852 goto debugfs_failed;
853
8693ae84 854 ret = ideapad_input_init(priv);
f63409ae
IP
855 if (ret)
856 goto input_failed;
857
c1f73658 858 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++) {
57f9616b 859 if (test_bit(ideapad_rfk_data[i].cfgbit, &priv->cfg))
75a11f11 860 ideapad_register_rfkill(priv, i);
c1f73658
IP
861 else
862 priv->rfk[i] = NULL;
58ac7aa0 863 }
923de84a 864 ideapad_sync_rfk_state(priv);
75a11f11 865 ideapad_sync_touchpad_state(priv);
c9f718d0 866
a4ecbb8a
IP
867 if (!acpi_video_backlight_support()) {
868 ret = ideapad_backlight_init(priv);
869 if (ret && ret != -ENODEV)
870 goto backlight_failed;
871 }
b5c37b79
ZR
872 ret = acpi_install_notify_handler(adev->handle,
873 ACPI_DEVICE_NOTIFY, ideapad_acpi_notify, priv);
874 if (ret)
875 goto notification_failed;
a4ecbb8a 876
58ac7aa0 877 return 0;
b5c37b79
ZR
878notification_failed:
879 ideapad_backlight_exit(priv);
a4ecbb8a
IP
880backlight_failed:
881 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
75a11f11 882 ideapad_unregister_rfkill(priv, i);
7451a55a 883 ideapad_input_exit(priv);
f63409ae 884input_failed:
773e3206
IP
885 ideapad_debugfs_exit(priv);
886debugfs_failed:
b5c37b79
ZR
887 ideapad_sysfs_exit(priv);
888sysfs_failed:
98ee6919
IP
889 kfree(priv);
890 return ret;
58ac7aa0
DW
891}
892
b5c37b79 893static int ideapad_acpi_remove(struct platform_device *pdev)
58ac7aa0 894{
b5c37b79 895 struct ideapad_private *priv = dev_get_drvdata(&pdev->dev);
58ac7aa0 896 int i;
ce326329 897
b5c37b79
ZR
898 acpi_remove_notify_handler(priv->adev->handle,
899 ACPI_DEVICE_NOTIFY, ideapad_acpi_notify);
a4ecbb8a 900 ideapad_backlight_exit(priv);
c1f73658 901 for (i = 0; i < IDEAPAD_RFKILL_DEV_NUM; i++)
75a11f11 902 ideapad_unregister_rfkill(priv, i);
8693ae84 903 ideapad_input_exit(priv);
773e3206 904 ideapad_debugfs_exit(priv);
b5c37b79
ZR
905 ideapad_sysfs_exit(priv);
906 dev_set_drvdata(&pdev->dev, NULL);
ce326329 907 kfree(priv);
c9f718d0 908
58ac7aa0
DW
909 return 0;
910}
911
11fa8da5 912#ifdef CONFIG_PM_SLEEP
07a4a4fc
MM
913static int ideapad_acpi_resume(struct device *device)
914{
75a11f11
ZR
915 struct ideapad_private *priv;
916
917 if (!device)
918 return -EINVAL;
919 priv = dev_get_drvdata(device);
920
921 ideapad_sync_rfk_state(priv);
922 ideapad_sync_touchpad_state(priv);
07a4a4fc
MM
923 return 0;
924}
11fa8da5 925#endif
b5c37b79 926static SIMPLE_DEV_PM_OPS(ideapad_pm, NULL, ideapad_acpi_resume);
07a4a4fc 927
b5c37b79
ZR
928static const struct acpi_device_id ideapad_device_ids[] = {
929 { "VPC2004", 0},
930 { "", 0},
58ac7aa0 931};
b5c37b79
ZR
932MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);
933
934static struct platform_driver ideapad_acpi_driver = {
935 .probe = ideapad_acpi_add,
936 .remove = ideapad_acpi_remove,
937 .driver = {
938 .name = "ideapad_acpi",
939 .owner = THIS_MODULE,
940 .pm = &ideapad_pm,
941 .acpi_match_table = ACPI_PTR(ideapad_device_ids),
942 },
943};
944
945module_platform_driver(ideapad_acpi_driver);
58ac7aa0
DW
946
947MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
948MODULE_DESCRIPTION("IdeaPad ACPI Extras");
949MODULE_LICENSE("GPL");