2019-02-09 04:21:53 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-06-08 00:41:06 +00:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hardware_interrupt_manager.h"
|
2019-02-09 04:21:53 +00:00
|
|
|
#include "video_core/gpu_asynch.h"
|
|
|
|
#include "video_core/gpu_thread.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
|
|
|
|
namespace VideoCommon {
|
|
|
|
|
2020-03-25 02:58:49 +00:00
|
|
|
GPUAsynch::GPUAsynch(Core::System& system, std::unique_ptr<VideoCore::RendererBase>&& renderer_,
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext>&& context)
|
|
|
|
: GPU(system, std::move(renderer_), true), gpu_thread{system}, gpu_context(std::move(context)),
|
|
|
|
cpu_context(renderer->GetRenderWindow().CreateSharedContext()) {}
|
2019-02-09 04:21:53 +00:00
|
|
|
|
|
|
|
GPUAsynch::~GPUAsynch() = default;
|
|
|
|
|
2019-04-09 18:02:00 +00:00
|
|
|
void GPUAsynch::Start() {
|
2020-03-25 02:58:49 +00:00
|
|
|
cpu_context->MakeCurrent();
|
|
|
|
gpu_thread.StartThread(*renderer, *gpu_context, *dma_pusher);
|
2019-04-09 18:02:00 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 04:21:53 +00:00
|
|
|
void GPUAsynch::PushGPUEntries(Tegra::CommandList&& entries) {
|
|
|
|
gpu_thread.SubmitList(std::move(entries));
|
|
|
|
}
|
|
|
|
|
2019-08-21 04:55:25 +00:00
|
|
|
void GPUAsynch::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {
|
|
|
|
gpu_thread.SwapBuffers(framebuffer);
|
2019-02-09 04:21:53 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
void GPUAsynch::FlushRegion(CacheAddr addr, u64 size) {
|
2019-02-09 04:21:53 +00:00
|
|
|
gpu_thread.FlushRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
void GPUAsynch::InvalidateRegion(CacheAddr addr, u64 size) {
|
2019-02-09 04:21:53 +00:00
|
|
|
gpu_thread.InvalidateRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2019-02-19 01:58:32 +00:00
|
|
|
void GPUAsynch::FlushAndInvalidateRegion(CacheAddr addr, u64 size) {
|
2019-02-09 04:21:53 +00:00
|
|
|
gpu_thread.FlushAndInvalidateRegion(addr, size);
|
|
|
|
}
|
|
|
|
|
2019-06-12 11:52:49 +00:00
|
|
|
void GPUAsynch::TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const {
|
2019-06-08 00:41:06 +00:00
|
|
|
auto& interrupt_manager = system.InterruptManager();
|
2019-06-12 11:52:49 +00:00
|
|
|
interrupt_manager.GPUInterruptSyncpt(syncpoint_id, value);
|
2019-06-08 00:41:06 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 23:08:22 +00:00
|
|
|
void GPUAsynch::WaitIdle() const {
|
|
|
|
gpu_thread.WaitIdle();
|
|
|
|
}
|
|
|
|
|
2019-02-09 04:21:53 +00:00
|
|
|
} // namespace VideoCommon
|