act8945a-regulator.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Device-Tree bindings for regulators of Active-semi ACT8945A Multi-Function Device
  2. Required properties:
  3. - compatible: "active-semi,act8945a", please refer to ../mfd/act8945a.txt.
  4. Optional properties:
  5. - active-semi,vsel-high: Indicates if the VSEL pin is set to logic-high.
  6. If this property is missing, assume the VSEL pin is set to logic-low.
  7. Optional input supply properties:
  8. - vp1-supply: The input supply for REG_DCDC1
  9. - vp2-supply: The input supply for REG_DCDC2
  10. - vp3-supply: The input supply for REG_DCDC3
  11. - inl45-supply: The input supply for REG_LDO1 and REG_LDO2
  12. - inl67-supply: The input supply for REG_LDO3 and REG_LDO4
  13. Any standard regulator properties can be used to configure the single regulator.
  14. The valid names for regulators are:
  15. REG_DCDC1, REG_DCDC2, REG_DCDC3, REG_LDO1, REG_LDO2, REG_LDO3, REG_LDO4.
  16. Example:
  17. pmic@5b {
  18. compatible = "active-semi,act8945a";
  19. reg = <0x5b>;
  20. active-semi,vsel-high;
  21. regulators {
  22. vdd_1v35_reg: REG_DCDC1 {
  23. regulator-name = "VDD_1V35";
  24. regulator-min-microvolt = <1350000>;
  25. regulator-max-microvolt = <1350000>;
  26. regulator-always-on;
  27. };
  28. vdd_1v2_reg: REG_DCDC2 {
  29. regulator-name = "VDD_1V2";
  30. regulator-min-microvolt = <1100000>;
  31. regulator-max-microvolt = <1300000>;
  32. regulator-always-on;
  33. };
  34. vdd_3v3_reg: REG_DCDC3 {
  35. regulator-name = "VDD_3V3";
  36. regulator-min-microvolt = <3300000>;
  37. regulator-max-microvolt = <3300000>;
  38. regulator-always-on;
  39. };
  40. vdd_fuse_reg: REG_LDO1 {
  41. regulator-name = "VDD_FUSE";
  42. regulator-min-microvolt = <2500000>;
  43. regulator-max-microvolt = <2500000>;
  44. regulator-always-on;
  45. };
  46. vdd_3v3_lp_reg: REG_LDO2 {
  47. regulator-name = "VDD_3V3_LP";
  48. regulator-min-microvolt = <3300000>;
  49. regulator-max-microvolt = <3300000>;
  50. regulator-always-on;
  51. };
  52. vdd_led_reg: REG_LDO3 {
  53. regulator-name = "VDD_LED";
  54. regulator-min-microvolt = <3300000>;
  55. regulator-max-microvolt = <3300000>;
  56. regulator-always-on;
  57. };
  58. vdd_sdhc_1v8_reg: REG_LDO4 {
  59. regulator-name = "VDD_SDHC_1V8";
  60. regulator-min-microvolt = <1800000>;
  61. regulator-max-microvolt = <1800000>;
  62. regulator-always-on;
  63. };
  64. };
  65. };