2 * ideapad-laptop.c - Lenovo IdeaPad ACPI Extras
4 * Copyright © 2010 Intel Corporation
5 * Copyright © 2010 David Woodhouse <dwmw2@infradead.org>
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.
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.
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
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
32 #include <linux/platform_device.h>
33 #include <linux/input.h>
34 #include <linux/input/sparse-keymap.h>
35 #include <linux/backlight.h>
37 #include <linux/debugfs.h>
38 #include <linux/seq_file.h>
39 #include <linux/i8042.h>
41 #define IDEAPAD_RFKILL_DEV_NUM (3)
43 #define CFG_BT_BIT (16)
44 #define CFG_3G_BIT (17)
45 #define CFG_WIFI_BIT (18)
46 #define CFG_CAMERA_BIT (19)
66 VPCCMD_R_ODD
, /* 0x21 */
71 VPCCMD_R_SPECIAL_BUTTONS
= 0x31,
72 VPCCMD_W_BL_POWER
= 0x33,
75 struct ideapad_private
{
76 struct rfkill
*rfk
[IDEAPAD_RFKILL_DEV_NUM
];
77 struct platform_device
*platform_device
;
78 struct input_dev
*inputdev
;
79 struct backlight_device
*blightdev
;
84 static acpi_handle ideapad_handle
;
85 static struct ideapad_private
*ideapad_priv
;
86 static bool no_bt_rfkill
;
87 module_param(no_bt_rfkill
, bool, 0444);
88 MODULE_PARM_DESC(no_bt_rfkill
, "No rfkill for bluetooth.");
93 #define IDEAPAD_EC_TIMEOUT (100) /* in ms */
95 static int read_method_int(acpi_handle handle
, const char *method
, int *val
)
98 unsigned long long result
;
100 status
= acpi_evaluate_integer(handle
, (char *)method
, NULL
, &result
);
101 if (ACPI_FAILURE(status
)) {
110 static int method_vpcr(acpi_handle handle
, int cmd
, int *ret
)
113 unsigned long long result
;
114 struct acpi_object_list params
;
115 union acpi_object in_obj
;
118 params
.pointer
= &in_obj
;
119 in_obj
.type
= ACPI_TYPE_INTEGER
;
120 in_obj
.integer
.value
= cmd
;
122 status
= acpi_evaluate_integer(handle
, "VPCR", ¶ms
, &result
);
124 if (ACPI_FAILURE(status
)) {
133 static int method_vpcw(acpi_handle handle
, int cmd
, int data
)
135 struct acpi_object_list params
;
136 union acpi_object in_obj
[2];
140 params
.pointer
= in_obj
;
141 in_obj
[0].type
= ACPI_TYPE_INTEGER
;
142 in_obj
[0].integer
.value
= cmd
;
143 in_obj
[1].type
= ACPI_TYPE_INTEGER
;
144 in_obj
[1].integer
.value
= data
;
146 status
= acpi_evaluate_object(handle
, "VPCW", ¶ms
, NULL
);
152 static int read_ec_data(acpi_handle handle
, int cmd
, unsigned long *data
)
155 unsigned long int end_jiffies
;
157 if (method_vpcw(handle
, 1, cmd
))
160 for (end_jiffies
= jiffies
+(HZ
)*IDEAPAD_EC_TIMEOUT
/1000+1;
161 time_before(jiffies
, end_jiffies
);) {
163 if (method_vpcr(handle
, 1, &val
))
166 if (method_vpcr(handle
, 0, &val
))
172 pr_err("timeout in read_ec_cmd\n");
176 static int write_ec_cmd(acpi_handle handle
, int cmd
, unsigned long data
)
179 unsigned long int end_jiffies
;
181 if (method_vpcw(handle
, 0, data
))
183 if (method_vpcw(handle
, 1, cmd
))
186 for (end_jiffies
= jiffies
+(HZ
)*IDEAPAD_EC_TIMEOUT
/1000+1;
187 time_before(jiffies
, end_jiffies
);) {
189 if (method_vpcr(handle
, 1, &val
))
194 pr_err("timeout in write_ec_cmd\n");
201 static int debugfs_status_show(struct seq_file
*s
, void *data
)
205 if (!read_ec_data(ideapad_handle
, VPCCMD_R_BL_MAX
, &value
))
206 seq_printf(s
, "Backlight max:\t%lu\n", value
);
207 if (!read_ec_data(ideapad_handle
, VPCCMD_R_BL
, &value
))
208 seq_printf(s
, "Backlight now:\t%lu\n", value
);
209 if (!read_ec_data(ideapad_handle
, VPCCMD_R_BL_POWER
, &value
))
210 seq_printf(s
, "BL power value:\t%s\n", value
? "On" : "Off");
211 seq_printf(s
, "=====================\n");
213 if (!read_ec_data(ideapad_handle
, VPCCMD_R_RF
, &value
))
214 seq_printf(s
, "Radio status:\t%s(%lu)\n",
215 value
? "On" : "Off", value
);
216 if (!read_ec_data(ideapad_handle
, VPCCMD_R_WIFI
, &value
))
217 seq_printf(s
, "Wifi status:\t%s(%lu)\n",
218 value
? "On" : "Off", value
);
219 if (!read_ec_data(ideapad_handle
, VPCCMD_R_BT
, &value
))
220 seq_printf(s
, "BT status:\t%s(%lu)\n",
221 value
? "On" : "Off", value
);
222 if (!read_ec_data(ideapad_handle
, VPCCMD_R_3G
, &value
))
223 seq_printf(s
, "3G status:\t%s(%lu)\n",
224 value
? "On" : "Off", value
);
225 seq_printf(s
, "=====================\n");
227 if (!read_ec_data(ideapad_handle
, VPCCMD_R_TOUCHPAD
, &value
))
228 seq_printf(s
, "Touchpad status:%s(%lu)\n",
229 value
? "On" : "Off", value
);
230 if (!read_ec_data(ideapad_handle
, VPCCMD_R_CAMERA
, &value
))
231 seq_printf(s
, "Camera status:\t%s(%lu)\n",
232 value
? "On" : "Off", value
);
237 static int debugfs_status_open(struct inode
*inode
, struct file
*file
)
239 return single_open(file
, debugfs_status_show
, NULL
);
242 static const struct file_operations debugfs_status_fops
= {
243 .owner
= THIS_MODULE
,
244 .open
= debugfs_status_open
,
247 .release
= single_release
,
250 static int debugfs_cfg_show(struct seq_file
*s
, void *data
)
253 seq_printf(s
, "cfg: N/A\n");
255 seq_printf(s
, "cfg: 0x%.8lX\n\nCapability: ",
257 if (test_bit(CFG_BT_BIT
, &ideapad_priv
->cfg
))
258 seq_printf(s
, "Bluetooth ");
259 if (test_bit(CFG_3G_BIT
, &ideapad_priv
->cfg
))
260 seq_printf(s
, "3G ");
261 if (test_bit(CFG_WIFI_BIT
, &ideapad_priv
->cfg
))
262 seq_printf(s
, "Wireless ");
263 if (test_bit(CFG_CAMERA_BIT
, &ideapad_priv
->cfg
))
264 seq_printf(s
, "Camera ");
265 seq_printf(s
, "\nGraphic: ");
266 switch ((ideapad_priv
->cfg
)&0x700) {
268 seq_printf(s
, "Intel");
271 seq_printf(s
, "ATI");
274 seq_printf(s
, "Nvidia");
277 seq_printf(s
, "Intel and ATI");
280 seq_printf(s
, "Intel and Nvidia");
288 static int debugfs_cfg_open(struct inode
*inode
, struct file
*file
)
290 return single_open(file
, debugfs_cfg_show
, NULL
);
293 static const struct file_operations debugfs_cfg_fops
= {
294 .owner
= THIS_MODULE
,
295 .open
= debugfs_cfg_open
,
298 .release
= single_release
,
301 static int ideapad_debugfs_init(struct ideapad_private
*priv
)
305 priv
->debug
= debugfs_create_dir("ideapad", NULL
);
306 if (priv
->debug
== NULL
) {
307 pr_err("failed to create debugfs directory");
311 node
= debugfs_create_file("cfg", S_IRUGO
, priv
->debug
, NULL
,
314 pr_err("failed to create cfg in debugfs");
318 node
= debugfs_create_file("status", S_IRUGO
, priv
->debug
, NULL
,
319 &debugfs_status_fops
);
321 pr_err("failed to create status in debugfs");
331 static void ideapad_debugfs_exit(struct ideapad_private
*priv
)
333 debugfs_remove_recursive(priv
->debug
);
340 static ssize_t
show_ideapad_cam(struct device
*dev
,
341 struct device_attribute
*attr
,
344 unsigned long result
;
346 if (read_ec_data(ideapad_handle
, VPCCMD_R_CAMERA
, &result
))
347 return sprintf(buf
, "-1\n");
348 return sprintf(buf
, "%lu\n", result
);
351 static ssize_t
store_ideapad_cam(struct device
*dev
,
352 struct device_attribute
*attr
,
353 const char *buf
, size_t count
)
359 if (sscanf(buf
, "%i", &state
) != 1)
361 ret
= write_ec_cmd(ideapad_handle
, VPCCMD_W_CAMERA
, state
);
367 static DEVICE_ATTR(camera_power
, 0644, show_ideapad_cam
, store_ideapad_cam
);
369 static ssize_t
show_ideapad_fan(struct device
*dev
,
370 struct device_attribute
*attr
,
373 unsigned long result
;
375 if (read_ec_data(ideapad_handle
, VPCCMD_R_FAN
, &result
))
376 return sprintf(buf
, "-1\n");
377 return sprintf(buf
, "%lu\n", result
);
380 static ssize_t
store_ideapad_fan(struct device
*dev
,
381 struct device_attribute
*attr
,
382 const char *buf
, size_t count
)
388 if (sscanf(buf
, "%i", &state
) != 1)
390 if (state
< 0 || state
> 4 || state
== 3)
392 ret
= write_ec_cmd(ideapad_handle
, VPCCMD_W_FAN
, state
);
398 static DEVICE_ATTR(fan_mode
, 0644, show_ideapad_fan
, store_ideapad_fan
);
400 static struct attribute
*ideapad_attributes
[] = {
401 &dev_attr_camera_power
.attr
,
402 &dev_attr_fan_mode
.attr
,
406 static umode_t
ideapad_is_visible(struct kobject
*kobj
,
407 struct attribute
*attr
,
410 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
411 struct ideapad_private
*priv
= dev_get_drvdata(dev
);
414 if (attr
== &dev_attr_camera_power
.attr
)
415 supported
= test_bit(CFG_CAMERA_BIT
, &(priv
->cfg
));
416 else if (attr
== &dev_attr_fan_mode
.attr
) {
418 supported
= !read_ec_data(ideapad_handle
, VPCCMD_R_FAN
, &value
);
422 return supported
? attr
->mode
: 0;
425 static struct attribute_group ideapad_attribute_group
= {
426 .is_visible
= ideapad_is_visible
,
427 .attrs
= ideapad_attributes
433 struct ideapad_rfk_data
{
440 const struct ideapad_rfk_data ideapad_rfk_data
[] = {
441 { "ideapad_wlan", CFG_WIFI_BIT
, VPCCMD_W_WIFI
, RFKILL_TYPE_WLAN
},
442 { "ideapad_bluetooth", CFG_BT_BIT
, VPCCMD_W_BT
, RFKILL_TYPE_BLUETOOTH
},
443 { "ideapad_3g", CFG_3G_BIT
, VPCCMD_W_3G
, RFKILL_TYPE_WWAN
},
446 static int ideapad_rfk_set(void *data
, bool blocked
)
448 unsigned long opcode
= (unsigned long)data
;
450 return write_ec_cmd(ideapad_handle
, opcode
, !blocked
);
453 static struct rfkill_ops ideapad_rfk_ops
= {
454 .set_block
= ideapad_rfk_set
,
457 static void ideapad_sync_rfk_state(struct ideapad_private
*priv
)
459 unsigned long hw_blocked
;
462 if (read_ec_data(ideapad_handle
, VPCCMD_R_RF
, &hw_blocked
))
464 hw_blocked
= !hw_blocked
;
466 for (i
= 0; i
< IDEAPAD_RFKILL_DEV_NUM
; i
++)
468 rfkill_set_hw_state(priv
->rfk
[i
], hw_blocked
);
471 static int ideapad_register_rfkill(struct acpi_device
*adevice
, int dev
)
473 struct ideapad_private
*priv
= dev_get_drvdata(&adevice
->dev
);
475 unsigned long sw_blocked
;
478 (ideapad_rfk_data
[dev
].type
== RFKILL_TYPE_BLUETOOTH
)) {
479 /* Force to enable bluetooth when no_bt_rfkill=1 */
480 write_ec_cmd(ideapad_handle
,
481 ideapad_rfk_data
[dev
].opcode
, 1);
485 priv
->rfk
[dev
] = rfkill_alloc(ideapad_rfk_data
[dev
].name
, &adevice
->dev
,
486 ideapad_rfk_data
[dev
].type
, &ideapad_rfk_ops
,
491 if (read_ec_data(ideapad_handle
, ideapad_rfk_data
[dev
].opcode
-1,
493 rfkill_init_sw_state(priv
->rfk
[dev
], 0);
495 sw_blocked
= !sw_blocked
;
496 rfkill_init_sw_state(priv
->rfk
[dev
], sw_blocked
);
499 ret
= rfkill_register(priv
->rfk
[dev
]);
501 rfkill_destroy(priv
->rfk
[dev
]);
507 static void ideapad_unregister_rfkill(struct acpi_device
*adevice
, int dev
)
509 struct ideapad_private
*priv
= dev_get_drvdata(&adevice
->dev
);
514 rfkill_unregister(priv
->rfk
[dev
]);
515 rfkill_destroy(priv
->rfk
[dev
]);
521 static int ideapad_platform_init(struct ideapad_private
*priv
)
525 priv
->platform_device
= platform_device_alloc("ideapad", -1);
526 if (!priv
->platform_device
)
528 platform_set_drvdata(priv
->platform_device
, priv
);
530 result
= platform_device_add(priv
->platform_device
);
532 goto fail_platform_device
;
534 result
= sysfs_create_group(&priv
->platform_device
->dev
.kobj
,
535 &ideapad_attribute_group
);
541 platform_device_del(priv
->platform_device
);
542 fail_platform_device
:
543 platform_device_put(priv
->platform_device
);
547 static void ideapad_platform_exit(struct ideapad_private
*priv
)
549 sysfs_remove_group(&priv
->platform_device
->dev
.kobj
,
550 &ideapad_attribute_group
);
551 platform_device_unregister(priv
->platform_device
);
557 static const struct key_entry ideapad_keymap
[] = {
558 { KE_KEY
, 6, { KEY_SWITCHVIDEOMODE
} },
559 { KE_KEY
, 7, { KEY_CAMERA
} },
560 { KE_KEY
, 11, { KEY_F16
} },
561 { KE_KEY
, 13, { KEY_WLAN
} },
562 { KE_KEY
, 16, { KEY_PROG1
} },
563 { KE_KEY
, 17, { KEY_PROG2
} },
564 { KE_KEY
, 64, { KEY_PROG3
} },
565 { KE_KEY
, 65, { KEY_PROG4
} },
566 { KE_KEY
, 66, { KEY_TOUCHPAD_OFF
} },
567 { KE_KEY
, 67, { KEY_TOUCHPAD_ON
} },
571 static int ideapad_input_init(struct ideapad_private
*priv
)
573 struct input_dev
*inputdev
;
576 inputdev
= input_allocate_device();
578 pr_info("Unable to allocate input device\n");
582 inputdev
->name
= "Ideapad extra buttons";
583 inputdev
->phys
= "ideapad/input0";
584 inputdev
->id
.bustype
= BUS_HOST
;
585 inputdev
->dev
.parent
= &priv
->platform_device
->dev
;
587 error
= sparse_keymap_setup(inputdev
, ideapad_keymap
, NULL
);
589 pr_err("Unable to setup input device keymap\n");
593 error
= input_register_device(inputdev
);
595 pr_err("Unable to register input device\n");
596 goto err_free_keymap
;
599 priv
->inputdev
= inputdev
;
603 sparse_keymap_free(inputdev
);
605 input_free_device(inputdev
);
609 static void ideapad_input_exit(struct ideapad_private
*priv
)
611 sparse_keymap_free(priv
->inputdev
);
612 input_unregister_device(priv
->inputdev
);
613 priv
->inputdev
= NULL
;
616 static void ideapad_input_report(struct ideapad_private
*priv
,
617 unsigned long scancode
)
619 sparse_keymap_report_event(priv
->inputdev
, scancode
, 1, true);
622 static void ideapad_input_novokey(struct ideapad_private
*priv
)
624 unsigned long long_pressed
;
626 if (read_ec_data(ideapad_handle
, VPCCMD_R_NOVO
, &long_pressed
))
629 ideapad_input_report(priv
, 17);
631 ideapad_input_report(priv
, 16);
634 static void ideapad_check_special_buttons(struct ideapad_private
*priv
)
636 unsigned long bit
, value
;
638 read_ec_data(ideapad_handle
, VPCCMD_R_SPECIAL_BUTTONS
, &value
);
640 for (bit
= 0; bit
< 16; bit
++) {
641 if (test_bit(bit
, &value
)) {
645 /* Thermal Management button */
646 ideapad_input_report(priv
, 65);
649 /* OneKey Theater button */
650 ideapad_input_report(priv
, 64);
653 pr_info("Unknown special button: %lu\n", bit
);
663 static int ideapad_backlight_get_brightness(struct backlight_device
*blightdev
)
667 if (read_ec_data(ideapad_handle
, VPCCMD_R_BL
, &now
))
672 static int ideapad_backlight_update_status(struct backlight_device
*blightdev
)
674 if (write_ec_cmd(ideapad_handle
, VPCCMD_W_BL
,
675 blightdev
->props
.brightness
))
677 if (write_ec_cmd(ideapad_handle
, VPCCMD_W_BL_POWER
,
678 blightdev
->props
.power
== FB_BLANK_POWERDOWN
? 0 : 1))
684 static const struct backlight_ops ideapad_backlight_ops
= {
685 .get_brightness
= ideapad_backlight_get_brightness
,
686 .update_status
= ideapad_backlight_update_status
,
689 static int ideapad_backlight_init(struct ideapad_private
*priv
)
691 struct backlight_device
*blightdev
;
692 struct backlight_properties props
;
693 unsigned long max
, now
, power
;
695 if (read_ec_data(ideapad_handle
, VPCCMD_R_BL_MAX
, &max
))
697 if (read_ec_data(ideapad_handle
, VPCCMD_R_BL
, &now
))
699 if (read_ec_data(ideapad_handle
, VPCCMD_R_BL_POWER
, &power
))
702 memset(&props
, 0, sizeof(struct backlight_properties
));
703 props
.max_brightness
= max
;
704 props
.type
= BACKLIGHT_PLATFORM
;
705 blightdev
= backlight_device_register("ideapad",
706 &priv
->platform_device
->dev
,
708 &ideapad_backlight_ops
,
710 if (IS_ERR(blightdev
)) {
711 pr_err("Could not register backlight device\n");
712 return PTR_ERR(blightdev
);
715 priv
->blightdev
= blightdev
;
716 blightdev
->props
.brightness
= now
;
717 blightdev
->props
.power
= power
? FB_BLANK_UNBLANK
: FB_BLANK_POWERDOWN
;
718 backlight_update_status(blightdev
);
723 static void ideapad_backlight_exit(struct ideapad_private
*priv
)
726 backlight_device_unregister(priv
->blightdev
);
727 priv
->blightdev
= NULL
;
730 static void ideapad_backlight_notify_power(struct ideapad_private
*priv
)
733 struct backlight_device
*blightdev
= priv
->blightdev
;
737 if (read_ec_data(ideapad_handle
, VPCCMD_R_BL_POWER
, &power
))
739 blightdev
->props
.power
= power
? FB_BLANK_UNBLANK
: FB_BLANK_POWERDOWN
;
742 static void ideapad_backlight_notify_brightness(struct ideapad_private
*priv
)
746 /* if we control brightness via acpi video driver */
747 if (priv
->blightdev
== NULL
) {
748 read_ec_data(ideapad_handle
, VPCCMD_R_BL
, &now
);
752 backlight_force_update(priv
->blightdev
, BACKLIGHT_UPDATE_HOTKEY
);
758 static const struct acpi_device_id ideapad_device_ids
[] = {
762 MODULE_DEVICE_TABLE(acpi
, ideapad_device_ids
);
764 static void ideapad_sync_touchpad_state(struct acpi_device
*adevice
)
766 struct ideapad_private
*priv
= dev_get_drvdata(&adevice
->dev
);
769 /* Without reading from EC touchpad LED doesn't switch state */
770 if (!read_ec_data(adevice
->handle
, VPCCMD_R_TOUCHPAD
, &value
)) {
771 /* Some IdeaPads don't really turn off touchpad - they only
772 * switch the LED state. We (de)activate KBC AUX port to turn
773 * touchpad off and on. We send KEY_TOUCHPAD_OFF and
774 * KEY_TOUCHPAD_ON to not to get out of sync with LED */
776 i8042_command(¶m
, value
? I8042_CMD_AUX_ENABLE
:
777 I8042_CMD_AUX_DISABLE
);
778 ideapad_input_report(priv
, value
? 67 : 66);
782 static int ideapad_acpi_add(struct acpi_device
*adevice
)
786 struct ideapad_private
*priv
;
788 if (read_method_int(adevice
->handle
, "_CFG", &cfg
))
791 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
794 dev_set_drvdata(&adevice
->dev
, priv
);
796 ideapad_handle
= adevice
->handle
;
799 ret
= ideapad_platform_init(priv
);
801 goto platform_failed
;
803 ret
= ideapad_debugfs_init(priv
);
807 ret
= ideapad_input_init(priv
);
811 for (i
= 0; i
< IDEAPAD_RFKILL_DEV_NUM
; i
++) {
812 if (test_bit(ideapad_rfk_data
[i
].cfgbit
, &priv
->cfg
))
813 ideapad_register_rfkill(adevice
, i
);
817 ideapad_sync_rfk_state(priv
);
818 ideapad_sync_touchpad_state(adevice
);
820 if (!acpi_video_backlight_support()) {
821 ret
= ideapad_backlight_init(priv
);
822 if (ret
&& ret
!= -ENODEV
)
823 goto backlight_failed
;
829 for (i
= 0; i
< IDEAPAD_RFKILL_DEV_NUM
; i
++)
830 ideapad_unregister_rfkill(adevice
, i
);
831 ideapad_input_exit(priv
);
833 ideapad_debugfs_exit(priv
);
835 ideapad_platform_exit(priv
);
841 static int ideapad_acpi_remove(struct acpi_device
*adevice
)
843 struct ideapad_private
*priv
= dev_get_drvdata(&adevice
->dev
);
846 ideapad_backlight_exit(priv
);
847 for (i
= 0; i
< IDEAPAD_RFKILL_DEV_NUM
; i
++)
848 ideapad_unregister_rfkill(adevice
, i
);
849 ideapad_input_exit(priv
);
850 ideapad_debugfs_exit(priv
);
851 ideapad_platform_exit(priv
);
852 dev_set_drvdata(&adevice
->dev
, NULL
);
858 static void ideapad_acpi_notify(struct acpi_device
*adevice
, u32 event
)
860 struct ideapad_private
*priv
= dev_get_drvdata(&adevice
->dev
);
861 acpi_handle handle
= adevice
->handle
;
862 unsigned long vpc1
, vpc2
, vpc_bit
;
864 if (read_ec_data(handle
, VPCCMD_R_VPC1
, &vpc1
))
866 if (read_ec_data(handle
, VPCCMD_R_VPC2
, &vpc2
))
869 vpc1
= (vpc2
<< 8) | vpc1
;
870 for (vpc_bit
= 0; vpc_bit
< 16; vpc_bit
++) {
871 if (test_bit(vpc_bit
, &vpc1
)) {
874 ideapad_sync_rfk_state(priv
);
880 ideapad_input_report(priv
, vpc_bit
);
883 ideapad_sync_touchpad_state(adevice
);
886 ideapad_backlight_notify_brightness(priv
);
889 ideapad_input_novokey(priv
);
892 ideapad_backlight_notify_power(priv
);
895 ideapad_check_special_buttons(priv
);
898 pr_info("Unknown event: %lu\n", vpc_bit
);
904 static int ideapad_acpi_resume(struct device
*device
)
906 ideapad_sync_rfk_state(ideapad_priv
);
907 ideapad_sync_touchpad_state(to_acpi_device(device
));
911 static SIMPLE_DEV_PM_OPS(ideapad_pm
, NULL
, ideapad_acpi_resume
);
913 static struct acpi_driver ideapad_acpi_driver
= {
914 .name
= "ideapad_acpi",
916 .ids
= ideapad_device_ids
,
917 .ops
.add
= ideapad_acpi_add
,
918 .ops
.remove
= ideapad_acpi_remove
,
919 .ops
.notify
= ideapad_acpi_notify
,
920 .drv
.pm
= &ideapad_pm
,
921 .owner
= THIS_MODULE
,
923 module_acpi_driver(ideapad_acpi_driver
);
925 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
926 MODULE_DESCRIPTION("IdeaPad ACPI Extras");
927 MODULE_LICENSE("GPL");