mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: input: add Raydium I2C touch bindings
@ 2016-05-17 15:32 jeffrey.lin
  2016-05-18 17:03 ` Rob Herring
  0 siblings, 1 reply; 4+ messages in thread
From: jeffrey.lin @ 2016-05-17 15:32 UTC (permalink / raw)
  To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	dmitry.torokhov, treding, djkurtz, drinkcat, ajaykumar.rs,
	devicetree, linux-kernel
  Cc: jeffrey.lin, roger.yang, KP.li, albert.shieh

Document the device tree binfings of Raydium I2C touch.

Signed-off-by: jeffrey.lin <jeffrey.lin@rad-ic.com>
---
 .../bindings/input/touchscreen/raydium_i2c_ts.txt    | 20 ++++++++++++++++++++
 .../devicetree/bindings/vendor-prefixes.txt          |  1 +
 2 files changed, 21 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/touchscreen/raydium_i2c_ts.txt

diff --git a/Documentation/devicetree/bindings/input/touchscreen/raydium_i2c_ts.txt b/Documentation/devicetree/bindings/input/touchscreen/raydium_i2c_ts.txt
new file mode 100644
index 0000000..52a7bf0
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/touchscreen/raydium_i2c_ts.txt
@@ -0,0 +1,20 @@
+Raydium I2C touchscreen
+
+Required properties:
+- compatible : must be "raydium,rm32380"
+- reg: The I2C address of the device
+- interrupt-parent: the phandle for the interrupt controller
+- interrupts: interrupt to which the chip is connected
+    See ../interrupt-controller/interrupts.txt
+Optional properties:
+- avdd-supply : analog power supply needed to power device
+- vccio-supply : IO Power source
+- reset-gpios : reset gpio the chip is connected to.
+
+Example:
+	raydium_i2c@39 {
+		compatible = "raydium,rm32380";
+		reg = <0x39>;
+		interrupt-parent = <&gpio>;
+		interrupts = <0x0 IRQ_TYPE_EDGE_FALLING>;
+	};
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 97e6504..e1e5b7c 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -127,6 +127,7 @@ radxa	Radxa
 raidsonic	RaidSonic Technology GmbH
 ralink	Mediatek/Ralink Technology Corp.
 ramtron	Ramtron International
+raydium Raydium Semiconductor Corp.
 realtek Realtek Semiconductor Corp.
 renesas	Renesas Electronics Corporation
 ricoh	Ricoh Co. Ltd.
-- 
2.1.2

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

* Re: [PATCH] dt-bindings: input: add Raydium I2C touch bindings
  2016-05-17 15:32 [PATCH] dt-bindings: input: add Raydium I2C touch bindings jeffrey.lin
@ 2016-05-18 17:03 ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2016-05-18 17:03 UTC (permalink / raw)
  To: jeffrey.lin
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, dmitry.torokhov,
	treding, djkurtz, drinkcat, ajaykumar.rs, devicetree,
	linux-kernel, jeffrey.lin, roger.yang, KP.li, albert.shieh

On Tue, May 17, 2016 at 11:32:14PM +0800, jeffrey.lin wrote:
> Document the device tree binfings of Raydium I2C touch.
> 
> Signed-off-by: jeffrey.lin <jeffrey.lin@rad-ic.com>
> ---
>  .../bindings/input/touchscreen/raydium_i2c_ts.txt    | 20 ++++++++++++++++++++
>  .../devicetree/bindings/vendor-prefixes.txt          |  1 +
>  2 files changed, 21 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/input/touchscreen/raydium_i2c_ts.txt

Acked-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH] dt-bindings: input: add Raydium I2C touch bindings
  2016-03-25  3:32 jeffrey.lin
@ 2016-03-25 15:06 ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2016-03-25 15:06 UTC (permalink / raw)
  To: jeffrey.lin
  Cc: pawel.moll, mark.rutland, ijc+devicetree, galak, dmitry.torokhov,
	treding, bleung, djkurtz, drinkcat, ajaykumar.rs, dusonlin,
	devicetree, linux-kernel, jeffrey.lin, roger.yang, KP.li,
	albert.shieh

On Fri, Mar 25, 2016 at 11:32:37AM +0800, jeffrey.lin wrote:
> Document the device tree binfings of Raydium I2C touch.
> 
> Signed-off-by: jeffrey.lin <jeffrey.lin@rad-ic.com>
> ---
>  .../devicetree/bindings/input/raydium_i2c_ts.txt     | 20 ++++++++++++++++++++
>  .../devicetree/bindings/vendor-prefixes.txt          |  1 +
>  2 files changed, 21 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/input/raydium_i2c_ts.txt

Acked-by: Rob Herring <robh@kernel.org>

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

* [PATCH] dt-bindings: input: add Raydium I2C touch bindings
@ 2016-03-25  3:32 jeffrey.lin
  2016-03-25 15:06 ` Rob Herring
  0 siblings, 1 reply; 4+ messages in thread
From: jeffrey.lin @ 2016-03-25  3:32 UTC (permalink / raw)
  To: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	dmitry.torokhov, treding, bleung, djkurtz, drinkcat,
	ajaykumar.rs, dusonlin, devicetree, linux-kernel
  Cc: jeffrey.lin, roger.yang, KP.li, albert.shieh

Document the device tree binfings of Raydium I2C touch.

Signed-off-by: jeffrey.lin <jeffrey.lin@rad-ic.com>
---
 .../devicetree/bindings/input/raydium_i2c_ts.txt     | 20 ++++++++++++++++++++
 .../devicetree/bindings/vendor-prefixes.txt          |  1 +
 2 files changed, 21 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/raydium_i2c_ts.txt

diff --git a/Documentation/devicetree/bindings/input/raydium_i2c_ts.txt b/Documentation/devicetree/bindings/input/raydium_i2c_ts.txt
new file mode 100644
index 0000000..52a7bf0
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/raydium_i2c_ts.txt
@@ -0,0 +1,20 @@
+Raydium I2C touchscreen
+
+Required properties:
+- compatible : must be "raydium,rm32380"
+- reg: The I2C address of the device
+- interrupt-parent: the phandle for the interrupt controller
+- interrupts: interrupt to which the chip is connected
+    See ../interrupt-controller/interrupts.txt
+Optional properties:
+- avdd-supply : analog power supply needed to power device
+- vccio-supply : IO Power source
+- reset-gpios : reset gpio the chip is connected to.
+
+Example:
+	raydium_i2c@39 {
+		compatible = "raydium,rm32380";
+		reg = <0x39>;
+		interrupt-parent = <&gpio>;
+		interrupts = <0x0 IRQ_TYPE_EDGE_FALLING>;
+	};
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index af49e0f..5b6224b 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -126,6 +126,7 @@ radxa	Radxa
 raidsonic	RaidSonic Technology GmbH
 ralink	Mediatek/Ralink Technology Corp.
 ramtron	Ramtron International
+raydium Raydium Semiconductor Corp.
 realtek Realtek Semiconductor Corp.
 renesas	Renesas Electronics Corporation
 ricoh	Ricoh Co. Ltd.
-- 
2.1.2

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

end of thread, other threads:[~2016-05-18 17:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-17 15:32 [PATCH] dt-bindings: input: add Raydium I2C touch bindings jeffrey.lin
2016-05-18 17:03 ` Rob Herring
  -- strict thread matches above, loose matches on Subject: below --
2016-03-25  3:32 jeffrey.lin
2016-03-25 15:06 ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®