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.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/include/configs/starfive-evb.h b/include/configs/starfive-evb.h
index b9587ff043..d9f1e9aeb2 100644
--- a/include/configs/starfive-evb.h
+++ b/include/configs/starfive-evb.h
@@ -100,6 +100,10 @@
#define TYPE_GUID_LOADER2 "2E54B353-1271-4842-806F-E436D6AF6985"
#define TYPE_GUID_SYSTEM "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
+#define CPU_VOL_1020_SET \
+ "cpu_vol_1020_set=" \
+ "fdt set /opp-table-0/opp-1500000000 opp-microvolt <1020000>;\0"
+
#define CPU_VOL_1040_SET \
"cpu_vol_1040_set=" \
"fdt set /opp-table-0/opp-1500000000 opp-microvolt <1040000>;\0"
@@ -112,12 +116,20 @@
"cpu_vol_1080_set=" \
"fdt set /opp-table-0/opp-1500000000 opp-microvolt <1080000>;\0"
+#define CPU_VOL_1100_SET \
+ "cpu_vol_1100_set=" \
+ "fdt set /opp-table-0/opp-1500000000 opp-microvolt <1100000>;\0"
+
#define CPU_VOL_SET \
"cpu_vol_set=" \
- "if test ${cpu_max_vol} = 1080000; then " \
+ "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;" \
"fi; \0"
@@ -157,9 +169,11 @@
"ramdisk_addr_r=0x46100000\0" \
CHIPA_GMAC_SET \
CHIPA_SET \
+ CPU_VOL_1020_SET \
CPU_VOL_1040_SET \
CPU_VOL_1060_SET \
CPU_VOL_1080_SET \
+ CPU_VOL_1100_SET \
CPU_VOL_SET \
"type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
"type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \