2018-02-04 23:08:20 +00:00
|
|
|
using ChocolArm64.Memory;
|
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;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvGpuAS;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvGpuGpu;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvHostChannel;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvHostCtrl;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvMap;
|
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.Nv
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-09-18 23:36:43 +00:00
|
|
|
class INvDrvServices : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private delegate int IoctlProcessor(ServiceCtx context, int cmd);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static Dictionary<string, IoctlProcessor> _ioctlProcessors =
|
2018-12-05 00:52:39 +00:00
|
|
|
new Dictionary<string, IoctlProcessor>()
|
|
|
|
{
|
2018-12-03 02:38:47 +00:00
|
|
|
{ "/dev/nvhost-as-gpu", ProcessIoctlNvGpuAS },
|
|
|
|
{ "/dev/nvhost-ctrl", ProcessIoctlNvHostCtrl },
|
|
|
|
{ "/dev/nvhost-ctrl-gpu", ProcessIoctlNvGpuGpu },
|
|
|
|
{ "/dev/nvhost-gpu", ProcessIoctlNvHostChannel },
|
|
|
|
{ "/dev/nvhost-nvdec", ProcessIoctlNvHostChannel },
|
|
|
|
{ "/dev/nvhost-vic", ProcessIoctlNvHostChannel },
|
|
|
|
{ "/dev/nvmap", ProcessIoctlNvMap }
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 18:53:23 +00:00
|
|
|
};
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public static GlobalStateTable Fds { get; private set; }
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private KEvent _event;
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public INvDrvServices(Horizon system)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>()
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-05-25 21:33:09 +00:00
|
|
|
{ 0, Open },
|
|
|
|
{ 1, Ioctl },
|
|
|
|
{ 2, Close },
|
|
|
|
{ 3, Initialize },
|
|
|
|
{ 4, QueryEvent },
|
|
|
|
{ 8, SetClientPid },
|
2018-07-15 03:04:46 +00:00
|
|
|
{ 11, Ioctl },
|
2018-05-25 21:33:09 +00:00
|
|
|
{ 13, FinishInitialize }
|
2018-03-12 04:04:52 +00:00
|
|
|
};
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
_event = new KEvent(system);
|
2018-03-19 18:58:46 +00:00
|
|
|
}
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
static INvDrvServices()
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
|
|
|
Fds = new GlobalStateTable();
|
2018-02-25 04:34:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Open(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long namePtr = context.Request.SendBuff[0].Position;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
string name = MemoryHelper.ReadAsciiString(context.Memory, namePtr);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int fd = Fds.Add(context.Process, new NvFd(name));
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(fd);
|
|
|
|
context.ResponseData.Write(0);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Ioctl(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int fd = context.RequestData.ReadInt32();
|
|
|
|
int cmd = context.RequestData.ReadInt32();
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvFd fdData = Fds.GetData<NvFd>(context.Process, fd);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int result;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (_ioctlProcessors.TryGetValue(fdData.Name, out IoctlProcessor process))
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
result = process(context, cmd);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
throw new NotImplementedException($"{fdData.Name} {cmd:x4}");
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 18:53:23 +00:00
|
|
|
|
|
|
|
//TODO: Verify if the error codes needs to be translated.
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(result);
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 18:53:23 +00:00
|
|
|
|
|
|
|
return 0;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Close(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int fd = context.RequestData.ReadInt32();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Fds.Delete(context.Process, fd);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long Initialize(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long transferMemSize = context.RequestData.ReadInt64();
|
|
|
|
int transferMemHandle = context.Request.HandleDesc.ToCopy[0];
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvMapIoctl.InitializeNvMap(context);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-03-20 15:18:25 +00:00
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long QueryEvent(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int fd = context.RequestData.ReadInt32();
|
|
|
|
int eventId = context.RequestData.ReadInt32();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
//TODO: Use Fd/EventId, different channels have different events.
|
2018-12-06 11:16:24 +00:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_event.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 18:11:46 +00:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-03-19 18:58:46 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long SetClientPid(ServiceCtx context)
|
2018-02-06 23:28:32 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long pid = context.RequestData.ReadInt64();
|
2018-02-06 23:28:32 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-02-06 23:28:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-02 23:40:26 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long FinishInitialize(ServiceCtx context)
|
2018-05-25 21:33:09 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceNv, "Stubbed.");
|
2018-05-25 21:33:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-06 23:28:32 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctlNvGpuAS(ServiceCtx context, int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ProcessIoctl(context, cmd, NvGpuASIoctl.ProcessIoctl);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctlNvHostCtrl(ServiceCtx context, int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ProcessIoctl(context, cmd, NvHostCtrlIoctl.ProcessIoctl);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctlNvGpuGpu(ServiceCtx context, int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ProcessIoctl(context, cmd, NvGpuGpuIoctl.ProcessIoctl);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctlNvHostChannel(ServiceCtx context, int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ProcessIoctl(context, cmd, NvHostChannelIoctl.ProcessIoctl);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctlNvMap(ServiceCtx context, int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ProcessIoctl(context, cmd, NvMapIoctl.ProcessIoctl);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static int ProcessIoctl(ServiceCtx context, int cmd, IoctlProcessor processor)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
if (CmdIn(cmd) && context.Request.GetBufferType0x21().Position == 0)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintError(LogClass.ServiceNv, "Input buffer is null!");
|
2018-04-05 00:01:36 +00:00
|
|
|
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 18:53:23 +00:00
|
|
|
return NvResult.InvalidInput;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (CmdOut(cmd) && context.Request.GetBufferType0x22().Position == 0)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintError(LogClass.ServiceNv, "Output buffer is null!");
|
2018-04-05 00:01:36 +00:00
|
|
|
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 18:53:23 +00:00
|
|
|
return NvResult.InvalidInput;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return processor(context, cmd);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static bool CmdIn(int cmd)
|
2018-03-06 20:27:50 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ((cmd >> 30) & 1) != 0;
|
2018-03-06 20:27:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private static bool CmdOut(int cmd)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return ((cmd >> 31) & 1) != 0;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public static void UnloadProcess(KProcess process)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
Fds.DeleteProcess(process);
|
2018-03-12 04:04:52 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvGpuASIoctl.UnloadProcess(process);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvHostChannelIoctl.UnloadProcess(process);
|
2018-07-15 03:04:46 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvHostCtrlIoctl.UnloadProcess(process);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
NvMapIoctl.UnloadProcess(process);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-25 21:33:09 +00:00
|
|
|
}
|