blob: c54455db3becf20f5a69e5ad713a979b24be24f5 [file] [log] [blame]
Christoph Fritza5c8b112016-09-03 12:30:00 +02001Semtech'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
Christoph Fritza5c8b112016-09-03 12:30:00 +02006 - 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};