2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-05-26 20:49:21 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Mm
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
|
|
|
class IRequest : IpcService
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-05-26 20:49:21 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
public IRequest()
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>()
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-12-07 15:19:10 +00:00
|
|
|
{ 0, InitializeOld },
|
|
|
|
{ 1, FinalizeOld },
|
|
|
|
{ 2, SetAndWaitOld },
|
|
|
|
{ 3, GetOld },
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 4, Initialize },
|
2018-12-03 02:38:47 +00:00
|
|
|
{ 5, Finalize },
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 6, SetAndWait },
|
|
|
|
{ 7, Get }
|
2018-05-26 20:49:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-07 15:12:11 +00:00
|
|
|
// InitializeOld(u32, u32, u32)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long InitializeOld(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
|
|
|
int unknown1 = context.RequestData.ReadInt32();
|
|
|
|
int unknown2 = context.RequestData.ReadInt32();
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
|
|
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FinalizeOld(u32)
|
|
|
|
public long FinalizeOld(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.Device.Gpu.UninitializeVideoDecoder();
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
// SetAndWaitOld(u32, u32, u32)
|
|
|
|
public long SetAndWaitOld(ServiceCtx context)
|
|
|
|
{
|
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
|
|
|
int unknown1 = context.RequestData.ReadInt32();
|
|
|
|
int unknown2 = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
|
|
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOld(u32) -> u32
|
|
|
|
public long GetOld(ServiceCtx context)
|
|
|
|
{
|
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0}");
|
|
|
|
|
|
|
|
context.ResponseData.Write(0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize()
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Initialize(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
// Finalize(u32)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Finalize(ServiceCtx context)
|
2018-12-03 02:38:47 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Device.Gpu.UninitializeVideoDecoder();
|
2018-12-03 02:38:47 +00:00
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
// SetAndWait(u32, u32, u32)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long SetAndWait(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-12-07 15:19:10 +00:00
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
|
|
|
int unknown1 = context.RequestData.ReadInt32();
|
|
|
|
int unknown2 = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0} - " +
|
|
|
|
$"Unknown1: {unknown1} - Unknown2: {unknown2}");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
// Get(u32) -> u32
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Get(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-12-07 15:19:10 +00:00
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
2018-05-26 20:49:21 +00:00
|
|
|
|
2018-12-07 15:19:10 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, $"Stubbed. Unknown0: {unknown0}");
|
|
|
|
|
|
|
|
context.ResponseData.Write(0);
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|