2020-04-19 03:25:57 +02:00
|
|
|
using System;
|
2018-11-17 05:01:31 +01:00
|
|
|
using System.Collections.Concurrent;
|
2020-04-19 03:25:57 +02:00
|
|
|
using System.Runtime.InteropServices;
|
2018-11-17 05:01:31 +01:00
|
|
|
using System.Threading;
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU DMA pusher, used to push commands to the GPU.
|
|
|
|
/// </summary>
|
2018-11-17 05:01:31 +01:00
|
|
|
public class DmaPusher
|
|
|
|
{
|
2020-04-19 03:25:57 +02:00
|
|
|
private ConcurrentQueue<CommandBuffer> _commandBufferQueue;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
private enum CommandBufferType
|
|
|
|
{
|
|
|
|
Prefetch,
|
|
|
|
NoPrefetch,
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct CommandBuffer
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The type of the command buffer.
|
|
|
|
/// </summary>
|
|
|
|
public CommandBufferType Type;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Fetched data.
|
|
|
|
/// </summary>
|
|
|
|
public int[] Words;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The GPFIFO entry address. (used in NoPrefetch mode)
|
|
|
|
/// </summary>
|
|
|
|
public ulong EntryAddress;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The count of entries inside this GPFIFO entry.
|
|
|
|
/// </summary>
|
|
|
|
public uint EntryCount;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Fetch the command buffer.
|
|
|
|
/// </summary>
|
|
|
|
public void Fetch(GpuContext context)
|
|
|
|
{
|
|
|
|
if (Words == null)
|
|
|
|
{
|
|
|
|
Words = MemoryMarshal.Cast<byte, int>(context.MemoryAccessor.GetSpan(EntryAddress, EntryCount * 4)).ToArray();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Read inside the command buffer.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="context">The GPU context</param>
|
|
|
|
/// <param name="index">The index inside the command buffer</param>
|
|
|
|
/// <returns>The value read</returns>
|
|
|
|
public int ReadAt(GpuContext context, int index)
|
|
|
|
{
|
|
|
|
return Words[index];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private CommandBuffer _currentCommandBuffer;
|
|
|
|
private int _wordsPosition;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Internal GPFIFO state.
|
|
|
|
/// </summary>
|
2018-11-17 05:01:31 +01:00
|
|
|
private struct DmaState
|
|
|
|
{
|
|
|
|
public int Method;
|
|
|
|
public int SubChannel;
|
|
|
|
public int MethodCount;
|
|
|
|
public bool NonIncrementing;
|
|
|
|
public bool IncrementOnce;
|
|
|
|
public int LengthPending;
|
|
|
|
}
|
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
private DmaState _state;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
private bool _ibEnable;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
private GpuContext _context;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
private AutoResetEvent _event;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a new instance of the GPU DMA pusher.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="context">GPU context that the pusher belongs to</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
internal DmaPusher(GpuContext context)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-10-13 08:02:07 +02:00
|
|
|
_context = context;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_ibEnable = true;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
_commandBufferQueue = new ConcurrentQueue<CommandBuffer>();
|
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_event = new AutoResetEvent(false);
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
2020-04-19 03:25:57 +02:00
|
|
|
/// Signal the pusher that there are new entries to process.
|
2019-12-31 21:08:20 +01:00
|
|
|
/// </summary>
|
2020-04-19 03:25:57 +02:00
|
|
|
public void SignalNewEntries()
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
_event.Set();
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Push a GPFIFO entry in the form of a prefetched command buffer.
|
|
|
|
/// It is intended to be used by nvservices to handle special cases.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="commandBuffer">The command buffer containing the prefetched commands</param>
|
|
|
|
public void PushHostCommandBuffer(int[] commandBuffer)
|
|
|
|
{
|
|
|
|
_commandBufferQueue.Enqueue(new CommandBuffer
|
|
|
|
{
|
|
|
|
Type = CommandBufferType.Prefetch,
|
|
|
|
Words = commandBuffer,
|
|
|
|
EntryAddress = ulong.MaxValue,
|
|
|
|
EntryCount = (uint)commandBuffer.Length
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Create a CommandBuffer from a GPFIFO entry.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="entry">The GPFIFO entry</param>
|
|
|
|
/// <returns>A new CommandBuffer based on the GPFIFO entry</returns>
|
|
|
|
private CommandBuffer CreateCommandBuffer(ulong entry)
|
|
|
|
{
|
|
|
|
ulong length = (entry >> 42) & 0x1fffff;
|
|
|
|
ulong startAddress = entry & 0xfffffffffc;
|
|
|
|
|
|
|
|
bool noPrefetch = (entry & (1UL << 63)) != 0;
|
|
|
|
|
|
|
|
CommandBufferType type = CommandBufferType.Prefetch;
|
|
|
|
|
|
|
|
if (noPrefetch)
|
|
|
|
{
|
|
|
|
type = CommandBufferType.NoPrefetch;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new CommandBuffer
|
|
|
|
{
|
|
|
|
Type = type,
|
|
|
|
Words = null,
|
|
|
|
EntryAddress = startAddress,
|
|
|
|
EntryCount = (uint)length
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Pushes GPFIFO entries.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="entries">GPFIFO entries</param>
|
|
|
|
public void PushEntries(ReadOnlySpan<ulong> entries)
|
|
|
|
{
|
|
|
|
bool beforeBarrier = true;
|
|
|
|
|
|
|
|
foreach (ulong entry in entries)
|
|
|
|
{
|
|
|
|
CommandBuffer commandBuffer = CreateCommandBuffer(entry);
|
|
|
|
|
|
|
|
if (beforeBarrier && commandBuffer.Type == CommandBufferType.Prefetch)
|
|
|
|
{
|
|
|
|
commandBuffer.Fetch(_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (commandBuffer.Type == CommandBufferType.NoPrefetch)
|
|
|
|
{
|
|
|
|
beforeBarrier = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
_commandBufferQueue.Enqueue(commandBuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Waits until commands are pushed to the FIFO.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>True if commands were received, false if wait timed out</returns>
|
2018-11-17 05:01:31 +01:00
|
|
|
public bool WaitForCommands()
|
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
return _event.WaitOne(8);
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Processes commands pushed to the FIFO.
|
|
|
|
/// </summary>
|
2018-11-17 05:01:31 +01:00
|
|
|
public void DispatchCalls()
|
|
|
|
{
|
|
|
|
while (Step());
|
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Processes a single command on the FIFO.
|
|
|
|
/// </summary>
|
2020-01-01 16:39:09 +01:00
|
|
|
/// <returns>True if the FIFO still has commands to be processed, false otherwise</returns>
|
2018-11-17 05:01:31 +01:00
|
|
|
private bool Step()
|
|
|
|
{
|
2020-04-19 03:25:57 +02:00
|
|
|
if (_wordsPosition != _currentCommandBuffer.EntryCount)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2020-04-19 03:25:57 +02:00
|
|
|
int word = _currentCommandBuffer.ReadAt(_context, _wordsPosition++);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
if (_state.LengthPending != 0)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.LengthPending = 0;
|
|
|
|
_state.MethodCount = word & 0xffffff;
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
2019-03-04 02:45:25 +01:00
|
|
|
else if (_state.MethodCount != 0)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2020-04-20 23:59:59 +02:00
|
|
|
CallMethod(word);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
if (!_state.NonIncrementing)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.Method++;
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
if (_state.IncrementOnce)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.NonIncrementing = true;
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.MethodCount--;
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
int submissionMode = (word >> 29) & 7;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
switch (submissionMode)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
|
|
|
case 1:
|
2019-07-02 04:39:22 +02:00
|
|
|
// Incrementing.
|
2019-03-04 02:45:25 +01:00
|
|
|
SetNonImmediateState(word);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.NonIncrementing = false;
|
|
|
|
_state.IncrementOnce = false;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2019-07-02 04:39:22 +02:00
|
|
|
// Non-incrementing.
|
2019-03-04 02:45:25 +01:00
|
|
|
SetNonImmediateState(word);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.NonIncrementing = true;
|
|
|
|
_state.IncrementOnce = false;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
2019-07-02 04:39:22 +02:00
|
|
|
// Immediate.
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.Method = (word >> 0) & 0x1fff;
|
|
|
|
_state.SubChannel = (word >> 13) & 7;
|
|
|
|
_state.NonIncrementing = true;
|
|
|
|
_state.IncrementOnce = false;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
CallMethod((word >> 16) & 0x1fff);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
2019-07-02 04:39:22 +02:00
|
|
|
// Increment-once.
|
2019-03-04 02:45:25 +01:00
|
|
|
SetNonImmediateState(word);
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.NonIncrementing = false;
|
|
|
|
_state.IncrementOnce = true;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-19 03:25:57 +02:00
|
|
|
else if (_ibEnable && _commandBufferQueue.TryDequeue(out CommandBuffer entry))
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2020-04-19 03:25:57 +02:00
|
|
|
_currentCommandBuffer = entry;
|
|
|
|
_wordsPosition = 0;
|
2018-11-17 05:01:31 +01:00
|
|
|
|
2020-04-19 03:25:57 +02:00
|
|
|
_currentCommandBuffer.Fetch(_context);
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Sets current non-immediate method call state.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="word">Compressed method word</param>
|
2019-03-04 02:45:25 +01:00
|
|
|
private void SetNonImmediateState(int word)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.Method = (word >> 0) & 0x1fff;
|
|
|
|
_state.SubChannel = (word >> 13) & 7;
|
|
|
|
_state.MethodCount = (word >> 16) & 0x1fff;
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Forwards the method call to GPU engines.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="argument">Call argument</param>
|
2019-03-04 02:45:25 +01:00
|
|
|
private void CallMethod(int argument)
|
2018-11-17 05:01:31 +01:00
|
|
|
{
|
2019-10-13 08:02:07 +02:00
|
|
|
_context.Fifo.CallMethod(new MethodParams(
|
2019-03-04 02:45:25 +01:00
|
|
|
_state.Method,
|
|
|
|
argument,
|
|
|
|
_state.SubChannel,
|
|
|
|
_state.MethodCount));
|
2018-11-17 05:01:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|