forked from Mirror/Ryujinx
am: Stub SetWirelessPriorityMode, SetWirelessPriorityMode and GetHdcpAuthenticationState (#3535)
This PR some calls in `am` service: - ISelfController: SetWirelessPriorityMode, SaveCurrentScreenshot (Partially checked by RE). - ICommonStateGetter: GetHdcpAuthenticationState Close #1831 and close #3527
This commit is contained in:
parent
00e35d9bf6
commit
2135b6a51a
4 changed files with 63 additions and 0 deletions
|
@ -224,6 +224,17 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[CommandHipc(62)] // 4.0.0+
|
||||||
|
// GetHdcpAuthenticationState() -> s32 state
|
||||||
|
public ResultCode GetHdcpAuthenticationState(ServiceCtx context)
|
||||||
|
{
|
||||||
|
context.ResponseData.Write(0);
|
||||||
|
|
||||||
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
||||||
|
|
||||||
|
return ResultCode.Success;
|
||||||
|
}
|
||||||
|
|
||||||
[CommandHipc(66)] // 6.0.0+
|
[CommandHipc(66)] // 6.0.0+
|
||||||
// SetCpuBoostMode(u32 cpu_boost_mode)
|
// SetCpuBoostMode(u32 cpu_boost_mode)
|
||||||
public ResultCode SetCpuBoostMode(ServiceCtx context)
|
public ResultCode SetCpuBoostMode(ServiceCtx context)
|
||||||
|
|
|
@ -2,6 +2,7 @@ using Ryujinx.Common.Logging;
|
||||||
using Ryujinx.HLE.HOS.Ipc;
|
using Ryujinx.HLE.HOS.Ipc;
|
||||||
using Ryujinx.HLE.HOS.Kernel.Common;
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
||||||
using Ryujinx.HLE.HOS.Kernel.Threading;
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
||||||
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
||||||
|
@ -316,6 +317,22 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[CommandHipc(80)] // 4.0.0+
|
||||||
|
// SetWirelessPriorityMode(s32 wireless_priority_mode)
|
||||||
|
public ResultCode SetWirelessPriorityMode(ServiceCtx context)
|
||||||
|
{
|
||||||
|
WirelessPriorityMode wirelessPriorityMode = (WirelessPriorityMode)context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
if (wirelessPriorityMode > WirelessPriorityMode.Unknown2)
|
||||||
|
{
|
||||||
|
return ResultCode.InvalidParameters;
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { wirelessPriorityMode });
|
||||||
|
|
||||||
|
return ResultCode.Success;
|
||||||
|
}
|
||||||
|
|
||||||
[CommandHipc(90)] // 6.0.0+
|
[CommandHipc(90)] // 6.0.0+
|
||||||
// GetAccumulatedSuspendedTickValue() -> u64
|
// GetAccumulatedSuspendedTickValue() -> u64
|
||||||
public ResultCode GetAccumulatedSuspendedTickValue(ServiceCtx context)
|
public ResultCode GetAccumulatedSuspendedTickValue(ServiceCtx context)
|
||||||
|
@ -356,5 +373,21 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
|
||||||
|
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[CommandHipc(120)] // 11.0.0+
|
||||||
|
// SaveCurrentScreenshot(s32 album_report_option)
|
||||||
|
public ResultCode SaveCurrentScreenshot(ServiceCtx context)
|
||||||
|
{
|
||||||
|
AlbumReportOption albumReportOption = (AlbumReportOption)context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
if (albumReportOption > AlbumReportOption.Unknown3)
|
||||||
|
{
|
||||||
|
return ResultCode.InvalidParameters;
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { albumReportOption });
|
||||||
|
|
||||||
|
return ResultCode.Success;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types
|
||||||
|
{
|
||||||
|
enum AlbumReportOption
|
||||||
|
{
|
||||||
|
OverlayNotDisplayed,
|
||||||
|
OverlayDisplayed,
|
||||||
|
Unknown2,
|
||||||
|
Unknown3
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types
|
||||||
|
{
|
||||||
|
enum WirelessPriorityMode
|
||||||
|
{
|
||||||
|
Default,
|
||||||
|
OptimizedForWlan,
|
||||||
|
Unknown2
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue