]> Git Repo - J-u-boot.git/commitdiff
sunxi: power: Make all voltages configurable through Kconfig
authorHans de Goede <[email protected]>
Wed, 30 Sep 2015 13:22:42 +0000 (15:22 +0200)
committerHans de Goede <[email protected]>
Tue, 20 Oct 2015 16:40:27 +0000 (18:40 +0200)
On boards with axp221/223 pmic-s we already allow configuring most
voltages. Make the Kconfig options for these also apply to boards with
axp152 / axp209 pmic-s and extend them to configure all voltages.

The Kconfig defaults are chosen so that this commit does not introduce any
functional changes.

Signed-off-by: Hans de Goede <[email protected]>
Acked-by: Ian Campbell <[email protected]>
16 files changed:
board/sunxi/board.c
configs/CSQ_CS908_defconfig
configs/Colombus_defconfig
configs/Hummingbird_A31_defconfig
configs/MSI_Primo81_defconfig
configs/Mele_A1000G_quad_defconfig
configs/Mele_I7_defconfig
configs/Mele_M9_defconfig
configs/Sinlinx_SinA33_defconfig
configs/ga10h_v1_1_defconfig
configs/gt90h_v4_defconfig
configs/mixtile_loftq_defconfig
configs/q8_a23_tablet_800x480_defconfig
configs/q8_a33_tablet_1024x600_defconfig
configs/q8_a33_tablet_800x480_defconfig
drivers/power/Kconfig

index 096d12791cd29b0b521a5a820b0967e30e229e7d..55a880ebb7b4bbee29b8738739824ddeaa42c4a2 100644 (file)
@@ -440,36 +440,36 @@ void sunxi_board_init(void)
 
 #ifdef CONFIG_AXP152_POWER
        power_failed = axp152_init();
-       power_failed |= axp152_set_dcdc2(1400);
-       power_failed |= axp152_set_dcdc3(1500);
-       power_failed |= axp152_set_dcdc4(1250);
-       power_failed |= axp152_set_ldo2(3000);
+       power_failed |= axp152_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
+       power_failed |= axp152_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
+       power_failed |= axp152_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
+       power_failed |= axp152_set_ldo2(CONFIG_AXP_ALDO2_VOLT);
 #endif
 #ifdef CONFIG_AXP209_POWER
        power_failed |= axp209_init();
-       power_failed |= axp209_set_dcdc2(1400);
-       power_failed |= axp209_set_dcdc3(1250);
-       power_failed |= axp209_set_ldo2(3000);
-       power_failed |= axp209_set_ldo3(2800);
-       power_failed |= axp209_set_ldo4(2800);
+       power_failed |= axp209_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
+       power_failed |= axp209_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
+       power_failed |= axp209_set_ldo2(CONFIG_AXP_ALDO2_VOLT);
+       power_failed |= axp209_set_ldo3(CONFIG_AXP_ALDO3_VOLT);
+       power_failed |= axp209_set_ldo4(CONFIG_AXP_ALDO4_VOLT);
 #endif
 #ifdef CONFIG_AXP221_POWER
        power_failed = axp221_init();
-       power_failed |= axp221_set_dcdc1(CONFIG_AXP221_DCDC1_VOLT);
-       power_failed |= axp221_set_dcdc2(CONFIG_AXP221_DCDC2_VOLT);
-       power_failed |= axp221_set_dcdc3(1200); /* VDD-CPU */
-#ifdef CONFIG_MACH_SUN6I
-       power_failed |= axp221_set_dcdc4(1200); /* A31:VDD-SYS */
-#else
-       power_failed |= axp221_set_dcdc4(0);    /* A23:unused */
-#endif
-       power_failed |= axp221_set_dcdc5(1500); /* VCC-DRAM */
-       power_failed |= axp221_set_dldo1(CONFIG_AXP221_DLDO1_VOLT);
-       power_failed |= axp221_set_dldo4(CONFIG_AXP221_DLDO4_VOLT);
-       power_failed |= axp221_set_aldo1(CONFIG_AXP221_ALDO1_VOLT);
-       power_failed |= axp221_set_aldo2(CONFIG_AXP221_ALDO2_VOLT);
-       power_failed |= axp221_set_aldo3(CONFIG_AXP221_ALDO3_VOLT);
-       power_failed |= axp221_set_eldo(3, CONFIG_AXP221_ELDO3_VOLT);
+       power_failed |= axp221_set_dcdc1(CONFIG_AXP_DCDC1_VOLT);
+       power_failed |= axp221_set_dcdc2(CONFIG_AXP_DCDC2_VOLT);
+       power_failed |= axp221_set_dcdc3(CONFIG_AXP_DCDC3_VOLT);
+       power_failed |= axp221_set_dcdc4(CONFIG_AXP_DCDC4_VOLT);
+       power_failed |= axp221_set_dcdc5(CONFIG_AXP_DCDC5_VOLT);
+       power_failed |= axp221_set_aldo1(CONFIG_AXP_ALDO1_VOLT);
+       power_failed |= axp221_set_aldo2(CONFIG_AXP_ALDO2_VOLT);
+       power_failed |= axp221_set_aldo3(CONFIG_AXP_ALDO3_VOLT);
+       power_failed |= axp221_set_dldo1(CONFIG_AXP_DLDO1_VOLT);
+       power_failed |= axp221_set_dldo2(CONFIG_AXP_DLDO2_VOLT);
+       power_failed |= axp221_set_dldo3(CONFIG_AXP_DLDO3_VOLT);
+       power_failed |= axp221_set_dldo4(CONFIG_AXP_DLDO4_VOLT);
+       power_failed |= axp221_set_eldo(1, CONFIG_AXP_ELDO1_VOLT);
+       power_failed |= axp221_set_eldo(2, CONFIG_AXP_ELDO2_VOLT);
+       power_failed |= axp221_set_eldo(3, CONFIG_AXP_ELDO3_VOLT);
 #endif
 
        printf("DRAM:");
index 7c8eca883a9e88c20826bafd10f79b0636b29363..3ffd34eb5dc552b25b5dc0969930540698a3b6e2 100644 (file)
@@ -12,7 +12,7 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_MUSB_HOST=y
index 35f644a218fd0e1e91121dc6e5443ccc72a70e10..d680df1665d59c378a9c7a2f8b852a9739e02319 100644 (file)
@@ -22,6 +22,6 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC,RGMII"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_ALDO1_VOLT=3300
-CONFIG_AXP221_ELDO3_VOLT=1800
+CONFIG_AXP_ALDO1_VOLT=3300
+CONFIG_AXP_ELDO3_VOLT=1800
 CONFIG_USB_EHCI_HCD=y
index 35c746c96860d413cdebc2355dbf929fed8df201..02bcdbf56af5dd58cbc655a362e34e19687e86af 100644 (file)
@@ -14,5 +14,5 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPA(21)"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
index 9d667b7575a817a2e8019d537e99a8e57d5871d7..3d71bf50a7ece7f78f69367b5cd1d50fb0d2d474 100644 (file)
@@ -16,7 +16,7 @@ CONFIG_SPL=y
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DLDO1_VOLT=3300
+CONFIG_AXP_DLDO1_VOLT=3300
 CONFIG_USB_MUSB_HOST=y
 CONFIG_VIDEO_LCD_SSD2828_TX_CLK=27
 CONFIG_VIDEO_LCD_SSD2828_RESET="PA26"
