1Semtech's SX9500 capacitive proximity button device driver 2 3Required properties: 4 - compatible: must be "semtech,sx9500" 5 - reg: i2c address where to find the device 6 - interrupts : the sole interrupt generated by the device 7 8 Refer to interrupt-controller/interrupts.txt for generic 9 interrupt client node bindings. 10 11Optional properties: 12 - reset-gpios: Reference to the GPIO connected to the device's active 13 low reset pin. 14 15Example: 16 17sx9500@28 { 18 compatible = "semtech,sx9500"; 19 reg = <0x28>; 20 interrupt-parent = <&gpio2>; 21 interrupts = <16 IRQ_TYPE_LEVEL_LOW>; 22 reset-gpios = <&gpio2 10 GPIO_ACTIVE_LOW>; 23}; 24