lp87565.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. TI LP87565 PMIC MFD driver
  2. Required properties:
  3. - compatible: "ti,lp87565", "ti,lp87565-q1"
  4. - reg: I2C slave address.
  5. - gpio-controller: Marks the device node as a GPIO Controller.
  6. - #gpio-cells: Should be two. The first cell is the pin number and
  7. the second cell is used to specify flags.
  8. See ../gpio/gpio.txt for more information.
  9. - xxx-in-supply: Phandle to parent supply node of each regulator
  10. populated under regulators node. xxx should match
  11. the supply_name populated in driver.
  12. Example:
  13. lp87565_pmic: pmic@60 {
  14. compatible = "ti,lp87565-q1";
  15. reg = <0x60>;
  16. gpio-controller;
  17. #gpio-cells = <2>;
  18. buck10-in-supply = <&vsys_3v3>;
  19. buck23-in-supply = <&vsys_3v3>;
  20. regulators: regulators {
  21. buck10_reg: buck10 {
  22. /* VDD_MPU */
  23. regulator-name = "buck10";
  24. regulator-min-microvolt = <850000>;
  25. regulator-max-microvolt = <1250000>;
  26. regulator-always-on;
  27. regulator-boot-on;
  28. };
  29. buck23_reg: buck23 {
  30. /* VDD_GPU */
  31. regulator-name = "buck23";
  32. regulator-min-microvolt = <850000>;
  33. regulator-max-microvolt = <1250000>;
  34. regulator-boot-on;
  35. regulator-always-on;
  36. };
  37. };
  38. };