summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMason Huo <mason.huo@starfivetech.com>2023-04-07 04:34:08 +0300
committerMason Huo <mason.huo@starfivetech.com>2023-04-07 05:30:39 +0300
commitfcbb415e06b7fa8c8f525e4b07eb050daf8eb292 (patch)
tree4a48387659e47340760bc43697bd881fd2c50d91 /include
parentbd7c43e2d46699d79c290990b3c1fbec06cb0ea5 (diff)
downloadu-boot-fcbb415e06b7fa8c8f525e4b07eb050daf8eb292.tar.xz
board: starfive: jh7110: Modify cpu voltage set commands
Update the cpu voltage set commands per binning information from OTP. Signed-off-by: Mason Huo <mason.huo@starfivetech.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/starfive-evb.h30
1 files changed, 19 insertions, 11 deletions
diff --git a/include/configs/starfive-evb.h b/include/configs/starfive-evb.h
index ffe90264f2..82d0e842b9 100644
--- a/include/configs/starfive-evb.h
+++ b/include/configs/starfive-evb.h
@@ -120,20 +120,27 @@
"cpu_vol_1100_set=" \
"fdt set /opp-table-0/opp-1500000000 opp-microvolt <1100000>;\0"
+#define CPU_VOL_1120_SET \
+ "cpu_vol_1120_set=" \
+ "fdt set /opp-table-0/opp-1500000000 opp-microvolt <1120000>;\0"
+
#define CPU_VOL_SET \
- "cpu_vol_set=" \
- "if test ${cpu_max_vol} = 1100000; then " \
- "run cpu_vol_1100_set;" \
- "elif test ${cpu_max_vol} = 1080000; then " \
- "run cpu_vol_1080_set;" \
- "elif test ${cpu_max_vol} = 1060000; then " \
- "run cpu_vol_1060_set;" \
- "elif test ${cpu_max_vol} = 1020000; then " \
- "run cpu_vol_1020_set;" \
- "else " \
- "run cpu_vol_1040_set;" \
+ "cpu_vol_set=" \
+ "if test ${cpu_max_vol} = 1120000; then " \
+ "run cpu_vol_1120_set;" \
+ "elif test ${cpu_max_vol} = 1100000; then " \
+ "run cpu_vol_1100_set;" \
+ "elif test ${cpu_max_vol} = 1080000; then " \
+ "run cpu_vol_1080_set;" \
+ "elif test ${cpu_max_vol} = 1060000; then " \
+ "run cpu_vol_1060_set;" \
+ "elif test ${cpu_max_vol} = 1020000; then " \
+ "run cpu_vol_1020_set;" \
+ "else " \
+ "run cpu_vol_1040_set;" \
"fi; \0"
+
#define CHIPA_GMAC_SET \
"chipa_gmac_set=" \
"fdt set /soc/ethernet@16030000/ethernet-phy@0 tx_inverted_10 <0x1>;" \
@@ -174,6 +181,7 @@
CPU_VOL_1060_SET \
CPU_VOL_1080_SET \
CPU_VOL_1100_SET \
+ CPU_VOL_1120_SET \
CPU_VOL_SET \
"type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
"type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \