2019-07-14 22:50:11 +02:00
|
|
|
using Ryujinx.Common;
|
2022-05-31 21:29:35 +02:00
|
|
|
using Ryujinx.Cpu;
|
2019-07-14 22:50:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time.StaticService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class ISteadyClock : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
private SteadyClockCore _steadyClock;
|
|
|
|
private bool _writePermission;
|
|
|
|
private bool _bypassUninitializedClock;
|
|
|
|
|
|
|
|
public ISteadyClock(SteadyClockCore steadyClock, bool writePermission, bool bypassUninitializedClock)
|
|
|
|
{
|
|
|
|
_steadyClock = steadyClock;
|
|
|
|
_writePermission = writePermission;
|
|
|
|
_bypassUninitializedClock = bypassUninitializedClock;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetCurrentTimePoint() -> nn::time::SteadyClockTimePoint
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetCurrentTimePoint(ServiceCtx context)
|
2018-07-02 02:03:05 +02:00
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
2022-05-31 21:29:35 +02:00
|
|
|
ITickSource tickSource = context.Device.System.TickSource;
|
|
|
|
|
|
|
|
SteadyClockTimePoint currentTimePoint = _steadyClock.GetCurrentTimePoint(tickSource);
|
2018-07-02 02:03:05 +02:00
|
|
|
|
2019-07-14 22:50:11 +02:00
|
|
|
context.ResponseData.WriteStruct(currentTimePoint);
|
2018-07-02 02:03:05 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-07-02 02:03:05 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetTestOffset() -> nn::TimeSpanType
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetTestOffset(ServiceCtx context)
|
2018-07-02 02:03:05 +02:00
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.WriteStruct(_steadyClock.GetTestOffset());
|
2018-07-02 02:03:05 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-07-02 02:03:05 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(3)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetTestOffset(nn::TimeSpanType)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetTestOffset(ServiceCtx context)
|
2018-07-02 02:03:05 +02:00
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_writePermission)
|
|
|
|
{
|
|
|
|
return ResultCode.PermissionDenied;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
2019-07-14 22:50:11 +02:00
|
|
|
TimeSpanType testOffset = context.RequestData.ReadStruct<TimeSpanType>();
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
_steadyClock.SetTestOffset(testOffset);
|
2019-07-14 22:50:11 +02:00
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
return ResultCode.Success;
|
2019-07-14 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(100)] // 2.0.0+
|
2019-07-15 19:52:35 +02:00
|
|
|
// GetRtcValue() -> u64
|
|
|
|
public ResultCode GetRtcValue(ServiceCtx context)
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode result = _steadyClock.GetRtcValue(out ulong rtcValue);
|
2019-07-15 19:52:35 +02:00
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(rtcValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(101)] // 2.0.0+
|
2019-07-15 19:52:35 +02:00
|
|
|
// IsRtcResetDetected() -> bool
|
|
|
|
public ResultCode IsRtcResetDetected(ServiceCtx context)
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(_steadyClock.IsRtcResetDetected());
|
2019-07-15 19:52:35 +02:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(102)] // 2.0.0+
|
2019-07-15 19:52:35 +02:00
|
|
|
// GetSetupResultValue() -> u32
|
|
|
|
public ResultCode GetSetupResultValue(ServiceCtx context)
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write((uint)_steadyClock.GetSetupResultValue());
|
2019-07-15 19:52:35 +02:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(200)] // 3.0.0+
|
2019-07-14 22:50:11 +02:00
|
|
|
// GetInternalOffset() -> nn::TimeSpanType
|
|
|
|
public ResultCode GetInternalOffset(ServiceCtx context)
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.WriteStruct(_steadyClock.GetInternalOffset());
|
2019-07-14 22:50:11 +02:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(201)] // 3.0.0-3.0.2
|
2019-07-14 22:50:11 +02:00
|
|
|
// SetInternalOffset(nn::TimeSpanType)
|
|
|
|
public ResultCode SetInternalOffset(ServiceCtx context)
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
if (!_writePermission)
|
|
|
|
{
|
|
|
|
return ResultCode.PermissionDenied;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_bypassUninitializedClock && !_steadyClock.IsInitialized())
|
|
|
|
{
|
|
|
|
return ResultCode.UninitializedClock;
|
|
|
|
}
|
|
|
|
|
2019-07-14 22:50:11 +02:00
|
|
|
TimeSpanType internalOffset = context.RequestData.ReadStruct<TimeSpanType>();
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
_steadyClock.SetInternalOffset(internalOffset);
|
2018-07-02 02:03:05 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|