pineapple-src/src/video_core/gpu_thread.cpp

138 lines
5 KiB
C++
Raw Normal View History

2022-04-23 18:49:07 +00:00
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 15:15:37 +00:00
#include "common/assert.h"
#include "common/microprofile.h"
2020-12-30 01:38:14 +00:00
#include "common/scope_exit.h"
2021-04-15 02:05:28 +00:00
#include "common/settings.h"
2020-12-28 15:15:37 +00:00
#include "common/thread.h"
#include "core/core.h"
#include "core/frontend/emu_window.h"
2022-06-16 01:46:18 +00:00
#include "video_core/control/scheduler.h"
2020-12-28 15:15:37 +00:00
#include "video_core/dma_pusher.h"
#include "video_core/gpu.h"
#include "video_core/gpu_thread.h"
#include "video_core/renderer_base.h"
namespace VideoCommon::GPUThread {
/// Runs the GPU thread
2021-09-16 04:04:40 +00:00
static void RunThread(std::stop_token stop_token, Core::System& system,
VideoCore::RendererBase& renderer, Core::Frontend::GraphicsContext& context,
2022-06-16 01:46:18 +00:00
Tegra::Control::Scheduler& scheduler, SynchState& state) {
2020-12-28 15:15:37 +00:00
std::string name = "yuzu:GPU";
MicroProfileOnThreadCreate(name.c_str());
2020-12-30 01:38:14 +00:00
SCOPE_EXIT({ MicroProfileOnThreadExit(); });
2020-12-28 15:15:37 +00:00
Common::SetCurrentThreadName(name.c_str());
Common::SetCurrentThreadPriority(Common::ThreadPriority::High);
system.RegisterHostThread();
auto current_context = context.Acquire();
2021-01-17 02:19:34 +00:00
VideoCore::RasterizerInterface* const rasterizer = renderer.ReadRasterizer();
2020-12-28 15:15:37 +00:00
2021-09-16 04:04:40 +00:00
while (!stop_token.stop_requested()) {
2022-06-03 09:18:18 +00:00
CommandDataContainer next;
state.queue.Pop(next, stop_token);
2021-09-16 04:04:40 +00:00
if (stop_token.stop_requested()) {
break;
}
2020-12-28 15:15:37 +00:00
if (auto* submit_list = std::get_if<SubmitListCommand>(&next.data)) {
2022-06-16 01:46:18 +00:00
scheduler.Push(submit_list->channel, std::move(submit_list->entries));
2020-12-28 15:15:37 +00:00
} else if (const auto* data = std::get_if<SwapBuffersCommand>(&next.data)) {
renderer.SwapBuffers(data->framebuffer ? &*data->framebuffer : nullptr);
} else if (std::holds_alternative<OnCommandListEndCommand>(next.data)) {
2021-01-17 02:19:34 +00:00
rasterizer->ReleaseFences();
2020-12-28 15:15:37 +00:00
} else if (std::holds_alternative<GPUTickCommand>(next.data)) {
system.GPU().TickWork();
} else if (const auto* flush = std::get_if<FlushRegionCommand>(&next.data)) {
2021-01-17 02:19:34 +00:00
rasterizer->FlushRegion(flush->addr, flush->size);
2020-12-28 15:15:37 +00:00
} else if (const auto* invalidate = std::get_if<InvalidateRegionCommand>(&next.data)) {
2021-01-17 02:19:34 +00:00
rasterizer->OnCPUWrite(invalidate->addr, invalidate->size);
2020-12-28 15:15:37 +00:00
} else {
2022-06-10 20:06:26 +00:00
ASSERT(false);
2020-12-28 15:15:37 +00:00
}
state.signaled_fence.store(next.fence);
2021-04-07 18:28:12 +00:00
if (next.block) {
// We have to lock the write_lock to ensure that the condition_variable wait not get a
// race between the check and the lock itself.
2022-04-09 09:30:20 +00:00
std::scoped_lock lk{state.write_lock};
2021-04-07 18:28:12 +00:00
state.cv.notify_all();
}
2020-12-28 15:15:37 +00:00
}
}
2020-12-30 01:38:14 +00:00
ThreadManager::ThreadManager(Core::System& system_, bool is_async_)
: system{system_}, is_async{is_async_} {}
2020-12-28 15:15:37 +00:00
2021-09-16 04:04:40 +00:00
ThreadManager::~ThreadManager() = default;
2020-12-28 15:15:37 +00:00
void ThreadManager::StartThread(VideoCore::RendererBase& renderer,
Core::Frontend::GraphicsContext& context,
2022-06-16 01:46:18 +00:00
Tegra::Control::Scheduler& scheduler) {
2021-01-17 02:19:34 +00:00
rasterizer = renderer.ReadRasterizer();
2021-09-16 04:04:40 +00:00
thread = std::jthread(RunThread, std::ref(system), std::ref(renderer), std::ref(context),
2022-06-16 01:46:18 +00:00
std::ref(scheduler), std::ref(state));
2020-12-28 15:15:37 +00:00
}
2022-06-16 01:46:18 +00:00
void ThreadManager::SubmitList(s32 channel, Tegra::CommandList&& entries) {
PushCommand(SubmitListCommand(channel, std::move(entries)));
2020-12-28 15:15:37 +00:00
}
void ThreadManager::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {
PushCommand(SwapBuffersCommand(framebuffer ? std::make_optional(*framebuffer) : std::nullopt));
}
void ThreadManager::FlushRegion(VAddr addr, u64 size) {
2020-12-30 01:38:14 +00:00
if (!is_async) {
// Always flush with synchronous GPU mode
2020-12-28 15:15:37 +00:00
PushCommand(FlushRegionCommand(addr, size));
return;
}
2021-06-07 01:57:28 +00:00
if (!Settings::IsGPULevelExtreme()) {
return;
2020-12-28 15:15:37 +00:00
}
2021-06-07 01:57:28 +00:00
auto& gpu = system.GPU();
u64 fence = gpu.RequestFlush(addr, size);
2022-06-16 01:46:18 +00:00
TickGPU();
gpu.WaitForSyncOperation(fence);
}
void ThreadManager::TickGPU() {
PushCommand(GPUTickCommand());
2020-12-28 15:15:37 +00:00
}
void ThreadManager::InvalidateRegion(VAddr addr, u64 size) {
2021-01-17 02:19:34 +00:00
rasterizer->OnCPUWrite(addr, size);
2020-12-28 15:15:37 +00:00
}
void ThreadManager::FlushAndInvalidateRegion(VAddr addr, u64 size) {
// Skip flush on asynch mode, as FlushAndInvalidateRegion is not used for anything too important
2021-01-17 02:19:34 +00:00
rasterizer->OnCPUWrite(addr, size);
2020-12-28 15:15:37 +00:00
}
void ThreadManager::OnCommandListEnd() {
PushCommand(OnCommandListEndCommand());
}
2021-04-07 18:28:12 +00:00
u64 ThreadManager::PushCommand(CommandData&& command_data, bool block) {
2020-12-30 01:38:14 +00:00
if (!is_async) {
// In synchronous GPU mode, block the caller until the command has executed
2021-04-07 18:28:12 +00:00
block = true;
}
2021-04-07 21:06:52 +00:00
std::unique_lock lk(state.write_lock);
2021-04-07 18:28:12 +00:00
const u64 fence{++state.last_fence};
2021-10-27 03:22:08 +00:00
state.queue.Push(CommandDataContainer(std::move(command_data), fence, block));
2021-04-07 18:28:12 +00:00
if (block) {
2021-09-16 04:04:40 +00:00
state.cv.wait(lk, thread.get_stop_token(), [this, fence] {
return fence <= state.signaled_fence.load(std::memory_order_relaxed);
2021-04-07 18:28:12 +00:00
});
2020-12-30 01:38:14 +00:00
}
2020-12-28 15:15:37 +00:00
return fence;
}
} // namespace VideoCommon::GPUThread