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 > <dmitry.torok...@gmail.com> wrote: > > On Mon, Nov 02, 2015 at 02:50:29PM -0600, Michael Welling wrote: > >> On Mon, Nov 02, 2015 at 09:19:50

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 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 > > > <dm

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 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 <mwell...@ieee.org> --- .../bindings/input/touchscreen/tsc2005.txt | 39 ++ 1 file changed, 39 insertions(+) diff --git a/Documentation/devicetree/bindings

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

2015-10-30 Thread Michael Welling
into 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 <mwell...@ieee.org> --- drivers/input/touchscreen/Kconfig | 13 ++ drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/tsc2004.c | 86 + 3 files change

[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 <mwell...@ieee.org> --- drivers/input/touchscreen/tsc2005.c | 2 +- drivers/input/touchscreen/tsc200x-core.c

[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 <mwell...@ieee.org> --- drivers/input/touchscreen/Kconfig | 4 + drivers

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/commits/

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

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

[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 <mwell...@ieee.org> --- v3: Splits the tsc2004 and tsc2005 into separate drivers with with

[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 <mwell...@ieee.org> --- .../bindings/input/touchscreen/tsc2004.txt | 38 drivers/input/touchscreen/Kconfig

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 h

[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 <mwell...@ieee.org> --- v2: Fixes Kconfig based on report for 0-day build bot. .../bindings/input/touchscreen/tsc2004.txt

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

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/commits/

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 1/2] iio: adc: mcp320x: Deprecated compatible strings with no vendor prefix

2015-10-25 Thread Michael Welling
On Sun, Oct 25, 2015 at 12:36:37PM +, Jonathan Cameron wrote: > Small point, Michael. Please add such acks below the the Author sign off. > Otherwise sometimes I miss them! Added it now for this one. Okay sorry about the misplacement. -- To unsubscribe from this list: send the line

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 parameter to set the open delay on the touchscreen conversion steps

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 touch accuracy on some screens

[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 mwell...@ieee.org --- .../bindings/input/touchscreen/ti-tsc-adc.txt | 5 + drivers/input

Re: [PATCH 2/4] iio: adc: ti-adc128s052: Add adc108s022 ID

2015-07-22 Thread Michael Welling
On Wed, Jul 22, 2015 at 06:04:22PM +0200, Denis Carikli wrote: Where is the commit log? https://www.kernel.org/doc/Documentation/SubmittingPatches Signed-off-by: Denis Carikli de...@eukrea.com --- drivers/iio/adc/Kconfig | 6 +++--- drivers/iio/adc/ti-adc128s052.c | 2 ++ 2 files

Re: [PATCH 1/4] iio: adc: mcp320x: Fix NULL pointer.

2015-07-22 Thread Michael Welling
On Wed, Jul 22, 2015 at 06:04:21PM +0200, Denis Carikli wrote: Without that fix, adc-chip_info is NULL in mcp320x_read_raw Signed-off-by: Denis Carikli de...@eukrea.com --- drivers/iio/adc/mcp320x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/iio/adc/mcp320x.c

Re: [PATCH 4/4] clk: si5351: Reset PLL after rate change

2015-04-30 Thread Michael Welling
mturque...@linaro.org Cc: Stephen Boyd sb...@codeaurora.org Cc: Jean-Francois Moine moin...@free.fr Cc: Michael Welling mwell...@ieee.org Cc: Russell King rmk+li...@arm.linux.org.uk Cc: devicetree@vger.kernel.org Cc: linux-...@vger.kernel.org Cc: linux-arm-ker...@lists.infradead.org Cc: linux-ker

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-17 Thread Michael Welling
On Fri, Apr 17, 2015 at 11:12:03AM +0200, Sebastian Hesselbarth wrote: On 17.04.2015 04:00, Michael Welling wrote: On Fri, Apr 17, 2015 at 01:23:50AM +0200, Sebastian Hesselbarth wrote: On 17.04.2015 00:09, Michael Welling wrote: On Thu, Apr 16, 2015 at 10:37:19PM +0200, Sebastian Hesselbarth

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-17 Thread Michael Welling
On Fri, Apr 17, 2015 at 11:18:33AM +0100, Russell King - ARM Linux wrote: On Fri, Apr 17, 2015 at 11:12:03AM +0200, Sebastian Hesselbarth wrote: On 17.04.2015 04:00, Michael Welling wrote: On Fri, Apr 17, 2015 at 01:23:50AM +0200, Sebastian Hesselbarth wrote: On 17.04.2015 00:09, Michael

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-16 Thread Michael Welling
On Thu, Apr 16, 2015 at 07:32:32AM +0300, Tero Kristo wrote: On 04/15/2015 11:51 PM, Michael Welling wrote: On Wed, Apr 15, 2015 at 01:45:53PM -0700, Mike Turquette wrote: On Wed, Apr 15, 2015 at 12:47 PM, Michael Welling mwell...@ieee.org wrote: On Wed, Apr 15, 2015 at 09:43:30PM +0300, Tero

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-16 Thread Michael Welling
On Thu, Apr 16, 2015 at 10:37:19PM +0200, Sebastian Hesselbarth wrote: On 16.04.2015 18:17, Michael Welling wrote: On Thu, Apr 16, 2015 at 07:32:32AM +0300, Tero Kristo wrote: On 04/15/2015 11:51 PM, Michael Welling wrote: On Wed, Apr 15, 2015 at 01:45:53PM -0700, Mike Turquette wrote: On Wed

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-16 Thread Michael Welling
On Fri, Apr 17, 2015 at 01:23:50AM +0200, Sebastian Hesselbarth wrote: On 17.04.2015 00:09, Michael Welling wrote: On Thu, Apr 16, 2015 at 10:37:19PM +0200, Sebastian Hesselbarth wrote: On 16.04.2015 18:17, Michael Welling wrote: On Thu, Apr 16, 2015 at 07:32:32AM +0300, Tero Kristo wrote

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-15 Thread Michael Welling
On Wed, Apr 15, 2015 at 09:34:48AM +0300, Tero Kristo wrote: On 04/15/2015 12:17 AM, Michael Welling wrote: Greetings, I have developed an AM3354 based SoM and it uses an external SI5351 clock generator to drive the clock inputs for an external duart and I2S audio master clock

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-15 Thread Michael Welling
On Wed, Apr 15, 2015 at 01:45:53PM -0700, Mike Turquette wrote: On Wed, Apr 15, 2015 at 12:47 PM, Michael Welling mwell...@ieee.org wrote: On Wed, Apr 15, 2015 at 09:43:30PM +0300, Tero Kristo wrote: On 04/15/2015 05:09 PM, Michael Welling wrote: On Wed, Apr 15, 2015 at 09:34:48AM +0300

Re: AM335x OMAP2 common clock external fixed-clock registration

2015-04-15 Thread Michael Welling
On Wed, Apr 15, 2015 at 09:43:30PM +0300, Tero Kristo wrote: On 04/15/2015 05:09 PM, Michael Welling wrote: On Wed, Apr 15, 2015 at 09:34:48AM +0300, Tero Kristo wrote: On 04/15/2015 12:17 AM, Michael Welling wrote: Greetings, I have developed an AM3354 based SoM and it uses an external

AM335x OMAP2 common clock external fixed-clock registration

2015-04-14 Thread Michael Welling
Greetings, I have developed an AM3354 based SoM and it uses an external SI5351 clock generator to drive the clock inputs for an external duart and I2S audio master clock. With the registration according to the documentation the reference clock is not being detected and hence the clock generator

Re: [Patch v6 0/2] gpio: add GPIO hogging mechanism

2015-02-19 Thread Michael Welling
On Wed, Feb 18, 2015 at 11:23:42AM -0600, Benoit Parrot wrote: Gentle ping. Is there any chance this will make it in 3.21? Benoit Is there a reason that the pin has to be hogged? Couldn't the pin be released after configuration for eventual use in the userspace? Parrot, Benoit

[PATCH] drivers: video: fbdev: atmel_lcdfb.c: Add ability to inverted backlight PWM.

2014-07-03 Thread Michael Welling
The code has a variable to change the polarity of the PWM backlight control but it was not being initialized. This patch adds a devicetree entry to set the variable if required. Signed-off-by: Michael Welling mwell...@ieee.org --- .../devicetree/bindings/video/atmel,lcdc.txt |1