rename uv table

This commit is contained in:
souldbminersmwc
2026-01-26 19:26:30 -05:00
parent 835189febc
commit aad126d611
3 changed files with 5 additions and 5 deletions

View File

@@ -327,7 +327,7 @@ volatile CustomizeTable C = {
{ 2703000, { 1838820, -36648, 113, }, { CPU_MAX_MAX_VOLT, } }, { 2703000, { 1838820, -36648, 113, }, { CPU_MAX_MAX_VOLT, } },
}, },
.marikoCpuDvfsTableHelios { .marikoCpuDvfsTableExtreme {
{ 204000, { 732856, -17335, 113, }, { } }, { 204000, { 732856, -17335, 113, }, { } },
{ 306000, { 760024, -18195, 113, }, { } }, { 306000, { 760024, -18195, 113, }, { } },
{ 408000, { 789258, -19055, 113, }, { } }, { 408000, { 789258, -19055, 113, }, { } },

View File

@@ -38,7 +38,7 @@ enum TableConfig: u32 {
DEFAULT_TABLE = 1, DEFAULT_TABLE = 1,
TBREAK_1581 = 2, TBREAK_1581 = 2,
TBREAK_1683 = 3, TBREAK_1683 = 3,
HELIOS_TABLE = 4, EXTREME_TABLE = 4,
}; };
using CustomizeCpuDvfsTable = pcv::cvb_entry_t[pcv::DvfsTableEntryLimit]; using CustomizeCpuDvfsTable = pcv::cvb_entry_t[pcv::DvfsTableEntryLimit];
@@ -114,7 +114,7 @@ typedef struct CustomizeTable {
CustomizeCpuDvfsTable marikoCpuDvfsTableSLT; CustomizeCpuDvfsTable marikoCpuDvfsTableSLT;
CustomizeCpuDvfsTable marikoCpuDvfsTable1581Tbreak; CustomizeCpuDvfsTable marikoCpuDvfsTable1581Tbreak;
CustomizeCpuDvfsTable marikoCpuDvfsTable1683Tbreak; CustomizeCpuDvfsTable marikoCpuDvfsTable1683Tbreak;
CustomizeCpuDvfsTable marikoCpuDvfsTableHelios; CustomizeCpuDvfsTable marikoCpuDvfsTableExtreme;
CustomizeGpuDvfsTable eristaGpuDvfsTable; CustomizeGpuDvfsTable eristaGpuDvfsTable;
CustomizeGpuDvfsTable eristaGpuDvfsTableSLT; CustomizeGpuDvfsTable eristaGpuDvfsTableSLT;

View File

@@ -309,8 +309,8 @@ namespace ams::ldr::oc::pcv {
customize_table = const_cast<cvb_entry_t *>(C.marikoCpuDvfsTable1581Tbreak); customize_table = const_cast<cvb_entry_t *>(C.marikoCpuDvfsTable1581Tbreak);
break; break;
} }
case HELIOS_TABLE: { case EXTREME_TABLE: {
customize_table = const_cast<cvb_entry_t *>(C.marikoCpuDvfsTableHelios); customize_table = const_cast<cvb_entry_t *>(C.marikoCpuDvfsTableExtreme);
break; break;
} }
case DEFAULT_TABLE: case DEFAULT_TABLE: