blob: 33b8bc1214d2044f180835d2defd7dd47e5e31f4 [file] [log] [blame]
Simon Glass14c251f2021-08-08 12:20:28 -06001menuconfig POWER
2 bool "Power"
3 default y
4 help
5 Enable support for power control in U-Boot. This includes support
6 for PMICs (Power-management Integrated Circuits) and some of the
7 features provided by PMICs. In particular, voltage regulators can
8 be used to enable/disable power and vary its voltage. That can be
9 useful in U-Boot to turn on boot peripherals and adjust CPU voltage
10 so that the clock speed can be increased. This enables the drivers
11 in drivers/power, drivers/power/pmic and drivers/power/regulator
12 as part of a build.
13
14if POWER
Przemyslaw Marczak4d9057e2015-04-20 20:07:41 +020015
Simon Glass9d8665b2021-08-08 12:20:27 -060016config POWER_LEGACY
17 bool "Legacy power support"
18 help
19 Note: This is a legacy option. Use DM_PMIC instead.
20
21 Enable support for power control in U-Boot. This includes support
22 for PMICs (Power-management Integrated Circuits) and some of the
23 features provided by PMICs. In particular, voltage regulators can
24 be used to enable/disable power and vary its voltage. That can be
25 useful in U-Boot to turn on boot peripherals and adjust CPU voltage
26 so that the clock speed can be increased. This enables the drivers
27 in drivers/power, drivers/power/pmic and drivers/power/regulator
28 as part of a build.
29
30config SPL_POWER_LEGACY
31 bool "Legacy power support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -040032 depends on SPL && !SPL_DM_PMIC
Simon Glass9d8665b2021-08-08 12:20:27 -060033 default y if POWER_LEGACY
34 help
35 Note: This is a legacy option. Use SPL_DM_PMIC instead.
36
37 Enable support for power control in SPL. This includes support
38 for PMICs (Power-management Integrated Circuits) and some of the
39 features provided by PMICs. In particular, voltage regulators can
40 be used to enable/disable power and vary its voltage. That can be
41 useful in SPL to turn on boot peripherals and adjust CPU voltage
42 so that the clock speed can be increased. This enables the drivers
43 in drivers/power, drivers/power/pmic and drivers/power/regulator
44 as part of a build.
45
Simon Glass6c6d88e2019-12-06 21:41:53 -070046source "drivers/power/acpi_pmc/Kconfig"
47
Stephen Warren61f5ddc2016-07-13 13:45:31 -060048source "drivers/power/domain/Kconfig"
49
Przemyslaw Marczak4d9057e2015-04-20 20:07:41 +020050source "drivers/power/pmic/Kconfig"
51
Przemyslaw Marczakaf41e8d2015-04-20 20:07:42 +020052source "drivers/power/regulator/Kconfig"
53
Hans de Goede1df44812015-09-30 15:12:30 +020054choice
55 prompt "Select Sunxi PMIC Variant"
56 depends on ARCH_SUNXI
57 default AXP209_POWER if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
Chen-Yu Tsai409677e2016-11-30 15:30:30 +080058 default AXP221_POWER if MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33 || MACH_SUN8I_R40
vishnupatekar813c7372015-11-29 01:07:21 +080059 default AXP818_POWER if MACH_SUN8I_A83T
Icenowy Zheng8c51c652020-10-26 22:19:34 +080060 default SUNXI_NO_PMIC if MACH_SUNXI_H3_H5 || MACH_SUN50I || MACH_SUN8I_V3S
Hans de Goede1df44812015-09-30 15:12:30 +020061
62config SUNXI_NO_PMIC
Masahiro Yamadaab650062016-08-12 10:26:50 +090063 bool "board without a pmic"
Hans de Goede1df44812015-09-30 15:12:30 +020064 ---help---
65 Select this for boards which do not use a PMIC.
66
67config AXP152_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +090068 bool "axp152 pmic support"
Hans de Goede1df44812015-09-30 15:12:30 +020069 depends on MACH_SUN5I
Jagan Teki735fb252018-02-14 22:28:30 +053070 select AXP_PMIC_BUS
Hans de Goedec286cdf2015-12-20 16:10:01 +010071 select CMD_POWEROFF
Hans de Goede1df44812015-09-30 15:12:30 +020072 ---help---
73 Select this to enable support for the axp152 pmic found on most
74 A10s boards.
75
76config AXP209_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +090077 bool "axp209 pmic support"
Icenowy Zheng8c51c652020-10-26 22:19:34 +080078 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I_V3S
Jagan Teki735fb252018-02-14 22:28:30 +053079 select AXP_PMIC_BUS
Michael van Slingerland467e92b2015-12-13 13:17:31 +010080 select CMD_POWEROFF
Hans de Goede1df44812015-09-30 15:12:30 +020081 ---help---
82 Select this to enable support for the axp209 pmic found on most
83 A10, A13 and A20 boards.
84
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +020085config AXP221_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +090086 bool "axp221 / axp223 pmic support"
Chen-Yu Tsai409677e2016-11-30 15:30:30 +080087 depends on MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33 || MACH_SUN8I_R40
Jagan Teki735fb252018-02-14 22:28:30 +053088 select AXP_PMIC_BUS
Hans de Goedefe4b71b2015-12-20 16:14:31 +010089 select CMD_POWEROFF
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +020090 ---help---
Hans de Goede1df44812015-09-30 15:12:30 +020091 Select this to enable support for the axp221/axp223 pmic found on most
92 A23 and A31 boards.
93
Jernej Skrabecfbd37d82021-01-11 21:11:33 +010094config AXP305_POWER
95 bool "axp305 pmic support"
96 depends on MACH_SUN50I_H616
97 select AXP_PMIC_BUS
98 select CMD_POWEROFF
99 ---help---
100 Select this to enable support for the axp305 pmic found on most
101 H616 boards.
102
Andre Przywarad17d0512023-07-30 01:11:01 +0100103config AXP313_POWER
104 bool "axp313 pmic support"
105 depends on MACH_SUN50I_H616
106 select AXP_PMIC_BUS
107 select CMD_POWEROFF
108 ---help---
109 Select this to enable support for the AXP313 PMIC found on some
110 H616 boards.
111
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800112config AXP809_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +0900113 bool "axp809 pmic support"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800114 depends on MACH_SUN9I
Jagan Teki735fb252018-02-14 22:28:30 +0530115 select AXP_PMIC_BUS
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800116 select CMD_POWEROFF
117 ---help---
118 Say y here to enable support for the axp809 pmic found on A80 boards.
119
vishnupatekar813c7372015-11-29 01:07:21 +0800120config AXP818_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +0900121 bool "axp818 pmic support"
vishnupatekar813c7372015-11-29 01:07:21 +0800122 depends on MACH_SUN8I_A83T
Jagan Teki735fb252018-02-14 22:28:30 +0530123 select AXP_PMIC_BUS
Chen-Yu Tsai51199262016-05-02 10:28:14 +0800124 select CMD_POWEROFF
vishnupatekar813c7372015-11-29 01:07:21 +0800125 ---help---
126 Say y here to enable support for the axp818 pmic found on
127 A83T dev board.
128
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100129config SY8106A_POWER
Masahiro Yamadaab650062016-08-12 10:26:50 +0900130 bool "SY8106A pmic support"
Andre Przywara7b82a222017-02-16 01:20:27 +0000131 depends on MACH_SUNXI_H3_H5
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100132 ---help---
133 Select this to enable support for the SY8106A pmic found on some
134 H3 boards.
135
Hans de Goede1df44812015-09-30 15:12:30 +0200136endchoice
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200137
Hans de Goede40117522015-09-30 15:22:42 +0200138config AXP_DCDC1_VOLT
139 int "axp pmic dcdc1 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800140 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800141 default 3300 if AXP818_POWER || MACH_SUN8I_R40
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800142 default 3000 if MACH_SUN6I || MACH_SUN8I || MACH_SUN9I
Hans de Goede1262a852014-12-13 14:12:06 +0100143 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200144 Set the voltage (mV) to program the axp pmic dcdc1 at, set to 0 to
145 disable dcdc1. On A23 / A31 / A33 (axp221) boards dcdc1 is used for
146 generic 3.3V IO voltage for external devices like the lcd-panal and
147 sdcard interfaces, etc. On most boards dcdc1 is undervolted to 3.0V to
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800148 save battery. On A31 devices dcdc1 is also used for VCC-IO. On A83T
149 dcdc1 is used for VCC-IO, nand, usb0, sd , etc. On A80 dcdc1 normally
150 powers some of the pingroups, NAND/eMMC, SD/MMC, and USB OTG.
Hans de Goede1262a852014-12-13 14:12:06 +0100151
Hans de Goede40117522015-09-30 15:22:42 +0200152config AXP_DCDC2_VOLT
153 int "axp pmic dcdc2 voltage"
Andre Przywarad17d0512023-07-30 01:11:01 +0100154 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP809_POWER || AXP818_POWER || AXP313_POWER
vishnupatekar813c7372015-11-29 01:07:21 +0800155 default 900 if AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200156 default 1400 if AXP152_POWER || AXP209_POWER
Andre Przywarad17d0512023-07-30 01:11:01 +0100157 default 1000 if AXP313_POWER
Hans de Goedef339f092015-10-03 15:21:53 +0200158 default 1200 if MACH_SUN6I
159 default 1100 if MACH_SUN8I
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800160 default 0 if MACH_SUN9I
Hans de Goede40117522015-09-30 15:22:42 +0200161 ---help---
162 Set the voltage (mV) to program the axp pmic dcdc2 at, set to 0 to
163 disable dcdc2.
164 On A10(s) / A13 / A20 boards dcdc2 is VDD-CPU and should be 1.4V.
165 On A31 boards dcdc2 is used for VDD-GPU and should be 1.2V.
Hans de Goedef339f092015-10-03 15:21:53 +0200166 On A23/A33 boards dcdc2 is used for VDD-SYS and should be 1.1V.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800167 On A80 boards dcdc2 powers the GPU and can be left off.
vishnupatekar813c7372015-11-29 01:07:21 +0800168 On A83T boards dcdc2 is used for VDD-CPUA(cluster 0) and should be 0.9V.
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800169 On R40 boards dcdc2 is VDD-CPU and should be 1.1V
Andre Przywarad17d0512023-07-30 01:11:01 +0100170 On boards using the AXP313 it's often VDD-CPU.
Hans de Goede40117522015-09-30 15:22:42 +0200171
172config AXP_DCDC3_VOLT
173 int "axp pmic dcdc3 voltage"
Andre Przywarad17d0512023-07-30 01:11:01 +0100174 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP809_POWER || AXP818_POWER || AXP313_POWER
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800175 default 900 if AXP809_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200176 default 1500 if AXP152_POWER
177 default 1250 if AXP209_POWER
Andre Przywarad17d0512023-07-30 01:11:01 +0100178 default 1100 if AXP313_POWER
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800179 default 1100 if MACH_SUN8I_R40
Hans de Goede40117522015-09-30 15:22:42 +0200180 default 1200 if MACH_SUN6I || MACH_SUN8I
181 ---help---
182 Set the voltage (mV) to program the axp pmic dcdc3 at, set to 0 to
183 disable dcdc3.
184 On A10(s) / A13 / A20 boards with an axp209 dcdc3 is VDD-INT-DLL and
185 should be 1.25V.
186 On A10s boards with an axp152 dcdc3 is VCC-DRAM and should be 1.5V.
187 On A23 / A31 / A33 boards dcdc3 is VDD-CPU and should be 1.2V.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800188 On A80 boards dcdc3 is used for VDD-CPUA(cluster 0) and should be 0.9V.
vishnupatekar813c7372015-11-29 01:07:21 +0800189 On A83T boards dcdc3 is used for VDD-CPUB(cluster 1) and should be 0.9V.
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800190 On R40 boards dcdc3 is VDD-SYS and VDD-GPU and should be 1.1V.
Andre Przywarad17d0512023-07-30 01:11:01 +0100191 On boards using the AXP313 it's often VDD-DRAM and should be 1.1V for LPDDR4.
Hans de Goede40117522015-09-30 15:22:42 +0200192
193config AXP_DCDC4_VOLT
194 int "axp pmic dcdc4 voltage"
Andre Przywaraffb02942021-06-27 01:13:09 +0100195 depends on AXP152_POWER || AXP221_POWER || AXP809_POWER || AXP305_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200196 default 1250 if AXP152_POWER
197 default 1200 if MACH_SUN6I
198 default 0 if MACH_SUN8I
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800199 default 900 if MACH_SUN9I
Jernej Skrabecfbd37d82021-01-11 21:11:33 +0100200 default 1500 if AXP305_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200201 ---help---
202 Set the voltage (mV) to program the axp pmic dcdc4 at, set to 0 to
203 disable dcdc4.
204 On A10s boards with an axp152 dcdc4 is VDD-INT-DLL and should be 1.25V.
205 On A31 boards dcdc4 is used for VDD-SYS and should be 1.2V.
206 On A23 / A33 boards dcdc4 is unused and should be disabled.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800207 On A80 boards dcdc4 powers VDD-SYS, HDMI, USB OTG and should be 0.9V.
vishnupatekar813c7372015-11-29 01:07:21 +0800208 On A83T boards dcdc4 is used for VDD-GPU.
Jernej Skrabecfbd37d82021-01-11 21:11:33 +0100209 On H616 boards dcdcd is used for VCC-DRAM.
Hans de Goede40117522015-09-30 15:22:42 +0200210
211config AXP_DCDC5_VOLT
212 int "axp pmic dcdc5 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800213 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
214 default 1500 if MACH_SUN6I || MACH_SUN8I || MACH_SUN9I
Hans de Goede7a0bbe62015-08-14 16:19:34 +0200215 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200216 Set the voltage (mV) to program the axp pmic dcdc5 at, set to 0 to
217 disable dcdc5.
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800218 On A23 / A31 / A33 / A80 / A83T / R40 boards dcdc5 is VCC-DRAM and
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800219 should be 1.5V, 1.35V if DDR3L is used.
Hans de Goede7a0bbe62015-08-14 16:19:34 +0200220
Hans de Goede40117522015-09-30 15:22:42 +0200221config AXP_ALDO1_VOLT
222 int "axp pmic (a)ldo1 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800223 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800224 default 0 if MACH_SUN6I || MACH_SUN8I_R40
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800225 default 1800 if MACH_SUN8I_A83T
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800226 default 3000 if MACH_SUN8I || MACH_SUN9I
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200227 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200228 Set the voltage (mV) to program the axp pmic aldo1 at, set to 0 to
229 disable aldo1.
230 On A31 boards aldo1 is often used to power the wifi module.
231 On A23 / A33 boards aldo1 is used for VCC-IO and should be 3.0V.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800232 On A80 boards aldo1 powers the USB hosts and should be 3.0V.
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800233 On A83T / H8 boards aldo1 is used for MIPI CSI, DSI, HDMI, EFUSE, and
234 should be 1.8V.
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200235
Hans de Goede40117522015-09-30 15:22:42 +0200236config AXP_ALDO2_VOLT
237 int "axp pmic (a)ldo2 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800238 depends on AXP152_POWER || AXP209_POWER || AXP221_POWER || AXP809_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200239 default 3000 if AXP152_POWER || AXP209_POWER
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800240 default 0 if MACH_SUN6I || MACH_SUN9I
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800241 default 1800 if MACH_SUN8I_A83T
Hans de Goedef7044492014-12-13 12:40:45 +0100242 default 2500 if MACH_SUN8I
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200243 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200244 Set the voltage (mV) to program the axp pmic aldo2 at, set to 0 to
245 disable aldo2.
246 On A10(s) / A13 / A20 boards aldo2 is AVCC and should be 3.0V.
247 On A31 boards aldo2 is typically unused and should be disabled.
248 On A31 boards aldo2 may be used for LPDDR2 then it should be 1.8V.
249 On A23 / A33 boards aldo2 is used for VDD-DLL and should be 2.5V.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800250 On A80 boards aldo2 powers PB pingroup and camera IO and can be left off.
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800251 On A83T / H8 boards aldo2 powers VDD-DLL, VCC18-PLL, CPVDD, VDD18-ADC,
252 LPDDR2, and the codec. It should be 1.8V.
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200253
Hans de Goede40117522015-09-30 15:22:42 +0200254config AXP_ALDO3_VOLT
255 int "axp pmic (a)ldo3 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800256 depends on AXP209_POWER || AXP221_POWER || AXP809_POWER || AXP818_POWER
257 default 0 if AXP209_POWER || MACH_SUN9I
Hans de Goede40117522015-09-30 15:22:42 +0200258 default 3000 if MACH_SUN6I || MACH_SUN8I
Oliver Schinagl5c7f10f2013-07-26 12:56:58 +0200259 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200260 Set the voltage (mV) to program the axp pmic aldo3 at, set to 0 to
261 disable aldo3.
262 On A10(s) / A13 / A20 boards aldo3 should be 2.8V.
Chen-Yu Tsai409677e2016-11-30 15:30:30 +0800263 On A23 / A31 / A33 / R40 boards aldo3 is VCC-PLL and AVCC and should
264 be 3.0V.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800265 On A80 boards aldo3 is normally not used.
Chen-Yu Tsaif3c50452016-01-12 14:42:40 +0800266 On A83T / H8 boards aldo3 is AVCC, VCC-PL, and VCC-LED, and should be
267 3.0V.
Siarhei Siamashka6906df12015-01-19 05:23:30 +0200268
Olliver Schinagl61436d52018-11-21 20:05:30 +0200269choice
270 prompt "axp pmic (a)ldo3 voltage rate control"
271 depends on AXP209_POWER
272 default AXP_ALDO3_VOLT_SLOPE_NONE
273 ---help---
274 The AXP can slowly ramp up voltage to reduce the inrush current when
275 changing voltages.
276 Note, this does not apply when enabling/disabling LDO3. See
277 "axp pmic (a)ldo3 inrush quirk" below to enable a slew rate to limit
278 inrush current on broken board designs.
279
280config AXP_ALDO3_VOLT_SLOPE_NONE
281 bool "No voltage slope"
282 ---help---
283 Tries to reach the next voltage setting near instantaneously. Measurements
284 indicate that this is about 0.0167 V/uS.
285
286config AXP_ALDO3_VOLT_SLOPE_16
287 bool "1.6 mV per uS"
288 ---help---
289 Increases the voltage by 1.6 mV per uS until the final voltage has
290 been reached. Note that the scaling is in 25 mV steps and thus
291 the slew rate in reality is about 25 mV/31.250 uS.
292
293config AXP_ALDO3_VOLT_SLOPE_08
294 bool "0.8 mV per uS"
295 ---help---
296 Increases the voltage by 0.8 mV per uS until the final voltage has
297 been reached. Note that the scaling is in 25 mV steps however and thus
298 the slew rate in reality is about 25 mV/15.625 uS.
299 This is the slowest supported rate.
300
301endchoice
302
Olliver Schinaglef526052018-11-21 20:05:31 +0200303config AXP_ALDO3_INRUSH_QUIRK
304 bool "axp pmic (a)ldo3 inrush quirk"
305 depends on AXP209_POWER
Olliver Schinaglef526052018-11-21 20:05:31 +0200306 ---help---
307 The reference design denotes a value of 4.7 uF for the output capacitor
308 of LDO3. Some boards have too high capacitance causing an inrush current
309 and resulting an AXP209 shutdown.
310
Hans de Goede40117522015-09-30 15:22:42 +0200311config AXP_ALDO4_VOLT
312 int "axp pmic (a)ldo4 voltage"
313 depends on AXP209_POWER
Hans de Goede02cc27c2015-10-03 15:29:24 +0200314 default 0 if AXP209_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200315 ---help---
316 Set the voltage (mV) to program the axp pmic aldo4 at, set to 0 to
317 disable aldo4.
318 On A10(s) / A13 / A20 boards aldo4 should be 2.8V.
319
320config AXP_DLDO1_VOLT
321 int "axp pmic dldo1 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800322 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
Siarhei Siamashka6906df12015-01-19 05:23:30 +0200323 default 0
324 ---help---
Hans de Goede40117522015-09-30 15:22:42 +0200325 Set the voltage (mV) to program the axp pmic dldo1 at, set to 0 to
326 disable dldo1. On sun6i (A31) boards with ethernet dldo1 is often used
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800327 to power the ethernet phy. On A23, A33 and A80 boards this is often
328 used to power the wifi.
Hans de Goede40117522015-09-30 15:22:42 +0200329
330config AXP_DLDO2_VOLT
331 int "axp pmic dldo2 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800332 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
333 default 3000 if MACH_SUN9I
Hans de Goede40117522015-09-30 15:22:42 +0200334 default 0
335 ---help---
336 Set the voltage (mV) to program the axp pmic dldo2 at, set to 0 to
337 disable dldo2.
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800338 On A80 boards dldo2 normally powers the PL pins and should be 3.0V.
Hans de Goede40117522015-09-30 15:22:42 +0200339
340config AXP_DLDO3_VOLT
341 int "axp pmic dldo3 voltage"
Chen-Yu Tsai0509efb2016-01-12 14:42:38 +0800342 depends on AXP221_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200343 default 0
344 ---help---
345 Set the voltage (mV) to program the axp pmic dldo3 at, set to 0 to
346 disable dldo3.
347
348config AXP_DLDO4_VOLT
349 int "axp pmic dldo4 voltage"
vishnupatekar813c7372015-11-29 01:07:21 +0800350 depends on AXP221_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200351 default 0
352 ---help---
353 Set the voltage (mV) to program the axp pmic dldo4 at, set to 0 to
354 disable dldo4.
355
356config AXP_ELDO1_VOLT
357 int "axp pmic eldo1 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800358 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200359 default 0
360 ---help---
361 Set the voltage (mV) to program the axp pmic eldo1 at, set to 0 to
362 disable eldo1.
363
364config AXP_ELDO2_VOLT
365 int "axp pmic eldo2 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800366 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
Hans de Goede40117522015-09-30 15:22:42 +0200367 default 0
368 ---help---
369 Set the voltage (mV) to program the axp pmic eldo2 at, set to 0 to
370 disable eldo2.
371
372config AXP_ELDO3_VOLT
373 int "axp pmic eldo3 voltage"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800374 depends on AXP221_POWER || AXP809_POWER || AXP818_POWER
375 default 3000 if MACH_SUN9I
Hans de Goede40117522015-09-30 15:22:42 +0200376 default 0
377 ---help---
378 Set the voltage (mV) to program the axp pmic eldo3 at, set to 0 to
Siarhei Siamashka6906df12015-01-19 05:23:30 +0200379 disable eldo3. On some A31(s) tablets it might be used to supply
380 1.2V for the SSD2828 chip (converter of parallel LCD interface
381 into MIPI DSI).
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800382 On A80 boards it powers the PM pingroup and should be 3.0V.
Przemyslaw Marczak4d9057e2015-04-20 20:07:41 +0200383
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800384config AXP_FLDO1_VOLT
385 int "axp pmic fldo1 voltage"
386 depends on AXP818_POWER
387 default 0 if MACH_SUN8I_A83T
388 ---help---
389 Set the voltage (mV) to program the axp pmic fldo1 at, set to 0 to
390 disable fldo1.
391 On A83T / H8 boards fldo1 is VCC-HSIC and should be 1.2V if HSIC is
392 used.
393
394config AXP_FLDO2_VOLT
Chen-Yu Tsaia6962532016-05-02 10:28:11 +0800395 int "axp pmic fldo2 voltage"
Chen-Yu Tsai38491d92016-03-30 00:26:48 +0800396 depends on AXP818_POWER
397 default 900 if MACH_SUN8I_A83T
398 ---help---
399 Set the voltage (mV) to program the axp pmic fldo2 at, set to 0 to
400 disable fldo2.
401 On A83T / H8 boards fldo2 is VCC-CPUS and should be 0.9V.
402
403config AXP_FLDO3_VOLT
404 int "axp pmic fldo3 voltage"
405 depends on AXP818_POWER
406 default 0
407 ---help---
408 Set the voltage (mV) to program the axp pmic fldo3 at, set to 0 to
409 disable fldo3.
410
Chen-Yu Tsai15278cc2016-05-02 10:28:12 +0800411config AXP_SW_ON
412 bool "axp pmic sw on"
Chen-Yu Tsai795857d2016-05-02 10:28:15 +0800413 depends on AXP809_POWER || AXP818_POWER
Chen-Yu Tsai15278cc2016-05-02 10:28:12 +0800414 ---help---
415 Enable to turn on axp pmic sw.
416
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100417config SY8106A_VOUT1_VOLT
418 int "SY8106A pmic VOUT1 voltage"
419 depends on SY8106A_POWER
420 default 1200
421 ---help---
422 Set the voltage (mV) to program the SY8106A pmic VOUT1. This
423 is typically used to power the VDD-CPU and should be 1200mV.
424 Values can range from 680mV till 1950mV.
425
Tom Rinifcd7ba62022-11-19 18:45:35 -0500426config TPS6586X_POWER
427 bool "Enable legacy driver for TI TPS6586x power management chip"
428
Adam Ford7815c702017-04-26 13:41:31 -0500429config TWL4030_POWER
430 depends on OMAP34XX
431 bool "Enable driver for TI TWL4030 power management chip"
Adam Forddf7fafd2017-05-13 07:02:24 -0500432 imply CMD_POWEROFF
Adam Ford7815c702017-04-26 13:41:31 -0500433 ---help---
434 The TWL4030 in a combination audio CODEC/power management with
435 GPIO and it is commonly used with the OMAP3 family of processors
436
Tom Rinifcd7ba62022-11-19 18:45:35 -0500437config TWL6030_POWER
438 depends on OMAP44XX
439 bool "Enable driver for TI TWL6030 power management chip"
440
Frank Wunderlich36b8b5d2019-11-22 15:32:24 +0100441config POWER_MT6323
442 bool "Poweroff driver for mediatek mt6323"
443 select CMD_POWEROFF
444 help
445 This adds poweroff driver for mt6323
446 this pmic is used on mt7623 / Bananapi R2
447
Tom Riniafe33782022-06-25 11:02:38 -0400448config PALMAS_POWER
449 bool "Palmas power support"
450 depends on OMAP54XX
451
Tom Rinid9feb832022-11-19 18:45:15 -0500452config POWER_FSL
453 bool "Power control (legacy) for Freescale / NXP platforms"
454 depends on POWER_LEGACY
455
Simon Glass9d8665b2021-08-08 12:20:27 -0600456config POWER_I2C
457 bool "I2C-based power control for legacy power"
458 depends on POWER_LEGACY
459 help
460 Enable this to use the I2C driver designed for the legacy PMIC
461 interface.
462
463 Not to be used for new designs and existing ones should be moved to
464 the new PMIC interface based on driver model.
465
Tom Rinid9feb832022-11-19 18:45:15 -0500466config POWER_SPI
467 bool "SPI-based power control for legacy power_fsl driver"
468 depends on POWER_FSL && !POWER_I2C
469
Simon Glass9d8665b2021-08-08 12:20:27 -0600470config SPL_POWER_I2C
471 bool "I2C-based power control for legacy power"
472 depends on SPL_POWER_LEGACY
473 default y if POWER_I2C
474 help
475 Enable this to use the I2C driver designed for the legacy PMIC
476 interface.
477
478 Not to be used for new designs and existing ones should be moved to
479 the new PMIC interface based on driver model.
480
Tom Rinid9feb832022-11-19 18:45:15 -0500481choice
482 prompt "PMIC chip"
483 default POWER_FSL_MC13892
484 depends on POWER_FSL && POWER_I2C
485
486config POWER_FSL_MC13892
487 bool "MC13892"
488
489config POWER_FSL_MC34704
490 bool "MC34704"
491
492endchoice
493
Simon Glass14c251f2021-08-08 12:20:28 -0600494endif