Remove dvfsOffset capping

This commit is contained in:
Lightos1
2026-02-12 21:22:53 +01:00
committed by GitHub
parent aa72176196
commit afddb963a9

View File

@@ -567,7 +567,6 @@ void ClockManager::Tick()
if(module == SysClkModule_MEM && Board::GetSocType() == SysClkSocType_Mariko && targetHz > oldHz && this->config->GetConfigValue(HorizonOCConfigValue_DVFSMode) == DVFSMode_Hijack) {
s32 dvfsOffset = this->config->GetConfigValue(HorizonOCConfigValue_DVFSOffset);
dvfsOffset = std::max(dvfsOffset, -50);
u32 vmin = Board::GetMinimumGpuVoltage(targetHz / 1000000) + dvfsOffset;
Board::PcvHijackDvfs(vmin);