2021-01-09 23:11:31 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
using Ryujinx.Graphics.Gpu.Memory;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostAsGpu.Types;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap;
|
2020-12-01 23:23:43 +00:00
|
|
|
|
using Ryujinx.Memory;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostAsGpu
|
|
|
|
|
{
|
|
|
|
|
class NvHostAsGpuDeviceFile : NvDeviceFile
|
|
|
|
|
{
|
|
|
|
|
private static ConcurrentDictionary<KProcess, AddressSpaceContext> _addressSpaceContextRegistry = new ConcurrentDictionary<KProcess, AddressSpaceContext>();
|
2020-12-09 22:26:05 +00:00
|
|
|
|
private NvMemoryAllocator _memoryAllocator;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2020-12-09 22:26:05 +00:00
|
|
|
|
public NvHostAsGpuDeviceFile(ServiceCtx context, IVirtualMemoryManager memory, long owner) : base(context, owner)
|
2021-01-09 23:11:31 +00:00
|
|
|
|
{
|
|
|
|
|
_memoryAllocator = context.Device.MemoryAllocator;
|
2020-12-09 22:26:05 +00:00
|
|
|
|
}
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
public override NvInternalResult Ioctl(NvIoctl command, Span<byte> arguments)
|
|
|
|
|
{
|
|
|
|
|
NvInternalResult result = NvInternalResult.NotImplemented;
|
|
|
|
|
|
|
|
|
|
if (command.Type == NvIoctl.NvGpuAsMagic)
|
|
|
|
|
{
|
|
|
|
|
switch (command.Number)
|
|
|
|
|
{
|
|
|
|
|
case 0x01:
|
|
|
|
|
result = CallIoctlMethod<BindChannelArguments>(BindChannel, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x02:
|
|
|
|
|
result = CallIoctlMethod<AllocSpaceArguments>(AllocSpace, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x03:
|
|
|
|
|
result = CallIoctlMethod<FreeSpaceArguments>(FreeSpace, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x05:
|
|
|
|
|
result = CallIoctlMethod<UnmapBufferArguments>(UnmapBuffer, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x06:
|
|
|
|
|
result = CallIoctlMethod<MapBufferExArguments>(MapBufferEx, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x08:
|
|
|
|
|
result = CallIoctlMethod<GetVaRegionsArguments>(GetVaRegions, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x09:
|
|
|
|
|
result = CallIoctlMethod<InitializeExArguments>(InitializeEx, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x14:
|
|
|
|
|
result = CallIoctlMethod<RemapArguments>(Remap, arguments);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override NvInternalResult Ioctl3(NvIoctl command, Span<byte> arguments, Span<byte> inlineOutBuffer)
|
|
|
|
|
{
|
|
|
|
|
NvInternalResult result = NvInternalResult.NotImplemented;
|
|
|
|
|
|
|
|
|
|
if (command.Type == NvIoctl.NvGpuAsMagic)
|
|
|
|
|
{
|
|
|
|
|
switch (command.Number)
|
|
|
|
|
{
|
|
|
|
|
case 0x08:
|
|
|
|
|
// This is the same as the one in ioctl as inlineOutBuffer is empty.
|
|
|
|
|
result = CallIoctlMethod<GetVaRegionsArguments>(GetVaRegions, arguments);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult BindChannel(ref BindChannelArguments arguments)
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNv);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult AllocSpace(ref AllocSpaceArguments arguments)
|
|
|
|
|
{
|
2019-10-13 06:02:07 +00:00
|
|
|
|
AddressSpaceContext addressSpaceContext = GetAddressSpaceContext(Context);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
ulong size = (ulong)arguments.Pages * (ulong)arguments.PageSize;
|
|
|
|
|
|
|
|
|
|
NvInternalResult result = NvInternalResult.Success;
|
|
|
|
|
|
|
|
|
|
lock (addressSpaceContext)
|
|
|
|
|
{
|
|
|
|
|
// Note: When the fixed offset flag is not set,
|
|
|
|
|
// the Offset field holds the alignment size instead.
|
|
|
|
|
if ((arguments.Flags & AddressSpaceFlags.FixedOffset) != 0)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
bool regionInUse = _memoryAllocator.IsRegionInUse(arguments.Offset, size, out ulong freeAddressStartPosition);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
ulong address;
|
|
|
|
|
|
|
|
|
|
if (!regionInUse)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
_memoryAllocator.AllocateRange(arguments.Offset, size, freeAddressStartPosition);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
address = freeAddressStartPosition;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
address = NvMemoryAllocator.PteUnmapped;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 22:03:33 +00:00
|
|
|
|
arguments.Offset = address;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
ulong address = _memoryAllocator.GetFreeAddress(size, out ulong freeAddressStartPosition, arguments.Offset);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
if (address != NvMemoryAllocator.PteUnmapped)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
_memoryAllocator.AllocateRange(address, size, freeAddressStartPosition);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 22:03:33 +00:00
|
|
|
|
arguments.Offset = address;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
if (arguments.Offset == NvMemoryAllocator.PteUnmapped)
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
|
|
|
|
arguments.Offset = 0;
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Failed to allocate size {size:x16}!");
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
result = NvInternalResult.OutOfMemory;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
addressSpaceContext.AddReservation(arguments.Offset, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult FreeSpace(ref FreeSpaceArguments arguments)
|
|
|
|
|
{
|
2019-10-13 06:02:07 +00:00
|
|
|
|
AddressSpaceContext addressSpaceContext = GetAddressSpaceContext(Context);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
NvInternalResult result = NvInternalResult.Success;
|
|
|
|
|
|
|
|
|
|
lock (addressSpaceContext)
|
|
|
|
|
{
|
|
|
|
|
ulong size = (ulong)arguments.Pages * (ulong)arguments.PageSize;
|
|
|
|
|
|
|
|
|
|
if (addressSpaceContext.RemoveReservation(arguments.Offset))
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
_memoryAllocator.DeallocateRange(arguments.Offset, size);
|
2021-01-09 23:11:31 +00:00
|
|
|
|
addressSpaceContext.Gmm.Unmap(arguments.Offset, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv,
|
2019-11-02 22:47:56 +00:00
|
|
|
|
$"Failed to free offset 0x{arguments.Offset:x16} size 0x{size:x16}!");
|
|
|
|
|
|
|
|
|
|
result = NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult UnmapBuffer(ref UnmapBufferArguments arguments)
|
|
|
|
|
{
|
2019-10-13 06:02:07 +00:00
|
|
|
|
AddressSpaceContext addressSpaceContext = GetAddressSpaceContext(Context);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
lock (addressSpaceContext)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
if (addressSpaceContext.RemoveMap(arguments.Offset, out ulong size))
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (size != 0)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
_memoryAllocator.DeallocateRange(arguments.Offset, size);
|
2021-01-09 23:11:31 +00:00
|
|
|
|
addressSpaceContext.Gmm.Unmap(arguments.Offset, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid buffer offset {arguments.Offset:x16}!");
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult MapBufferEx(ref MapBufferExArguments arguments)
|
|
|
|
|
{
|
2020-01-12 02:14:27 +00:00
|
|
|
|
const string mapErrorMsg = "Failed to map fixed buffer with offset 0x{0:x16}, size 0x{1:x16} and alignment 0x{2:x16}!";
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
AddressSpaceContext addressSpaceContext = GetAddressSpaceContext(Context);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-01 22:03:33 +00:00
|
|
|
|
ulong physicalAddress;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
if ((arguments.Flags & AddressSpaceFlags.RemapSubRange) != 0)
|
|
|
|
|
{
|
|
|
|
|
lock (addressSpaceContext)
|
|
|
|
|
{
|
|
|
|
|
if (addressSpaceContext.TryGetMapPhysicalAddress(arguments.Offset, out physicalAddress))
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
ulong virtualAddress = arguments.Offset + arguments.BufferOffset;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
physicalAddress += arguments.BufferOffset;
|
2021-01-01 22:03:33 +00:00
|
|
|
|
addressSpaceContext.Gmm.Map(physicalAddress, virtualAddress, arguments.MappingSize);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Address 0x{arguments.Offset:x16} not mapped!");
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
NvMapHandle map = NvMapDeviceFile.GetMapFromHandle(Owner, arguments.NvMapHandle);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid NvMap handle 0x{arguments.NvMapHandle:x8}!");
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ulong pageSize = (ulong)arguments.PageSize;
|
|
|
|
|
|
|
|
|
|
if (pageSize == 0)
|
|
|
|
|
{
|
|
|
|
|
pageSize = (ulong)map.Align;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-02 22:47:56 +00:00
|
|
|
|
physicalAddress = map.Address + arguments.BufferOffset;
|
|
|
|
|
|
2021-01-01 22:03:33 +00:00
|
|
|
|
ulong size = arguments.MappingSize;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
|
{
|
|
|
|
|
size = (uint)map.Size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NvInternalResult result = NvInternalResult.Success;
|
|
|
|
|
|
|
|
|
|
lock (addressSpaceContext)
|
|
|
|
|
{
|
|
|
|
|
// Note: When the fixed offset flag is not set,
|
|
|
|
|
// the Offset field holds the alignment size instead.
|
|
|
|
|
bool virtualAddressAllocated = (arguments.Flags & AddressSpaceFlags.FixedOffset) == 0;
|
|
|
|
|
|
|
|
|
|
if (!virtualAddressAllocated)
|
|
|
|
|
{
|
2020-01-12 02:14:27 +00:00
|
|
|
|
if (addressSpaceContext.ValidateFixedBuffer(arguments.Offset, size, pageSize))
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
addressSpaceContext.Gmm.Map(physicalAddress, arguments.Offset, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-01-12 02:14:27 +00:00
|
|
|
|
string message = string.Format(mapErrorMsg, arguments.Offset, size, pageSize);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, message);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
result = NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
ulong va = _memoryAllocator.GetFreeAddress(size, out ulong freeAddressStartPosition, pageSize);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
if (va != NvMemoryAllocator.PteUnmapped)
|
|
|
|
|
{
|
2021-01-01 22:03:33 +00:00
|
|
|
|
_memoryAllocator.AllocateRange(va, size, freeAddressStartPosition);
|
2020-12-09 22:26:05 +00:00
|
|
|
|
}
|
2021-01-09 23:11:31 +00:00
|
|
|
|
|
2021-01-01 22:03:33 +00:00
|
|
|
|
addressSpaceContext.Gmm.Map(physicalAddress, va, size);
|
|
|
|
|
arguments.Offset = va;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
if (arguments.Offset == NvMemoryAllocator.PteUnmapped)
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
|
|
|
|
arguments.Offset = 0;
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Failed to map size 0x{size:x16}!");
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
result = NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
addressSpaceContext.AddMap(arguments.Offset, size, physicalAddress, virtualAddressAllocated);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult GetVaRegions(ref GetVaRegionsArguments arguments)
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNv);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult InitializeEx(ref InitializeExArguments arguments)
|
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceNv);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult Remap(Span<RemapArguments> arguments)
|
|
|
|
|
{
|
2021-01-09 23:11:31 +00:00
|
|
|
|
AddressSpaceContext addressSpaceContext = GetAddressSpaceContext(Context);
|
|
|
|
|
|
2019-11-02 22:47:56 +00:00
|
|
|
|
for (int index = 0; index < arguments.Length; index++)
|
|
|
|
|
{
|
2019-10-13 06:02:07 +00:00
|
|
|
|
MemoryManager gmm = GetAddressSpaceContext(Context).Gmm;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
ulong mapOffs = (ulong)arguments[index].MapOffset << 16;
|
|
|
|
|
ulong gpuVa = (ulong)arguments[index].GpuOffset << 16;
|
|
|
|
|
ulong size = (ulong)arguments[index].Pages << 16;
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
if (arguments[index].NvMapHandle == 0)
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
2021-01-09 23:11:31 +00:00
|
|
|
|
gmm.Unmap(gpuVa, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
2021-01-09 23:11:31 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = NvMapDeviceFile.GetMapFromHandle(Owner, arguments[index].NvMapHandle);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid NvMap handle 0x{arguments[index].NvMapHandle:x8}!");
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
2019-11-02 22:47:56 +00:00
|
|
|
|
|
2021-01-09 23:11:31 +00:00
|
|
|
|
gmm.Map(mapOffs + map.Address, gpuVa, size);
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Close() { }
|
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
public static AddressSpaceContext GetAddressSpaceContext(ServiceCtx context)
|
2019-11-02 22:47:56 +00:00
|
|
|
|
{
|
2019-10-13 06:02:07 +00:00
|
|
|
|
return _addressSpaceContextRegistry.GetOrAdd(context.Process, (key) => new AddressSpaceContext(context));
|
2019-11-02 22:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|