tps6586x.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. TPS6586x family of regulators
  2. Required properties:
  3. - compatible: "ti,tps6586x"
  4. - reg: I2C slave address
  5. - interrupts: the interrupt outputs of the controller
  6. - #gpio-cells: number of cells to describe a GPIO
  7. - gpio-controller: mark the device as a GPIO controller
  8. - regulators: A node that houses a sub-node for each regulator within the
  9. device. Each sub-node is identified using the node's name (or the deprecated
  10. regulator-compatible property if present), with valid values listed below.
  11. The content of each sub-node is defined by the standard binding for
  12. regulators; see regulator.txt.
  13. sys, sm[0-2], ldo[0-9] and ldo_rtc
  14. - sys-supply: The input supply for SYS.
  15. - vin-sm0-supply: The input supply for the SM0.
  16. - vin-sm1-supply: The input supply for the SM1.
  17. - vin-sm2-supply: The input supply for the SM2.
  18. - vinldo01-supply: The input supply for the LDO1 and LDO2
  19. - vinldo23-supply: The input supply for the LDO2 and LDO3
  20. - vinldo4-supply: The input supply for the LDO4
  21. - vinldo678-supply: The input supply for the LDO6, LDO7 and LDO8
  22. - vinldo9-supply: The input supply for the LDO9
  23. Each regulator is defined using the standard binding for regulators.
  24. Note: LDO5 and LDO_RTC is supplied by SYS regulator internally and driver
  25. take care of making proper parent child relationship.
  26. Example:
  27. pmu: tps6586x@34 {
  28. compatible = "ti,tps6586x";
  29. reg = <0x34>;
  30. interrupts = <0 88 0x4>;
  31. #gpio-cells = <2>;
  32. gpio-controller;
  33. sys-supply = <&some_reg>;
  34. vin-sm0-supply = <&some_reg>;
  35. vin-sm1-supply = <&some_reg>;
  36. vin-sm2-supply = <&some_reg>;
  37. vinldo01-supply = <...>;
  38. vinldo23-supply = <...>;
  39. vinldo4-supply = <...>;
  40. vinldo678-supply = <...>;
  41. vinldo9-supply = <...>;
  42. regulators {
  43. sys_reg: sys {
  44. regulator-name = "vdd_sys";
  45. regulator-boot-on;
  46. regulator-always-on;
  47. };
  48. sm0_reg: sm0 {
  49. regulator-min-microvolt = < 725000>;
  50. regulator-max-microvolt = <1500000>;
  51. regulator-boot-on;
  52. regulator-always-on;
  53. };
  54. sm1_reg: sm1 {
  55. regulator-min-microvolt = < 725000>;
  56. regulator-max-microvolt = <1500000>;
  57. regulator-boot-on;
  58. regulator-always-on;
  59. };
  60. sm2_reg: sm2 {
  61. regulator-min-microvolt = <3000000>;
  62. regulator-max-microvolt = <4550000>;
  63. regulator-boot-on;
  64. regulator-always-on;
  65. };
  66. ldo0_reg: ldo0 {
  67. regulator-name = "PCIE CLK";
  68. regulator-min-microvolt = <3300000>;
  69. regulator-max-microvolt = <3300000>;
  70. };
  71. ldo1_reg: ldo1 {
  72. regulator-min-microvolt = < 725000>;
  73. regulator-max-microvolt = <1500000>;
  74. };
  75. ldo2_reg: ldo2 {
  76. regulator-min-microvolt = < 725000>;
  77. regulator-max-microvolt = <1500000>;
  78. };
  79. ldo3_reg: ldo3 {
  80. regulator-min-microvolt = <1250000>;
  81. regulator-max-microvolt = <3300000>;
  82. };
  83. ldo4_reg: ldo4 {
  84. regulator-min-microvolt = <1700000>;
  85. regulator-max-microvolt = <2475000>;
  86. };
  87. ldo5_reg: ldo5 {
  88. regulator-min-microvolt = <1250000>;
  89. regulator-max-microvolt = <3300000>;
  90. };
  91. ldo6_reg: ldo6 {
  92. regulator-min-microvolt = <1250000>;
  93. regulator-max-microvolt = <3300000>;
  94. };
  95. ldo7_reg: ldo7 {
  96. regulator-min-microvolt = <1250000>;
  97. regulator-max-microvolt = <3300000>;
  98. };
  99. ldo8_reg: ldo8 {
  100. regulator-min-microvolt = <1250000>;
  101. regulator-max-microvolt = <3300000>;
  102. };
  103. ldo9_reg: ldo9 {
  104. regulator-min-microvolt = <1250000>;
  105. regulator-max-microvolt = <3300000>;
  106. };
  107. };
  108. };