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

@@ -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,
),
];