aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
blob: f828cd175a96afcb5cc7991e9d7cdc0630a06d98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace Ryujinx.HLE.HOS.Services.Apm
{
    abstract class ISession : IpcService
    {
        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);

        [CommandCmif(0)]
        // SetPerformanceConfiguration(nn::apm::PerformanceMode, nn::apm::PerformanceConfiguration)
        public ResultCode SetPerformanceConfiguration(ServiceCtx context)
        {
            PerformanceMode          performanceMode          = (PerformanceMode)context.RequestData.ReadInt32();
            PerformanceConfiguration performanceConfiguration = (PerformanceConfiguration)context.RequestData.ReadInt32();

            return SetPerformanceConfiguration(performanceMode, performanceConfiguration);
        }

        [CommandCmif(1)]
        // GetPerformanceConfiguration(nn::apm::PerformanceMode) -> nn::apm::PerformanceConfiguration
        public ResultCode GetPerformanceConfiguration(ServiceCtx context)
        {
            PerformanceMode performanceMode = (PerformanceMode)context.RequestData.ReadInt32();

            ResultCode resultCode = GetPerformanceConfiguration(performanceMode, out PerformanceConfiguration performanceConfiguration);

            context.ResponseData.Write((uint)performanceConfiguration);

            return resultCode;
        }

        [CommandCmif(2)] // 8.0.0+
        // SetCpuOverclockEnabled(bool)
        public ResultCode SetCpuOverclockEnabled(ServiceCtx context)
        {
            bool enabled = context.RequestData.ReadBoolean();

            SetCpuOverclockEnabled(enabled);

            return ResultCode.Success;
        }
    }
}