tps6586x.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. Optional properties:
  24. - ti,system-power-controller: Telling whether or not this pmic is controlling
  25. the system power.
  26. Each regulator is defined using the standard binding for regulators.
  27. Note: LDO5 and LDO_RTC is supplied by SYS regulator internally and driver
  28. take care of making proper parent child relationship.
  29. Example:
  30. pmu: tps6586x@34 {
  31. compatible = "ti,tps6586x";
  32. reg = <0x34>;
  33. interrupts = <0 88 0x4>;
  34. #gpio-cells = <2>;
  35. gpio-controller;
  36. ti,system-power-controller;
  37. sys-supply = <&some_reg>;
  38. vin-sm0-supply = <&some_reg>;
  39. vin-sm1-supply = <&some_reg>;
  40. vin-sm2-supply = <&some_reg>;
  41. vinldo01-supply = <...>;
  42. vinldo23-supply = <...>;
  43. vinldo4-supply = <...>;
  44. vinldo678-supply = <...>;
  45. vinldo9-supply = <...>;
  46. regulators {
  47. sys_reg: sys {
  48. regulator-name = "vdd_sys";
  49. regulator-boot-on;
  50. regulator-always-on;
  51. };
  52. sm0_reg: sm0 {
  53. regulator-min-microvolt = < 725000>;
  54. regulator-max-microvolt = <1500000>;
  55. regulator-boot-on;
  56. regulator-always-on;
  57. };
  58. sm1_reg: sm1 {
  59. regulator-min-microvolt = < 725000>;
  60. regulator-max-microvolt = <1500000>;
  61. regulator-boot-on;
  62. regulator-always-on;
  63. };
  64. sm2_reg: sm2 {
  65. regulator-min-microvolt = <3000000>;
  66. regulator-max-microvolt = <4550000>;
  67. regulator-boot-on;
  68. regulator-always-on;
  69. };
  70. ldo0_reg: ldo0 {
  71. regulator-name = "PCIE CLK";
  72. regulator-min-microvolt = <3300000>;
  73. regulator-max-microvolt = <3300000>;
  74. };
  75. ldo1_reg: ldo1 {
  76. regulator-min-microvolt = < 725000>;
  77. regulator-max-microvolt = <1500000>;
  78. };
  79. ldo2_reg: ldo2 {
  80. regulator-min-microvolt = < 725000>;
  81. regulator-max-microvolt = <1500000>;
  82. };
  83. ldo3_reg: ldo3 {
  84. regulator-min-microvolt = <1250000>;
  85. regulator-max-microvolt = <3300000>;
  86. };
  87. ldo4_reg: ldo4 {
  88. regulator-min-microvolt = <1700000>;
  89. regulator-max-microvolt = <2475000>;
  90. };
  91. ldo5_reg: ldo5 {
  92. regulator-min-microvolt = <1250000>;
  93. regulator-max-microvolt = <3300000>;
  94. };
  95. ldo6_reg: ldo6 {
  96. regulator-min-microvolt = <1250000>;
  97. regulator-max-microvolt = <3300000>;
  98. };
  99. ldo7_reg: ldo7 {
  100. regulator-min-microvolt = <1250000>;
  101. regulator-max-microvolt = <3300000>;
  102. };
  103. ldo8_reg: ldo8 {
  104. regulator-min-microvolt = <1250000>;
  105. regulator-max-microvolt = <3300000>;
  106. };
  107. ldo9_reg: ldo9 {
  108. regulator-min-microvolt = <1250000>;
  109. regulator-max-microvolt = <3300000>;
  110. };
  111. };
  112. };