2015-03-06 16:49:38 -08:00
|
|
|
* Semtech SX8654 I2C Touchscreen Controller
|
|
|
|
|
|
|
|
Required properties:
|
2019-01-28 14:54:04 -08:00
|
|
|
- compatible: must be one of the following, depending on the model:
|
2019-01-28 14:58:27 -08:00
|
|
|
"semtech,sx8650"
|
2019-01-28 14:54:04 -08:00
|
|
|
"semtech,sx8654"
|
|
|
|
"semtech,sx8655"
|
|
|
|
"semtech,sx8656"
|
2015-03-06 16:49:38 -08:00
|
|
|
- reg: i2c slave address
|
|
|
|
- interrupts: touch controller interrupt
|
|
|
|
|
2019-01-28 14:49:37 -08:00
|
|
|
Optional properties:
|
|
|
|
- reset-gpios: GPIO specification for the NRST input
|
|
|
|
|
2015-03-06 16:49:38 -08:00
|
|
|
Example:
|
|
|
|
|
|
|
|
sx8654@48 {
|
|
|
|
compatible = "semtech,sx8654";
|
|
|
|
reg = <0x48>;
|
|
|
|
interrupt-parent = <&gpio6>;
|
|
|
|
interrupts = <3 IRQ_TYPE_EDGE_FALLING>;
|
2019-01-28 14:49:37 -08:00
|
|
|
reset-gpios = <&gpio4 2 GPIO_ACTIVE_LOW>;
|
2015-03-06 16:49:38 -08:00
|
|
|
};
|