revert back mem volt range

This commit is contained in:
hanabbi
2023-06-24 17:12:51 +09:00
parent 59389621f9
commit 4081b70829
2 changed files with 6 additions and 4 deletions

View File

@@ -98,12 +98,12 @@ void SafetyCheck() {
sValidator validators[] = {
{ C.commonCpuBoostClock, 1020'000, 3000'000, true },
{ C.commonEmcMemVolt, 1100'000, 1175'000 },
{ C.commonEmcMemVolt, 1100'000, 1250'000 },
{ C.eristaCpuMaxVolt, 1100, 1300 },
{ C.eristaEmcMaxClock, 1600'000, 2131'200 },
{ C.marikoCpuMaxVolt, 1100, 1300 },
{ C.marikoEmcMaxClock, 1600'000, 2400'000 },
{ C.marikoEmcVddqVolt, 570'000, 650'000 },
{ C.marikoEmcVddqVolt, 550'000, 650'000 },
{ eristaCpuDvfsMaxFreq, 1785'000, 3000'000 },
{ marikoCpuDvfsMaxFreq, 1785'000, 3000'000 },
{ eristaGpuDvfsMaxFreq, 768'000, 1536'000 },

View File

@@ -190,9 +190,10 @@ var CustTable: Array<CustEntry> = [
["Acceptable range: 1100000 ≤ x ≤ 1175000, and it should be divided evenly by 12500.",
"Erista Default (HOS): 1125000 (bootloader: 1100000)",
"Mariko Default: 1100000 (It will not work without sys-clk-OC)",
"Micron Official lpddr4(x) range: 1060mV~1170mV",
"Not enabled by default"],
0,
[1100_000, 1175_000],
[1100_000, 1250_000],
12500,
),
new CustEntry(
@@ -248,10 +249,11 @@ var CustTable: Array<CustEntry> = [
["Acceptable range: 570000 ≤ x ≤ 650000",
"Value should be divided evenly by 5000",
"Default: 600000",
"Micron Official lpddr4(x) range: 570mV~650mV",
"Not enabled by default.",
"This will not work without sys-clk-OC."],
0,
[570_000, 650_000],
[550_000, 650_000],
5000,
),
];