leds-lm3601x.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. * Texas Instruments - lm3601x Single-LED Flash Driver
  2. The LM3601X are ultra-small LED flash drivers that
  3. provide a high level of adjustability.
  4. Required properties:
  5. - compatible : Can be one of the following
  6. "ti,lm36010"
  7. "ti,lm36011"
  8. - reg : I2C slave address
  9. - #address-cells : 1
  10. - #size-cells : 0
  11. Required child properties:
  12. - reg : 0 - Indicates a IR mode
  13. 1 - Indicates a Torch (white LED) mode
  14. Required properties for flash LED child nodes:
  15. See Documentation/devicetree/bindings/leds/common.txt
  16. - flash-max-microamp : Range from 11mA - 1.5A
  17. - flash-max-timeout-us : Range from 40ms - 1600ms
  18. - led-max-microamp : Range from 2.4mA - 376mA
  19. Optional child properties:
  20. - label : see Documentation/devicetree/bindings/leds/common.txt
  21. Example:
  22. led-controller@64 {
  23. compatible = "ti,lm36010";
  24. #address-cells = <1>;
  25. #size-cells = <0>;
  26. reg = <0x64>;
  27. led@0 {
  28. reg = <1>;
  29. label = "white:torch";
  30. led-max-microamp = <376000>;
  31. flash-max-microamp = <1500000>;
  32. flash-max-timeout-us = <1600000>;
  33. };
  34. }
  35. For more product information please see the links below:
  36. http://www.ti.com/product/LM36010
  37. http://www.ti.com/product/LM36011