diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-10-03 15:21:53 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-10-20 18:40:27 +0200 |
commit | f339f09c47ccff3f953ef3a0fd1aaa5a7c360f58 (patch) | |
tree | e3174bf73c3a7da007b950f350c6e61f09fe3410 /drivers | |
parent | 6944aff1ca91e8cf2c373193982cbb0417b4d4cc (diff) | |
download | u-boot-imx-f339f09c47ccff3f953ef3a0fd1aaa5a7c360f58.zip u-boot-imx-f339f09c47ccff3f953ef3a0fd1aaa5a7c360f58.tar.gz u-boot-imx-f339f09c47ccff3f953ef3a0fd1aaa5a7c360f58.tar.bz2 |
sunxi: power: Change A23/A33 VDD-SYS default from 1.2V to 1.1V
Change the axp223 dcdc2 / VDD-SYS default from 1.2V to 1.1V, 1.1V is the
value recommended by Allwinner and is what most fex files specify.
This has been tested on a number of A23/A33 tablets including on an
A23 Ippo-q8h-v1.2 PCB tablet which has a fex file which specifies 1.2V
(which is where our original 1.2V default comes from).
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/power/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index befb845..81d2c39 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -53,13 +53,14 @@ 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 + default 1200 if MACH_SUN6I + default 1100 if 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. + On A23/A33 boards dcdc2 is used for VDD-SYS and should be 1.1V. config AXP_DCDC3_VOLT int "axp pmic dcdc3 voltage" |