All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Rob Herring <robh@kernel.org>
Cc: Hans de Goede <hdegoede@redhat.com>,
	Maxime Ripard <maxime.ripard@free-electrons.com>,
	Chen-Yu Tsai <wens@csie.org>,
	linux-input@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	devicetree <devicetree@vger.kernel.org>,
	Wessel Blokzijl <wesselb94@gmail.com>,
	Siebren Vroegindeweij <siebren.vroegindeweij@gmail.com>,
	Robert Dolca <robert.dolca@intel.com>,
	Daniel Jansen <djaniboe@gmail.com>
Subject: Re: [PATCH v6] input: touchscreen: Add generic driver for Silead touchscreens
Date: Tue, 19 Jul 2016 11:44:25 -0700	[thread overview]
Message-ID: <20160719184425.GC19250@dtor-ws> (raw)
In-Reply-To: <20160716175605.GA4873@rob-hp-laptop>

On Sat, Jul 16, 2016 at 12:56:05PM -0500, Rob Herring wrote:
> On Mon, Jul 11, 2016 at 05:51:44PM +0200, Hans de Goede wrote:
> > From: Robert Dolca <robert.dolca@intel.com>
> > 
> > This driver adds support for Silead touchscreens. It has been tested
> > with GSL1680 and GSL3680 touch panels.
> > 
> > It supports ACPI and device tree enumeration. Screen resolution,
> > the maximum number of fingers supported and firmware name are
> > configurable.
> > 
> > Signed-off-by: Robert Dolca <robert.dolca@intel.com>
> > Signed-off-by: Daniel Jansen <djaniboe@gmail.com>
> > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> > ---
> > Changes in v6:
> > -Default to 5 fingers if max-fingers is not specified
> > -Improve devicetree binding doc: improve wake-gpios description, use
> >  "See touchscreen.txt" where applicable
> > ---
> >  .../bindings/input/touchscreen/silead_gsl1680.txt  |  36 ++
> >  drivers/input/touchscreen/Kconfig                  |  13 +
> >  drivers/input/touchscreen/Makefile                 |   1 +
> >  drivers/input/touchscreen/silead.c                 | 652 +++++++++++++++++++++
> >  4 files changed, 702 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> >  create mode 100644 drivers/input/touchscreen/silead.c
> > 
> > diff --git a/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> > new file mode 100644
> > index 0000000..1e58d37
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> > @@ -0,0 +1,36 @@
> > +* GSL 1680 touchscreen controller
> > +
> > +Required properties:
> > +- compatible		  : "silead,gsl1680"
> > +- reg			  : I2C slave address of the chip (0x40)
> > +- interrupt-parent	  : a phandle pointing to the interrupt controller
> > +			    serving the interrupt for this chip
> > +- interrupts		  : interrupt specification for the gsl1680 interrupt
> > +- power-gpios		  : Specification for the pin connected to the gsl1680's
> > +			    shutdown input. This needs to be driven high to take the
> > +			    gsl1680 out of its low power state
> > +- touchscreen-size-x	  : See touchscreen.txt
> > +- touchscreen-size-y	  : See touchscreen.txt
> > +- touchscreen-max-fingers : maximum number of fingers the touchscreen can detect
> 
> If you name it like a standard property, then it should be documented in 
> touchscreen.txt.

Actually this is very much Silead-specific wart, I'd rather we called it
"max-fingers" or "silead,max-fingers" to illustrate that it is not at
all a generic property.

Rob, will you be OK with it?

Thanks.

-- 
Dmitry

WARNING: multiple messages have this Message-ID (diff)
From: dmitry.torokhov@gmail.com (Dmitry Torokhov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6] input: touchscreen: Add generic driver for Silead touchscreens
Date: Tue, 19 Jul 2016 11:44:25 -0700	[thread overview]
Message-ID: <20160719184425.GC19250@dtor-ws> (raw)
In-Reply-To: <20160716175605.GA4873@rob-hp-laptop>

On Sat, Jul 16, 2016 at 12:56:05PM -0500, Rob Herring wrote:
> On Mon, Jul 11, 2016 at 05:51:44PM +0200, Hans de Goede wrote:
> > From: Robert Dolca <robert.dolca@intel.com>
> > 
> > This driver adds support for Silead touchscreens. It has been tested
> > with GSL1680 and GSL3680 touch panels.
> > 
> > It supports ACPI and device tree enumeration. Screen resolution,
> > the maximum number of fingers supported and firmware name are
> > configurable.
> > 
> > Signed-off-by: Robert Dolca <robert.dolca@intel.com>
> > Signed-off-by: Daniel Jansen <djaniboe@gmail.com>
> > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> > ---
> > Changes in v6:
> > -Default to 5 fingers if max-fingers is not specified
> > -Improve devicetree binding doc: improve wake-gpios description, use
> >  "See touchscreen.txt" where applicable
> > ---
> >  .../bindings/input/touchscreen/silead_gsl1680.txt  |  36 ++
> >  drivers/input/touchscreen/Kconfig                  |  13 +
> >  drivers/input/touchscreen/Makefile                 |   1 +
> >  drivers/input/touchscreen/silead.c                 | 652 +++++++++++++++++++++
> >  4 files changed, 702 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> >  create mode 100644 drivers/input/touchscreen/silead.c
> > 
> > diff --git a/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> > new file mode 100644
> > index 0000000..1e58d37
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
> > @@ -0,0 +1,36 @@
> > +* GSL 1680 touchscreen controller
> > +
> > +Required properties:
> > +- compatible		  : "silead,gsl1680"
> > +- reg			  : I2C slave address of the chip (0x40)
> > +- interrupt-parent	  : a phandle pointing to the interrupt controller
> > +			    serving the interrupt for this chip
> > +- interrupts		  : interrupt specification for the gsl1680 interrupt
> > +- power-gpios		  : Specification for the pin connected to the gsl1680's
> > +			    shutdown input. This needs to be driven high to take the
> > +			    gsl1680 out of its low power state
> > +- touchscreen-size-x	  : See touchscreen.txt
> > +- touchscreen-size-y	  : See touchscreen.txt
> > +- touchscreen-max-fingers : maximum number of fingers the touchscreen can detect
> 
> If you name it like a standard property, then it should be documented in 
> touchscreen.txt.

Actually this is very much Silead-specific wart, I'd rather we called it
"max-fingers" or "silead,max-fingers" to illustrate that it is not at
all a generic property.

Rob, will you be OK with it?

Thanks.

-- 
Dmitry

  reply	other threads:[~2016-07-19 18:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-11 15:51 [PATCH v6] input: touchscreen: Add generic driver for Silead touchscreens Hans de Goede
2016-07-11 15:51 ` Hans de Goede
2016-07-12  0:01 ` Dmitry Torokhov
2016-07-12  0:01   ` Dmitry Torokhov
2016-07-12  8:10   ` Hans de Goede
2016-07-12  8:10     ` Hans de Goede
2016-07-12 20:23     ` Dmitry Torokhov
2016-07-12 20:23       ` Dmitry Torokhov
2016-07-16 17:56 ` Rob Herring
2016-07-16 17:56   ` Rob Herring
2016-07-19 18:44   ` Dmitry Torokhov [this message]
2016-07-19 18:44     ` Dmitry Torokhov
2016-07-27 21:35     ` Dmitry Torokhov
2016-07-27 21:35       ` Dmitry Torokhov
2016-07-28 15:42       ` Hans de Goede
2016-07-28 15:42         ` Hans de Goede
2016-07-28 18:32       ` Rob Herring
2016-07-28 18:32         ` Rob Herring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160719184425.GC19250@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=djaniboe@gmail.com \
    --cc=hdegoede@redhat.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-input@vger.kernel.org \
    --cc=maxime.ripard@free-electrons.com \
    --cc=robert.dolca@intel.com \
    --cc=robh@kernel.org \
    --cc=siebren.vroegindeweij@gmail.com \
    --cc=wens@csie.org \
    --cc=wesselb94@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.