2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Apm
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-11-08 21:00:54 +01:00
|
|
|
abstract class ISession : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-11-08 21:00:54 +01:00
|
|
|
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);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetPerformanceConfiguration(nn::apm::PerformanceMode, nn::apm::PerformanceConfiguration)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetPerformanceConfiguration(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-11-08 21:00:54 +01:00
|
|
|
PerformanceMode performanceMode = (PerformanceMode)context.RequestData.ReadInt32();
|
|
|
|
PerformanceConfiguration performanceConfiguration = (PerformanceConfiguration)context.RequestData.ReadInt32();
|
2018-03-23 13:26:11 +01:00
|
|
|
|
2020-11-08 21:00:54 +01:00
|
|
|
return SetPerformanceConfiguration(performanceMode, performanceConfiguration);
|
2018-03-23 13:26:11 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(1)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetPerformanceConfiguration(nn::apm::PerformanceMode) -> nn::apm::PerformanceConfiguration
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetPerformanceConfiguration(ServiceCtx context)
|
2018-03-23 13:26:11 +01:00
|
|
|
{
|
2020-11-08 21:00:54 +01:00
|
|
|
PerformanceMode performanceMode = (PerformanceMode)context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
ResultCode resultCode = GetPerformanceConfiguration(performanceMode, out PerformanceConfiguration performanceConfiguration);
|
2018-03-23 13:26:11 +01:00
|
|
|
|
2020-11-08 21:00:54 +01:00
|
|
|
context.ResponseData.Write((uint)performanceConfiguration);
|
|
|
|
|
|
|
|
return resultCode;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)] // 8.0.0+
|
2020-11-08 21:00:54 +01:00
|
|
|
// SetCpuOverclockEnabled(bool)
|
|
|
|
public ResultCode SetCpuOverclockEnabled(ServiceCtx context)
|
|
|
|
{
|
|
|
|
bool enabled = context.RequestData.ReadBoolean();
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2020-11-08 21:00:54 +01:00
|
|
|
SetCpuOverclockEnabled(enabled);
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|