linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] acer-wmi: setup accelerometer when machine has appropriate notify event
@ 2016-11-03  0:18 Lee, Chun-Yi
  2016-12-27 12:00 ` Andy Shevchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Lee, Chun-Yi @ 2016-11-03  0:18 UTC (permalink / raw)
  To: Darren Hart; +Cc: platform-driver-x86, linux-kernel, Lee, Chun-Yi

The accelerometer event relies on on the ACERWMID_EVENT_GUID notify.
So, this patch changes the codes to setup accelerometer input device
when detected ACERWMID_EVENT_GUID. It avoids that the accel input
device created on every acer machines.

In addition, patch adds a clearly parsing logic of accelerometer hid
to acer_wmi_get_handle_cb callback function. It is positive matching
the "SENR" name with "BST0001" device to avoid non-supported hardware.

v2:
Fix the string comparison logic of SENR. 

Reported-by: Bjørn Mork <bjorn@mork.no>
Cc: Darren Hart <dvhart@infradead.org>
Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
---
 drivers/platform/x86/acer-wmi.c | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

Index: linux/drivers/platform/x86/acer-wmi.c
===================================================================
--- linux.orig/drivers/platform/x86/acer-wmi.c
+++ linux/drivers/platform/x86/acer-wmi.c
@@ -1808,11 +1808,24 @@ static int __init acer_wmi_enable_lm(voi
 	return status;
 }
 
+#define ACER_WMID_ACCEL_HID	"BST0001"
+
 static acpi_status __init acer_wmi_get_handle_cb(acpi_handle ah, u32 level,
 						void *ctx, void **retval)
 {
+	struct acpi_device *dev;
+
+	if (!strcmp(ctx, "SENR")) {
+		if (acpi_bus_get_device(ah, &dev))
+			return AE_OK;
+		if (!strcmp(ACER_WMID_ACCEL_HID, acpi_device_hid(dev)))
+			return AE_OK;
+	} else
+		return AE_OK;
+
 	*(acpi_handle *)retval = ah;
-	return AE_OK;
+
+	return AE_CTRL_TERMINATE;
 }
 
 static int __init acer_wmi_get_handle(const char *name, const char *prop,
@@ -1839,7 +1852,7 @@ static int __init acer_wmi_accel_setup(v
 {
 	int err;
 
-	err = acer_wmi_get_handle("SENR", "BST0001", &gsensor_handle);
+	err = acer_wmi_get_handle("SENR", ACER_WMID_ACCEL_HID, &gsensor_handle);
 	if (err)
 		return err;
 
@@ -2177,10 +2190,11 @@ static int __init acer_wmi_init(void)
 		err = acer_wmi_input_setup();
 		if (err)
 			return err;
+		err = acer_wmi_accel_setup();
+		if (err)
+			return err;
 	}
 
-	acer_wmi_accel_setup();
-
 	err = platform_driver_register(&acer_platform_driver);
 	if (err) {
 		pr_err("Unable to register platform driver\n");

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] acer-wmi: setup accelerometer when machine has appropriate notify event
  2016-11-03  0:18 [PATCH v2] acer-wmi: setup accelerometer when machine has appropriate notify event Lee, Chun-Yi
@ 2016-12-27 12:00 ` Andy Shevchenko
  2017-01-03  0:16   ` joeyli
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2016-12-27 12:00 UTC (permalink / raw)
  To: Lee, Chun-Yi; +Cc: Darren Hart, platform-driver-x86, linux-kernel, Lee, Chun-Yi

On Thu, Nov 3, 2016 at 2:18 AM, Lee, Chun-Yi <joeyli.kernel@gmail.com> wrote:
> The accelerometer event relies on on the ACERWMID_EVENT_GUID notify.
> So, this patch changes the codes to setup accelerometer input device
> when detected ACERWMID_EVENT_GUID. It avoids that the accel input
> device created on every acer machines.
>
> In addition, patch adds a clearly parsing logic of accelerometer hid
> to acer_wmi_get_handle_cb callback function. It is positive matching
> the "SENR" name with "BST0001" device to avoid non-supported hardware.
>

Pushed to testing with slightly massaged commit message.
Thanks.

> v2:
> Fix the string comparison logic of SENR.
>
> Reported-by: Bjørn Mork <bjorn@mork.no>
> Cc: Darren Hart <dvhart@infradead.org>
> Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
> ---
>  drivers/platform/x86/acer-wmi.c | 22 ++++++++++++++++++----
>  1 file changed, 18 insertions(+), 4 deletions(-)
>
> Index: linux/drivers/platform/x86/acer-wmi.c
> ===================================================================
> --- linux.orig/drivers/platform/x86/acer-wmi.c
> +++ linux/drivers/platform/x86/acer-wmi.c
> @@ -1808,11 +1808,24 @@ static int __init acer_wmi_enable_lm(voi
>         return status;
>  }
>
> +#define ACER_WMID_ACCEL_HID    "BST0001"
> +
>  static acpi_status __init acer_wmi_get_handle_cb(acpi_handle ah, u32 level,
>                                                 void *ctx, void **retval)
>  {
> +       struct acpi_device *dev;
> +
> +       if (!strcmp(ctx, "SENR")) {
> +               if (acpi_bus_get_device(ah, &dev))
> +                       return AE_OK;
> +               if (!strcmp(ACER_WMID_ACCEL_HID, acpi_device_hid(dev)))
> +                       return AE_OK;
> +       } else
> +               return AE_OK;
> +
>         *(acpi_handle *)retval = ah;
> -       return AE_OK;
> +
> +       return AE_CTRL_TERMINATE;
>  }
>
>  static int __init acer_wmi_get_handle(const char *name, const char *prop,
> @@ -1839,7 +1852,7 @@ static int __init acer_wmi_accel_setup(v
>  {
>         int err;
>
> -       err = acer_wmi_get_handle("SENR", "BST0001", &gsensor_handle);
> +       err = acer_wmi_get_handle("SENR", ACER_WMID_ACCEL_HID, &gsensor_handle);
>         if (err)
>                 return err;
>
> @@ -2177,10 +2190,11 @@ static int __init acer_wmi_init(void)
>                 err = acer_wmi_input_setup();
>                 if (err)
>                         return err;
> +               err = acer_wmi_accel_setup();
> +               if (err)
> +                       return err;
>         }
>
> -       acer_wmi_accel_setup();
> -
>         err = platform_driver_register(&acer_platform_driver);
>         if (err) {
>                 pr_err("Unable to register platform driver\n");
> --
> To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] acer-wmi: setup accelerometer when machine has appropriate notify event
  2016-12-27 12:00 ` Andy Shevchenko
