Linux Input/HID development
 help / color / mirror / Atom feed
* [PATCH] elan_i2c: Add ACPI ID "ELAN1000"
@ 2015-09-01 19:53 João Paulo Rechi Vita
  2015-09-01 21:00 ` Dmitry Torokhov
  0 siblings, 1 reply; 4+ messages in thread
From: João Paulo Rechi Vita @ 2015-09-01 19:53 UTC (permalink / raw)
  To: linux-input; +Cc: dusonlin, dmitry.torokhov, João Paulo Rechi Vita

This ACPI ID present in the DSDT of the ASUS E202SA laptop.

Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
---
 drivers/input/mouse/elan_i2c_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/input/mouse/elan_i2c_core.c b/drivers/input/mouse/elan_i2c_core.c
index d4a38ca..5e45402 100644
--- a/drivers/input/mouse/elan_i2c_core.c
+++ b/drivers/input/mouse/elan_i2c_core.c
@@ -1170,6 +1170,7 @@ static const struct acpi_device_id elan_acpi_id[] = {
 	{ "ELAN0000", 0 },
 	{ "ELAN0100", 0 },
 	{ "ELAN0600", 0 },
+	{ "ELAN1000", 0 },
 	{ }
 };
 MODULE_DEVICE_TABLE(acpi, elan_acpi_id);
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] elan_i2c: Add ACPI ID "ELAN1000"
  2015-09-01 19:53 [PATCH] elan_i2c: Add ACPI ID "ELAN1000" João Paulo Rechi Vita
@ 2015-09-01 21:00 ` Dmitry Torokhov
  2015-09-01 21:15   ` João Paulo Rechi Vita
  0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2015-09-01 21:00 UTC (permalink / raw)
  To: João Paulo Rechi Vita
  Cc: linux-input@vger.kernel.org, Duson Lin,
	João Paulo Rechi Vita

On Tue, Sep 1, 2015 at 12:53 PM, João Paulo Rechi Vita
<jprvita@gmail.com> wrote:
> This ACPI ID present in the DSDT of the ASUS E202SA laptop.

Can it be driven buy the standard hid-multitouch by any chance?

>
> Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
> ---
>  drivers/input/mouse/elan_i2c_core.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/input/mouse/elan_i2c_core.c b/drivers/input/mouse/elan_i2c_core.c
> index d4a38ca..5e45402 100644
> --- a/drivers/input/mouse/elan_i2c_core.c
> +++ b/drivers/input/mouse/elan_i2c_core.c
> @@ -1170,6 +1170,7 @@ static const struct acpi_device_id elan_acpi_id[] = {
>         { "ELAN0000", 0 },
>         { "ELAN0100", 0 },
>         { "ELAN0600", 0 },
> +       { "ELAN1000", 0 },
>         { }
>  };
>  MODULE_DEVICE_TABLE(acpi, elan_acpi_id);
> --
> 2.1.4
>



-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] elan_i2c: Add ACPI ID "ELAN1000"
  2015-09-01 21:00 ` Dmitry Torokhov
@ 2015-09-01 21:15   ` João Paulo Rechi Vita
  2015-09-03 17:06     ` Dmitry Torokhov
  0 siblings, 1 reply; 4+ messages in thread
From: João Paulo Rechi Vita @ 2015-09-01 21:15 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-input@vger.kernel.org, Duson Lin,
	João Paulo Rechi Vita

Hello Dmitry, thanks for the feedback.

On 1 September 2015 at 17:00, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> On Tue, Sep 1, 2015 at 12:53 PM, João Paulo Rechi Vita
> <jprvita@gmail.com> wrote:
>> This ACPI ID present in the DSDT of the ASUS E202SA laptop.
>
> Can it be driven buy the standard hid-multitouch by any chance?
>

Without this change on v4.2 it is driven by i2c_hid, but behaves as a
regular mouse, so no absolute events, multitouch, tap to click etc. I
have not tried to use hid-multitouch with this touchpad, as I thought
hid-multitouch was a touchscreen driver. Is there any drawback in
having this supported by elan_i2c? Should I try a different approach?

--
João Paulo Rechi Vita
http://about.me/jprvita
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] elan_i2c: Add ACPI ID "ELAN1000"
  2015-09-01 21:15   ` João Paulo Rechi Vita
@ 2015-09-03 17:06     ` Dmitry Torokhov
  0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2015-09-03 17:06 UTC (permalink / raw)
  To: João Paulo Rechi Vita
  Cc: linux-input@vger.kernel.org, Duson Lin,
	João Paulo Rechi Vita

On Tue, Sep 01, 2015 at 05:15:55PM -0400, João Paulo Rechi Vita wrote:
> Hello Dmitry, thanks for the feedback.
> 
> On 1 September 2015 at 17:00, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> > On Tue, Sep 1, 2015 at 12:53 PM, João Paulo Rechi Vita
> > <jprvita@gmail.com> wrote:
> >> This ACPI ID present in the DSDT of the ASUS E202SA laptop.
> >
> > Can it be driven buy the standard hid-multitouch by any chance?
> >
> 
> Without this change on v4.2 it is driven by i2c_hid, but behaves as a
> regular mouse, so no absolute events, multitouch, tap to click etc. I
> have not tried to use hid-multitouch with this touchpad, as I thought
> hid-multitouch was a touchscreen driver. Is there any drawback in
> having this supported by elan_i2c? Should I try a different approach?

No, that is fine, I was just checking. Applied, thank you.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-09-03 17:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-01 19:53 [PATCH] elan_i2c: Add ACPI ID "ELAN1000" João Paulo Rechi Vita
2015-09-01 21:00 ` Dmitry Torokhov
2015-09-01 21:15   ` João Paulo Rechi Vita
2015-09-03 17:06     ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox