1* Semtech SX8654 I2C Touchscreen Controller 2 3Required properties: 4- compatible: must be "semtech,sx8654" 5- reg: i2c slave address 6- interrupts: touch controller interrupt 7 8Optional properties: 9 - reset-gpios: GPIO specification for the NRST input 10 11Example: 12 13 sx8654@48 { 14 compatible = "semtech,sx8654"; 15 reg = <0x48>; 16 interrupt-parent = <&gpio6>; 17 interrupts = <3 IRQ_TYPE_EDGE_FALLING>; 18 reset-gpios = <&gpio4 2 GPIO_ACTIVE_LOW>; 19 }; 20