Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1395605 > unrolled thread
| Started by | <mika.penttila@nextfour.com> |
|---|---|
| First post | 2016-05-06 07:30 +0200 |
| Last post | 2016-05-06 07:30 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH v5 0/2] Input: SiS 9200 family I2C touchscreen controller driver <mika.penttila@nextfour.com> - 2016-05-06 07:30 +0200
[PATCH v5 2/2] Input: SiS 9200 documentation parts. <mika.penttila@nextfour.com> - 2016-05-06 07:30 +0200
| From | <mika.penttila@nextfour.com> |
|---|---|
| Date | 2016-05-06 07:30 +0200 |
| Subject | [PATCH v5 0/2] Input: SiS 9200 family I2C touchscreen controller driver |
| Message-ID | <rvGuR-7uM-3@gated-at.bofh.it> |
Hi, Here are the v5 patches for SiS 9200 I2C multitouch controller. All the issues raised so far are addressed in this version. Rebased on 4.6.0-rc6. Thanks, Mika [PATCH v5 1/2] Input: Driver for SiS 9200 family I2C touchscreen controller. [PATCH v5 2/2] Input: SiS 9200 documentation parts. .../devicetree/bindings/input/touchscreen/sis_i2c.txt | 22 ++ Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + drivers/input/touchscreen/Kconfig | 12 + drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/sis_i2c.c | 461 ++++++++++++++++++++++++
[toc] | [next] | [standalone]
| From | <mika.penttila@nextfour.com> |
|---|---|
| Date | 2016-05-06 07:30 +0200 |
| Subject | [PATCH v5 2/2] Input: SiS 9200 documentation parts. |
| Message-ID | <rvGuS-7uM-11@gated-at.bofh.it> |
| In reply to | #1395605 |
From: Mika Penttilä <mika.penttila@nextfour.com>
Signed-off-by: Mika Penttilä <mika.penttila@nextfour.com>
Acked-by: Tammy Tseng <tammy_tseng@sis.com>
Acked-by: Yuger Yu <yuger_yu@sis.com>
---
.../bindings/input/touchscreen/sis_i2c.txt | 22 ++++++++++++++++++++++
.../devicetree/bindings/vendor-prefixes.txt | 1 +
2 files changed, 23 insertions(+)
create mode 100644 Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
diff --git a/Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt b/Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
new file mode 100644
index 0000000..af1bc7c
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
@@ -0,0 +1,22 @@
+* SiS I2C Multiple Touch Controller
+
+Required properties:
+- compatible: must be "sis,9200_ts"
+- reg: i2c slave address
+- interrupt-parent: the phandle for the interrupt controller
+- interrupts: touch controller interrupt
+- irq-gpio: the gpio pin used as irq pin
+- reset-gpio: the gpio pin used to reset the controller
+
+Example:
+
+ sis9255@5c {
+ compatible = "sis,9200_ts";
+ reg = <0x5c>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&pinctrl_sis>;
+ interrupt-parent = <&gpio3>;
+ interrupts = <19 2>;
+ irq-gpio = <&gpio3 19 0>;
+ reset-gpio = <&gpio2 30 0>;
+ };
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 86740d4..e307175 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -220,6 +220,7 @@ simtek
sii Seiko Instruments, Inc.
silergy Silergy Corp.
sirf SiRF Technology, Inc.
+sis Silicon Integrated Systems Corp.
sitronix Sitronix Technology Corporation
skyworks Skyworks Solutions, Inc.
smsc Standard Microsystems Corporation
--
1.9.1
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web