summaryrefslogtreecommitdiff
path: root/include/configs/starfive-evb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/configs/starfive-evb.h')
-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" \