change mem volt range to reflect official limits

This commit is contained in:
hanabbi
2023-06-13 13:30:44 +09:00
parent 266f014a44
commit cb87ec8600
2 changed files with 6 additions and 6 deletions

View File

@@ -187,12 +187,12 @@ var CustTable: Array<CustEntry> = [
"EMC Vddq (Erista Only) & RAM Vdd2 Voltage in uV",
CustPlatform.All,
4,
["Acceptable range: 1100000 ≤ x ≤ 1250000, and it should be divided evenly by 12500.",
["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)",
"Not enabled by default"],
0,
[1100_000, 1250_000],
[1100_000, 1175_000],
12500,
),
new CustEntry(
@@ -244,13 +244,13 @@ var CustTable: Array<CustEntry> = [
"EMC Vddq (Mariko Only) Voltage in uV",
CustPlatform.Mariko,
4,
["Acceptable range: 550000 ≤ x ≤ 650000",
["Acceptable range: 570000 ≤ x ≤ 650000",
"Value should be divided evenly by 5000",
"Default: 600000",
"Not enabled by default.",
"This will not work without sys-clk-OC."],
0,
[550_000, 650_000],
[570_000, 650_000],
5000,
),
];