aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2020-02-14 09:05:10 +0200
committerLokesh Vutla <lokeshvutla@ti.com>2020-03-03 13:08:14 +0530
commit3e7b0aa1fd95f5c943161046fd615118d2ad6e24 (patch)
treefafc06fec2183689c27fc57233a05aecf1ac71c0 /drivers/misc
parent54e0ab4d8b02d911937be0dc67f3c2db29e6da51 (diff)
downloadu-boot-3e7b0aa1fd95f5c943161046fd615118d2ad6e24.zip
u-boot-3e7b0aa1fd95f5c943161046fd615118d2ad6e24.tar.gz
u-boot-3e7b0aa1fd95f5c943161046fd615118d2ad6e24.tar.bz2
power: mfd: k3_avs: update am65xx MPU_VDD voltage values
The latest data manual SPRSP08I –NOVEMBER 2017–REVISED DECEMBER 2019[1] for am65xx SoC states the new MPU nominal voltages to be 1.1V (OPP_NOM), 1.2V (OPP_OD) and 1.24V (OPP_TURBO). Update the nominal voltages in the K3 AVS driver to reflect this. [1] http://www.ti.com/lit/gpn/am6528 Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/k3_avs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/misc/k3_avs.c b/drivers/misc/k3_avs.c
index 47e4273..e4857dd 100644
--- a/drivers/misc/k3_avs.c
+++ b/drivers/misc/k3_avs.c
@@ -312,15 +312,15 @@ static struct vd_data am654_vd_data[] = {
.opp = AM6_OPP_NOM,
.opps = {
[AM6_OPP_NOM] = {
- .volt = 1000000,
+ .volt = 1100000,
.freq = 800000000,
},
[AM6_OPP_OD] = {
- .volt = 1100000,
+ .volt = 1200000,
.freq = 1000000000,
},
[AM6_OPP_TURBO] = {
- .volt = 1220000,
+ .volt = 1240000,
.freq = 1100000000,
},
},
@@ -332,15 +332,15 @@ static struct vd_data am654_vd_data[] = {
.clk_id = 0, /* ARM clock */
.opps = {
[AM6_OPP_NOM] = {
- .volt = 1000000,
+ .volt = 1100000,
.freq = 800000000,
},
[AM6_OPP_OD] = {
- .volt = 1100000,
+ .volt = 1200000,
.freq = 1000000000,
},
[AM6_OPP_TURBO] = {
- .volt = 1220000,
+ .volt = 1240000,
.freq = 1100000000,
},
},