apds9960.txt 550 B

1234567891011121314151617181920212223
  1. * Avago APDS9960 gesture/RGB/ALS/proximity sensor
  2. http://www.avagotech.com/docs/AV02-4191EN
  3. Required properties:
  4. - compatible: must be "avago,apds9960"
  5. - reg: the I2c address of the sensor
  6. - interrupt-parent: should be the phandle for the interrupt controller
  7. - interrupts : the sole interrupt generated by the device
  8. Refer to interrupt-controller/interrupts.txt for generic interrupt client
  9. node bindings.
  10. Example:
  11. apds9960@39 {
  12. compatible = "avago,apds9960";
  13. reg = <0x39>;
  14. interrupt-parent = <&gpio1>;
  15. interrupts = <16 1>;
  16. };