@ 2017-01-03  0:16   ` joeyli
  0 siblings, 0 replies; 3+ messages in thread
From: joeyli @ 2017-01-03  0:16 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Lee, Chun-Yi, Darren Hart, platform-driver-x86, linux-kernel

On Tue, Dec 27, 2016 at 02:00:01PM +0200, Andy Shevchenko wrote:
> On Thu, Nov 3, 2016 at 2:18 AM, Lee, Chun-Yi <joeyli.kernel@gmail.com> wrote:
> > The accelerometer event relies on on the ACERWMID_EVENT_GUID notify.
> > So, this patch changes the codes to setup accelerometer input device
> > when detected ACERWMID_EVENT_GUID. It avoids that the accel input
> > device created on every acer machines.
> >
> > In addition, patch adds a clearly parsing logic of accelerometer hid
> > to acer_wmi_get_handle_cb callback function. It is positive matching
> > the "SENR" name with "BST0001" device to avoid non-supported hardware.
> >
> 
> Pushed to testing with slightly massaged commit message.
> Thanks.
> 

Thanks a lot!
Joey Lee

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-03  0:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-03  0:18 [PATCH v2] acer-wmi: setup accelerometer when machine has appropriate notify event Lee, Chun-Yi
2016-12-27 12:00 ` Andy Shevchenko
2017-01-03  0:16   ` joeyli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).