diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-10-03 15:26:34 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-10-20 18:40:27 +0200 |
commit | 514b2d9dbbd4408ba46c221990087229cdf9ca0b (patch) | |
tree | 65a5d3af13f6285dea2e122d64c64e3602bcd5af /drivers/power | |
parent | f339f09c47ccff3f953ef3a0fd1aaa5a7c360f58 (diff) | |
download | u-boot-imx-514b2d9dbbd4408ba46c221990087229cdf9ca0b.zip u-boot-imx-514b2d9dbbd4408ba46c221990087229cdf9ca0b.tar.gz u-boot-imx-514b2d9dbbd4408ba46c221990087229cdf9ca0b.tar.bz2 |
sunxi: power: Change A23/A33 aldo1 default voltage to 3.0V
On A23 / A33 boards aldo1 is used for VCC-IO and should be 3.0V, make this
the default.
Note that this does not cause any functional changes since all sun8i
board defconfig-s already contained: CONFIG_AXP_ALDO1_VOLT=3000 .
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index 81d2c39..80626b4 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -101,7 +101,8 @@ config AXP_DCDC5_VOLT config AXP_ALDO1_VOLT int "axp pmic (a)ldo1 voltage" depends on AXP221_POWER - default 0 + default 0 if MACH_SUN6I + default 3000 if MACH_SUN8I ---help--- Set the voltage (mV) to program the axp pmic aldo1 at, set to 0 to disable aldo1. |