Re: [PATCH 4/4] Input: tsc2004 - Document ts2004 dt bindings

2015-11-03 Thread Michael Welling
On Tue, Nov 03, 2015 at 02:59:13PM -0800, Dmitry Torokhov wrote: > On Tue, Nov 03, 2015 at 09:41:17AM -0600, Michael Welling wrote: > > On Tue, Nov 03, 2015 at 09:31:10AM -0600, Rob Herring wrote: > > > On Tue, Nov 3, 2015 at 1:21 AM, Dmitry Torokhov > > > wrote: >

Re: [PATCH 1/4] Input: tsc2005 - Separate SPI and core functions

2015-11-03 Thread Michael Welling
On Mon, Nov 02, 2015 at 05:49:46PM -0800, Dmitry Torokhov wrote: > On Fri, Oct 30, 2015 at 07:41:23PM -0500, Michael Welling wrote: > > This patch separates the SPI functionality from core functionality > > that overlaps with the tsc2004. > > > > Prepares kernel for

Re: [PATCH 4/4] Input: tsc2004 - Document ts2004 dt bindings

2015-11-03 Thread Michael Welling
On Tue, Nov 03, 2015 at 09:31:10AM -0600, Rob Herring wrote: > On Tue, Nov 3, 2015 at 1:21 AM, Dmitry Torokhov > wrote: > > On Mon, Nov 02, 2015 at 02:50:29PM -0600, Michael Welling wrote: > >> On Mon, Nov 02, 2015 at 09:19:50AM -0600, Rob Herring wrote: > >

Re: [PATCH 4/4] Input: tsc2004 - Document ts2004 dt bindings

2015-11-02 Thread Michael Welling
On Mon, Nov 02, 2015 at 09:19:50AM -0600, Rob Herring wrote: > > +Required properties: > > + - compatible: "ti,tsc2004" > > + - interrupts: IRQ specifier > > + - vio-supply : Regulator specifier > > reg property? Rob, It appears that I missed this

[PATCH 2/4] Input: tsc200x-core - Rename functions and variables

2015-10-30 Thread Michael Welling
The functions, variables, and defines of the new tsc200x-core.c are renamed to tsc200x instead of tsc2005 avoid possible confusion. Signed-off-by: Michael Welling --- drivers/input/touchscreen/tsc2005.c | 2 +- drivers/input/touchscreen/tsc200x-core.c | 200

[PATCH v4 0/4] tsc2005 - Add support for tsc2004

2015-10-30 Thread Michael Welling
separate drivers with with common routines in tsc200x-core. v2: Fixes Kconfig based on report for 0-day build bot. Michael Welling (4): Input: tsc2005 - Seperate SPI and core functions Input: tsc200x-core - Rename functions and variables Input: tsc2004 - Add support for tsc2004 Input: tsc2004

[PATCH 3/4] Input: tsc2004 - Add support for tsc2004

2015-10-30 Thread Michael Welling
Adds support for the i2c based tsc2004. Signed-off-by: Michael Welling --- drivers/input/touchscreen/Kconfig | 13 ++ drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/tsc2004.c | 86 + 3 files changed, 100 insertions(+) create mode

[PATCH 4/4] Input: tsc2004 - Document ts2004 dt bindings

2015-10-30 Thread Michael Welling
Adds documentation for the devicetree bindings of the new tsc2004 driver. Signed-off-by: Michael Welling --- .../bindings/input/touchscreen/tsc2005.txt | 39 ++ 1 file changed, 39 insertions(+) diff --git a/Documentation/devicetree/bindings/input/touchscreen/tsc2005

[PATCH 1/4] Input: tsc2005 - Separate SPI and core functions

2015-10-30 Thread Michael Welling
This patch separates the SPI functionality from core functionality that overlaps with the tsc2004. Prepares kernel for new tsc2004 driver without much redundant code. Signed-off-by: Michael Welling --- drivers/input/touchscreen/Kconfig | 4 + drivers/input/touchscreen

Re: [PATCH v3] Input: tsc2005 - Add support for tsc2004

2015-10-29 Thread Michael Welling
Dmitry, On Thu, Oct 29, 2015 at 06:45:22PM -0700, Dmitry Torokhov wrote: > Hi Michael, > > On Wed, Oct 28, 2015 at 07:12:34PM -0500, Michael Welling wrote: > > Adds support for the i2c based tsc2004. > > > > Due to the overlapping functionality of the tsc2004 and tsc2

Re: [PATCH v3] Input: tsc2005 - Add support for tsc2004

