isl9305.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Intersil ISL9305/ISL9305H voltage regulator
  2. Required properties:
  3. - compatible: "isil,isl9305" or "isil,isl9305h"
  4. - reg: I2C slave address, usually 0x68.
  5. - regulators: A node that houses a sub-node for each regulator within the
  6. device. Each sub-node is identified using the node's name, with valid
  7. values being "dcd1", "dcd2", "ldo1" and "ldo2". The content of each sub-node
  8. is defined by the standard binding for regulators; see regulator.txt.
  9. - VINDCD1-supply: A phandle to a regulator node supplying VINDCD1.
  10. VINDCD2-supply: A phandle to a regulator node supplying VINDCD2.
  11. VINLDO1-supply: A phandle to a regulator node supplying VINLDO1.
  12. VINLDO2-supply: A phandle to a regulator node supplying VINLDO2.
  13. Optional properties:
  14. - Per-regulator optional properties are defined in regulator.txt
  15. Example
  16. pmic: isl9305@68 {
  17. compatible = "isil,isl9305";
  18. reg = <0x68>;
  19. VINDCD1-supply = <&system_power>;
  20. VINDCD2-supply = <&system_power>;
  21. VINLDO1-supply = <&system_power>;
  22. VINLDO2-supply = <&system_power>;
  23. regulators {
  24. dcd1 {
  25. regulator-name = "VDD_DSP";
  26. regulator-always-on;
  27. };
  28. };
  29. };