act8945a-regulator.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. status = "okay";
  21. active-semi,vsel-high;
  22. regulators {
  23. vdd_1v35_reg: REG_DCDC1 {
  24. regulator-name = "VDD_1V35";
  25. regulator-min-microvolt = <1350000>;
  26. regulator-max-microvolt = <1350000>;
  27. regulator-always-on;
  28. };
  29. vdd_1v2_reg: REG_DCDC2 {
  30. regulator-name = "VDD_1V2";
  31. regulator-min-microvolt = <1100000>;
  32. regulator-max-microvolt = <1300000>;
  33. regulator-always-on;
  34. };
  35. vdd_3v3_reg: REG_DCDC3 {
  36. regulator-name = "VDD_3V3";
  37. regulator-min-microvolt = <3300000>;
  38. regulator-max-microvolt = <3300000>;
  39. regulator-always-on;
  40. };
  41. vdd_fuse_reg: REG_LDO1 {
  42. regulator-name = "VDD_FUSE";
  43. regulator-min-microvolt = <2500000>;
  44. regulator-max-microvolt = <2500000>;
  45. regulator-always-on;
  46. };
  47. vdd_3v3_lp_reg: REG_LDO2 {
  48. regulator-name = "VDD_3V3_LP";
  49. regulator-min-microvolt = <3300000>;
  50. regulator-max-microvolt = <3300000>;
  51. regulator-always-on;
  52. };
  53. vdd_led_reg: REG_LDO3 {
  54. regulator-name = "VDD_LED";
  55. regulator-min-microvolt = <3300000>;
  56. regulator-max-microvolt = <3300000>;
  57. regulator-always-on;
  58. };
  59. vdd_sdhc_1v8_reg: REG_LDO4 {
  60. regulator-name = "VDD_SDHC_1V8";
  61. regulator-min-microvolt = <1800000>;
  62. regulator-max-microvolt = <1800000>;
  63. regulator-always-on;
  64. };
  65. };
  66. };