- CPU OC for Erista (does NOT work out of the box)

- DRAM Bus voltage for Erista
- Mariko DRAM timing customization
This commit is contained in:
KazushiM
2022-02-05 16:51:42 +08:00
parent 03d2ded202
commit 2a08a6f714
6 changed files with 879 additions and 309 deletions

View File

@@ -23,7 +23,7 @@
#include "ldr_patcher.hpp"
#include "ldr_process_creation.hpp"
#include "ldr_ro_manager.hpp"
#include "ldr_oc_patch.hpp"
#include "ldr_oc_suite.hpp"
namespace ams::ldr {
@@ -608,10 +608,10 @@ namespace ams::ldr {
/* Apply pcv and ptm patches. */
if (g_is_pcv) {
pcv::ApplyAutoPcvPatch(map_address, nso_size);
oc::pcv::Patch(map_address, nso_size);
}
if (g_is_ptm) {
ptm::ApplyAutoPtmPatch(map_address, nso_size);
oc::ptm::Patch(map_address, nso_size);
}
}