blob: 3ce5029740dc553c66245dc959c495f983849df8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
using Ryujinx.Common.Logging;
namespace Ryujinx.HLE.HOS.Services.Ptm.Psm
{
[Service("psm")]
class IPsmServer : IpcService
{
public IPsmServer(ServiceCtx context) { }
[CommandCmif(0)]
// GetBatteryChargePercentage() -> u32
public static ResultCode GetBatteryChargePercentage(ServiceCtx context)
{
int chargePercentage = 100;
context.ResponseData.Write(chargePercentage);
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargePercentage });
return ResultCode.Success;
}
[CommandCmif(1)]
// GetChargerType() -> u32
public static ResultCode GetChargerType(ServiceCtx context)
{
ChargerType chargerType = ChargerType.ChargerOrDock;
context.ResponseData.Write((int)chargerType);
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargerType });
return ResultCode.Success;
}
[CommandCmif(7)]
// OpenSession() -> IPsmSession
public ResultCode OpenSession(ServiceCtx context)
{
MakeObject(context, new IPsmSession(context.Device.System));
return ResultCode.Success;
}
}
}
|