mt6311-regulator.txt 898 B

1234567891011121314151617181920212223242526272829303132333435
  1. Mediatek MT6311 Regulator Driver
  2. Required properties:
  3. - compatible: "mediatek,mt6311-regulator"
  4. - reg: I2C slave address, usually 0x6b.
  5. - regulators: List of regulators provided by this controller. It is named
  6. to VDVFS and VBIASN.
  7. The definition for each of these nodes is defined using the standard binding
  8. for regulators at Documentation/devicetree/bindings/regulator/regulator.txt.
  9. The valid names for regulators are:
  10. BUCK:
  11. VDVFS
  12. LDO:
  13. VBIASN
  14. Example:
  15. mt6311: pmic@6b {
  16. compatible = "mediatek,mt6311-regulator";
  17. reg = <0x6b>;
  18. regulators {
  19. mt6311_vcpu_reg: VDVFS {
  20. regulator-name = "VDVFS";
  21. regulator-min-microvolt = < 600000>;
  22. regulator-max-microvolt = <1400000>;
  23. regulator-ramp-delay = <10000>;
  24. };
  25. mt6311_ldo_reg: VBIASN {
  26. regulator-name = "VBIASN";
  27. regulator-min-microvolt = <200000>;
  28. regulator-max-microvolt = <800000>;
  29. };
  30. };
  31. };