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