mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Implement basic psm service (#467)
* Implement basic psm service - Add `IPsmServer` - Stub `GetBatteryChargePercentage` & `GetChargerType` * Fix wrong sorting * Add IPsmSession - Add `IPsmSession` by Thog - Implement `OpenSession`
This commit is contained in:
parent
b5f7d8106b
commit
7920dc1d2f
|
@ -33,6 +33,7 @@ namespace Ryujinx.Common.Logging
|
||||||
ServicePctl,
|
ServicePctl,
|
||||||
ServicePl,
|
ServicePl,
|
||||||
ServicePrepo,
|
ServicePrepo,
|
||||||
|
ServicePsm,
|
||||||
ServiceSet,
|
ServiceSet,
|
||||||
ServiceSfdnsres,
|
ServiceSfdnsres,
|
||||||
ServiceSm,
|
ServiceSm,
|
||||||
|
|
60
Ryujinx.HLE/HOS/Services/Psm/IPsmServer.cs
Normal file
60
Ryujinx.HLE/HOS/Services/Psm/IPsmServer.cs
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
using Ryujinx.Common.Logging;
|
||||||
|
using Ryujinx.HLE.HOS.Ipc;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Ryujinx.HLE.HOS.Services.Psm
|
||||||
|
{
|
||||||
|
class IPsmServer : IpcService
|
||||||
|
{
|
||||||
|
enum ChargerType : int
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
ChargerOrDock,
|
||||||
|
UsbC
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||||
|
|
||||||
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||||
|
|
||||||
|
public IPsmServer()
|
||||||
|
{
|
||||||
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
|
{
|
||||||
|
{ 0, GetBatteryChargePercentage },
|
||||||
|
{ 1, GetChargerType },
|
||||||
|
{ 7, OpenSession }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetBatteryChargePercentage() -> u32
|
||||||
|
public static long GetBatteryChargePercentage(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
int ChargePercentage = 100;
|
||||||
|
|
||||||
|
Context.ResponseData.Write(ChargePercentage);
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, $"Stubbed. ChargePercentage: {ChargePercentage}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetChargerType() -> u32
|
||||||
|
public static long GetChargerType(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
Context.ResponseData.Write((int)ChargerType.ChargerOrDock);
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, $"Stubbed. ChargerType: {ChargerType.ChargerOrDock}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// OpenSession() -> IPsmSession
|
||||||
|
public long OpenSession(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
MakeObject(Context, new IPsmSession(Context.Device.System));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
96
Ryujinx.HLE/HOS/Services/Psm/IPsmSession.cs
Normal file
96
Ryujinx.HLE/HOS/Services/Psm/IPsmSession.cs
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
using Ryujinx.Common.Logging;
|
||||||
|
using Ryujinx.HLE.HOS.Ipc;
|
||||||
|
using Ryujinx.HLE.HOS.Kernel;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Ryujinx.HLE.HOS.Services.Psm
|
||||||
|
{
|
||||||
|
class IPsmSession : IpcService
|
||||||
|
{
|
||||||
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||||
|
|
||||||
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||||
|
|
||||||
|
private KEvent StateChangeEvent;
|
||||||
|
private int StateChangeEventHandle;
|
||||||
|
|
||||||
|
public IPsmSession(Horizon System)
|
||||||
|
{
|
||||||
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
|
{
|
||||||
|
{ 0, BindStateChangeEvent },
|
||||||
|
{ 1, UnbindStateChangeEvent },
|
||||||
|
{ 2, SetChargerTypeChangeEventEnabled },
|
||||||
|
{ 3, SetPowerSupplyChangeEventEnabled },
|
||||||
|
{ 4, SetBatteryVoltageStateChangeEventEnabled }
|
||||||
|
};
|
||||||
|
|
||||||
|
StateChangeEvent = new KEvent(System);
|
||||||
|
StateChangeEventHandle = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// BindStateChangeEvent() -> KObject
|
||||||
|
public long BindStateChangeEvent(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
if (StateChangeEventHandle == -1)
|
||||||
|
{
|
||||||
|
KernelResult ResultCode = Context.Process.HandleTable.GenerateHandle(StateChangeEvent, out int StateChangeEventHandle);
|
||||||
|
|
||||||
|
if (ResultCode != KernelResult.Success)
|
||||||
|
{
|
||||||
|
return (long)ResultCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(StateChangeEventHandle);
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, "Stubbed.");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnbindStateChangeEvent()
|
||||||
|
public long UnbindStateChangeEvent(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
if (StateChangeEventHandle != -1)
|
||||||
|
{
|
||||||
|
Context.Process.HandleTable.CloseHandle(StateChangeEventHandle);
|
||||||
|
StateChangeEventHandle = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, "Stubbed.");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetChargerTypeChangeEventEnabled(u8)
|
||||||
|
public long SetChargerTypeChangeEventEnabled(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
bool ChargerTypeChangeEventEnabled = Context.RequestData.ReadBoolean();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, $"Stubbed. ChargerTypeChangeEventEnabled: {ChargerTypeChangeEventEnabled}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetPowerSupplyChangeEventEnabled(u8)
|
||||||
|
public long SetPowerSupplyChangeEventEnabled(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
bool PowerSupplyChangeEventEnabled = Context.RequestData.ReadBoolean();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, $"Stubbed. PowerSupplyChangeEventEnabled: {PowerSupplyChangeEventEnabled}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetBatteryVoltageStateChangeEventEnabled(u8)
|
||||||
|
public long SetBatteryVoltageStateChangeEventEnabled(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
bool BatteryVoltageStateChangeEventEnabled = Context.RequestData.ReadBoolean();
|
||||||
|
|
||||||
|
Logger.PrintStub(LogClass.ServicePsm, $"Stubbed. BatteryVoltageStateChangeEventEnabled: {BatteryVoltageStateChangeEventEnabled}");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -16,6 +16,7 @@ using Ryujinx.HLE.HOS.Services.Nv;
|
||||||
using Ryujinx.HLE.HOS.Services.Pctl;
|
using Ryujinx.HLE.HOS.Services.Pctl;
|
||||||
using Ryujinx.HLE.HOS.Services.Pl;
|
using Ryujinx.HLE.HOS.Services.Pl;
|
||||||
using Ryujinx.HLE.HOS.Services.Prepo;
|
using Ryujinx.HLE.HOS.Services.Prepo;
|
||||||
|
using Ryujinx.HLE.HOS.Services.Psm;
|
||||||
using Ryujinx.HLE.HOS.Services.Set;
|
using Ryujinx.HLE.HOS.Services.Set;
|
||||||
using Ryujinx.HLE.HOS.Services.Sfdnsres;
|
using Ryujinx.HLE.HOS.Services.Sfdnsres;
|
||||||
using Ryujinx.HLE.HOS.Services.Sm;
|
using Ryujinx.HLE.HOS.Services.Sm;
|
||||||
|
@ -152,6 +153,9 @@ namespace Ryujinx.HLE.HOS.Services
|
||||||
case "prepo:u":
|
case "prepo:u":
|
||||||
return new IPrepoService();
|
return new IPrepoService();
|
||||||
|
|
||||||
|
case "psm":
|
||||||
|
return new IPsmServer();
|
||||||
|
|
||||||
case "set":
|
case "set":
|
||||||
return new ISettingsServer();
|
return new ISettingsServer();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue