aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2020-11-08 21:00:54 +0100
committerGitHub <noreply@github.com>2020-11-08 17:00:54 -0300
commiteda6b78894eef3d9dc1e8ea6984e2f5bd319d68e (patch)
tree546394d268af11a550a01099014747fa8fbdcf23 /Ryujinx.HLE/HOS/Services/Apm/ISession.cs
parent8d168574eb04ae1e7026ac2b058e3b184f068fae (diff)
apm/am: Refactoring/Unstub services (#1662)
* apm: Refactoring/Unstub service This PR implement some IPC calls of apm service: - nn::apm::IManager is fully implemented. - nn::apm::ISession is fully implemented (close #1633). - nn::apm::ISystemManager is partially implemented. nn::appletAE::ICommonStateGetter have some calls which are just a layer of apm IPC calls. What we did in some calls was wrong, it's fixed now! Everything is checked with RE. * abstract Apm *Server as Thog requested * abstract ISession and fix other classes * Address gdkchan feedback * Fix class * Fix Logging
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Apm/ISession.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Apm/ISession.cs33
1 files changed, 23 insertions, 10 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Apm/ISession.cs b/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
index a979af76..95bdf35d 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
+++ b/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
@@ -1,30 +1,43 @@
-using Ryujinx.Common.Logging;
-
namespace Ryujinx.HLE.HOS.Services.Apm
{
- class ISession : IpcService
+ abstract class ISession : IpcService
{
- public ISession() { }
+ public ISession(ServiceCtx context) { }
+
+ protected abstract ResultCode SetPerformanceConfiguration(PerformanceMode performanceMode, PerformanceConfiguration performanceConfiguration);
+ protected abstract ResultCode GetPerformanceConfiguration(PerformanceMode performanceMode, out PerformanceConfiguration performanceConfiguration);
+ protected abstract void SetCpuOverclockEnabled(bool enabled);
[Command(0)]
// SetPerformanceConfiguration(nn::apm::PerformanceMode, nn::apm::PerformanceConfiguration)
public ResultCode SetPerformanceConfiguration(ServiceCtx context)
{
- PerformanceMode perfMode = (PerformanceMode)context.RequestData.ReadInt32();
- PerformanceConfiguration perfConfig = (PerformanceConfiguration)context.RequestData.ReadInt32();
+ PerformanceMode performanceMode = (PerformanceMode)context.RequestData.ReadInt32();
+ PerformanceConfiguration performanceConfiguration = (PerformanceConfiguration)context.RequestData.ReadInt32();
- return ResultCode.Success;
+ return SetPerformanceConfiguration(performanceMode, performanceConfiguration);
}
[Command(1)]
// GetPerformanceConfiguration(nn::apm::PerformanceMode) -> nn::apm::PerformanceConfiguration
public ResultCode GetPerformanceConfiguration(ServiceCtx context)
{
- PerformanceMode perfMode = (PerformanceMode)context.RequestData.ReadInt32();
+ PerformanceMode performanceMode = (PerformanceMode)context.RequestData.ReadInt32();
+
+ ResultCode resultCode = GetPerformanceConfiguration(performanceMode, out PerformanceConfiguration performanceConfiguration);
- context.ResponseData.Write((uint)PerformanceConfiguration.PerformanceConfiguration1);
+ context.ResponseData.Write((uint)performanceConfiguration);
+
+ return resultCode;
+ }
+
+ [Command(2)] // 8.0.0+
+ // SetCpuOverclockEnabled(bool)
+ public ResultCode SetCpuOverclockEnabled(ServiceCtx context)
+ {
+ bool enabled = context.RequestData.ReadBoolean();
- Logger.Stub?.PrintStub(LogClass.ServiceApm);
+ SetCpuOverclockEnabled(enabled);
return ResultCode.Success;
}