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