sysmodule/overlay: re-add governor and fix global profile again

This commit is contained in:
souldbminersmwc
2025-12-06 11:06:32 -05:00
parent b6df7b3551
commit c5f6eef9fe
5 changed files with 114 additions and 45 deletions

View File

@@ -55,4 +55,6 @@ typedef struct
#define SYSCLK_FREQ_LIST_MAX 32
#define SYSCLK_GPU_BOOST_HZ 76800000
#define SYSCLK_CPU_BOOST_HZ 1785000000
#define SYSCLK_CPU_BOOST_HZ 1785000000
#define GLOBAL_PROFILE_ID 0xA111111111111111

View File

@@ -199,7 +199,7 @@ static inline const char* sysclkFormatConfigValue(SysClkConfigValue val, bool pr
case HocClkConfigValue_DockedGovernor:
return pretty ? "Docked Governor" : "governor_docked";
case HocClkConfigValue_HandheldGovernor:
return pretty ? "Handheld Governor" : "governor_handheld";
return pretty ? "Governor" : "governor";
case HocClkConfigValue_HandheldTDP:
return pretty ? "Handheld TDP" : "handheld_tdp";
@@ -337,7 +337,7 @@ static inline uint64_t sysclkDefaultConfigValue(SysClkConfigValue val)
switch(val)
{
case SysClkConfigValue_PollingIntervalMs:
return 300ULL;
return 50ULL;
case SysClkConfigValue_TempLogIntervalMs:
case SysClkConfigValue_FreqLogIntervalMs:
case SysClkConfigValue_PowerLogIntervalMs: