mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-18 06:33:43 -04:00
Add support for the Sitronix ST1633 touchscreen controller to the st1232 driver. A protocol spec can be found here: www.ampdisplay.com/documents/pdf/AM-320480B6TZQW-TC0H.pdf Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
27 lines
479 B
Plaintext
27 lines
479 B
Plaintext
* Sitronix st1232 or st1633 touchscreen controller
|
|
|
|
Required properties:
|
|
- compatible: must contain one of
|
|
* "sitronix,st1232"
|
|
* "sitronix,st1633"
|
|
- reg: I2C address of the chip
|
|
- interrupts: interrupt to which the chip is connected
|
|
|
|
Optional properties:
|
|
- gpios: a phandle to the reset GPIO
|
|
|
|
Example:
|
|
|
|
i2c@00000000 {
|
|
/* ... */
|
|
|
|
touchscreen@55 {
|
|
compatible = "sitronix,st1232";
|
|
reg = <0x55>;
|
|
interrupts = <2 0>;
|
|
gpios = <&gpio1 166 0>;
|
|
};
|
|
|
|
/* ... */
|
|
};
|