sx9500.txt 614 B

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