2018-03-12 04:04:52 +00:00
|
|
|
using Ryujinx.Graphics.Gal;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Android;
|
2018-02-04 23:08:20 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IHOSBinderDriver : IpcService, IDisposable
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-02-10 02:31:26 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
2018-09-18 04:30:35 +00:00
|
|
|
private KEvent BinderEvent;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-23 21:48:27 +00:00
|
|
|
private NvFlinger Flinger;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-09-18 23:36:43 +00:00
|
|
|
public IHOSBinderDriver(Horizon System, IGalRenderer Renderer)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-02-10 00:14:55 +00:00
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-21 23:04:43 +00:00
|
|
|
{ 0, TransactParcel },
|
|
|
|
{ 1, AdjustRefcount },
|
|
|
|
{ 2, GetNativeHandle },
|
|
|
|
{ 3, TransactParcelAuto }
|
2018-02-10 00:14:55 +00:00
|
|
|
};
|
|
|
|
|
2018-09-18 23:36:43 +00:00
|
|
|
BinderEvent = new KEvent(System);
|
2018-03-19 18:58:46 +00:00
|
|
|
|
2018-09-23 18:11:46 +00:00
|
|
|
BinderEvent.ReadableEvent.Signal();
|
2018-09-18 04:30:35 +00:00
|
|
|
|
|
|
|
Flinger = new NvFlinger(Renderer, BinderEvent);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long TransactParcel(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
int Id = Context.RequestData.ReadInt32();
|
|
|
|
int Code = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
long DataPos = Context.Request.SendBuff[0].Position;
|
|
|
|
long DataSize = Context.Request.SendBuff[0].Size;
|
|
|
|
|
2018-06-09 00:15:02 +00:00
|
|
|
byte[] Data = Context.Memory.ReadBytes(DataPos, DataSize);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-23 21:48:27 +00:00
|
|
|
Data = Parcel.GetParcelData(Data);
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
return Flinger.ProcessParcelRequest(Context, Data, Code);
|
|
|
|
}
|
|
|
|
|
|
|
|
public long TransactParcelAuto(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Id = Context.RequestData.ReadInt32();
|
|
|
|
int Code = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-06-02 23:40:26 +00:00
|
|
|
(long DataPos, long DataSize) = Context.Request.GetBufferType0x21();
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2018-06-09 00:15:02 +00:00
|
|
|
byte[] Data = Context.Memory.ReadBytes(DataPos, DataSize);
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
Data = Parcel.GetParcelData(Data);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-02-23 21:48:27 +00:00
|
|
|
return Flinger.ProcessParcelRequest(Context, Data, Code);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long AdjustRefcount(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
int Id = Context.RequestData.ReadInt32();
|
|
|
|
int AddVal = Context.RequestData.ReadInt32();
|
|
|
|
int Type = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public long GetNativeHandle(ServiceCtx Context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
|
|
|
int Id = Context.RequestData.ReadInt32();
|
|
|
|
uint Unk = Context.RequestData.ReadUInt32();
|
|
|
|
|
2018-09-23 18:11:46 +00:00
|
|
|
if (Context.Process.HandleTable.GenerateHandle(BinderEvent.ReadableEvent, out int Handle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-03-19 18:58:46 +00:00
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeMove(Handle);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-23 21:48:27 +00:00
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
protected virtual void Dispose(bool Disposing)
|
2018-02-23 21:48:27 +00:00
|
|
|
{
|
2018-03-16 00:06:24 +00:00
|
|
|
if (Disposing)
|
2018-02-23 21:48:27 +00:00
|
|
|
{
|
|
|
|
Flinger.Dispose();
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|