2015-07-17 21:21:34

by Azael Avalos

[permalink] [raw]
Subject: [PATCH] toshiba_acpi: Adapt /proc/acpi/toshiba/keys to TOS1900 devices

Since the introduction of TOS1900 devices support to the driver, the
"keys" entry under the proc directory was broken, given that it only
handled TOS620X devices accordingly.

This patch adapts the code to show the hotkey values of TOS1900
devices too, and in case some programs are still using that interface,
hotkeys reporting should now work on these devices.

Signed-off-by: Azael Avalos <[email protected]>
---
Darren:

While checking the driver for the ninja-check report you sent me,
it remiended me of the changes made on this patch, and while I was
at it, "solved" a couple of the issues reported by such check ;-)

I'm still digging into the code, and will provide a patch later on
with all the needed changes :-)

drivers/platform/x86/toshiba_acpi.c | 56 +++++++++++++------------------------
1 file changed, 20 insertions(+), 36 deletions(-)

diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index a3c6ea2..ac71c82 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -1492,32 +1492,10 @@ static const struct file_operations fan_proc_fops = {
static int keys_proc_show(struct seq_file *m, void *v)
{
struct toshiba_acpi_dev *dev = m->private;
- u32 hci_result;
- u32 value;
-
- if (!dev->key_event_valid && dev->system_event_supported) {
- hci_result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
- if (hci_result == TOS_SUCCESS) {
- dev->key_event_valid = 1;
- dev->last_key_event = value;
- } else if (hci_result == TOS_FIFO_EMPTY) {
- /* Better luck next time */
- } else if (hci_result == TOS_NOT_SUPPORTED) {
- /*
- * This is a workaround for an unresolved issue on
- * some machines where system events sporadically
- * become disabled.
- */
- hci_result = hci_write(dev, HCI_SYSTEM_EVENT, 1);
- pr_notice("Re-enabled hotkeys\n");
- } else {
- pr_err("Error reading hotkey status\n");
- return -EIO;
- }
- }

seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
+
return 0;
}

@@ -2354,22 +2332,28 @@ static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,

static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev *dev)
{
- u32 hci_result, value;
- int retries = 3;
- int scancode;
-
if (dev->info_supported) {
- scancode = toshiba_acpi_query_hotkey(dev);
- if (scancode < 0)
+ int scancode = toshiba_acpi_query_hotkey(dev);
+
+ if (scancode < 0) {
pr_err("Failed to query hotkey event\n");
- else if (scancode != 0)
+ } else if (scancode != 0) {
toshiba_acpi_report_hotkey(dev, scancode);
+ dev->key_event_valid = 1;
+ dev->last_key_event = scancode;
+ }
} else if (dev->system_event_supported) {
+ u32 result;
+ u32 value;
+ int retries = 3;
+
do {
- hci_result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
- switch (hci_result) {
+ result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
+ switch (result) {
case TOS_SUCCESS:
toshiba_acpi_report_hotkey(dev, (int)value);
+ dev->key_event_valid = 1;
+ dev->last_key_event = value;
break;
case TOS_NOT_SUPPORTED:
/*
@@ -2377,15 +2361,15 @@ static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev *dev)
* issue on some machines where system events
* sporadically become disabled.
*/
- hci_result =
- hci_write(dev, HCI_SYSTEM_EVENT, 1);
- pr_notice("Re-enabled hotkeys\n");
+ result = hci_write(dev, HCI_SYSTEM_EVENT, 1);
+ if (result == TOS_SUCCESS)
+ pr_notice("Re-enabled hotkeys\n");
/* Fall through */
default:
retries--;
break;
}
- } while (retries && hci_result != TOS_FIFO_EMPTY);
+ } while (retries && result != TOS_FIFO_EMPTY);
}
}

--
2.4.5


2015-07-17 21:47:00

by Darren Hart

[permalink] [raw]
Subject: Re: [PATCH] toshiba_acpi: Adapt /proc/acpi/toshiba/keys to TOS1900 devices

On Fri, Jul 17, 2015 at 03:21:26PM -0600, Azael Avalos wrote:
> Since the introduction of TOS1900 devices support to the driver, the
> "keys" entry under the proc directory was broken, given that it only
> handled TOS620X devices accordingly.
>
> This patch adapts the code to show the hotkey values of TOS1900
> devices too, and in case some programs are still using that interface,
> hotkeys reporting should now work on these devices.
>
> Signed-off-by: Azael Avalos <[email protected]>

Thanks, queued to for-review.
--
Darren Hart
Intel Open Source Technology Center

2015-07-20 21:58:26

by Darren Hart

[permalink] [raw]
Subject: Re: [PATCH] toshiba_acpi: Adapt /proc/acpi/toshiba/keys to TOS1900 devices

On Fri, Jul 17, 2015 at 03:21:26PM -0600, Azael Avalos wrote:
> Since the introduction of TOS1900 devices support to the driver, the
> "keys" entry under the proc directory was broken, given that it only
> handled TOS620X devices accordingly.
>
> This patch adapts the code to show the hotkey values of TOS1900
> devices too, and in case some programs are still using that interface,
> hotkeys reporting should now work on these devices.
>
> Signed-off-by: Azael Avalos <[email protected]>
> ---
> Darren:
>
> While checking the driver for the ninja-check report you sent me,
> it remiended me of the changes made on this patch, and while I was
> at it, "solved" a couple of the issues reported by such check ;-)
>
> I'm still digging into the code, and will provide a patch later on
> with all the needed changes :-)

Looks good, thanks Azael.

--
Darren Hart
Intel Open Source Technology Center