blob: 10683a21d971eb9a06e817aa6437f6f9689315f4 [file] [log] [blame]
Przemyslaw Marczak9a8bc952015-04-20 20:07:41 +02001menu "Power"
2
3source "drivers/power/pmic/Kconfig"
4
Przemyslaw Marczak08edd002015-04-20 20:07:42 +02005source "drivers/power/regulator/Kconfig"
6
Hans de Goede70ce2c82015-09-30 15:12:30 +02007choice
8 prompt "Select Sunxi PMIC Variant"
9 depends on ARCH_SUNXI
10 default AXP209_POWER if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
Jens Kuskef9770722015-11-17 15:12:58 +010011 default AXP221_POWER if MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33
vishnupatekar91bce9c2015-11-29 01:07:21 +080012 default AXP818_POWER if MACH_SUN8I_A83T
Jens Kuskef9770722015-11-17 15:12:58 +010013 default SUNXI_NO_PMIC if MACH_SUN8I_H3
Hans de Goede70ce2c82015-09-30 15:12:30 +020014
15config SUNXI_NO_PMIC
16 boolean "board without a pmic"
17 ---help---
18 Select this for boards which do not use a PMIC.
19
20config AXP152_POWER
21 boolean "axp152 pmic support"
22 depends on MACH_SUN5I
Hans de Goeded728da12015-12-20 16:10:01 +010023 select CMD_POWEROFF
Hans de Goede70ce2c82015-09-30 15:12:30 +020024 ---help---
25 Select this to enable support for the axp152 pmic found on most
26 A10s boards.
27
28config AXP209_POWER
29 boolean "axp209 pmic support"
30 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
Michael van Slingerland8fb31fe2015-12-13 13:17:31 +010031 select CMD_POWEROFF
Hans de Goede70ce2c82015-09-30 15:12:30 +020032 ---help---
33 Select this to enable support for the axp209 pmic found on most
34 A10, A13 and A20 boards.
35
Oliver Schinagld3a558d2013-07-26 12:56:58 +020036config AXP221_POWER
Hans de Goede1dd334b2014-11-29 23:54:25 +010037 boolean "axp221 / axp223 pmic support"
Jens Kuskef9770722015-11-17 15:12:58 +010038 depends on MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33
Hans de Goede6391f0e2015-12-20 16:14:31 +010039 select CMD_POWEROFF
Oliver Schinagld3a558d2013-07-26 12:56:58 +020040 ---help---
Hans de Goede70ce2c82015-09-30 15:12:30 +020041 Select this to enable support for the axp221/axp223 pmic found on most
42 A23 and A31 boards.
43
vishnupatekar91bce9c2015-11-29 01:07:21 +080044config AXP818_POWER
45 boolean "axp818 pmic support"
46 depends on MACH_SUN8I_A83T
47 ---help---
48 Say y here to enable support for the axp818 pmic found on
49 A83T dev board.
50
Hans de Goede70ce2c82015-09-30 15:12:30 +020051endchoice
Oliver Schinagld3a558d2013-07-26 12:56:58 +020052
Hans de Goede04bfd412015-09-30 15:22:42 +020053config AXP_DCDC1_VOLT
54 int "axp pmic dcdc1 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +080055 depends on AXP221_POWER || AXP818_POWER
56 default 3300 if AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +020057 default 3000 if MACH_SUN6I || MACH_SUN8I
Hans de Goede78655482014-12-13 14:12:06 +010058 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +020059 Set the voltage (mV) to program the axp pmic dcdc1 at, set to 0 to
60 disable dcdc1. On A23 / A31 / A33 (axp221) boards dcdc1 is used for
61 generic 3.3V IO voltage for external devices like the lcd-panal and
62 sdcard interfaces, etc. On most boards dcdc1 is undervolted to 3.0V to
vishnupatekar91bce9c2015-11-29 01:07:21 +080063 safe battery. On A31 devices dcdc1 is also used for VCC-IO. On A83T
64 dcdc1 is used for VCC-IO, nand, usb0, sd , etc.
Hans de Goede78655482014-12-13 14:12:06 +010065
Hans de Goede04bfd412015-09-30 15:22:42 +020066config AXP_DCDC2_VOLT
67 int "axp pmic dcdc2 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +080068 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP818_POWER
69 default 900 if AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +020070 default 1400 if AXP152_POWER || AXP209_POWER
Hans de Goedecf96e3f2015-10-03 15:21:53 +020071 default 1200 if MACH_SUN6I
72 default 1100 if MACH_SUN8I
Hans de Goede04bfd412015-09-30 15:22:42 +020073 ---help---
74 Set the voltage (mV) to program the axp pmic dcdc2 at, set to 0 to
75 disable dcdc2.
76 On A10(s) / A13 / A20 boards dcdc2 is VDD-CPU and should be 1.4V.
77 On A31 boards dcdc2 is used for VDD-GPU and should be 1.2V.
Hans de Goedecf96e3f2015-10-03 15:21:53 +020078 On A23/A33 boards dcdc2 is used for VDD-SYS and should be 1.1V.
vishnupatekar91bce9c2015-11-29 01:07:21 +080079 On A83T boards dcdc2 is used for VDD-CPUA(cluster 0) and should be 0.9V.
Hans de Goede04bfd412015-09-30 15:22:42 +020080
81config AXP_DCDC3_VOLT
82 int "axp pmic dcdc3 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +080083 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP818_POWER
84 default 900 if AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +020085 default 1500 if AXP152_POWER
86 default 1250 if AXP209_POWER
87 default 1200 if MACH_SUN6I || MACH_SUN8I
88 ---help---
89 Set the voltage (mV) to program the axp pmic dcdc3 at, set to 0 to
90 disable dcdc3.
91 On A10(s) / A13 / A20 boards with an axp209 dcdc3 is VDD-INT-DLL and
92 should be 1.25V.
93 On A10s boards with an axp152 dcdc3 is VCC-DRAM and should be 1.5V.
94 On A23 / A31 / A33 boards dcdc3 is VDD-CPU and should be 1.2V.
vishnupatekar91bce9c2015-11-29 01:07:21 +080095 On A83T boards dcdc3 is used for VDD-CPUB(cluster 1) and should be 0.9V.
Hans de Goede04bfd412015-09-30 15:22:42 +020096
97config AXP_DCDC4_VOLT
98 int "axp pmic dcdc4 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +080099 depends on AXP152_POWER || AXP221_POWER || AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200100 default 1250 if AXP152_POWER
101 default 1200 if MACH_SUN6I
102 default 0 if MACH_SUN8I
103 ---help---
104 Set the voltage (mV) to program the axp pmic dcdc4 at, set to 0 to
105 disable dcdc4.
106 On A10s boards with an axp152 dcdc4 is VDD-INT-DLL and should be 1.25V.
107 On A31 boards dcdc4 is used for VDD-SYS and should be 1.2V.
108 On A23 / A33 boards dcdc4 is unused and should be disabled.
vishnupatekar91bce9c2015-11-29 01:07:21 +0800109 On A83T boards dcdc4 is used for VDD-GPU.
Hans de Goede04bfd412015-09-30 15:22:42 +0200110
111config AXP_DCDC5_VOLT
112 int "axp pmic dcdc5 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +0800113 depends on AXP221_POWER || AXP818_POWER
114 default 1800 if AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200115 default 1500 if MACH_SUN6I || MACH_SUN8I
116 ---help---
117 Set the voltage (mV) to program the axp pmic dcdc5 at, set to 0 to
118 disable dcdc5.
vishnupatekar91bce9c2015-11-29 01:07:21 +0800119 On A23 / A31 / A33 / A83T boards dcdc5 is VCC-DRAM and should be 1.5V,
120 1.8V for A83T.
Hans de Goede04bfd412015-09-30 15:22:42 +0200121
122config AXP_ALDO1_VOLT
123 int "axp pmic (a)ldo1 voltage"
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800124 depends on AXP221_POWER || AXP818_POWER
Hans de Goedef4da4c92015-10-03 15:26:34 +0200125 default 0 if MACH_SUN6I
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800126 default 1800 if MACH_SUN8I_A83T
Hans de Goedef4da4c92015-10-03 15:26:34 +0200127 default 3000 if MACH_SUN8I
Hans de Goede04bfd412015-09-30 15:22:42 +0200128 ---help---
129 Set the voltage (mV) to program the axp pmic aldo1 at, set to 0 to
130 disable aldo1.
131 On A31 boards aldo1 is often used to power the wifi module.
132 On A23 / A33 boards aldo1 is used for VCC-IO and should be 3.0V.
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800133 On A83T / H8 boards aldo1 is used for MIPI CSI, DSI, HDMI, EFUSE, and
134 should be 1.8V.
Hans de Goede04bfd412015-09-30 15:22:42 +0200135
136config AXP_ALDO2_VOLT
137 int "axp pmic (a)ldo2 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +0800138 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200139 default 3000 if AXP152_POWER || AXP209_POWER
140 default 0 if MACH_SUN6I
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800141 default 1800 if MACH_SUN8I_A83T
Hans de Goede04bfd412015-09-30 15:22:42 +0200142 default 2500 if MACH_SUN8I
Hans de Goedec6c47c22015-08-14 16:19:34 +0200143 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200144 Set the voltage (mV) to program the axp pmic aldo2 at, set to 0 to
145 disable aldo2.
146 On A10(s) / A13 / A20 boards aldo2 is AVCC and should be 3.0V.
147 On A31 boards aldo2 is typically unused and should be disabled.
148 On A31 boards aldo2 may be used for LPDDR2 then it should be 1.8V.
149 On A23 / A33 boards aldo2 is used for VDD-DLL and should be 2.5V.
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800150 On A83T / H8 boards aldo2 powers VDD-DLL, VCC18-PLL, CPVDD, VDD18-ADC,
151 LPDDR2, and the codec. It should be 1.8V.
Hans de Goedec6c47c22015-08-14 16:19:34 +0200152
Hans de Goede04bfd412015-09-30 15:22:42 +0200153config AXP_ALDO3_VOLT
154 int "axp pmic (a)ldo3 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +0800155 depends on AXP209_POWER || AXP221_POWER || AXP818_POWER
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800156 default 0 if AXP209_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200157 default 3000 if MACH_SUN6I || MACH_SUN8I
158 ---help---
159 Set the voltage (mV) to program the axp pmic aldo3 at, set to 0 to
160 disable aldo3.
161 On A10(s) / A13 / A20 boards aldo3 should be 2.8V.
162 On A23 / A31 / A33 boards aldo3 is VCC-PLL and AVCC and should be 3.0V.
Chen-Yu Tsaic05aa392016-01-12 14:42:40 +0800163 On A83T / H8 boards aldo3 is AVCC, VCC-PL, and VCC-LED, and should be
164 3.0V.
Hans de Goede04bfd412015-09-30 15:22:42 +0200165
166config AXP_ALDO4_VOLT
167 int "axp pmic (a)ldo4 voltage"
168 depends on AXP209_POWER
Hans de Goedea8c84912015-10-03 15:29:24 +0200169 default 0 if AXP209_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200170 ---help---
171 Set the voltage (mV) to program the axp pmic aldo4 at, set to 0 to
172 disable aldo4.
173 On A10(s) / A13 / A20 boards aldo4 should be 2.8V.
174
175config AXP_DLDO1_VOLT
176 int "axp pmic dldo1 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800177 depends on AXP221_POWER || AXP818_POWER
Hans de Goedebe4929c2014-12-13 14:02:38 +0100178 default 0
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200179 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200180 Set the voltage (mV) to program the axp pmic dldo1 at, set to 0 to
181 disable dldo1. On sun6i (A31) boards with ethernet dldo1 is often used
Hans de Goede75916ff2014-12-13 12:40:45 +0100182 to power the ethernet phy. On sun8i (A23) boards this is often used to
183 power the wifi.
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200184
Hans de Goede04bfd412015-09-30 15:22:42 +0200185config AXP_DLDO2_VOLT
186 int "axp pmic dldo2 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800187 depends on AXP221_POWER || AXP818_POWER
Hans de Goedebe4929c2014-12-13 14:02:38 +0100188 default 0
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200189 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200190 Set the voltage (mV) to program the axp pmic dldo2 at, set to 0 to
191 disable dldo2.
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200192
Hans de Goede04bfd412015-09-30 15:22:42 +0200193config AXP_DLDO3_VOLT
194 int "axp pmic dldo3 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800195 depends on AXP221_POWER || AXP818_POWER
Hans de Goedebe4929c2014-12-13 14:02:38 +0100196 default 0
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200197 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200198 Set the voltage (mV) to program the axp pmic dldo3 at, set to 0 to
199 disable dldo3.
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200200
Hans de Goede04bfd412015-09-30 15:22:42 +0200201config AXP_DLDO4_VOLT
202 int "axp pmic dldo4 voltage"
vishnupatekar91bce9c2015-11-29 01:07:21 +0800203 depends on AXP221_POWER || AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200204 default 0
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200205 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200206 Set the voltage (mV) to program the axp pmic dldo4 at, set to 0 to
207 disable dldo4.
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200208
Hans de Goede04bfd412015-09-30 15:22:42 +0200209config AXP_ELDO1_VOLT
210 int "axp pmic eldo1 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800211 depends on AXP221_POWER || AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200212 default 0
213 ---help---
214 Set the voltage (mV) to program the axp pmic eldo1 at, set to 0 to
215 disable eldo1.
216
217config AXP_ELDO2_VOLT
218 int "axp pmic eldo2 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800219 depends on AXP221_POWER || AXP818_POWER
Hans de Goede04bfd412015-09-30 15:22:42 +0200220 default 0
Oliver Schinagld3a558d2013-07-26 12:56:58 +0200221 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200222 Set the voltage (mV) to program the axp pmic eldo2 at, set to 0 to
223 disable eldo2.
Siarhei Siamashka7e4eb6c2015-01-19 05:23:30 +0200224
Hans de Goede04bfd412015-09-30 15:22:42 +0200225config AXP_ELDO3_VOLT
226 int "axp pmic eldo3 voltage"
Chen-Yu Tsai265015b2016-01-12 14:42:38 +0800227 depends on AXP221_POWER || AXP818_POWER
Siarhei Siamashka7e4eb6c2015-01-19 05:23:30 +0200228 default 0
229 ---help---
Hans de Goede04bfd412015-09-30 15:22:42 +0200230 Set the voltage (mV) to program the axp pmic eldo3 at, set to 0 to
Siarhei Siamashka7e4eb6c2015-01-19 05:23:30 +0200231 disable eldo3. On some A31(s) tablets it might be used to supply
232 1.2V for the SSD2828 chip (converter of parallel LCD interface
233 into MIPI DSI).
Przemyslaw Marczak9a8bc952015-04-20 20:07:41 +0200234
235endmenu