2019-02-09 05:21:53 +01:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-06-08 02:41:06 +02:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hardware_interrupt_manager.h"
|
2019-02-09 05:21:53 +01:00
|
|
|
#include "video_core/gpu_asynch.h"
|
|
|
|
#include "video_core/gpu_thread.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
|
|
|
|
namespace VideoCommon {
|
|
|
|
|
2020-10-27 04:07:36 +01:00
|
|
|
GPUAsynch::GPUAsynch(Core::System& system, bool use_nvdec)
|
|
|
|
: GPU{system, true, use_nvdec}, gpu_thread{system} {}
|
2019-02-09 05:21:53 +01:00
|
|
|
|
|
|
|
GPUAsynch::~GPUAsynch() = default;
|
|
|
|
|
2019-04-09 20:02:00 +02:00
|
|
|
void GPUAsynch::Start() {
|
2020-10-27 04:07:36 +01:00
|
|
|
gpu_thread.StartThread(*renderer, renderer->Context(), *dma_pusher, *cdma_pusher);
|
2020-06-11 05:58:57 +02:00
|
|
|
cpu_context = renderer->GetRenderWindow().CreateSharedContext();
|
|
|
|
cpu_context->MakeCurrent();
|
2019-04-09 20:02:00 +02:00
|
|
|
}
|
|
|
|
|
2020-04-03 17:58:43 +02:00
|
|
|
void GPUAsynch::ObtainContext() {
|
|
|
|
cpu_context->MakeCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GPUAsynch::ReleaseContext() {
|
|
|
|
cpu_context->DoneCurrent();
|
|
|
|
}
|
|
|
|
|
2019-02-09 05:21:53 +01:00
|
|
|
void GPUAsynch::PushGPUEntries(Tegra::CommandList&& entries) {
|
|
|
|
gpu_thread.SubmitList(std::move(entries));
|
|
|
|
}
|
|
|
|
|
2020-10-27 04:07:36 +01:00
|
|
|
void GPUAsynch::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) {
|
|
|
|
if (!use_nvdec) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// This condition fires when a video stream ends, clear all intermediary data
|
|
|
|
if (entries[0].raw == 0xDEADB33F) {
|
|
|
|
cdma_pusher.reset();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!cdma_pusher) {
|
|
|
|
cdma_pusher = std::make_unique<Tegra::CDmaPusher>(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// SubmitCommandBuffer would make the nvdec operations async, this is not currently working
|
|
|
|
// TODO(ameerj): RE proper async nvdec operation
|
|
|
|
// gpu_thread.SubmitCommandBuffer(std::move(entries));
|
|
|
|
|
|
|
|
cdma_pusher->Push(std::move(entries));
|
|
|
|
cdma_pusher->DispatchCalls();
|
|
|
|
}
|
|
|
|
|
2019-08-21 06:55:25 +02:00
|
|
|
void GPUAsynch::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {
|
|
|
|
gpu_thread.SwapBuffers(framebuffer);
|
2019-02-09 05:21:53 +01:00
|
|
|
}
|
|
|
|
|
2020-04-05 18:58:23 +02:00
|
|
|
void GPUAsynch::FlushRegion(VAddr addr, u64 size) {
|
2019-02-09 05:21:53 +01:00
|
|
|
gpu_thread.FlushRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2020-04-05 18:58:23 +02:00
|
|
|
void GPUAsynch::InvalidateRegion(VAddr addr, u64 size) {
|
2019-02-09 05:21:53 +01:00
|
|
|
gpu_thread.InvalidateRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2020-04-05 18:58:23 +02:00
|
|
|
void GPUAsynch::FlushAndInvalidateRegion(VAddr addr, u64 size) {
|
2019-02-09 05:21:53 +01:00
|
|
|
gpu_thread.FlushAndInvalidateRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2019-06-12 13:52:49 +02:00
|
|
|
void GPUAsynch::TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const {
|
2019-06-08 02:41:06 +02:00
|
|
|
auto& interrupt_manager = system.InterruptManager();
|
2019-06-12 13:52:49 +02:00
|
|
|
interrupt_manager.GPUInterruptSyncpt(syncpoint_id, value);
|
2019-06-08 02:41:06 +02:00
|
|
|
}
|
|
|
|
|
2019-09-27 01:08:22 +02:00
|
|
|
void GPUAsynch::WaitIdle() const {
|
|
|
|
gpu_thread.WaitIdle();
|
|
|
|
}
|
|
|
|
|
2020-02-17 23:10:23 +01:00
|
|
|
void GPUAsynch::OnCommandListEnd() {
|
|
|
|
gpu_thread.OnCommandListEnd();
|
|
|
|
}
|
|
|
|
|
2019-02-09 05:21:53 +01:00
|
|
|
} // namespace VideoCommon
|