diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-29 04:46:00 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-29 04:46:00 +0200 |
commit | e52306ca6086ca017b86d2ed98d6015592b00549 (patch) | |
tree | 4e9727d4ca1d874329930dbab8e507f5958f2aae /src/core/hle | |
parent | apm: Add getters for performance config and mode (diff) | |
download | yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar.gz yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar.bz2 yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar.lz yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar.xz yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.tar.zst yuzu-e52306ca6086ca017b86d2ed98d6015592b00549.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/apm/interface.cpp | 12 | ||||
-rw-r--r-- | src/core/hle/service/apm/interface.h | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/core/hle/service/apm/interface.cpp b/src/core/hle/service/apm/interface.cpp index b2241366f..06f0f8edd 100644 --- a/src/core/hle/service/apm/interface.cpp +++ b/src/core/hle/service/apm/interface.cpp @@ -104,6 +104,18 @@ void APM_Sys::GetPerformanceEvent(Kernel::HLERequestContext& ctx) { rb.PushIpcInterface<ISession>(controller); } +void APM_Sys::SetCpuBoostMode(Kernel::HLERequestContext& ctx) { + IPC::RequestParser rp{ctx}; + const auto mode = rp.PopEnum<CpuBoostMode>(); + + LOG_DEBUG(Service_APM, "called, mode={:08X}", static_cast<u32>(mode)); + + controller.SetFromCpuBoostMode(mode); + + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(RESULT_SUCCESS); +} + void APM_Sys::GetCurrentPerformanceConfiguration(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Service_APM, "called"); diff --git a/src/core/hle/service/apm/interface.h b/src/core/hle/service/apm/interface.h index 6d5fdf8ef..de1b89437 100644 --- a/src/core/hle/service/apm/interface.h +++ b/src/core/hle/service/apm/interface.h @@ -29,6 +29,8 @@ public: explicit APM_Sys(Controller& controller); ~APM_Sys() override; + void SetCpuBoostMode(Kernel::HLERequestContext& ctx); + private: void GetPerformanceEvent(Kernel::HLERequestContext& ctx); void GetCurrentPerformanceConfiguration(Kernel::HLERequestContext& ctx); |