linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] input: elantech.c: add more exceptions to fw version signature check
@ 2015-05-28 16:29 Martin Herkt
  2015-05-28 16:37 ` Hans de Goede
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Herkt @ 2015-05-28 16:29 UTC (permalink / raw)
  To: linux-input
  Cc: Dmitry Torokhov, Hans de Goede, Ulrik De Bie, George Moutsopoulos,
	Martin Herkt

This makes the driver work with the ElanTech touchpad of my
ASUS PU551LD laptop (fw signature 0x480f0a). There may be more
touchpads with firmware versions in the 0x4? range, so I've added
those to the exception as well.

Signed-off-by: Martin Herkt <lachs0r@srsfckn.biz>
---
 drivers/input/mouse/elantech.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c
index 79363b6..cd3e2a3 100644
--- a/drivers/input/mouse/elantech.c
+++ b/drivers/input/mouse/elantech.c
@@ -1379,7 +1379,8 @@ static bool elantech_is_signature_valid(const unsigned char *param)
 	 * Some models have a revision higher then 20. Meaning param[2] may
 	 * be 10 or 20, skip the rates check for these.
 	 */
-	if (param[0] == 0x46 && (param[1] & 0xef) == 0x0f && param[2] < 40)
+	if (param[0] >= 0x40 && param[0] < 0x50 &&
+	    (param[1] & 0xef) == 0x0f && param[2] < 40)
 		return true;
 
 	for (i = 0; i < ARRAY_SIZE(rates); i++)
-- 
2.3.5


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

* Re: [PATCH] input: elantech.c: add more exceptions to fw version signature check
  2015-05-28 16:29 [PATCH] input: elantech.c: add more exceptions to fw version signature check Martin Herkt
@ 2015-05-28 16:37 ` Hans de Goede
  2015-05-28 16:50   ` Martin Herkt
  0 siblings, 1 reply; 3+ messages in thread
From: Hans de Goede @ 2015-05-28 16:37 UTC (permalink / raw)
  To: Martin Herkt, linux-input
  Cc: Dmitry Torokhov, Ulrik De Bie, George Moutsopoulos

[-- Attachment #1: Type: text/plain, Size: 1384 bytes --]

Hi Martin,

On 28-05-15 18:29, Martin Herkt wrote:
> This makes the driver work with the ElanTech touchpad of my
> ASUS PU551LD laptop (fw signature 0x480f0a). There may be more
> touchpads with firmware versions in the 0x4? range, so I've added
> those to the exception as well.

I actually send a patch fixing the exact same bug earlier today...

> diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c
> index 79363b6..cd3e2a3 100644
> --- a/drivers/input/mouse/elantech.c
> +++ b/drivers/input/mouse/elantech.c
> @@ -1379,7 +1379,8 @@ static bool elantech_is_signature_valid(const unsigned char *param)
>   	 * Some models have a revision higher then 20. Meaning param[2] may
>   	 * be 10 or 20, skip the rates check for these.
>   	 */
> -	if (param[0] == 0x46 && (param[1] & 0xef) == 0x0f && param[2] < 40)
> +	if (param[0] >= 0x40 && param[0] < 0x50 &&

This is wrong, the bits of param[0] which define the hw version of
the touchpads are in the low nibble, so your check will also match
older touchpads where we do not want to skip the rare check.

> +	    (param[1] & 0xef) == 0x0f && param[2] < 40)
>   		return true;
>
>   	for (i = 0; i < ARRAY_SIZE(rates); i++)

I've attached my patch, which actually checks the low nibble of
param[0]. It has already been tested on an Asus PU551LA laptop,
so it should work for your laptop too.

Regards,

Hans


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-elantech-Fix-detection-of-touchpads-where-the-revisi.patch --]
[-- Type: text/x-patch; name="0001-elantech-Fix-detection-of-touchpads-where-the-revisi.patch", Size: 1369 bytes --]

>From 9778e462805c95ed626290094a22af09ba879fef Mon Sep 17 00:00:00 2001
From: Hans de Goede <hdegoede@redhat.com>
Date: Thu, 30 Apr 2015 10:29:38 +0200
Subject: [PATCH 1/3] elantech: Fix detection of touchpads where the revision
 matches a known rate
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Make the check to skip the rate check more lax, so that it applies
to all hw_version 4 models.

This fixes the touchpad not being detected properly on Asus PU551LA
laptops.

Cc: stable@vger.kernel.org
Reported-and-tested-by: David Zafra Gómez <dezeta@klo.es>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/input/mouse/elantech.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c
index 79363b6..e605303 100644
--- a/drivers/input/mouse/elantech.c
+++ b/drivers/input/mouse/elantech.c
@@ -1379,7 +1379,8 @@ static bool elantech_is_signature_valid(const unsigned char *param)
 	 * Some models have a revision higher then 20. Meaning param[2] may
 	 * be 10 or 20, skip the rates check for these.
 	 */
-	if (param[0] == 0x46 && (param[1] & 0xef) == 0x0f && param[2] < 40)
+	if ((param[0] & 0x0f) >= 0x06 && (param[1] & 0xaf) == 0x0f &&
+	    param[2] < 40)
 		return true;
 
 	for (i = 0; i < ARRAY_SIZE(rates); i++)
-- 
2.4.1


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

* Re: [PATCH] input: elantech.c: add more exceptions to fw version signature check
  2015-05-28 16:37 ` Hans de Goede
@ 2015-05-28 16:50   ` Martin Herkt
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Herkt @ 2015-05-28 16:50 UTC (permalink / raw)
  To: Hans de Goede, linux-input
  Cc: Dmitry Torokhov, Ulrik De Bie, George Moutsopoulos

[-- Attachment #1: Type: text/plain, Size: 543 bytes --]

On Thursday 28 May 2015 18:37:49 you wrote:
> This is wrong, the bits of param[0] which define the hw version of
> the touchpads are in the low nibble, so your check will also match
> older touchpads where we do not want to skip the rare check.

Oh, sorry about that. Should have paid more attention.
First time poking the kernel after all :)

> I've attached my patch, which actually checks the low nibble of
> param[0]. It has already been tested on an Asus PU551LA laptop,
> so it should work for your laptop too.

Yes, this works. Thanks!

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 213 bytes --]

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

end of thread, other threads:[~2015-05-28 16:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-28 16:29 [PATCH] input: elantech.c: add more exceptions to fw version signature check Martin Herkt
2015-05-28 16:37 ` Hans de Goede
2015-05-28 16:50   ` Martin Herkt

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).