0746b83edf
* Rename CommandAttribute as CommandHIpcAttribute to prepare for 12.x changes * Implement inital support for TIPC and adds SM command ids * *Ipc to *ipc * Missed a ref in last commit... * CommandAttributeTIpc to CommandAttributeTipc * Addresses comment and fixes some bugs around TIPC doesn't have any padding requirements as buffer C isn't a thing Fix for RegisterService inverting two argument only on TIPC
45 lines
No EOL
1.9 KiB
C#
45 lines
No EOL
1.9 KiB
C#
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);
|
|
|
|
[CommandHipc(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);
|
|
}
|
|
|
|
[CommandHipc(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;
|
|
}
|
|
|
|
[CommandHipc(2)] // 8.0.0+
|
|
// SetCpuOverclockEnabled(bool)
|
|
public ResultCode SetCpuOverclockEnabled(ServiceCtx context)
|
|
{
|
|
bool enabled = context.RequestData.ReadBoolean();
|
|
|
|
SetCpuOverclockEnabled(enabled);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |