2011-06-28 13:38:20

by Keng-Yü Lin

[permalink] [raw]
Subject: [PATCH 1/2] ideapad-laptop: Ignore an unused VPC notification

BIOS fires notifications in a constant period with VPC bit 1 set when the
power cord is unplugged.

This event is not known yet to have any effect, but it makes the
call to sparse_keymap_report_event() and generates many KEY_UNKNOWNs.

This causes the userspace (Gnome Power Manager in my case) unable
to enter the idle mode. As the result there is no screensaver showing up,
no dim backlight, etc.

Signed-off-by: Keng-Yu Lin <[email protected]>
---
drivers/platform/x86/ideapad-laptop.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
index bfdda33..820f013 100644
--- a/drivers/platform/x86/ideapad-laptop.c
+++ b/drivers/platform/x86/ideapad-laptop.c
@@ -463,7 +463,8 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
ideapad_sync_rfk_state(adevice);
else if (vpc_bit == 4)
read_ec_data(handle, 0x12, &vpc2);
- else
+ else if (vpc_bit == 1) {
+ } else
ideapad_input_report(priv, vpc_bit);
}
}
--
1.7.4.1


2011-06-28 13:38:25

by Keng-Yü Lin

[permalink] [raw]
Subject: [PATCH 2/2] ideapad-laptop: Handle the App-controlled RF event

Notification with VPC2 bit 5 set is generated when the wireless
hotkey is pressed. BIOS fires this to notify a Windows
application to handle the RF switch.

On Linux, there is no such application. This patch implements
a toggle for all RF devices through accessing the EC I/O ports.

Without the explicit EC commands, the wifi LED is always on.

Signed-off-by: Keng-Yu Lin <[email protected]>
---
drivers/platform/x86/ideapad-laptop.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
index 820f013..5e1e971 100644
--- a/drivers/platform/x86/ideapad-laptop.c
+++ b/drivers/platform/x86/ideapad-laptop.c
@@ -461,7 +461,11 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
if (test_bit(vpc_bit, &vpc1)) {
if (vpc_bit == 9)
ideapad_sync_rfk_state(adevice);
- else if (vpc_bit == 4)
+ else if (vpc_bit == 13) {
+ read_ec_data(handle, 0x23, &vpc2);
+ write_ec_cmd(handle, 0x24, !vpc2);
+ ideapad_sync_rfk_state(adevice);
+ } else if (vpc_bit == 4)
read_ec_data(handle, 0x12, &vpc2);
else if (vpc_bit == 1) {
} else
--
1.7.4.1

2011-06-29 13:56:29

by Ike Panhc

[permalink] [raw]
Subject: Re: [PATCH 2/2] ideapad-laptop: Handle the App-controlled RF event

On 06/28/2011 09:35 PM, Keng-Yu Lin wrote:
> Notification with VPC2 bit 5 set is generated when the wireless
> hotkey is pressed. BIOS fires this to notify a Windows
> application to handle the RF switch.
>
> On Linux, there is no such application. This patch implements
> a toggle for all RF devices through accessing the EC I/O ports.
>
> Without the explicit EC commands, the wifi LED is always on.
>
> Signed-off-by: Keng-Yu Lin <[email protected]>
> ---
> drivers/platform/x86/ideapad-laptop.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index 820f013..5e1e971 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -461,7 +461,11 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
> if (test_bit(vpc_bit, &vpc1)) {
> if (vpc_bit == 9)
> ideapad_sync_rfk_state(adevice);
> - else if (vpc_bit == 4)
> + else if (vpc_bit == 13) {
> + read_ec_data(handle, 0x23, &vpc2);
> + write_ec_cmd(handle, 0x24, !vpc2);
> + ideapad_sync_rfk_state(adevice);
> + } else if (vpc_bit == 4)
> read_ec_data(handle, 0x12, &vpc2);
> else if (vpc_bit == 1) {
> } else

I think its better to implement the changes in ideapad_sync_rfk_state() because we have
read switch status there. It is not necessary to read the same data twice in an event.

2011-06-29 14:26:27

by Ike Panhc

[permalink] [raw]
Subject: Re: [PATCH 1/2] ideapad-laptop: Ignore an unused VPC notification

On 06/28/2011 09:35 PM, Keng-Yu Lin wrote:
> BIOS fires notifications in a constant period with VPC bit 1 set when the
> power cord is unplugged.
>
> This event is not known yet to have any effect, but it makes the
> call to sparse_keymap_report_event() and generates many KEY_UNKNOWNs.
>
> This causes the userspace (Gnome Power Manager in my case) unable
> to enter the idle mode. As the result there is no screensaver showing up,
> no dim backlight, etc.
>
> Signed-off-by: Keng-Yu Lin <[email protected]>
> ---
> drivers/platform/x86/ideapad-laptop.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index bfdda33..820f013 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -463,7 +463,8 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
> ideapad_sync_rfk_state(adevice);
> else if (vpc_bit == 4)
> read_ec_data(handle, 0x12, &vpc2);
> - else
> + else if (vpc_bit == 1) {
> + } else
> ideapad_input_report(priv, vpc_bit);
> }
> }

