mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
exynos5: Don't potentially undervoltage the CPU
For snow when chainloading u-boot the CPU seems to be running at full speed. The lower CPU voltage seems to be ok for u-boot, but when booting linux (bringing up all cores) I'm seeing random crashes. Bump the voltage up to a level that's safe for all cpu frequencies. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
9c796784aa
commit
701e740f59
1 changed files with 1 additions and 7 deletions
|
|
@ -123,13 +123,7 @@ int exynos_power_init(void)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
/*
|
||||
* This would normally be 1.3V, but since we are running slowly 1.1V
|
||||
* is enough. For spring it helps reduce CPU temperature and avoid
|
||||
* hangs with the case open. 1.1V is minimum voltage borderline for
|
||||
* chained bootloaders.
|
||||
*/
|
||||
ret = exynos_set_regulator("vdd_arm", 1100000);
|
||||
ret = exynos_set_regulator("vdd_arm", 1300000);
|
||||
if (ret)
|
||||
return ret;
|
||||
ret = exynos_set_regulator("vdd_int", 1012500);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue