linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] Avoid unresponsive TSC-30 touch screen
@ 2015-07-23 15:01 Bernhard Bender
  2015-07-23 21:03 ` Dmitry Torokhov
  0 siblings, 1 reply; 2+ messages in thread
From: Bernhard Bender @ 2015-07-23 15:01 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input@vger.kernel.org, Jakob Mustafa

From: Bernhard Bender <bernhard.bender@bytecmed.com>

This patch fixes a problem in the usbtouchscreen driver for DMC TSC-30 touch screen.
Due to a missing delay between the RESET and SET_RATE commands, the touch screen may
become unresponsive during system startup or driver loading.

According to the DMC documentation, a delay is needed after the RESET command to allow
the chip to complete its internal initialization. As this delay is not guaranteed, we
had a system where the touch screen occasionally did not send any touch data. There was
no other indication of the problem.

The patch fixes the problem by adding a 150ms delay between the RESET and SET_RATE commands.

        Signed-off-by: Bernhard Bender <bernhard.bender@bytecmed.com>
        Suggested-by: Jakob Mustafa <jakob.mustafa@bytecmed.com>

---
Bernhard Bender
Entwicklung

Bytec Medizintechnik GmbH
Hermann-Hollerith-Str. 11
52249 Eschweiler, Germany
Tel. +49 (2403) 7829-943
www.bytecmed.com

Handelsregister Aachen: HRB 11222
Ust-ID: DE 121732719
Geschäftsführer: Dipl.-Ing. Paul Willi Coenen


diff --git a/drivers/input/touchscreen/usbtouchscreen.c b/drivers/input/touchscreen/usbtouchscreen.c
old mode 100644
new mode 100755
index a096633..4ebff01
--- a/drivers/input/touchscreen/usbtouchscreen.c
+++ b/drivers/input/touchscreen/usbtouchscreen.c
@@ -625,6 +625,9 @@ static int dmc_tsc10_init(struct usbtouch_usb *usbtouch)
                goto err_out;
        }

+    /* TSC-25 data sheet specifies a delay after the RESET command */
+    msleep(150);
+
        /* set coordinate output rate */
        buf[0] = buf[1] = 0xFF;
        ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),



Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender unter info@bytecmed.com und löschen Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This message may contain privileged and confidential information intended only for the use of the addressee named above. If you are not the intended recipient of this message you are hereby notified that any use, dissemination, distribution of reproduction of this message is prohibited. If you have received this message in error please notify info@bytecmed.com  immediately.

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

* Re: [PATCH 1/1] Avoid unresponsive TSC-30 touch screen
  2015-07-23 15:01 [PATCH 1/1] Avoid unresponsive TSC-30 touch screen Bernhard Bender
@ 2015-07-23 21:03 ` Dmitry Torokhov
  0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2015-07-23 21:03 UTC (permalink / raw)
  To: Bernhard Bender; +Cc: linux-input@vger.kernel.org, Jakob Mustafa

On Thu, Jul 23, 2015 at 05:01:31PM +0200, Bernhard Bender wrote:
> From: Bernhard Bender <bernhard.bender@bytecmed.com>
> 
> This patch fixes a problem in the usbtouchscreen driver for DMC TSC-30 touch screen.
> Due to a missing delay between the RESET and SET_RATE commands, the touch screen may
> become unresponsive during system startup or driver loading.
> 
> According to the DMC documentation, a delay is needed after the RESET command to allow
> the chip to complete its internal initialization. As this delay is not guaranteed, we
> had a system where the touch screen occasionally did not send any touch data. There was
> no other indication of the problem.
> 
> The patch fixes the problem by adding a 150ms delay between the RESET and SET_RATE commands.
> 
>         Signed-off-by: Bernhard Bender <bernhard.bender@bytecmed.com>
>         Suggested-by: Jakob Mustafa <jakob.mustafa@bytecmed.com>

Applied, thank you.

> 
> ---
> Bernhard Bender
> Entwicklung
> 
> Bytec Medizintechnik GmbH
> Hermann-Hollerith-Str. 11
> 52249 Eschweiler, Germany
> Tel. +49 (2403) 7829-943
> www.bytecmed.com
> 
> Handelsregister Aachen: HRB 11222
> Ust-ID: DE 121732719
> Geschäftsführer: Dipl.-Ing. Paul Willi Coenen
> 
> 
> diff --git a/drivers/input/touchscreen/usbtouchscreen.c b/drivers/input/touchscreen/usbtouchscreen.c
> old mode 100644
> new mode 100755
> index a096633..4ebff01
> --- a/drivers/input/touchscreen/usbtouchscreen.c
> +++ b/drivers/input/touchscreen/usbtouchscreen.c
> @@ -625,6 +625,9 @@ static int dmc_tsc10_init(struct usbtouch_usb *usbtouch)
>                 goto err_out;
>         }
> 
> +    /* TSC-25 data sheet specifies a delay after the RESET command */
> +    msleep(150);
> +
>         /* set coordinate output rate */
>         buf[0] = buf[1] = 0xFF;
>         ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
> 
> 
> 
> Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender unter info@bytecmed.com und löschen Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
> 
> This message may contain privileged and confidential information intended only for the use of the addressee named above. If you are not the intended recipient of this message you are hereby notified that any use, dissemination, distribution of reproduction of this message is prohibited. If you have received this message in error please notify info@bytecmed.com  immediately.

-- 
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] 2+ messages in thread

end of thread, other threads:[~2015-07-23 21:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-23 15:01 [PATCH 1/1] Avoid unresponsive TSC-30 touch screen Bernhard Bender
2015-07-23 21:03 ` Dmitry Torokhov

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