diff options
author | Tom Rini <trini@konsulko.com> | 2017-06-10 09:47:57 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-10 09:47:57 -0400 |
commit | 75fd49c836d9a1750c9b6d86c0511b990fbe9fa8 (patch) | |
tree | cb0e9010edb4dbc48230bf6fc031de9a101d42dd /board | |
parent | 56491f98d48921a57d1f13e3f91556a1b87de2f8 (diff) | |
parent | abf54bf978ed9932d69ee7f937012398d0d8d08f (diff) | |
download | u-boot-75fd49c836d9a1750c9b6d86c0511b990fbe9fa8.zip u-boot-75fd49c836d9a1750c9b6d86c0511b990fbe9fa8.tar.gz u-boot-75fd49c836d9a1750c9b6d86c0511b990fbe9fa8.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mmc
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/am43xx/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index 91a84cf..54f40e6 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -422,6 +422,13 @@ void scale_vcores_generic(u32 m) printf("%s failure\n", __func__); return; } + + /* Set DCDC3 (DDR) voltage */ + if (tps65218_voltage_update(TPS65218_DCDC3, + TPS65218_DCDC3_VOLT_SEL_1350MV)) { + printf("%s failure\n", __func__); + return; + } } void scale_vcores_idk(u32 m) |