index 5e31ef61c7205cff5a68b95515fd47ed468ca012..e81e6b6a4a46b5f55202ea979f6314915113e797 100644 (file)
@@ -12,9 +12,9 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_DCDC1_VOLT=3300
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_DLDO4_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_DCDC1_VOLT=3300
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_DLDO4_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_MUSB_HOST=y
index 774a92f3810034f726307fbe1b6197fbec5c3313..38cd845b45662ec5f04b6004407d877414af02bc 100644 (file)
@@ -12,8 +12,8 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_DCDC1_VOLT=3300
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_DLDO4_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_DCDC1_VOLT=3300
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_DLDO4_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
index b52e3c20abff4d019f4719b727ab3720221a229b..93a28a672e92a66a9ace63d36cffa20d042fd21e 100644 (file)
@@ -12,8 +12,8 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_DCDC1_VOLT=3300
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_DLDO4_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_DCDC1_VOLT=3300
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_DLDO4_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
index 720f3dc2d5e7e67ffbcec14b2bc0a5d091ad286e..79fa5bca7fcd771729b5f3c28a94efd52dfeb8a7 100644 (file)
@@ -9,4 +9,4 @@ CONFIG_SPL=y
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_ALDO1_VOLT=3000
index 417a89ce7093541d033aca5f7118751558811071..b288e828a4bcc038eb5a0c5016dc785371708a30 100644 (file)
@@ -21,7 +21,7 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=5"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3000
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_MUSB_HOST=y
index e9aecc39a3191cfea0c92e87babd15376b544041..e6be718b742f405e7157f15f968b058db0c7f2e5 100644 (file)
@@ -20,7 +20,7 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=5"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DCDC2_VOLT=1100
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_DCDC2_VOLT=1100
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3000
 CONFIG_USB_MUSB_HOST=y
index 26fc4ce610d13083c439efc257484252e21f5590..ce81309b0f1209d6e15c4a1efdf073ccf488430b 100644 (file)
@@ -13,5 +13,5 @@ CONFIG_SYS_EXTRA_OPTIONS="SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPA(21)"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
 CONFIG_ETH_DESIGNWARE=y
-CONFIG_AXP221_ALDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3300
 CONFIG_USB_EHCI_HCD=y
index 3a3afa5daa86fa127dcd76409a9688ee77b380c3..4993fa994dec25876ef401e8e1ae707eabc1fca3 100644 (file)
@@ -20,6 +20,6 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=5"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3000
 CONFIG_USB_MUSB_HOST=y
index fbbf1286a54184614c5c5b22d1aa476c994cbf94..d4279667fe1c9f958669b0da08e511bc98f81b9c 100644 (file)
@@ -20,6 +20,6 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=5"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3000
 CONFIG_USB_MUSB_HOST=y
index 8e8aa92adf808040dc1c5bab9aeab111cb2246fb..7f5cc4760b196a8cfaae3a8c9e67810b7393e7a4 100644 (file)
@@ -20,6 +20,6 @@ CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=5"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_FPGA is not set
-CONFIG_AXP221_DLDO1_VOLT=3300
-CONFIG_AXP221_ALDO1_VOLT=3000
+CONFIG_AXP_DLDO1_VOLT=3300
+CONFIG_AXP_ALDO1_VOLT=3000
 CONFIG_USB_MUSB_HOST=y
index 37a41a26ec68d0b7dea71909520b43aa786b37a6..befb8452a135456b180d7544f3e59898618e592f 100644 (file)
@@ -38,79 +38,165 @@ config AXP221_POWER
 
 endchoice
 
-config AXP221_DCDC1_VOLT
-       int "axp221 dcdc1 voltage"
+config AXP_DCDC1_VOLT
+       int "axp pmic dcdc1 voltage"
        depends on AXP221_POWER
-       default 3000
+       default 3000 if MACH_SUN6I || MACH_SUN8I
        ---help---
-       Set the voltage (mV) to program the axp221 dcdc1 at, set to 0 to
-       disable dcdc1. This is typically used as generic 3.3V IO voltage for
-       things like GPIO-s, sdcard interfaces, etc. On most boards this is
-       undervolted to 3.0V to safe battery.
+       Set the voltage (mV) to program the axp pmic dcdc1 at, set to 0 to
+       disable dcdc1. On A23 / A31 / A33 (axp221) boards dcdc1 is used for
+       generic 3.3V IO voltage for external devices like the lcd-panal and
+       sdcard interfaces, etc. On most boards dcdc1 is undervolted to 3.0V to
+       safe battery. On A31 devices dcdc1 is also used for VCC-IO.
+
+config AXP_DCDC2_VOLT
+       int "axp pmic dcdc2 voltage"
+       depends on AXP152_POWER || AXP209_POWER || AXP221_POWER
+       default 1400 if AXP152_POWER || AXP209_POWER
+       default 1200 if MACH_SUN6I || MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic dcdc2 at, set to 0 to
+       disable dcdc2.
+       On A10(s) / A13 / A20 boards dcdc2 is VDD-CPU and should be 1.4V.
+       On A31 boards dcdc2 is used for VDD-GPU and should be 1.2V.
+       On A23/A33 boards dcdc2 is used for VDD-SYS and should be 1.2V.
+
+config AXP_DCDC3_VOLT
+       int "axp pmic dcdc3 voltage"
+       depends on AXP152_POWER || AXP209_POWER || AXP221_POWER
+       default 1500 if AXP152_POWER
+       default 1250 if AXP209_POWER
+       default 1200 if MACH_SUN6I || MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic dcdc3 at, set to 0 to
+       disable dcdc3.
+       On A10(s) / A13 / A20 boards with an axp209 dcdc3 is VDD-INT-DLL and
+       should be 1.25V.
+       On A10s boards with an axp152 dcdc3 is VCC-DRAM and should be 1.5V.
+       On A23 / A31 / A33 boards dcdc3 is VDD-CPU and should be 1.2V.
+
+config AXP_DCDC4_VOLT
+       int "axp pmic dcdc4 voltage"
+       depends on AXP152_POWER || AXP221_POWER
+       default 1250 if AXP152_POWER
+       default 1200 if MACH_SUN6I
+       default 0 if MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic dcdc4 at, set to 0 to
+       disable dcdc4.
+       On A10s boards with an axp152 dcdc4 is VDD-INT-DLL and should be 1.25V.
+       On A31 boards dcdc4 is used for VDD-SYS and should be 1.2V.
+       On A23 / A33 boards dcdc4 is unused and should be disabled.
+
+config AXP_DCDC5_VOLT
+       int "axp pmic dcdc5 voltage"
+       depends on AXP221_POWER
+       default 1500 if MACH_SUN6I || MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic dcdc5 at, set to 0 to
+       disable dcdc5.
+       On A23 / A31 / A33 boards dcdc5 is VCC-DRAM and should be 1.5V.
 
-config AXP221_DCDC2_VOLT
-       int "axp221 dcdc2 voltage"
+config AXP_ALDO1_VOLT
+       int "axp pmic (a)ldo1 voltage"
        depends on AXP221_POWER
-       default 1200
+       default 0
+       ---help---
+       Set the voltage (mV) to program the axp pmic aldo1 at, set to 0 to
+       disable aldo1.
+       On A31 boards aldo1 is often used to power the wifi module.
+       On A23 / A33 boards aldo1 is used for VCC-IO and should be 3.0V.
+
+config AXP_ALDO2_VOLT
+       int "axp pmic (a)ldo2 voltage"
+       depends on AXP152_POWER || AXP209_POWER || AXP221_POWER
+       default 3000 if AXP152_POWER || AXP209_POWER
+       default 0 if MACH_SUN6I
+       default 2500 if MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic aldo2 at, set to 0 to
+       disable aldo2.
+       On A10(s) / A13 / A20 boards aldo2 is AVCC and should be 3.0V.
+       On A31 boards aldo2 is typically unused and should be disabled.
+       On A31 boards aldo2 may be used for LPDDR2 then it should be 1.8V.
+       On A23 / A33 boards aldo2 is used for VDD-DLL and should be 2.5V.
+
+config AXP_ALDO3_VOLT
+       int "axp pmic (a)ldo3 voltage"
+       depends on AXP209_POWER || AXP221_POWER
+       default 2800 if AXP209_POWER
+       default 3000 if MACH_SUN6I || MACH_SUN8I
+       ---help---
+       Set the voltage (mV) to program the axp pmic aldo3 at, set to 0 to
+       disable aldo3.
+       On A10(s) / A13 / A20 boards aldo3 should be 2.8V.
+       On A23 / A31 / A33 boards aldo3 is VCC-PLL and AVCC and should be 3.0V.
+
+config AXP_ALDO4_VOLT
+       int "axp pmic (a)ldo4 voltage"
+       depends on AXP209_POWER
+       default 2800 if AXP209_POWER
        ---help---
