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
88 lines
No EOL
2.8 KiB
C#
88 lines
No EOL
2.8 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ptm.Psm
|
|
{
|
|
class IPsmSession : IpcService
|
|
{
|
|
private KEvent _stateChangeEvent;
|
|
private int _stateChangeEventHandle;
|
|
|
|
public IPsmSession(Horizon system)
|
|
{
|
|
_stateChangeEvent = new KEvent(system.KernelContext);
|
|
_stateChangeEventHandle = -1;
|
|
}
|
|
|
|
[CommandHipc(0)]
|
|
// BindStateChangeEvent() -> KObject
|
|
public ResultCode BindStateChangeEvent(ServiceCtx context)
|
|
{
|
|
if (_stateChangeEventHandle == -1)
|
|
{
|
|
KernelResult resultCode = context.Process.HandleTable.GenerateHandle(_stateChangeEvent.ReadableEvent, out int stateChangeEventHandle);
|
|
|
|
if (resultCode != KernelResult.Success)
|
|
{
|
|
return (ResultCode)resultCode;
|
|
}
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_stateChangeEventHandle);
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(1)]
|
|
// UnbindStateChangeEvent()
|
|
public ResultCode UnbindStateChangeEvent(ServiceCtx context)
|
|
{
|
|
if (_stateChangeEventHandle != -1)
|
|
{
|
|
context.Process.HandleTable.CloseHandle(_stateChangeEventHandle);
|
|
_stateChangeEventHandle = -1;
|
|
}
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(2)]
|
|
// SetChargerTypeChangeEventEnabled(u8)
|
|
public ResultCode SetChargerTypeChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool chargerTypeChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargerTypeChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(3)]
|
|
// SetPowerSupplyChangeEventEnabled(u8)
|
|
public ResultCode SetPowerSupplyChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool powerSupplyChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { powerSupplyChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(4)]
|
|
// SetBatteryVoltageStateChangeEventEnabled(u8)
|
|
public ResultCode SetBatteryVoltageStateChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool batteryVoltageStateChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { batteryVoltageStateChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |