2018-10-21 06:01:22 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ptm.Psm
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
|
[Service("psm")]
|
2018-10-21 06:01:22 +00:00
|
|
|
|
class IPsmServer : IpcService
|
|
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
|
public IPsmServer(ServiceCtx context) { }
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(0)]
|
2018-10-21 06:01:22 +00:00
|
|
|
|
// GetBatteryChargePercentage() -> u32
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public static ResultCode GetBatteryChargePercentage(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int chargePercentage = 100;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write(chargePercentage);
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargePercentage });
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(1)]
|
2018-10-21 06:01:22 +00:00
|
|
|
|
// GetChargerType() -> u32
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public static ResultCode GetChargerType(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
ChargerType chargerType = ChargerType.ChargerOrDock;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
context.ResponseData.Write((int)chargerType);
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargerType });
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(7)]
|
2018-10-21 06:01:22 +00:00
|
|
|
|
// OpenSession() -> IPsmSession
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode OpenSession(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
MakeObject(context, new IPsmSession(context.Device.System));
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|