-       Set the voltage (mV) to program the axp221 dcdc2 at, set to 0 to
-       disable dcdc2. On A31 boards this is typically used for VDD-GPU,
-       on A23/A33 for VDD-SYS, this should normally be set to 1.2V.
+       Set the voltage (mV) to program the axp pmic aldo4 at, set to 0 to
+       disable aldo4.
+       On A10(s) / A13 / A20 boards aldo4 should be 2.8V.
 
-config AXP221_DLDO1_VOLT
-       int "axp221 dldo1 voltage"
+config AXP_DLDO1_VOLT
+       int "axp pmic dldo1 voltage"
        depends on AXP221_POWER
        default 0
        ---help---
-       Set the voltage (mV) to program the axp221 dldo1 at, set to 0 to
-       disable dldo1. On sun6i (A31) boards with ethernet this is often used
+       Set the voltage (mV) to program the axp pmic dldo1 at, set to 0 to
+       disable dldo1. On sun6i (A31) boards with ethernet dldo1 is often used
        to power the ethernet phy. On sun8i (A23) boards this is often used to
        power the wifi.
 
-config AXP221_DLDO4_VOLT
-       int "axp221 dldo4 voltage"
+config AXP_DLDO2_VOLT
+       int "axp pmic dldo2 voltage"
        depends on AXP221_POWER
        default 0
        ---help---
-       Set the voltage (mV) to program the axp221 dldo4 at, set to 0 to
-       disable dldo4.
+       Set the voltage (mV) to program the axp pmic dldo2 at, set to 0 to
+       disable dldo2.
 
-config AXP221_ALDO1_VOLT
-       int "axp221 aldo1 voltage"
+config AXP_DLDO3_VOLT
+       int "axp pmic dldo3 voltage"
        depends on AXP221_POWER
        default 0
        ---help---
-       Set the voltage (mV) to program the axp221 aldo1 at, set to 0 to
-       disable aldo1. On sun6i (A31) boards which have a wifi module this is
-       often used to power the wifi module.
+       Set the voltage (mV) to program the axp pmic dldo3 at, set to 0 to
+       disable dldo3.
 
-config AXP221_ALDO2_VOLT
-       int "axp221 aldo2 voltage"
+config AXP_DLDO4_VOLT
+       int "axp pmic dldo4 voltage"
        depends on AXP221_POWER
-       default 0 if MACH_SUN6I
-       default 2500 if MACH_SUN8I
+       default 0
+       ---help---
+       Set the voltage (mV) to program the axp pmic dldo4 at, set to 0 to
+       disable dldo4.
+
+config AXP_ELDO1_VOLT
+       int "axp pmic eldo1 voltage"
+       depends on AXP221_POWER
+       default 0
        ---help---
-       Set the voltage (mV) to program the axp221 aldo2 at, set to 0 to
-       disable aldo2. On sun6i (A31) boards this is typically unused and
-       should be disabled, if it is used for LPDDR2 it should be set to 1.8V.
-       On sun8i (A23) this is typically connected to VDD-DLL and must be set
-       to 2.5V.
+       Set the voltage (mV) to program the axp pmic eldo1 at, set to 0 to
+       disable eldo1.
 
-config AXP221_ALDO3_VOLT
-       int "axp221 aldo3 voltage"
+config AXP_ELDO2_VOLT
+       int "axp pmic eldo2 voltage"
        depends on AXP221_POWER
-       default 3000
+       default 0
        ---help---
-       Set the voltage (mV) to program the axp221 aldo3 at, set to 0 to
-       disable aldo3. This is typically connected to VCC-PLL and AVCC and
-       must be set to 3V.
+       Set the voltage (mV) to program the axp pmic eldo2 at, set to 0 to
+       disable eldo2.
 
-config AXP221_ELDO3_VOLT
-       int "axp221 eldo3 voltage"
+config AXP_ELDO3_VOLT
+       int "axp pmic eldo3 voltage"
        depends on AXP221_POWER
        default 0
        ---help---
-       Set the voltage (mV) to program the axp221 eldo3 at, set to 0 to
+       Set the voltage (mV) to program the axp pmic eldo3 at, set to 0 to
        disable eldo3. On some A31(s) tablets it might be used to supply
        1.2V for the SSD2828 chip (converter of parallel LCD interface
        into MIPI DSI).
This page took 0.064645 seconds and 4 git commands to generate.