2019-11-02 23:47:56 +01:00
|
|
|
|
using Ryujinx.Common;
|
|
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
using Ryujinx.Graphics.Gpu.Memory;
|
2020-12-02 00:23:43 +01:00
|
|
|
|
using Ryujinx.Memory;
|
2019-11-02 23:47:56 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap
|
|
|
|
|
{
|
|
|
|
|
internal class NvMapDeviceFile : NvDeviceFile
|
|
|
|
|
{
|
|
|
|
|
private const int FlagNotFreedYet = 1;
|
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
|
private static ConcurrentDictionary<long, IdDictionary> _maps = new ConcurrentDictionary<long, IdDictionary>();
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
|
public NvMapDeviceFile(ServiceCtx context, IVirtualMemoryManager memory, long owner) : base(context, owner)
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
|
|
|
|
IdDictionary dict = _maps.GetOrAdd(Owner, (key) => new IdDictionary());
|
|
|
|
|
|
|
|
|
|
dict.Add(0, new NvMapHandle());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override NvInternalResult Ioctl(NvIoctl command, Span<byte> arguments)
|
|
|
|
|
{
|
|
|
|
|
NvInternalResult result = NvInternalResult.NotImplemented;
|
|
|
|
|
|
|
|
|
|
if (command.Type == NvIoctl.NvMapCustomMagic)
|
|
|
|
|
{
|
|
|
|
|
switch (command.Number)
|
|
|
|
|
{
|
|
|
|
|
case 0x01:
|
|
|
|
|
result = CallIoctlMethod<NvMapCreate>(Create, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x03:
|
|
|
|
|
result = CallIoctlMethod<NvMapFromId>(FromId, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x04:
|
|
|
|
|
result = CallIoctlMethod<NvMapAlloc>(Alloc, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x05:
|
|
|
|
|
result = CallIoctlMethod<NvMapFree>(Free, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x09:
|
|
|
|
|
result = CallIoctlMethod<NvMapParam>(Param, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x0e:
|
|
|
|
|
result = CallIoctlMethod<NvMapGetId>(GetId, arguments);
|
|
|
|
|
break;
|
|
|
|
|
case 0x02:
|
|
|
|
|
case 0x06:
|
|
|
|
|
case 0x07:
|
|
|
|
|
case 0x08:
|
|
|
|
|
case 0x0a:
|
|
|
|
|
case 0x0c:
|
|
|
|
|
case 0x0d:
|
|
|
|
|
case 0x0f:
|
|
|
|
|
case 0x10:
|
|
|
|
|
case 0x11:
|
|
|
|
|
result = NvInternalResult.NotSupported;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult Create(ref NvMapCreate arguments)
|
|
|
|
|
{
|
|
|
|
|
if (arguments.Size == 0)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid size 0x{arguments.Size:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
|
int size = BitUtils.AlignUp(arguments.Size, (int)MemoryManager.PageSize);
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
arguments.Handle = CreateHandleFromMap(new NvMapHandle(size));
|
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Info?.Print(LogClass.ServiceNv, $"Created map {arguments.Handle} with size 0x{size:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult FromId(ref NvMapFromId arguments)
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = GetMapFromHandle(Owner, arguments.Id);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid handle 0x{arguments.Handle:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
map.IncrementRefCount();
|
|
|
|
|
|
|
|
|
|
arguments.Handle = arguments.Id;
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult Alloc(ref NvMapAlloc arguments)
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = GetMapFromHandle(Owner, arguments.Handle);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid handle 0x{arguments.Handle:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((arguments.Align & (arguments.Align - 1)) != 0)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid alignment 0x{arguments.Align:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
|
if ((uint)arguments.Align < MemoryManager.PageSize)
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
2019-10-13 08:02:07 +02:00
|
|
|
|
arguments.Align = (int)MemoryManager.PageSize;
|
2019-11-02 23:47:56 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NvInternalResult result = NvInternalResult.Success;
|
|
|
|
|
|
|
|
|
|
if (!map.Allocated)
|
|
|
|
|
{
|
|
|
|
|
map.Allocated = true;
|
|
|
|
|
|
|
|
|
|
map.Align = arguments.Align;
|
|
|
|
|
map.Kind = (byte)arguments.Kind;
|
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
|
int size = BitUtils.AlignUp(map.Size, (int)MemoryManager.PageSize);
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
2021-01-01 23:03:33 +01:00
|
|
|
|
ulong address = arguments.Address;
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
if (address == 0)
|
|
|
|
|
{
|
|
|
|
|
// When the address is zero, we need to allocate
|
|
|
|
|
// our own backing memory for the NvMap.
|
|
|
|
|
// TODO: Is this allocation inside the transfer memory?
|
|
|
|
|
result = NvInternalResult.OutOfMemory;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result == NvInternalResult.Success)
|
|
|
|
|
{
|
|
|
|
|
map.Size = size;
|
|
|
|
|
map.Address = address;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult Free(ref NvMapFree arguments)
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = GetMapFromHandle(Owner, arguments.Handle);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid handle 0x{arguments.Handle:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
if (DecrementMapRefCount(Owner, arguments.Handle))
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
|
|
|
|
arguments.Address = map.Address;
|
|
|
|
|
arguments.Flags = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arguments.Address = 0;
|
|
|
|
|
arguments.Flags = FlagNotFreedYet;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
arguments.Size = map.Size;
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult Param(ref NvMapParam arguments)
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = GetMapFromHandle(Owner, arguments.Handle);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid handle 0x{arguments.Handle:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (arguments.Param)
|
|
|
|
|
{
|
|
|
|
|
case NvMapHandleParam.Size: arguments.Result = map.Size; break;
|
|
|
|
|
case NvMapHandleParam.Align: arguments.Result = map.Align; break;
|
|
|
|
|
case NvMapHandleParam.Heap: arguments.Result = 0x40000000; break;
|
|
|
|
|
case NvMapHandleParam.Kind: arguments.Result = map.Kind; break;
|
|
|
|
|
case NvMapHandleParam.Compr: arguments.Result = 0; break;
|
|
|
|
|
|
|
|
|
|
// Note: Base is not supported and returns an error.
|
|
|
|
|
// Any other value also returns an error.
|
|
|
|
|
default: return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NvInternalResult GetId(ref NvMapGetId arguments)
|
|
|
|
|
{
|
|
|
|
|
NvMapHandle map = GetMapFromHandle(Owner, arguments.Handle);
|
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Warning?.Print(LogClass.ServiceNv, $"Invalid handle 0x{arguments.Handle:x8}!");
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return NvInternalResult.InvalidInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
arguments.Id = arguments.Handle;
|
|
|
|
|
|
|
|
|
|
return NvInternalResult.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Close()
|
|
|
|
|
{
|
|
|
|
|
// TODO: refcount NvMapDeviceFile instances and remove when closing
|
|
|
|
|
// _maps.TryRemove(GetOwner(), out _);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int CreateHandleFromMap(NvMapHandle map)
|
|
|
|
|
{
|
2021-01-10 00:11:31 +01:00
|
|
|
|
IdDictionary dict = _maps.GetOrAdd(Owner, (key) => new IdDictionary());
|
2019-11-02 23:47:56 +01:00
|
|
|
|
|
|
|
|
|
return dict.Add(map);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
|
private static bool DeleteMapWithHandle(long pid, int handle)
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
|
if (_maps.TryGetValue(pid, out IdDictionary dict))
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
|
|
|
|
return dict.Delete(handle) != null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-10 00:11:31 +01:00
|
|
|
|
public static void IncrementMapRefCount(long pid, int handle)
|
2020-04-22 06:10:27 +02:00
|
|
|
|
{
|
2021-01-10 00:11:31 +01:00
|
|
|
|
GetMapFromHandle(pid, handle)?.IncrementRefCount();
|
2020-04-22 06:10:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
|
public static bool DecrementMapRefCount(long pid, int handle)
|
2020-04-22 06:10:27 +02:00
|
|
|
|
{
|
2021-01-10 00:11:31 +01:00
|
|
|
|
NvMapHandle map = GetMapFromHandle(pid, handle);
|
2020-04-22 06:10:27 +02:00
|
|
|
|
|
|
|
|
|
if (map == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (map.DecrementRefCount() <= 0)
|
|
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
|
DeleteMapWithHandle(pid, handle);
|
2020-04-22 06:10:27 +02:00
|
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
|
Logger.Info?.Print(LogClass.ServiceNv, $"Deleted map {handle}!");
|
2020-04-22 06:10:27 +02:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-10 00:11:31 +01:00
|
|
|
|
public static NvMapHandle GetMapFromHandle(long pid, int handle)
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
2021-01-10 00:11:31 +01:00
|
|
|
|
if (_maps.TryGetValue(pid, out IdDictionary dict))
|
2019-11-02 23:47:56 +01:00
|
|
|
|
{
|
|
|
|
|
return dict.GetData<NvMapHandle>(handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|