2012-10-25 15:38:01 +08:00
|
|
|
* EETI eGalax Multiple Touch Controller
|
|
|
|
|
|
|
|
Required properties:
|
|
|
|
- compatible: must be "eeti,egalax_ts"
|
|
|
|
- reg: i2c slave address
|
|
|
|
- interrupt-parent: the phandle for the interrupt controller
|
|
|
|
- interrupts: touch controller interrupt
|
|
|
|
- wakeup-gpios: the gpio pin to be used for waking up the controller
|
2013-08-30 00:12:08 +08:00
|
|
|
and also used as irq pin
|
2012-10-25 15:38:01 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2017-11-09 00:27:48 +08:00
|
|
|
touchscreen@4 {
|
2012-10-25 15:38:01 +08:00
|
|
|
compatible = "eeti,egalax_ts";
|
|
|
|
reg = <0x04>;
|
|
|
|
interrupt-parent = <&gpio1>;
|
|
|
|
interrupts = <9 2>;
|
|
|
|
wakeup-gpios = <&gpio1 9 0>;
|
|
|
|
};
|