2015-10-29 Thread Michael Welling
On Fri, Oct 30, 2015 at 09:39:05AM +0900, Mark Brown wrote: > On Thu, Oct 29, 2015 at 03:23:31PM -0700, Dmitry Torokhov wrote: > > > However, you have regmap in the driver core already. Mark, is it > > possible to have regmap API also allow doing raw underlying protocol > > transfer so that consum

Re: [PATCH v3] Input: tsc2005 - Add support for tsc2004

2015-10-29 Thread Michael Welling
On Thu, Oct 29, 2015 at 10:46:20PM +0100, Arnd Bergmann wrote: > On Thursday 29 October 2015 09:22:37 Michael Welling wrote: > > > > > > All errors (new ones prefixed by >>): > > > > > >drivers/built-in.o: In function `tsc2005_cmd': &

Re: [PATCH v3] Input: tsc2005 - Add support for tsc2004

2015-10-29 Thread Michael Welling
On Thu, Oct 29, 2015 at 03:25:34PM +0800, kbuild test robot wrote: > Hi Michael, > > [auto build test ERROR on input/next -- if it's inappropriate base, please > suggest rules for selecting the more suitable base] > > url: > https://github.com/0day-ci/linux/com

[PATCH v3] Input: tsc2005 - Add support for tsc2004

2015-10-28 Thread Michael Welling
Adds support for the i2c based tsc2004. Due to the overlapping functionality of the tsc2004 and tsc2005 the common code was moved to a core driver (tsc200x-core). Signed-off-by: Michael Welling --- v3: Splits the tsc2004 and tsc2005 into separate drivers with with common routines in tsc200x

Re: [PATCH v2] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
On Tue, Oct 27, 2015 at 10:41:52PM -0700, Dmitry Torokhov wrote: > On Wed, Oct 28, 2015 at 12:23:34AM -0500, Michael Welling wrote: > > On Tue, Oct 27, 2015 at 06:51:41PM -0700, Dmitry Torokhov wrote: > > > Hi Michael, > > > On Tue, Oct 27, 2015 at 07:17:01PM -

Re: [PATCH v2] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
On Wed, Oct 28, 2015 at 12:37:35PM +0800, kbuild test robot wrote: > Hi Michael, > > [auto build test ERROR on input/next -- if it's inappropriate base, please > suggest rules for selecting the more suitable base] > > url: > https://github.com/0day-ci/linux/com

Re: [PATCH v2] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
On Tue, Oct 27, 2015 at 06:51:41PM -0700, Dmitry Torokhov wrote: > Hi Michael, > On Tue, Oct 27, 2015 at 07:17:01PM -0500, Michael Welling wrote: > > Adds support for the i2c based tsc2004. Support was added to the tsc2005 > > driver > > due to the similarity of the devi

[PATCH v2] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
Adds support for the i2c based tsc2004. Support was added to the tsc2005 driver due to the similarity of the devices. Signed-off-by: Michael Welling --- v2: Fixes Kconfig based on report for 0-day build bot. .../bindings/input/touchscreen/tsc2004.txt | 38 drivers/input

Re: [PATCH] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
On Tue, Oct 27, 2015 at 03:36:43PM -0500, Michael Welling wrote: > Adds support for the i2c based tsc2004. Support was added to the tsc2005 > driver > due to the similarity of the devices. > It should be noted that the new TSC2004 I2C support was tested but I do not have a dev

[PATCH] Input: tsc2005 - Add support for tsc2004

2015-10-27 Thread Michael Welling
Adds support for the i2c based tsc2004. Support was added to the tsc2005 driver due to the similarity of the devices. Signed-off-by: Michael Welling --- .../bindings/input/touchscreen/tsc2004.txt | 38 drivers/input/touchscreen/Kconfig | 5 +- drivers/input

Re: [PATCH] input: ti_am335x_tsc: Add open delay parameter

2015-08-20 Thread Michael Welling
On Thu, Aug 20, 2015 at 05:41:30PM +0530, Vignesh R wrote: > > > On 08/19/2015 11:38 PM, Michael Welling wrote: > > On Wed, Aug 12, 2015 at 01:44:22PM -0500, Michael Welling wrote: > >> On Wed, Aug 12, 2015 at 11:56:36AM +0530, Vignesh R wrote: > >>&

Re: [PATCH] input: ti_am335x_tsc: Add open delay parameter

2015-08-19 Thread Michael Welling
On Wed, Aug 12, 2015 at 01:44:22PM -0500, Michael Welling wrote: > On Wed, Aug 12, 2015 at 11:56:36AM +0530, Vignesh R wrote: > > Hi Michael, > > > > + Dmitry > > > > On 08/12/2015 12:15 AM, Michael Welling wrote: > > > Adds a device tree paramete

Re: [PATCH] input: ti_am335x_tsc: Add open delay parameter

2015-08-12 Thread Michael Welling
On Wed, Aug 12, 2015 at 11:56:36AM +0530, Vignesh R wrote: > Hi Michael, > > + Dmitry > > On 08/12/2015 12:15 AM, Michael Welling wrote: > > Adds a device tree parameter to set the open delay on the touchscreen > > conversion steps. Increasing this parameter helps the

[PATCH] input: ti_am335x_tsc: Add open delay parameter

2015-08-11 Thread Michael Welling
Adds a device tree parameter to set the open delay on the touchscreen conversion steps. Increasing this parameter helps the touch accuracy on some screens. Signed-off-by: Michael Welling --- .../bindings/input/touchscreen/ti-tsc-adc.txt | 5 + drivers/input/touchscreen

Re: AM335x touchscreen issues

2015-05-27 Thread Michael Welling
On Wed, May 27, 2015 at 09:36:35AM +0530, Vignesh R wrote: > Hi Michael, > > On Wednesday 27 May 2015 04:36 AM, Michael Welling wrote: > > On Tue, May 26, 2015 at 10:31:32PM +, Cooper Jr., Franklin wrote: > >> > > [snip] > > > > > Perhaps there

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 10:31:32PM +, Cooper Jr., Franklin wrote: > > > > -Original Message- > > From: Michael Welling [mailto:mwellin...@gmail.com] On Behalf Of Michael > > Welling > > Sent: Tuesday, May 26, 2015 4:51 PM > > To: Griffis, Brad

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 10:25:01PM +, Griffis, Brad wrote: > > -Original Message- > > From: Michael Welling [mailto:mwellin...@gmail.com] On Behalf Of Michael > > Welling > > > > It seems to have something to do with the characteristic of the touchscreen

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 09:36:57PM +, Griffis, Brad wrote: > > > -Original Message- > > From: Cooper Jr., Franklin > > > -Original Message----- > > > From: Michael Welling [mailto:mwellin...@gmail.com] On Behalf Of > > > Michael Welling

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 09:34:10PM +, Cooper Jr., Franklin wrote: > > > > -Original Message- > > From: Michael Welling [mailto:mwellin...@gmail.com] On Behalf Of Michael > > Welling > > Sent: Tuesday, May 26, 2015 4:29 PM > > To: Cooper

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 09:15:53PM +, Cooper Jr., Franklin wrote: > Michael, > > Can you send me the output of ts_test_raw after you done a 5 or so touch down > and touch up events? In the output let me know at which point in the log that > the issue you observed has occurred. Please try to

Re: AM335x touchscreen issues

2015-05-26 Thread Michael Welling
On Tue, May 26, 2015 at 01:37:13PM -0500, Felipe Balbi wrote: > Hi, > > On Tue, May 26, 2015 at 01:11:57PM -0500, Michael Welling wrote: > > Greetings, > > > > I have been porting Linux to a new AM3554 based SoM and have found issues > > with the touchscreen re

AM335x touchscreen issues

2015-05-26 Thread Michael Welling
Greetings, I have been porting Linux to a new AM3554 based SoM and have found issues with the touchscreen reporting touch releases repeatedly to userspace without actually touching the screen when running ts_calibrate, ts_test or other graphical touchscreen applications. This started happening af

Re: TSC2004 driver

2014-08-06 Thread Michael Welling
On Wed, Aug 6, 2014 at 5:28 PM, Sebastian Reichel wrote: > Hi, > > On Wed, Aug 06, 2014 at 05:13:19PM -0500, Michael Welling wrote: >> The tsc2005 still needs devicetree conversion, so it is at least 2 >> patches away from where I can use it. > > TSC2005 DT sup

Re: TSC2004 driver

2014-08-06 Thread Michael Welling
On Wed, Aug 6, 2014 at 4:16 PM, Dmitry Torokhov wrote: > On Wed, Aug 06, 2014 at 10:33:18PM +0200, Joachim Eastwood wrote: >> On 6 August 2014 21:37, Dmitry Torokhov wrote: >> > Hi Michael, >> > >> > On Tue, Aug 05, 2014 at 12:06:40PM -0500, Michael Welling

TSC2004 driver

2014-08-05 Thread Michael Welling
The TSC2004 driver has yet to appear in the mainline kernel. We have been using the driver referenced here as provided by TI: https://www.mail-archive.com/linux-omap@vger.kernel.org/msg22018.html Are there any plans of supporting this device in the mainline kernel? Mysteriously a device tree ent