max77686.txt 808 B

1234567891011121314151617181920212223242526272829303132333435
  1. MAXIM, MAX77686 pmic
  2. This device uses two drivers:
  3. - drivers/power/pmic/max77686.c (for parent device)
  4. - drivers/power/regulator/max77686.c (for child regulators)
  5. This file describes the binding info for the PMIC driver.
  6. To bind the regulators, please read the additional binding info:
  7. - doc/device-tree-bindings/regulator/max77686.txt
  8. Required properties:
  9. - compatible: "maxim,max77686"
  10. - reg = 0x9
  11. With those two properties, the pmic device can be used for read/write only.
  12. To bind each regulator, the optional regulators subnode should exists.
  13. Optional subnode:
  14. - voltage-regulators: subnode list of each device's regulator
  15. (see max77686.txt - regulator binding info)
  16. Example:
  17. max77686@09 {
  18. compatible = "maxim,max77686";
  19. reg = <0x09>;
  20. voltage-regulators {
  21. ldo1 {
  22. ...
  23. };
  24. ...
  25. };
  26. };