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