2019-01-24 03:17:55 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
|
|
|
#include <optional>
|
|
|
|
#include <thread>
|
|
|
|
#include <variant>
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
#include "common/threadsafe_queue.h"
|
|
|
|
#include "video_core/gpu.h"
|
|
|
|
|
2019-01-24 03:17:55 +00:00
|
|
|
namespace Tegra {
|
|
|
|
struct FramebufferConfig;
|
|
|
|
class DmaPusher;
|
|
|
|
} // namespace Tegra
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
class RendererBase;
|
|
|
|
} // namespace VideoCore
|
|
|
|
|
|
|
|
namespace VideoCommon::GPUThread {
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
/// Command to signal to the GPU thread that processing has ended
|
|
|
|
struct EndProcessingCommand final {};
|
|
|
|
|
2019-01-24 03:17:55 +00:00
|
|
|
/// Command to signal to the GPU thread that a command list is ready for processing
|
|
|
|
struct SubmitListCommand final {
|
|
|
|
explicit SubmitListCommand(Tegra::CommandList&& entries) : entries{std::move(entries)} {}
|
|
|
|
|
|
|
|
Tegra::CommandList entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Command to signal to the GPU thread that a swap buffers is pending
|
|
|
|
struct SwapBuffersCommand final {
|
|
|
|
explicit SwapBuffersCommand(std::optional<const Tegra::FramebufferConfig> framebuffer)
|
|
|
|
: framebuffer{std::move(framebuffer)} {}
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
std::optional<Tegra::FramebufferConfig> framebuffer;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Command to signal to the GPU thread to flush a region
|
|
|
|
struct FlushRegionCommand final {
|
2019-02-19 01:58:32 +00:00
|
|
|
explicit constexpr FlushRegionCommand(CacheAddr addr, u64 size) : addr{addr}, size{size} {}
|
2019-01-24 03:17:55 +00:00
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
CacheAddr addr;
|
|
|
|
u64 size;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Command to signal to the GPU thread to invalidate a region
|
|
|
|
struct InvalidateRegionCommand final {
|
2019-02-19 01:58:32 +00:00
|
|
|
explicit constexpr InvalidateRegionCommand(CacheAddr addr, u64 size) : addr{addr}, size{size} {}
|
2019-01-24 03:17:55 +00:00
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
CacheAddr addr;
|
|
|
|
u64 size;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Command to signal to the GPU thread to flush and invalidate a region
|
|
|
|
struct FlushAndInvalidateRegionCommand final {
|
2019-02-19 01:58:32 +00:00
|
|
|
explicit constexpr FlushAndInvalidateRegionCommand(CacheAddr addr, u64 size)
|
2019-01-24 03:17:55 +00:00
|
|
|
: addr{addr}, size{size} {}
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
CacheAddr addr;
|
|
|
|
u64 size;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
using CommandData =
|
|
|
|
std::variant<EndProcessingCommand, SubmitListCommand, SwapBuffersCommand, FlushRegionCommand,
|
|
|
|
InvalidateRegionCommand, FlushAndInvalidateRegionCommand>;
|
|
|
|
|
|
|
|
struct CommandDataContainer {
|
|
|
|
CommandDataContainer() = default;
|
|
|
|
|
|
|
|
CommandDataContainer(CommandData&& data) : data{std::move(data)} {}
|
|
|
|
|
|
|
|
CommandDataContainer& operator=(const CommandDataContainer& t) {
|
|
|
|
data = std::move(t.data);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandData data;
|
|
|
|
};
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
/// Struct used to synchronize the GPU thread
|
|
|
|
struct SynchState final {
|
2019-02-19 01:58:32 +00:00
|
|
|
std::atomic_bool is_running{true};
|
|
|
|
std::atomic_int queued_frame_count{};
|
|
|
|
std::mutex frames_mutex;
|
|
|
|
std::mutex commands_mutex;
|
|
|
|
std::condition_variable commands_condition;
|
|
|
|
std::condition_variable frames_condition;
|
|
|
|
|
|
|
|
void IncrementFramesCounter() {
|
|
|
|
std::lock_guard<std::mutex> lock{frames_mutex};
|
|
|
|
++queued_frame_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecrementFramesCounter() {
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock{frames_mutex};
|
|
|
|
--queued_frame_count;
|
|
|
|
|
|
|
|
if (queued_frame_count) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
frames_condition.notify_one();
|
2019-01-24 03:17:55 +00:00
|
|
|
}
|
2019-02-19 01:58:32 +00:00
|
|
|
|
|
|
|
void WaitForFrames() {
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock{frames_mutex};
|
|
|
|
if (!queued_frame_count) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the GPU to be idle (all commands to be executed)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock{frames_mutex};
|
|
|
|
frames_condition.wait(lock, [this] { return !queued_frame_count; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SignalCommands() {
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock{commands_mutex};
|
|
|
|
if (queue.Empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
commands_condition.notify_one();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaitForCommands() {
|
|
|
|
std::unique_lock<std::mutex> lock{commands_mutex};
|
|
|
|
commands_condition.wait(lock, [this] { return !queue.Empty(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
using CommandQueue = Common::SPSCQueue<CommandDataContainer>;
|
|
|
|
CommandQueue queue;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Class used to manage the GPU thread
|
|
|
|
class ThreadManager final {
|
|
|
|
public:
|
|
|
|
explicit ThreadManager(VideoCore::RendererBase& renderer, Tegra::DmaPusher& dma_pusher);
|
|
|
|
~ThreadManager();
|
|
|
|
|
|
|
|
/// Push GPU command entries to be processed
|
|
|
|
void SubmitList(Tegra::CommandList&& entries);
|
|
|
|
|
|
|
|
/// Swap buffers (render frame)
|
|
|
|
void SwapBuffers(
|
|
|
|
std::optional<std::reference_wrapper<const Tegra::FramebufferConfig>> framebuffer);
|
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
|
2019-02-19 01:58:32 +00:00
|
|
|
void FlushRegion(CacheAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
2019-02-19 01:58:32 +00:00
|
|
|
void InvalidateRegion(CacheAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed and invalidated
|
2019-02-19 01:58:32 +00:00
|
|
|
void FlushAndInvalidateRegion(CacheAddr addr, u64 size);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Pushes a command to be executed by the GPU thread
|
2019-02-19 01:58:32 +00:00
|
|
|
void PushCommand(CommandData&& command_data);
|
2019-01-24 03:17:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SynchState state;
|
|
|
|
VideoCore::RendererBase& renderer;
|
2019-03-07 21:05:46 +00:00
|
|
|
std::thread thread;
|
|
|
|
std::thread::id thread_id;
|
2019-01-24 03:17:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon::GPUThread
|