1047 lines
41 KiB
C++
1047 lines
41 KiB
C++
/*
|
|
* Copyright (c) Souldbminer, Lightos_ and Horizon OC Contributors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
/* --------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* <p-sam@d3vs.net>, <natinusala@gmail.com>, <m4x@m4xw.net>
|
|
* wrote this file. As long as you retain this notice you can do whatever you
|
|
* want with this stuff. If you meet any of us some day, and you think this
|
|
* stuff is worth it, you can buy us a beer in return. - The sys-clk authors
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#include "clock_manager.h"
|
|
#include <cstring>
|
|
#include "file_utils.h"
|
|
#include "board.h"
|
|
#include "process_management.h"
|
|
#include "errors.h"
|
|
#include "ipc_service.h"
|
|
#include "kip.h"
|
|
#include <i2c.h>
|
|
#include "notification.h"
|
|
#include <display_refresh_rate.h>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <crc32.h>
|
|
|
|
#define HOSPPC_HAS_BOOST (hosversionAtLeast(7,0,0))
|
|
bool isGovernorEnabled = false; // to avoid thread messes
|
|
bool lastGovernorState = false;
|
|
bool hasChanged = true;
|
|
ClockManager *ClockManager::instance = NULL;
|
|
Thread governorTHREAD;
|
|
u32 initialConfigValues[SysClkConfigValue_EnumMax]; // initial config. used for safety checks
|
|
|
|
bool kipAvailable = false;
|
|
ClockManager *ClockManager::GetInstance()
|
|
{
|
|
return instance;
|
|
}
|
|
|
|
void ClockManager::Exit()
|
|
{
|
|
if (instance)
|
|
{
|
|
delete instance;
|
|
}
|
|
}
|
|
|
|
void ClockManager::Initialize()
|
|
{
|
|
if (!instance)
|
|
{
|
|
instance = new ClockManager();
|
|
}
|
|
}
|
|
|
|
ClockManager::ClockManager()
|
|
{
|
|
this->config = Config::CreateDefault();
|
|
this->context = new SysClkContext;
|
|
this->context->applicationId = 0;
|
|
this->context->profile = SysClkProfile_Handheld;
|
|
for (unsigned int module = 0; module < SysClkModule_EnumMax; module++)
|
|
{
|
|
this->context->freqs[module] = 0;
|
|
this->context->realFreqs[module] = 0;
|
|
this->context->overrideFreqs[module] = 0;
|
|
this->RefreshFreqTableRow((SysClkModule)module);
|
|
}
|
|
|
|
this->running = false;
|
|
this->lastTempLogNs = 0;
|
|
this->lastCsvWriteNs = 0;
|
|
|
|
this->rnxSync = new ReverseNXSync;
|
|
memset(&initialConfigValues, 0, sizeof(initialConfigValues));
|
|
this->GetKipData();
|
|
threadCreate(
|
|
&governorTHREAD,
|
|
ClockManager::GovernorThread,
|
|
this,
|
|
NULL,
|
|
0x2000,
|
|
0x3F,
|
|
-2
|
|
);
|
|
|
|
threadStart(&governorTHREAD);
|
|
|
|
for(int i = 0; i < HorizonOCSpeedo_EnumMax; i++) {
|
|
this->context->speedos[i] = Board::getSpeedo((HorizonOCSpeedo)i);
|
|
this->context->iddq[i] = Board::getIDDQ((HorizonOCSpeedo)i);
|
|
}
|
|
|
|
this->context->dramID = Board::GetDramID();
|
|
this->context->isDram8GB = Board::IsDram8GB();
|
|
}
|
|
|
|
|
|
void ClockManager::FixCpuBug() {
|
|
u32 targetHz = 0;
|
|
u32 maxHz = 0;
|
|
u32 nearestHz = 0;
|
|
|
|
// ResetToStockClocks();
|
|
|
|
targetHz = this->context->overrideFreqs[SysClkModule_CPU];
|
|
if (!targetHz) {
|
|
targetHz = this->config->GetAutoClockHz(this->context->applicationId, SysClkModule_CPU, this->context->profile, false);
|
|
if(!targetHz)
|
|
targetHz = this->config->GetAutoClockHz(GLOBAL_PROFILE_ID, SysClkModule_CPU, this->context->profile, false);
|
|
}
|
|
|
|
if (targetHz) {
|
|
maxHz = this->GetMaxAllowedHz(SysClkModule_CPU, this->context->profile);
|
|
nearestHz = this->GetNearestHz(SysClkModule_CPU, targetHz, maxHz);
|
|
|
|
while ((nearestHz = this->GetNearestHz(SysClkModule_CPU, targetHz, maxHz)) != targetHz) {
|
|
Board::SetHz(SysClkModule_CPU, 1020000000);
|
|
svcSleepThread(1'000'000);
|
|
Board::SetHz(SysClkModule_CPU, maxHz);
|
|
this->context->freqs[SysClkModule_CPU] = maxHz;
|
|
}
|
|
Board::SetHz(SysClkModule_CPU, targetHz);
|
|
}
|
|
}
|
|
|
|
ClockManager::~ClockManager()
|
|
{
|
|
delete this->config;
|
|
delete this->context;
|
|
threadClose(&governorTHREAD);
|
|
}
|
|
|
|
SysClkContext ClockManager::GetCurrentContext()
|
|
{
|
|
std::scoped_lock lock{this->contextMutex};
|
|
return *this->context;
|
|
}
|
|
|
|
Config *ClockManager::GetConfig()
|
|
{
|
|
return this->config;
|
|
}
|
|
|
|
void ClockManager::SetRunning(bool running)
|
|
{
|
|
this->running = running;
|
|
}
|
|
|
|
bool ClockManager::Running()
|
|
{
|
|
return this->running;
|
|
}
|
|
|
|
void ClockManager::GetFreqList(SysClkModule module, std::uint32_t *list, std::uint32_t maxCount, std::uint32_t *outCount)
|
|
{
|
|
ASSERT_ENUM_VALID(SysClkModule, module);
|
|
|
|
*outCount = std::min(maxCount, this->freqTable[module].count);
|
|
memcpy(list, &this->freqTable[module].list[0], *outCount * sizeof(this->freqTable[0].list[0]));
|
|
}
|
|
|
|
bool ClockManager::IsAssignableHz(SysClkModule module, std::uint32_t hz)
|
|
{
|
|
switch (module)
|
|
{
|
|
case SysClkModule_CPU:
|
|
return hz >= 500000000;
|
|
case SysClkModule_MEM:
|
|
return hz >= 665600000;
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
std::uint32_t ClockManager::GetMaxAllowedHz(SysClkModule module, SysClkProfile profile)
|
|
{
|
|
if (this->config->GetConfigValue(HocClkConfigValue_UncappedClocks))
|
|
{
|
|
return 4294967294; // Integer limit, uncapped clocks ON
|
|
}
|
|
else
|
|
{
|
|
if (module == SysClkModule_GPU)
|
|
{
|
|
if (profile < SysClkProfile_HandheldCharging)
|
|
{
|
|
switch(Board::GetSocType()) {
|
|
case SysClkSocType_Erista:
|
|
return 460800000;
|
|
case SysClkSocType_Mariko:
|
|
return 614400000;
|
|
default:
|
|
return 4294967294;
|
|
}
|
|
}
|
|
else if (profile <= SysClkProfile_HandheldChargingUSB)
|
|
{
|
|
switch(Board::GetSocType()) {
|
|
case SysClkSocType_Erista:
|
|
return 768000000;
|
|
case SysClkSocType_Mariko:
|
|
return 921600000;
|
|
default:
|
|
return 4294967294;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
std::uint32_t ClockManager::GetNearestHz(SysClkModule module, std::uint32_t inHz, std::uint32_t maxHz)
|
|
{
|
|
std::uint32_t *freqs = &this->freqTable[module].list[0];
|
|
size_t count = this->freqTable[module].count - 1;
|
|
|
|
size_t i = 0;
|
|
while (i < count)
|
|
{
|
|
if (maxHz > 0 && freqs[i] >= maxHz)
|
|
{
|
|
break;
|
|
}
|
|
|
|
if (inHz <= ((std::uint64_t)freqs[i] + freqs[i + 1]) / 2)
|
|
{
|
|
break;
|
|
}
|
|
|
|
i++;
|
|
}
|
|
|
|
return freqs[i];
|
|
}
|
|
|
|
bool ClockManager::ConfigIntervalTimeout(SysClkConfigValue intervalMsConfigValue, std::uint64_t ns, std::uint64_t *lastLogNs)
|
|
{
|
|
std::uint64_t logInterval = this->GetConfig()->GetConfigValue(intervalMsConfigValue) * 1000000ULL;
|
|
bool shouldLog = logInterval && ((ns - *lastLogNs) > logInterval);
|
|
|
|
if (shouldLog)
|
|
{
|
|
*lastLogNs = ns;
|
|
}
|
|
|
|
return shouldLog;
|
|
}
|
|
|
|
void ClockManager::RefreshFreqTableRow(SysClkModule module)
|
|
{
|
|
std::scoped_lock lock{this->contextMutex};
|
|
|
|
std::uint32_t freqs[SYSCLK_FREQ_LIST_MAX];
|
|
std::uint32_t count;
|
|
|
|
FileUtils::LogLine("[mgr] %s freq list refresh", Board::GetModuleName(module, true));
|
|
Board::GetFreqList(module, &freqs[0], SYSCLK_FREQ_LIST_MAX, &count);
|
|
|
|
std::uint32_t *hz = &this->freqTable[module].list[0];
|
|
this->freqTable[module].count = 0;
|
|
for (std::uint32_t i = 0; i < count; i++)
|
|
{
|
|
if (!this->IsAssignableHz(module, freqs[i]))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
*hz = freqs[i];
|
|
FileUtils::LogLine("[mgr] %02u - %u - %u.%u MHz", this->freqTable[module].count, *hz, *hz / 1000000, *hz / 100000 - *hz / 1000000 * 10);
|
|
|
|
this->freqTable[module].count++;
|
|
hz++;
|
|
}
|
|
|
|
FileUtils::LogLine("[mgr] count = %u", this->freqTable[module].count);
|
|
}
|
|
|
|
u32 findIndex(u32 arr[], u32 size, u32 value) {
|
|
for (u32 i = 0; i < size; i++) {
|
|
if (arr[i] == value) {
|
|
return i;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
u32 findIndexMHz(u32 arr[], u32 size, u32 value) {
|
|
for (u32 i = 0; i < size; i++) {
|
|
if (arr[i] / 1000000 == value) {
|
|
return i;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void ClockManager::GovernorThread(void* arg)
|
|
{
|
|
ClockManager* mgr = static_cast<ClockManager*>(arg);
|
|
|
|
for (;;)
|
|
{
|
|
if (!mgr->running)
|
|
{
|
|
svcSleepThread(50'000'000);
|
|
continue;
|
|
}
|
|
|
|
std::scoped_lock lock{mgr->contextMutex};
|
|
|
|
if (!isGovernorEnabled)
|
|
{
|
|
svcSleepThread(50'000'000);
|
|
continue;
|
|
}
|
|
|
|
auto& table = mgr->freqTable[SysClkModule_GPU];
|
|
if (table.count == 0)
|
|
{
|
|
svcSleepThread(50'000'000);
|
|
continue;
|
|
}
|
|
|
|
u32 currentHz = Board::GetHz(SysClkModule_GPU);
|
|
|
|
u32 index = 0;
|
|
for (u32 i = 0; i < table.count; i++)
|
|
{
|
|
if (table.list[i] == currentHz)
|
|
{
|
|
index = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
u32 targetHz = mgr->context->overrideFreqs[SysClkModule_GPU];
|
|
if (!targetHz)
|
|
{
|
|
targetHz = mgr->config->GetAutoClockHz(
|
|
mgr->context->applicationId,
|
|
SysClkModule_GPU,
|
|
mgr->context->profile,
|
|
false
|
|
);
|
|
|
|
if (!targetHz)
|
|
{
|
|
targetHz = mgr->config->GetAutoClockHz(
|
|
GLOBAL_PROFILE_ID,
|
|
SysClkModule_GPU,
|
|
mgr->context->profile,
|
|
false
|
|
);
|
|
}
|
|
}
|
|
|
|
int load = Board::GetPartLoad(HocClkPartLoad_GPU);
|
|
|
|
if (load < 600 && index > 0)
|
|
{
|
|
index--;
|
|
}
|
|
else if (load > 800 && index + 1 < table.count)
|
|
{
|
|
index++;
|
|
}
|
|
|
|
if (targetHz)
|
|
{
|
|
u32 targetIndex = table.count - 1;
|
|
for (u32 i = 0; i < table.count; i++)
|
|
{
|
|
if (table.list[i] >= targetHz)
|
|
{
|
|
targetIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (index > targetIndex)
|
|
{
|
|
index = targetIndex;
|
|
}
|
|
}
|
|
|
|
|
|
u32 newHz = table.list[index];
|
|
if (mgr->IsAssignableHz(SysClkModule_GPU, newHz))
|
|
{
|
|
Board::SetHz(SysClkModule_GPU, newHz);
|
|
mgr->context->freqs[SysClkModule_GPU] = newHz;
|
|
}
|
|
|
|
svcSleepThread(50'000'000);
|
|
}
|
|
}
|
|
|
|
bool prevBoostMode = true;
|
|
|
|
void ClockManager::Tick()
|
|
{
|
|
std::scoped_lock lock{this->contextMutex};
|
|
std::uint32_t mode = 0;
|
|
AppletOperationMode opMode = appletGetOperationMode();
|
|
Result rc = apmExtGetCurrentPerformanceConfiguration(&mode);
|
|
ASSERT_RESULT_OK(rc, "apmExtGetCurrentPerformanceConfiguration");
|
|
|
|
if(this->config->GetConfigValue(HocClkConfigValue_HandheldTDP) && opMode == AppletOperationMode_Handheld) {
|
|
if(Board::GetConsoleType() == HorizonOCConsoleType_Hoag) {
|
|
if(Board::GetPowerMw(SysClkPowerSensor_Avg) < -(int)this->config->GetConfigValue(HocClkConfigValue_LiteTDPLimit)) {
|
|
ResetToStockClocks();
|
|
return;
|
|
}
|
|
} else {
|
|
if(Board::GetPowerMw(SysClkPowerSensor_Avg) < -(int)this->config->GetConfigValue(HocClkConfigValue_HandheldTDPLimit)) {
|
|
ResetToStockClocks();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(this->config->GetConfigValue(HocClkConfigValue_EnforceBoardLimit) && opMode == AppletOperationMode_Console ) {
|
|
if(Board::GetPowerMw(SysClkPowerSensor_Now) < 0) {
|
|
ResetToStockClocks();
|
|
return;
|
|
}
|
|
}
|
|
|
|
if(((tmp451TempSoc() / 1000) > (int)this->config->GetConfigValue(HocClkConfigValue_ThermalThrottleThreshold)) && this->config->GetConfigValue(HocClkConfigValue_ThermalThrottle)) {
|
|
ResetToStockClocks();
|
|
return;
|
|
}
|
|
bool isBoost = apmExtIsBoostMode(mode);
|
|
// if(isBoost) {
|
|
// Board::SetHz(SysClkModule_CPU, Board::GetSocType() == SysClkSocType_Mariko ? this->config->GetConfigValue(HocClkConfigValue_MarikoBoostCpuClock) * 1000'000 : this->config->GetConfigValue(HocClkConfigValue_EristaBoostCpuClock) * 1000'000);
|
|
// }
|
|
prevBoostMode = isBoost;
|
|
|
|
bool noGPU = false;
|
|
|
|
if (this->RefreshContext() || this->config->Refresh())
|
|
{
|
|
if(this->config->GetConfigValue(HorizonOCConfigValue_BatteryChargeCurrent)) {
|
|
I2c_Bq24193_SetFastChargeCurrentLimit(this->config->GetConfigValue(HorizonOCConfigValue_BatteryChargeCurrent));
|
|
}
|
|
std::uint32_t targetHz = 0;
|
|
std::uint32_t maxHz = 0;
|
|
std::uint32_t nearestHz = 0;
|
|
|
|
if(apmExtIsBoostMode(mode) && !this->config->GetConfigValue(HocClkConfigValue_OverwriteBoostMode)) {
|
|
// ResetToStockClocks();
|
|
return;
|
|
}
|
|
|
|
bool returnRaw = false;
|
|
for (unsigned int module = 0; module < SysClkModule_EnumMax; module++)
|
|
{
|
|
if(module > SysClkModule_MEM)
|
|
returnRaw = true;
|
|
else
|
|
returnRaw = false;
|
|
targetHz = this->context->overrideFreqs[module];
|
|
if (!targetHz)
|
|
{
|
|
targetHz = this->config->GetAutoClockHz(this->context->applicationId, (SysClkModule)module, this->context->profile, returnRaw);
|
|
if(!targetHz)
|
|
targetHz = this->config->GetAutoClockHz(GLOBAL_PROFILE_ID, (SysClkModule)module, this->context->profile, returnRaw);
|
|
}
|
|
|
|
if(module == HorizonOCModule_Governor) {
|
|
bool newGovernorState = targetHz;
|
|
if(newGovernorState != lastGovernorState) {
|
|
FileUtils::LogLine("[mgr] Governor state changed: %s", newGovernorState ? "enabled" : "disabled");
|
|
lastGovernorState = newGovernorState;
|
|
|
|
hasChanged = true;
|
|
Board::ResetToStock();
|
|
}
|
|
isGovernorEnabled = newGovernorState;
|
|
}
|
|
|
|
if(module == HorizonOCModule_Display && this->config->GetConfigValue(HorizonOCConfigValue_OverwriteRefreshRate) && Board::GetConsoleType() != HorizonOCConsoleType_Hoag) {
|
|
if(targetHz)
|
|
Board::SetHz(HorizonOCModule_Display, targetHz);
|
|
else
|
|
Board::ResetToStockDisplay();
|
|
|
|
}
|
|
|
|
if(targetHz && this->context->realFreqs[HorizonOCModule_Display] != targetHz && module == HorizonOCModule_Display)
|
|
this->context->realFreqs[HorizonOCModule_Display] = targetHz;
|
|
|
|
// Skip GPU if governor handles it
|
|
if(module > SysClkModule_MEM) {
|
|
continue;
|
|
}
|
|
if(isGovernorEnabled) {
|
|
noGPU = true;
|
|
} else {
|
|
noGPU = false;
|
|
}
|
|
if(noGPU && module == SysClkModule_GPU)
|
|
continue;
|
|
|
|
if (targetHz)
|
|
{
|
|
maxHz = this->GetMaxAllowedHz((SysClkModule)module, this->context->profile);
|
|
nearestHz = this->GetNearestHz((SysClkModule)module, targetHz, maxHz);
|
|
|
|
if (nearestHz != this->context->freqs[module]) {
|
|
FileUtils::LogLine(
|
|
"[mgr] %s clock set : %u.%u MHz (target = %u.%u MHz)",
|
|
Board::GetModuleName((SysClkModule)module, true),
|
|
nearestHz / 1000000, nearestHz / 100000 - nearestHz / 1000000 * 10,
|
|
targetHz / 1000000, targetHz / 100000 - targetHz / 1000000 * 10
|
|
);
|
|
|
|
Board::SetHz((SysClkModule)module, nearestHz);
|
|
this->context->freqs[module] = nearestHz;
|
|
}
|
|
if(module == SysClkModule_CPU && this->config->GetConfigValue(HocClkConfigValue_FixCpuVoltBug)) {
|
|
FixCpuBug();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void ClockManager::ResetToStockClocks() {
|
|
Board::ResetToStockCpu();
|
|
Board::ResetToStockGpu();
|
|
}
|
|
|
|
void ClockManager::WaitForNextTick()
|
|
{
|
|
if(!(Board::GetHz(SysClkModule_MEM) < 665000000))
|
|
svcSleepThread(this->GetConfig()->GetConfigValue(SysClkConfigValue_PollingIntervalMs) * 1000000ULL);
|
|
else
|
|
svcSleepThread(5000 * 1000000ULL); // 5 seconds in sleep mode
|
|
}
|
|
|
|
bool ClockManager::RefreshContext()
|
|
{
|
|
bool hasChanged = false;
|
|
|
|
std::uint32_t mode = 0;
|
|
Result rc = apmExtGetCurrentPerformanceConfiguration(&mode);
|
|
ASSERT_RESULT_OK(rc, "apmExtGetCurrentPerformanceConfiguration");
|
|
|
|
std::uint64_t applicationId = ProcessManagement::GetCurrentApplicationId();
|
|
if (applicationId != this->context->applicationId)
|
|
{
|
|
FileUtils::LogLine("[mgr] TitleID change: %016lX", applicationId);
|
|
this->context->applicationId = applicationId;
|
|
hasChanged = true;
|
|
this->rnxSync->Reset(applicationId);
|
|
}
|
|
|
|
SysClkProfile profile = Board::GetProfile();
|
|
if (profile != this->context->profile)
|
|
{
|
|
FileUtils::LogLine("[mgr] Profile change: %s", Board::GetProfileName(profile, true));
|
|
this->context->profile = profile;
|
|
hasChanged = true;
|
|
}
|
|
|
|
// restore clocks to stock values on app or profile change
|
|
if (hasChanged)
|
|
{
|
|
// this->rnxSync->ToggleSync(this->GetConfig()->GetConfigValue(HocClkConfigValue_SyncReverseNXMode));
|
|
Board::ResetToStock();
|
|
this->WaitForNextTick();
|
|
}
|
|
|
|
std::uint32_t hz = 0;
|
|
for (unsigned int module = 0; module < SysClkModule_EnumMax; module++)
|
|
{
|
|
hz = Board::GetHz((SysClkModule)module);
|
|
if (hz != 0 && hz != this->context->freqs[module])
|
|
{
|
|
FileUtils::LogLine("[mgr] %s clock change: %u.%u MHz", Board::GetModuleName((SysClkModule)module, true), hz / 1000000, hz / 100000 - hz / 1000000 * 10);
|
|
this->context->freqs[module] = hz;
|
|
hasChanged = true;
|
|
}
|
|
|
|
hz = this->GetConfig()->GetOverrideHz((SysClkModule)module);
|
|
if (hz != this->context->overrideFreqs[module])
|
|
{
|
|
if (hz)
|
|
{
|
|
FileUtils::LogLine("[mgr] %s override change: %u.%u MHz", Board::GetModuleName((SysClkModule)module, true), hz / 1000000, hz / 100000 - hz / 1000000 * 10);
|
|
}
|
|
else
|
|
{
|
|
FileUtils::LogLine("[mgr] %s override disabled", Board::GetModuleName((SysClkModule)module, true));
|
|
switch (module)
|
|
{
|
|
case SysClkModule_CPU:
|
|
if(!(apmExtIsBoostMode(mode) || (this->config->GetConfigValue(HocClkConfigValue_OverwriteBoostMode) && apmExtIsBoostMode(mode))))
|
|
Board::ResetToStockCpu();
|
|
break;
|
|
case SysClkModule_GPU:
|
|
Board::ResetToStockGpu();
|
|
break;
|
|
case SysClkModule_MEM:
|
|
Board::ResetToStockMem();
|
|
break;
|
|
}
|
|
}
|
|
this->context->overrideFreqs[module] = hz;
|
|
hasChanged = true;
|
|
}
|
|
}
|
|
|
|
std::uint64_t ns = armTicksToNs(armGetSystemTick());
|
|
|
|
// temperatures do not and should not force a refresh, hasChanged untouched
|
|
std::uint32_t millis = 0;
|
|
bool shouldLogTemp = this->ConfigIntervalTimeout(SysClkConfigValue_TempLogIntervalMs, ns, &this->lastTempLogNs);
|
|
for (unsigned int sensor = 0; sensor < SysClkThermalSensor_EnumMax; sensor++)
|
|
{
|
|
millis = Board::GetTemperatureMilli((SysClkThermalSensor)sensor);
|
|
if (shouldLogTemp)
|
|
{
|
|
FileUtils::LogLine("[mgr] %s temp: %u.%u °C", Board::GetThermalSensorName((SysClkThermalSensor)sensor, true), millis / 1000, (millis - millis / 1000 * 1000) / 100);
|
|
}
|
|
this->context->temps[sensor] = millis;
|
|
}
|
|
|
|
// power stats do not and should not force a refresh, hasChanged untouched
|
|
std::int32_t mw = 0;
|
|
bool shouldLogPower = this->ConfigIntervalTimeout(SysClkConfigValue_PowerLogIntervalMs, ns, &this->lastPowerLogNs);
|
|
for (unsigned int sensor = 0; sensor < SysClkPowerSensor_EnumMax; sensor++)
|
|
{
|
|
mw = Board::GetPowerMw((SysClkPowerSensor)sensor);
|
|
if (shouldLogPower)
|
|
{
|
|
FileUtils::LogLine("[mgr] Power %s: %d mW", Board::GetPowerSensorName((SysClkPowerSensor)sensor, false), mw);
|
|
}
|
|
this->context->power[sensor] = mw;
|
|
}
|
|
|
|
// real freqs do not and should not force a refresh, hasChanged untouched
|
|
std::uint32_t realHz = 0;
|
|
bool shouldLogFreq = this->ConfigIntervalTimeout(SysClkConfigValue_FreqLogIntervalMs, ns, &this->lastFreqLogNs);
|
|
for (unsigned int module = 0; module < SysClkModule_EnumMax; module++)
|
|
{
|
|
realHz = Board::GetRealHz((SysClkModule)module);
|
|
if (shouldLogFreq)
|
|
{
|
|
FileUtils::LogLine("[mgr] %s real freq: %u.%u MHz", Board::GetModuleName((SysClkModule)module, true), realHz / 1000000, realHz / 100000 - realHz / 1000000 * 10);
|
|
}
|
|
this->context->realFreqs[module] = realHz;
|
|
}
|
|
|
|
// ram load do not and should not force a refresh, hasChanged untouched
|
|
for (unsigned int loadSource = 0; loadSource < SysClkPartLoad_EnumMax; loadSource++)
|
|
{
|
|
this->context->partLoad[loadSource] = Board::GetPartLoad((SysClkPartLoad)loadSource);
|
|
}
|
|
|
|
for (unsigned int voltageSource = 0; voltageSource < HocClkVoltage_EnumMax; voltageSource++)
|
|
{
|
|
this->context->voltages[voltageSource] = Board::GetVoltage((HocClkVoltage)voltageSource);
|
|
}
|
|
|
|
if (this->ConfigIntervalTimeout(SysClkConfigValue_CsvWriteIntervalMs, ns, &this->lastCsvWriteNs))
|
|
{
|
|
FileUtils::WriteContextToCsv(this->context);
|
|
}
|
|
|
|
this->context->maxDisplayFreq = Board::GetHighestDockedDisplayRate();
|
|
|
|
u32 targetHz = this->context->overrideFreqs[HorizonOCModule_Display];
|
|
if (!targetHz)
|
|
{
|
|
targetHz = this->config->GetAutoClockHz(this->context->applicationId, HorizonOCModule_Display, this->context->profile, true);
|
|
if(!targetHz)
|
|
targetHz = this->config->GetAutoClockHz(GLOBAL_PROFILE_ID, HorizonOCModule_Display, this->context->profile, true);
|
|
}
|
|
|
|
if(targetHz && this->context->realFreqs[HorizonOCModule_Display] > targetHz)
|
|
this->context->realFreqs[HorizonOCModule_Display] = targetHz; // clean up display real freqs, should probably be moved to the real freqs loop?
|
|
|
|
|
|
return hasChanged;
|
|
}
|
|
|
|
void ClockManager::SetRNXRTMode(ReverseNXMode mode)
|
|
{
|
|
this->rnxSync->SetRTMode(mode);
|
|
}
|
|
|
|
void ClockManager::SetKipData() {
|
|
// TODO: figure out if this REALLY causes issues (i doubt it)
|
|
// if(Board::GetSocType() == SysClkSocType_Mariko) {
|
|
// if(R_FAILED(I2c_BuckConverter_SetMvOut(&I2c_Mariko_DRAM_VDDQ, this->config->GetConfigValue(KipConfigValue_marikoEmcVddqVolt) / 1000))) {
|
|
// FileUtils::LogLine("[clock_manager] Failed set i2c vddq");
|
|
// writeNotification("Horizon OC\nFailed to write I2C\nwhile setting vddq");
|
|
// }
|
|
// }
|
|
CustomizeTable table;
|
|
FILE* fp;
|
|
fp = fopen("sdmc:/atmosphere/kips/hoc.kip", "r");
|
|
|
|
if (fp == NULL) {
|
|
writeNotification("Horizon OC\nKip opening failed");
|
|
kipAvailable = false;
|
|
return;
|
|
} else {
|
|
kipAvailable = true;
|
|
fclose(fp);
|
|
}
|
|
|
|
if (!cust_read_and_cache("sdmc:/atmosphere/kips/hoc.kip", &table)) {
|
|
FileUtils::LogLine("[clock_manager] Failed to read KIP file");
|
|
writeNotification("Horizon OC\nKip read failed");
|
|
return;
|
|
}
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, custRev, this->config->GetConfigValue(KipConfigValue_custRev));
|
|
CUST_WRITE_FIELD_BATCH(&table, mtcConf, this->config->GetConfigValue(KipConfigValue_mtcConf));
|
|
CUST_WRITE_FIELD_BATCH(&table, hpMode, this->config->GetConfigValue(KipConfigValue_hpMode));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, commonEmcMemVolt, this->config->GetConfigValue(KipConfigValue_commonEmcMemVolt));
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaEmcMaxClock, this->config->GetConfigValue(KipConfigValue_eristaEmcMaxClock));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoEmcMaxClock, this->config->GetConfigValue(KipConfigValue_marikoEmcMaxClock));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoEmcVddqVolt, this->config->GetConfigValue(KipConfigValue_marikoEmcVddqVolt));
|
|
CUST_WRITE_FIELD_BATCH(&table, emcDvbShift, this->config->GetConfigValue(KipConfigValue_emcDvbShift));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, t1_tRCD, this->config->GetConfigValue(KipConfigValue_t1_tRCD));
|
|
CUST_WRITE_FIELD_BATCH(&table, t2_tRP, this->config->GetConfigValue(KipConfigValue_t2_tRP));
|
|
CUST_WRITE_FIELD_BATCH(&table, t3_tRAS, this->config->GetConfigValue(KipConfigValue_t3_tRAS));
|
|
CUST_WRITE_FIELD_BATCH(&table, t4_tRRD, this->config->GetConfigValue(KipConfigValue_t4_tRRD));
|
|
CUST_WRITE_FIELD_BATCH(&table, t5_tRFC, this->config->GetConfigValue(KipConfigValue_t5_tRFC));
|
|
CUST_WRITE_FIELD_BATCH(&table, t6_tRTW, this->config->GetConfigValue(KipConfigValue_t6_tRTW));
|
|
CUST_WRITE_FIELD_BATCH(&table, t7_tWTR, this->config->GetConfigValue(KipConfigValue_t7_tWTR));
|
|
CUST_WRITE_FIELD_BATCH(&table, t8_tREFI, this->config->GetConfigValue(KipConfigValue_t8_tREFI));
|
|
CUST_WRITE_FIELD_BATCH(&table, mem_burst_read_latency, this->config->GetConfigValue(KipConfigValue_mem_burst_read_latency));
|
|
CUST_WRITE_FIELD_BATCH(&table, mem_burst_write_latency, this->config->GetConfigValue(KipConfigValue_mem_burst_write_latency));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaCpuUV, this->config->GetConfigValue(KipConfigValue_eristaCpuUV));
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaCpuVmin, this->config->GetConfigValue(KipConfigValue_eristaCpuVmin));
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaCpuMaxVolt, this->config->GetConfigValue(KipConfigValue_eristaCpuMaxVolt));
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaCpuUnlock, this->config->GetConfigValue(KipConfigValue_eristaCpuUnlock));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuUVLow, this->config->GetConfigValue(KipConfigValue_marikoCpuUVLow));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuUVHigh, this->config->GetConfigValue(KipConfigValue_marikoCpuUVHigh));
|
|
CUST_WRITE_FIELD_BATCH(&table, tableConf, this->config->GetConfigValue(KipConfigValue_tableConf));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuLowVmin, this->config->GetConfigValue(KipConfigValue_marikoCpuLowVmin));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuHighVmin, this->config->GetConfigValue(KipConfigValue_marikoCpuHighVmin));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuMaxVolt, this->config->GetConfigValue(KipConfigValue_marikoCpuMaxVolt));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuMaxClock, this->config->GetConfigValue(KipConfigValue_marikoCpuMaxClock));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaCpuBoostClock, this->config->GetConfigValue(KipConfigValue_eristaCpuBoostClock));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoCpuBoostClock, this->config->GetConfigValue(KipConfigValue_marikoCpuBoostClock));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaGpuUV, this->config->GetConfigValue(KipConfigValue_eristaGpuUV));
|
|
CUST_WRITE_FIELD_BATCH(&table, eristaGpuVmin, this->config->GetConfigValue(KipConfigValue_eristaGpuVmin));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoGpuUV, this->config->GetConfigValue(KipConfigValue_marikoGpuUV));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoGpuVmin, this->config->GetConfigValue(KipConfigValue_marikoGpuVmin));
|
|
CUST_WRITE_FIELD_BATCH(&table, marikoGpuVmax, this->config->GetConfigValue(KipConfigValue_marikoGpuVmax));
|
|
|
|
CUST_WRITE_FIELD_BATCH(&table, commonGpuVoltOffset, this->config->GetConfigValue(KipConfigValue_commonGpuVoltOffset));
|
|
CUST_WRITE_FIELD_BATCH(&table, gpuSpeedo, this->config->GetConfigValue(KipConfigValue_gpuSpeedo));
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
table.marikoGpuVoltArray[i] = this->config->GetConfigValue((SysClkConfigValue)(KipConfigValue_g_volt_76800 + i));
|
|
}
|
|
|
|
for (int i = 0; i < 27; i++) {
|
|
table.eristaGpuVoltArray[i] = this->config->GetConfigValue((SysClkConfigValue)(KipConfigValue_g_volt_e_76800 + i));
|
|
}
|
|
|
|
if (!cust_write_table("sdmc:/atmosphere/kips/hoc.kip", &table)) {
|
|
FileUtils::LogLine("[clock_manager] Failed to write KIP file");
|
|
writeNotification("Horizon OC\nKip write failed");
|
|
}
|
|
|
|
SysClkConfigValueList configValues;
|
|
this->config->GetConfigValues(&configValues);
|
|
|
|
configValues.values[KipCrc32] = (u64)checksum_file("sdmc:/atmosphere/kips/hoc.kip"); // write checksum
|
|
|
|
if (this->config->SetConfigValues(&configValues, false)) {
|
|
FileUtils::LogLine("[clock_manager] Successfully loaded KIP data into config");
|
|
} else {
|
|
FileUtils::LogLine("[clock_manager] Warning: Failed to set config values from KIP");
|
|
writeNotification("Horizon OC\nKip config set failed");
|
|
}
|
|
}
|
|
|
|
// I know this is very hacky, but the config system in the sysmodule doesn't really support writing
|
|
|
|
void ClockManager::GetKipData() {
|
|
FILE* fp;
|
|
if(this->config->Refresh()) {
|
|
|
|
fp = fopen("sdmc:/atmosphere/kips/hoc.kip", "r");
|
|
|
|
if (fp == NULL) {
|
|
writeNotification("Horizon OC\nKip opening failed");
|
|
kipAvailable = false;
|
|
return;
|
|
} else {
|
|
kipAvailable = true;
|
|
fclose(fp);
|
|
}
|
|
|
|
|
|
|
|
SysClkConfigValueList configValues;
|
|
this->config->GetConfigValues(&configValues);
|
|
|
|
CustomizeTable table;
|
|
|
|
if (!cust_read_and_cache("sdmc:/atmosphere/kips/hoc.kip", &table)) {
|
|
FileUtils::LogLine("[clock_manager] Failed to read KIP file for GetKipData");
|
|
writeNotification("Horizon OC\nKip read failed");
|
|
return;
|
|
}
|
|
|
|
if((u64)checksum_file("sdmc:/atmosphere/kips/hoc.kip") != this->config->GetConfigValue(KipCrc32) && !this->config->GetConfigValue(HocClkConfigValue_IsFirstLoad)) {
|
|
SetKipData();
|
|
writeNotification("Horizon OC\nKIP has been updated");
|
|
writeNotification("Horizon OC\nPlease reboot your console");
|
|
writeNotification("Horizon OC\nto complete the update");
|
|
return;
|
|
}
|
|
if(this->config->GetConfigValue(HocClkConfigValue_IsFirstLoad) == true) {
|
|
configValues.values[HocClkConfigValue_IsFirstLoad] = (u64)false;
|
|
writeNotification("Horizon OC has been installed");
|
|
}
|
|
static bool writeBootConfigValues = true;
|
|
|
|
|
|
if(writeBootConfigValues) {
|
|
writeBootConfigValues = false;
|
|
|
|
initialConfigValues[KipConfigValue_mtcConf] = cust_get_mtc_conf(&table);
|
|
initialConfigValues[KipConfigValue_hpMode] = cust_get_hp_mode(&table);
|
|
|
|
initialConfigValues[KipConfigValue_commonEmcMemVolt] = cust_get_common_emc_volt(&table);
|
|
initialConfigValues[KipConfigValue_eristaEmcMaxClock] = cust_get_erista_emc_max(&table);
|
|
initialConfigValues[KipConfigValue_marikoEmcMaxClock] = cust_get_mariko_emc_max(&table);
|
|
initialConfigValues[KipConfigValue_marikoEmcVddqVolt] = cust_get_mariko_emc_vddq(&table);
|
|
initialConfigValues[KipConfigValue_emcDvbShift] = cust_get_emc_dvb_shift(&table);
|
|
|
|
initialConfigValues[KipConfigValue_t1_tRCD] = cust_get_tRCD(&table);
|
|
initialConfigValues[KipConfigValue_t2_tRP] = cust_get_tRP(&table);
|
|
initialConfigValues[KipConfigValue_t3_tRAS] = cust_get_tRAS(&table);
|
|
initialConfigValues[KipConfigValue_t4_tRRD] = cust_get_tRRD(&table);
|
|
initialConfigValues[KipConfigValue_t5_tRFC] = cust_get_tRFC(&table);
|
|
initialConfigValues[KipConfigValue_t6_tRTW] = cust_get_tRTW(&table);
|
|
initialConfigValues[KipConfigValue_t7_tWTR] = cust_get_tWTR(&table);
|
|
initialConfigValues[KipConfigValue_t8_tREFI] = cust_get_tREFI(&table);
|
|
initialConfigValues[KipConfigValue_mem_burst_read_latency] = cust_get_burst_read_lat(&table);
|
|
initialConfigValues[KipConfigValue_mem_burst_write_latency] = cust_get_burst_write_lat(&table);
|
|
|
|
initialConfigValues[KipConfigValue_eristaCpuUV] = cust_get_erista_cpu_uv(&table);
|
|
initialConfigValues[KipConfigValue_eristaCpuVmin] = cust_get_eristaCpuVmin(&table);
|
|
initialConfigValues[KipConfigValue_eristaCpuMaxVolt] = cust_get_erista_cpu_max_volt(&table);
|
|
initialConfigValues[KipConfigValue_eristaCpuUnlock] = cust_get_eristaCpuUnlock(&table);
|
|
|
|
|
|
initialConfigValues[KipConfigValue_marikoCpuUVLow] = cust_get_mariko_cpu_uv_low(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuUVHigh] = cust_get_mariko_cpu_uv_high(&table);
|
|
initialConfigValues[KipConfigValue_tableConf] = cust_get_table_conf(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuLowVmin] = cust_get_mariko_cpu_low_vmin(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuHighVmin] = cust_get_mariko_cpu_high_vmin(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuMaxVolt] = cust_get_mariko_cpu_max_volt(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuMaxClock] = cust_get_marikoCpuMaxClock(&table);
|
|
initialConfigValues[KipConfigValue_eristaCpuBoostClock] = cust_get_erista_cpu_boost(&table);
|
|
initialConfigValues[KipConfigValue_marikoCpuBoostClock] = cust_get_mariko_cpu_boost(&table);
|
|
|
|
initialConfigValues[KipConfigValue_eristaGpuUV] = cust_get_erista_gpu_uv(&table);
|
|
initialConfigValues[KipConfigValue_eristaGpuVmin] = cust_get_erista_gpu_vmin(&table);
|
|
initialConfigValues[KipConfigValue_marikoGpuUV] = cust_get_mariko_gpu_uv(&table);
|
|
initialConfigValues[KipConfigValue_marikoGpuVmin] = cust_get_mariko_gpu_vmin(&table);
|
|
initialConfigValues[KipConfigValue_marikoGpuVmax] = cust_get_mariko_gpu_vmax(&table);
|
|
initialConfigValues[KipConfigValue_commonGpuVoltOffset] = cust_get_common_gpu_offset(&table);
|
|
initialConfigValues[KipConfigValue_gpuSpeedo] = cust_get_gpu_speedo(&table);
|
|
}
|
|
|
|
configValues.values[KipConfigValue_mtcConf] = cust_get_mtc_conf(&table);
|
|
configValues.values[KipConfigValue_hpMode] = cust_get_hp_mode(&table);
|
|
|
|
configValues.values[KipConfigValue_commonEmcMemVolt] = cust_get_common_emc_volt(&table);
|
|
configValues.values[KipConfigValue_eristaEmcMaxClock] = cust_get_erista_emc_max(&table);
|
|
configValues.values[KipConfigValue_marikoEmcMaxClock] = cust_get_mariko_emc_max(&table);
|
|
configValues.values[KipConfigValue_marikoEmcVddqVolt] = cust_get_mariko_emc_vddq(&table);
|
|
configValues.values[KipConfigValue_emcDvbShift] = cust_get_emc_dvb_shift(&table);
|
|
|
|
configValues.values[KipConfigValue_t1_tRCD] = cust_get_tRCD(&table);
|
|
configValues.values[KipConfigValue_t2_tRP] = cust_get_tRP(&table);
|
|
configValues.values[KipConfigValue_t3_tRAS] = cust_get_tRAS(&table);
|
|
configValues.values[KipConfigValue_t4_tRRD] = cust_get_tRRD(&table);
|
|
configValues.values[KipConfigValue_t5_tRFC] = cust_get_tRFC(&table);
|
|
configValues.values[KipConfigValue_t6_tRTW] = cust_get_tRTW(&table);
|
|
configValues.values[KipConfigValue_t7_tWTR] = cust_get_tWTR(&table);
|
|
configValues.values[KipConfigValue_t8_tREFI] = cust_get_tREFI(&table);
|
|
configValues.values[KipConfigValue_mem_burst_read_latency] = cust_get_burst_read_lat(&table);
|
|
configValues.values[KipConfigValue_mem_burst_write_latency] = cust_get_burst_write_lat(&table);
|
|
|
|
configValues.values[KipConfigValue_eristaCpuUV] = cust_get_erista_cpu_uv(&table);
|
|
configValues.values[KipConfigValue_eristaCpuVmin] = cust_get_eristaCpuVmin(&table);
|
|
configValues.values[KipConfigValue_eristaCpuMaxVolt] = cust_get_erista_cpu_max_volt(&table);
|
|
configValues.values[KipConfigValue_eristaCpuUnlock] = cust_get_eristaCpuUnlock(&table);
|
|
|
|
|
|
configValues.values[KipConfigValue_marikoCpuUVLow] = cust_get_mariko_cpu_uv_low(&table);
|
|
configValues.values[KipConfigValue_marikoCpuUVHigh] = cust_get_mariko_cpu_uv_high(&table);
|
|
configValues.values[KipConfigValue_tableConf] = cust_get_table_conf(&table);
|
|
configValues.values[KipConfigValue_marikoCpuLowVmin] = cust_get_mariko_cpu_low_vmin(&table);
|
|
configValues.values[KipConfigValue_marikoCpuHighVmin] = cust_get_mariko_cpu_high_vmin(&table);
|
|
configValues.values[KipConfigValue_marikoCpuMaxVolt] = cust_get_mariko_cpu_max_volt(&table);
|
|
configValues.values[KipConfigValue_marikoCpuMaxClock] = cust_get_marikoCpuMaxClock(&table);
|
|
configValues.values[KipConfigValue_eristaCpuBoostClock] = cust_get_erista_cpu_boost(&table);
|
|
configValues.values[KipConfigValue_marikoCpuBoostClock] = cust_get_mariko_cpu_boost(&table);
|
|
|
|
configValues.values[KipConfigValue_eristaGpuUV] = cust_get_erista_gpu_uv(&table);
|
|
configValues.values[KipConfigValue_eristaGpuVmin] = cust_get_erista_gpu_vmin(&table);
|
|
configValues.values[KipConfigValue_marikoGpuUV] = cust_get_mariko_gpu_uv(&table);
|
|
configValues.values[KipConfigValue_marikoGpuVmin] = cust_get_mariko_gpu_vmin(&table);
|
|
configValues.values[KipConfigValue_marikoGpuVmax] = cust_get_mariko_gpu_vmax(&table);
|
|
configValues.values[KipConfigValue_commonGpuVoltOffset] = cust_get_common_gpu_offset(&table);
|
|
configValues.values[KipConfigValue_gpuSpeedo] = Board::getSpeedo(HorizonOCSpeedo_GPU); // cust_get_gpu_speedo(&table);
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
configValues.values[KipConfigValue_g_volt_76800 + i] = cust_get_mariko_gpu_volt(&table, i);
|
|
initialConfigValues[KipConfigValue_g_volt_76800 + i] = cust_get_mariko_gpu_volt(&table, i);
|
|
}
|
|
|
|
for (int i = 0; i < 27; i++) {
|
|
configValues.values[KipConfigValue_g_volt_e_76800 + i] = cust_get_erista_gpu_volt(&table, i);
|
|
initialConfigValues[KipConfigValue_g_volt_e_76800 + i] = cust_get_erista_gpu_volt(&table, i);
|
|
}
|
|
|
|
// if(cust_get_cust_rev(&table) == KIP_CUST_REV)
|
|
// return;
|
|
|
|
if (sizeof(SysClkConfigValueList) <= sizeof(configValues)) {
|
|
if (this->config->SetConfigValues(&configValues, false)) {
|
|
FileUtils::LogLine("[clock_manager] Successfully loaded KIP data into config");
|
|
} else {
|
|
FileUtils::LogLine("[clock_manager] Warning: Failed to set config values from KIP");
|
|
writeNotification("Horizon OC\nKip config set failed");
|
|
}
|
|
} else {
|
|
FileUtils::LogLine("[clock_manager] Error: Config value list buffer size mismatch");
|
|
writeNotification("Horizon OC\nConfig Buffer Mismatch");
|
|
}
|
|
} else {
|
|
FileUtils::LogLine("[clock_manager] Config refresh error in GetKipData!");
|
|
writeNotification("Horizon OC\nConfig refresh failed");
|
|
}
|
|
}
|
|
|
|
void ClockManager::UpdateRamTimings() {
|
|
u32 t1_tRCD = this->config->GetConfigValue(KipConfigValue_t1_tRCD);
|
|
u32 t2_tRP = this->config->GetConfigValue(KipConfigValue_t2_tRP);
|
|
u32 t3_tRAS = this->config->GetConfigValue(KipConfigValue_t3_tRAS);
|
|
u32 t4_tRRD = this->config->GetConfigValue(KipConfigValue_t4_tRRD);
|
|
u32 t5_tRFC = this->config->GetConfigValue(KipConfigValue_t5_tRFC);
|
|
u32 t6_tRTW = this->config->GetConfigValue(KipConfigValue_t6_tRTW);
|
|
u32 t7_tWTR = this->config->GetConfigValue(KipConfigValue_t7_tWTR);
|
|
u32 t8_tREFI = this->config->GetConfigValue(KipConfigValue_t8_tREFI);
|
|
bool hpMode = (bool)this->config->GetConfigValue(KipConfigValue_hpMode);
|
|
|
|
u64 ramFreq = initialConfigValues[KipConfigValue_marikoEmcMaxClock];
|
|
u32 rlAdd = initialConfigValues[KipConfigValue_mem_burst_read_latency];
|
|
u32 wlAdd = initialConfigValues[KipConfigValue_mem_burst_write_latency];
|
|
|
|
|
|
Board::UpdateShadowRegs(t1_tRCD, t2_tRP, t3_tRAS, t4_tRRD, t5_tRFC, t6_tRTW, t7_tWTR, t8_tREFI, ramFreq, rlAdd, wlAdd, hpMode);
|
|
}
|
|
|
|
unsigned int ramBrackets[][22] =
|
|
{
|
|
{ 2133, 2200, 2266, 2300, 2366, 2400, 2433, 2466, 2533, 2566, 2600, 2633, 2700, 2733, 2766, 2833, 2866, 2900, 2933, 3033, 3066, 3100, },
|
|
{ 2300, 2366, 2433, 2466, 2533, 2566, 2633, 2700, 2733, 2800, 2833, 2900, 2933, 2966, 3033, 3066, 3100, 3133, 3166, 3200, 3233, 3266, },
|
|
{ 2433, 2466, 2533, 2600, 2666, 2733, 2766, 2800, 2833, 2866, 2933, 2966, 3033, 3066, 3100, 3133, 3166, 3200, 3233, 3300, 3333, 3366, },
|
|
{ 2500, 2533, 2600, 2633, 2666, 2733, 2800, 2866, 2900, 2966, 3033, 3100, 3166, 3200, 3233, 3266, 3300, 3333, 3366, 3400, 3400, 3400, }
|
|
};
|
|
|
|
unsigned int gpuDvfsArray[] = { 590, 600, 610, 620, 630, 640, 650, 660, 670, 680, 690, 700, 710, 720, 730, 740, 750, 760, 770, 780, 790, 800};
|
|
|
|
int ClockManager::GetSpeedoBracket (int speedo)
|
|
{
|
|
int speedoBracket = 3;
|
|
if ((speedo < 1754) && (speedoBracket = 2, speedo < 1690)) {
|
|
speedoBracket = !!(1625 < speedo);
|
|
}
|
|
|
|
return speedoBracket;
|
|
}
|
|
|
|
unsigned int ClockManager::GetGpuVoltage (unsigned int freq, int speedo)
|
|
{
|
|
long int loop;
|
|
int bracket = GetSpeedoBracket(speedo);
|
|
|
|
if (freq < 1601)
|
|
return 610;
|
|
|
|
loop = 0;
|
|
do
|
|
{
|
|
if (freq <= ramBrackets[bracket][loop])
|
|
return gpuDvfsArray[loop];
|
|
|
|
loop++;
|
|
} while (loop != 22);
|
|
|
|
return 800;
|
|
}
|
|
|
|
void ClockManager::calculateGpuVmin (void)
|
|
{
|
|
if(this->config->Refresh()) {
|
|
SysClkConfigValueList configValues;
|
|
this->config->GetConfigValues(&configValues);
|
|
|
|
int speedo = Board::getSpeedo(HorizonOCSpeedo_CPU), freq = this->config->GetConfigValue(KipConfigValue_marikoEmcMaxClock);
|
|
configValues.values[KipConfigValue_marikoGpuVmin] = GetGpuVoltage(freq, speedo);
|
|
this->config->SetConfigValues(&configValues, true);
|
|
}
|
|
}
|