So far I know this event (coming with vpc_bit=1) is for Lenovo PM utility
on Windows. For most of the machine this event is not implemented in BIOS.

Its ok that we just ignore the event.

I think it will be better if we can let sparse-keymap or any upper level
application to ignore all unknown scancode or KEY_UNKNOWN but so far I do
not know a better way then this patch.

2011-06-30 10:18:40

by Keng-Yü Lin

[permalink] [raw]
Subject: Re: [PATCH 1/2] ideapad-laptop: Ignore an unused VPC notification

On Wed, Jun 29, 2011 at 3:26 PM, Ike Panhc <[email protected]> wrote:
> On 06/28/2011 09:35 PM, Keng-Yu Lin wrote:
>> BIOS fires notifications in a constant period with VPC bit 1 set when the
>> power cord is unplugged.
>>
>> This event is not known yet to have any effect, but it makes the
>> call to sparse_keymap_report_event() and generates many KEY_UNKNOWNs.
>>
>> This causes the userspace (Gnome Power Manager in my case) unable
>> to enter the idle mode. As the result there is no screensaver showing up,
>> no dim backlight, etc.
>>
>> Signed-off-by: Keng-Yu Lin <[email protected]>
>> ---
>>  drivers/platform/x86/ideapad-laptop.c |    3 ++-
>>  1 files changed, 2 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
>> index bfdda33..820f013 100644
>> --- a/drivers/platform/x86/ideapad-laptop.c
>> +++ b/drivers/platform/x86/ideapad-laptop.c
>> @@ -463,7 +463,8 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
>>                               ideapad_sync_rfk_state(adevice);
>>                       else if (vpc_bit == 4)
>>                               read_ec_data(handle, 0x12, &vpc2);
>> -                     else
>> +                     else if (vpc_bit == 1) {
>> +                     } else
>>                               ideapad_input_report(priv, vpc_bit);
>>               }
>>       }
>
> So far I know this event (coming with vpc_bit=1) is for Lenovo PM utility
> on Windows. For most of the machine this event is not implemented in BIOS.
>
> Its ok that we just ignore the event.
>
> I think it will be better if we can let sparse-keymap or any upper level
> application to ignore all unknown scancode or KEY_UNKNOWN but so far I do
> not know a better way then this patch.

I think sparse_keymap_report_event() sends the KEY_UNKNOWN on purpose
as a debugging aid.

We should prevent the call to it in ideapad-laptop. I think the patch
is probably the simplest way.

Thanks,
-kengyu

2011-06-30 10:35:42

by Keng-Yü Lin

[permalink] [raw]
Subject: Re: [PATCH 2/2] ideapad-laptop: Handle the App-controlled RF event

On Wed, Jun 29, 2011 at 2:56 PM, Ike Panhc <[email protected]> wrote:
> On 06/28/2011 09:35 PM, Keng-Yu Lin wrote:
>> Notification with VPC2 bit 5 set is generated when the wireless
>> hotkey is pressed. BIOS fires this to notify a Windows
>> application to handle the RF switch.
>>
>> On Linux, there is no such application. This patch implements
>> a toggle for all RF devices through accessing the EC I/O ports.
>>
>> Without the explicit EC commands, the wifi LED is always on.
>>
>> Signed-off-by: Keng-Yu Lin <[email protected]>
>> ---
>>  drivers/platform/x86/ideapad-laptop.c |    6 +++++-
>>  1 files changed, 5 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
>> index 820f013..5e1e971 100644
>> --- a/drivers/platform/x86/ideapad-laptop.c
>> +++ b/drivers/platform/x86/ideapad-laptop.c
>> @@ -461,7 +461,11 @@ static void ideapad_acpi_notify(struct acpi_device *adevice, u32 event)
>>               if (test_bit(vpc_bit, &vpc1)) {
>>                       if (vpc_bit == 9)
>>                               ideapad_sync_rfk_state(adevice);
>> -                     else if (vpc_bit == 4)
>> +                     else if (vpc_bit == 13) {
>> +                             read_ec_data(handle, 0x23, &vpc2);
>> +                             write_ec_cmd(handle, 0x24, !vpc2);
>> +                             ideapad_sync_rfk_state(adevice);
>> +                     } else if (vpc_bit == 4)
>>                               read_ec_data(handle, 0x12, &vpc2);
>>                       else if (vpc_bit == 1) {
>>                       } else
>
> I think its better to implement the changes in ideapad_sync_rfk_state() because we have
> read switch status there. It is not necessary to read the same data twice in an event.
>
>

Current ideapad_sync_rfk_state() code does not really toggle the
hardware swtich (I mean to write_ec_cmd with 0x24 command). It just
assumes that the BIOS or EC is responsible for the wifi switch-on/-off
and reports the state via rfkill_set_hw_state().

In my case, without explicit sending the 0x24 command to turn off the
radio device, the wifi LED is always on.

Though it might not be true or applicable on ideapads, in my last
experience on Dell laptops that to switch off the RF radio in the
driver while the hardware claims to control it can cause some mess-up.

So to be safe I prefer not to move the toggle code in ideapad_sync_rfk_state().

Thanks,
-kengyu