summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMason Huo <mason.huo@starfivetech.com>2023-03-09 10:59:28 +0300
committerMason Huo <mason.huo@starfivetech.com>2023-03-09 11:21:32 +0300
commit2f68eec8b4838ac03a07ee27fe0c1ebfe17fedb0 (patch)
tree570dae9cd5aac154dc5f5377de7a4ec45211b41a /include
parentf7261333cb0e3e0c55e025b3069d655d745ef878 (diff)
downloadu-boot-2f68eec8b4838ac03a07ee27fe0c1ebfe17fedb0.tar.xz
board: starfive: jh7110: Add 1.1 & 1.02v max cpu voltage
Add two more binning IC types, and set add their max cpu voltage accordingly. Signed-off-by: Mason Huo <mason.huo@starfivetech.com>
Diffstat (limited to 'include')
-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" \