2018-10-21 08:01:22 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 06:33:36 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Psm
|
|
|
|
|
{
|
|
|
|
|
class IPsmSession : IpcService
|
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
private KEvent _stateChangeEvent;
|
|
|
|
|
private int _stateChangeEventHandle;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public IPsmSession(Horizon system)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
|
|
|
|
{ 0, BindStateChangeEvent },
|
|
|
|
|
{ 1, UnbindStateChangeEvent },
|
|
|
|
|
{ 2, SetChargerTypeChangeEventEnabled },
|
|
|
|
|
{ 3, SetPowerSupplyChangeEventEnabled },
|
|
|
|
|
{ 4, SetBatteryVoltageStateChangeEventEnabled }
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_stateChangeEvent = new KEvent(system);
|
|
|
|
|
_stateChangeEventHandle = -1;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// BindStateChangeEvent() -> KObject
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long BindStateChangeEvent(ServiceCtx context)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
if (_stateChangeEventHandle == -1)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2019-01-18 23:26:39 +01:00
|
|
|
|
KernelResult resultCode = context.Process.HandleTable.GenerateHandle(_stateChangeEvent.ReadableEvent, out int stateChangeEventHandle);
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
if (resultCode != KernelResult.Success)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
return (long)resultCode;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_stateChangeEventHandle);
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm);
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UnbindStateChangeEvent()
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long UnbindStateChangeEvent(ServiceCtx context)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
if (_stateChangeEventHandle != -1)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
context.Process.HandleTable.CloseHandle(_stateChangeEventHandle);
|
|
|
|
|
_stateChangeEventHandle = -1;
|
2018-10-21 08:01:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm);
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetChargerTypeChangeEventEnabled(u8)
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long SetChargerTypeChangeEventEnabled(ServiceCtx context)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
bool chargerTypeChangeEventEnabled = context.RequestData.ReadBoolean();
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm, new { chargerTypeChangeEventEnabled });
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetPowerSupplyChangeEventEnabled(u8)
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long SetPowerSupplyChangeEventEnabled(ServiceCtx context)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
bool powerSupplyChangeEventEnabled = context.RequestData.ReadBoolean();
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm, new { powerSupplyChangeEventEnabled });
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetBatteryVoltageStateChangeEventEnabled(u8)
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long SetBatteryVoltageStateChangeEventEnabled(ServiceCtx context)
|
2018-10-21 08:01:22 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
bool batteryVoltageStateChangeEventEnabled = context.RequestData.ReadBoolean();
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm, new { batteryVoltageStateChangeEventEnabled });
|
2018-10-21 08:01:22 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|