summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-02-12 13:51:52 -0500
committerGravatar GitHub2018-02-12 13:51:52 -0500
commitbe5ba4d95215217930e57976386adff6de79322f (patch)
tree299b1096450b0284a489900280a28819aa4fb349 /src
parentMerge pull request #177 from bunnei/vi-fixes (diff)
parentMake a GPU class in VideoCore to contain the GPU state. (diff)
downloadyuzu-be5ba4d95215217930e57976386adff6de79322f.tar.gz
yuzu-be5ba4d95215217930e57976386adff6de79322f.tar.xz
yuzu-be5ba4d95215217930e57976386adff6de79322f.zip
Merge pull request #178 from Subv/command_buffers
GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines
Diffstat (limited to 'src')
-rw-r--r--src/core/CMakeLists.txt2
-rw-r--r--src/core/core.cpp2
-rw-r--r--src/core/core.h7
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp12
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_as_gpu.h6
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp3
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.h7
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.cpp2
-rw-r--r--src/video_core/CMakeLists.txt11
-rw-r--r--src/video_core/command_processor.cpp119
-rw-r--r--src/video_core/command_processor.h39
-rw-r--r--src/video_core/engines/fermi_2d.cpp13
-rw-r--r--src/video_core/engines/fermi_2d.h22
-rw-r--r--src/video_core/engines/maxwell_3d.cpp13
-rw-r--r--src/video_core/engines/maxwell_3d.h22
-rw-r--r--src/video_core/engines/maxwell_compute.cpp13
-rw-r--r--src/video_core/engines/maxwell_compute.h22
-rw-r--r--src/video_core/gpu.h55
-rw-r--r--src/video_core/memory_manager.cpp (renamed from src/core/hle/service/nvdrv/memory_manager.cpp)8
-rw-r--r--src/video_core/memory_manager.h (renamed from src/core/hle/service/nvdrv/memory_manager.h)9
20 files changed, 364 insertions, 23 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index a78d6d888..fc6cb67c7 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -139,8 +139,6 @@ add_library(core STATIC
139 hle/service/nvdrv/devices/nvmap.h 139 hle/service/nvdrv/devices/nvmap.h
140 hle/service/nvdrv/interface.cpp 140 hle/service/nvdrv/interface.cpp
141 hle/service/nvdrv/interface.h 141 hle/service/nvdrv/interface.h
142 hle/service/nvdrv/memory_manager.cpp
143 hle/service/nvdrv/memory_manager.h
144 hle/service/nvdrv/nvdrv.cpp 142 hle/service/nvdrv/nvdrv.cpp
145 hle/service/nvdrv/nvdrv.h 143 hle/service/nvdrv/nvdrv.h
146 hle/service/nvdrv/nvmemp.cpp 144 hle/service/nvdrv/nvmemp.cpp
diff --git a/src/core/core.cpp b/src/core/core.cpp
index dc21e4f04..613a98b4c 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -154,6 +154,8 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
154 break; 154 break;
155 } 155 }
156 156
157 gpu_core = std::make_unique<Tegra::GPU>();
158
157 telemetry_session = std::make_unique<Core::TelemetrySession>(); 159 telemetry_session = std::make_unique<Core::TelemetrySession>();
158 160
159 CoreTiming::Init(); 161 CoreTiming::Init();
diff --git a/src/core/core.h b/src/core/core.h
index 06ab4c75f..f63cc47cc 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -11,6 +11,7 @@
11#include "core/memory.h" 11#include "core/memory.h"
12#include "core/perf_stats.h" 12#include "core/perf_stats.h"
13#include "core/telemetry_session.h" 13#include "core/telemetry_session.h"
14#include "video_core/gpu.h"
14 15
15class EmuWindow; 16class EmuWindow;
16class ARM_Interface; 17class ARM_Interface;
@@ -102,6 +103,10 @@ public:
102 return *cpu_core; 103 return *cpu_core;
103 } 104 }
104 105
106 Tegra::GPU& GPU() {
107 return *gpu_core;
108 }
109
105 PerfStats perf_stats; 110 PerfStats perf_stats;
106 FrameLimiter frame_limiter; 111 FrameLimiter frame_limiter;
107 112
@@ -138,6 +143,8 @@ private:
138 ///< ARM11 CPU core 143 ///< ARM11 CPU core
139 std::unique_ptr<ARM_Interface> cpu_core; 144 std::unique_ptr<ARM_Interface> cpu_core;
140 145
146 std::unique_ptr<Tegra::GPU> gpu_core;
147
141 /// When true, signals that a reschedule should happen 148 /// When true, signals that a reschedule should happen
142 bool reschedule_pending{}; 149 bool reschedule_pending{};
143 150
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp
index cf3601f02..9832e1899 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp
@@ -4,6 +4,7 @@
4 4
5#include "common/assert.h" 5#include "common/assert.h"
6#include "common/logging/log.h" 6#include "common/logging/log.h"
7#include "core/core.h"
7#include "core/hle/service/nvdrv/devices/nvhost_as_gpu.h" 8#include "core/hle/service/nvdrv/devices/nvhost_as_gpu.h"
8#include "core/hle/service/nvdrv/devices/nvmap.h" 9#include "core/hle/service/nvdrv/devices/nvmap.h"
9 10
@@ -44,11 +45,12 @@ u32 nvhost_as_gpu::AllocateSpace(const std::vector<u8>& input, std::vector<u8>&
44 LOG_DEBUG(Service_NVDRV, "called, pages=%x, page_size=%x, flags=%x", params.pages, 45 LOG_DEBUG(Service_NVDRV, "called, pages=%x, page_size=%x, flags=%x", params.pages,
45 params.page_size, params.flags); 46 params.page_size, params.flags);
46 47
48 auto& gpu = Core::System::GetInstance().GPU();
47 const u64 size{static_cast<u64>(params.pages) * static_cast<u64>(params.page_size)}; 49 const u64 size{static_cast<u64>(params.pages) * static_cast<u64>(params.page_size)};
48 if (params.flags & 1) { 50 if (params.flags & 1) {
49 params.offset = memory_manager->AllocateSpace(params.offset, size, 1); 51 params.offset = gpu.memory_manager->AllocateSpace(params.offset, size, 1);
50 } else { 52 } else {
51 params.offset = memory_manager->AllocateSpace(size, params.align); 53 params.offset = gpu.memory_manager->AllocateSpace(size, params.align);
52 } 54 }
53 55
54 std::memcpy(output.data(), &params, output.size()); 56 std::memcpy(output.data(), &params, output.size());
@@ -71,10 +73,12 @@ u32 nvhost_as_gpu::MapBufferEx(const std::vector<u8>& input, std::vector<u8>& ou
71 auto object = nvmap_dev->GetObject(params.nvmap_handle); 73 auto object = nvmap_dev->GetObject(params.nvmap_handle);
72 ASSERT(object); 74 ASSERT(object);
73 75
76 auto& gpu = Core::System::GetInstance().GPU();
77
74 if (params.flags & 1) { 78 if (params.flags & 1) {
75 params.offset = memory_manager->MapBufferEx(object->addr, params.offset, object->size); 79 params.offset = gpu.memory_manager->MapBufferEx(object->addr, params.offset, object->size);
76 } else { 80 } else {
77 params.offset = memory_manager->MapBufferEx(object->addr, object->size); 81 params.offset = gpu.memory_manager->MapBufferEx(object->addr, object->size);
78 } 82 }
79 83
80 std::memcpy(output.data(), &params, output.size()); 84 std::memcpy(output.data(), &params, output.size());
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.h b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.h
index 9d37b971a..f8a60cce7 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.h
@@ -10,7 +10,6 @@
10#include "common/common_types.h" 10#include "common/common_types.h"
11#include "common/swap.h" 11#include "common/swap.h"
12#include "core/hle/service/nvdrv/devices/nvdevice.h" 12#include "core/hle/service/nvdrv/devices/nvdevice.h"
13#include "core/hle/service/nvdrv/memory_manager.h"
14 13
15namespace Service { 14namespace Service {
16namespace Nvidia { 15namespace Nvidia {
@@ -20,9 +19,7 @@ class nvmap;
20 19
21class nvhost_as_gpu final : public nvdevice { 20class nvhost_as_gpu final : public nvdevice {
22public: 21public:
23 nvhost_as_gpu(std::shared_ptr<nvmap> nvmap_dev) : nvdevice(), nvmap_dev(std::move(nvmap_dev)) { 22 nvhost_as_gpu(std::shared_ptr<nvmap> nvmap_dev) : nvmap_dev(std::move(nvmap_dev)) {}
24 memory_manager = std::make_shared<MemoryManager>();
25 }
26 ~nvhost_as_gpu() override = default; 23 ~nvhost_as_gpu() override = default;
27 24
28 u32 ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override; 25 u32 ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override;
@@ -101,7 +98,6 @@ private:
101 u32 GetVARegions(const std::vector<u8>& input, std::vector<u8>& output); 98 u32 GetVARegions(const std::vector<u8>& input, std::vector<u8>& output);
102 99
103 std::shared_ptr<nvmap> nvmap_dev; 100 std::shared_ptr<nvmap> nvmap_dev;
104 std::shared_ptr<MemoryManager> memory_manager;
105}; 101};
106 102
107} // namespace Devices 103} // namespace Devices
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
index 229048d37..0b2ebd466 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
@@ -5,6 +5,7 @@
5#include <map> 5#include <map>
6#include "common/assert.h" 6#include "common/assert.h"
7#include "common/logging/log.h" 7#include "common/logging/log.h"
8#include "core/core.h"
8#include "core/hle/service/nvdrv/devices/nvhost_gpu.h" 9#include "core/hle/service/nvdrv/devices/nvhost_gpu.h"
9 10
10namespace Service { 11namespace Service {
@@ -131,7 +132,7 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp
131 params.num_entries * sizeof(IoctlGpfifoEntry)); 132 params.num_entries * sizeof(IoctlGpfifoEntry));
132 for (auto entry : entries) { 133 for (auto entry : entries) {
133 VAddr va_addr = entry.Address(); 134 VAddr va_addr = entry.Address();
134 // TODO(ogniK): Process these 135 Core::System::GetInstance().GPU().ProcessCommandList(va_addr, entry.sz);
135 } 136 }
136 params.fence_out.id = 0; 137 params.fence_out.id = 0;
137 params.fence_out.value = 0; 138 params.fence_out.value = 0;
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.h b/src/core/hle/service/nvdrv/devices/nvhost_gpu.h
index 4fe2c9ad5..e7e9a0088 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.h
@@ -4,6 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <memory>
7#include <vector> 8#include <vector>
8#include "common/common_types.h" 9#include "common/common_types.h"
9#include "common/swap.h" 10#include "common/swap.h"
@@ -12,12 +13,14 @@
12namespace Service { 13namespace Service {
13namespace Nvidia { 14namespace Nvidia {
14namespace Devices { 15namespace Devices {
16
17class nvmap;
15constexpr u32 NVGPU_IOCTL_MAGIC('H'); 18constexpr u32 NVGPU_IOCTL_MAGIC('H');
16constexpr u32 NVGPU_IOCTL_CHANNEL_SUBMIT_GPFIFO(0x8); 19constexpr u32 NVGPU_IOCTL_CHANNEL_SUBMIT_GPFIFO(0x8);
17 20
18class nvhost_gpu final : public nvdevice { 21class nvhost_gpu final : public nvdevice {
19public: 22public:
20 nvhost_gpu() = default; 23 nvhost_gpu(std::shared_ptr<nvmap> nvmap_dev) : nvmap_dev(std::move(nvmap_dev)) {}
21 ~nvhost_gpu() override = default; 24 ~nvhost_gpu() override = default;
22 25
23 u32 ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override; 26 u32 ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override;
@@ -132,6 +135,8 @@ private:
132 u32 AllocGPFIFOEx2(const std::vector<u8>& input, std::vector<u8>& output); 135 u32 AllocGPFIFOEx2(const std::vector<u8>& input, std::vector<u8>& output);
133 u32 AllocateObjectContext(const std::vector<u8>& input, std::vector<u8>& output); 136 u32 AllocateObjectContext(const std::vector<u8>& input, std::vector<u8>& output);
134 u32 SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output); 137 u32 SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output);
138
139 std::shared_ptr<nvmap> nvmap_dev;
135}; 140};
136 141
137} // namespace Devices 142} // namespace Devices
diff --git a/src/core/hle/service/nvdrv/nvdrv.cpp b/src/core/hle/service/nvdrv/nvdrv.cpp
index a98634422..ea00240e6 100644
--- a/src/core/hle/service/nvdrv/nvdrv.cpp
+++ b/src/core/hle/service/nvdrv/nvdrv.cpp
@@ -32,11 +32,11 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
32Module::Module() { 32Module::Module() {
33 auto nvmap_dev = std::make_shared<Devices::nvmap>(); 33 auto nvmap_dev = std::make_shared<Devices::nvmap>();
34 devices["/dev/nvhost-as-gpu"] = std::make_shared<Devices::nvhost_as_gpu>(nvmap_dev); 34 devices["/dev/nvhost-as-gpu"] = std::make_shared<Devices::nvhost_as_gpu>(nvmap_dev);
35 devices["/dev/nvhost-gpu"] = std::make_shared<Devices::nvhost_gpu>(nvmap_dev);
35 devices["/dev/nvhost-ctrl-gpu"] = std::make_shared<Devices::nvhost_ctrl_gpu>(); 36 devices["/dev/nvhost-ctrl-gpu"] = std::make_shared<Devices::nvhost_ctrl_gpu>();
36 devices["/dev/nvmap"] = nvmap_dev; 37 devices["/dev/nvmap"] = nvmap_dev;
37 devices["/dev/nvdisp_disp0"] = std::make_shared<Devices::nvdisp_disp0>(nvmap_dev); 38 devices["/dev/nvdisp_disp0"] = std::make_shared<Devices::nvdisp_disp0>(nvmap_dev);
38 devices["/dev/nvhost-ctrl"] = std::make_shared<Devices::nvhost_ctrl>(); 39 devices["/dev/nvhost-ctrl"] = std::make_shared<Devices::nvhost_ctrl>();
39 devices["/dev/nvhost-gpu"] = std::make_shared<Devices::nvhost_gpu>();
40} 40}
41 41
42u32 Module::Open(std::string device_name) { 42u32 Module::Open(std::string device_name) {
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index 69f2b4afd..ed87f8ff1 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -1,4 +1,15 @@
1add_library(video_core STATIC 1add_library(video_core STATIC
2 command_processor.cpp
3 command_processor.h
4 engines/fermi_2d.cpp
5 engines/fermi_2d.h
6 engines/maxwell_3d.cpp
7 engines/maxwell_3d.h
8 engines/maxwell_compute.cpp
9 engines/maxwell_compute.h
10 gpu.h
11 memory_manager.cpp
12 memory_manager.h
2 renderer_base.cpp 13 renderer_base.cpp
3 renderer_base.h 14 renderer_base.h
4 renderer_opengl/gl_resource_manager.h 15 renderer_opengl/gl_resource_manager.h
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
new file mode 100644
index 000000000..21d672085
--- /dev/null
+++ b/src/video_core/command_processor.cpp
@@ -0,0 +1,119 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include <array>
6#include <cstddef>
7#include <memory>
8#include <utility>
9#include "common/assert.h"
10#include "common/logging/log.h"
11#include "common/microprofile.h"
12#include "common/vector_math.h"
13#include "core/memory.h"
14#include "core/tracer/recorder.h"
15#include "video_core/command_processor.h"
16#include "video_core/engines/fermi_2d.h"
17#include "video_core/engines/maxwell_3d.h"
18#include "video_core/engines/maxwell_compute.h"
19#include "video_core/gpu.h"
20#include "video_core/renderer_base.h"
21#include "video_core/video_core.h"
22
23namespace Tegra {
24
25enum class BufferMethods {
26 BindObject = 0,
27 CountBufferMethods = 0x100,
28};
29
30void GPU::WriteReg(u32 method, u32 subchannel, u32 value) {
31 LOG_WARNING(HW_GPU, "Processing method %08X on subchannel %u value %08X", method, subchannel,
32 value);
33
34 if (method == static_cast<u32>(BufferMethods::BindObject)) {
35 // Bind the current subchannel to the desired engine id.
36 LOG_DEBUG(HW_GPU, "Binding subchannel %u to engine %u", subchannel, value);
37 ASSERT(bound_engines.find(subchannel) == bound_engines.end());
38 bound_engines[subchannel] = static_cast<EngineID>(value);
39 return;
40 }
41
42 if (method < static_cast<u32>(BufferMethods::CountBufferMethods)) {
43 // TODO(Subv): Research and implement these methods.
44 LOG_ERROR(HW_GPU, "Special buffer methods other than Bind are not implemented");
45 return;
46 }
47
48 ASSERT(bound_engines.find(subchannel) != bound_engines.end());
49
50 const EngineID engine = bound_engines[subchannel];
51
52 switch (engine) {
53 case EngineID::FERMI_TWOD_A:
54 fermi_2d->WriteReg(method, value);
55 break;
56 case EngineID::MAXWELL_B:
57 maxwell_3d->WriteReg(method, value);
58 break;
59 case EngineID::MAXWELL_COMPUTE_B:
60 maxwell_compute->WriteReg(method, value);
61 break;
62 default:
63 UNIMPLEMENTED();
64 }
65}
66
67void GPU::ProcessCommandList(GPUVAddr address, u32 size) {
68 // TODO(Subv): PhysicalToVirtualAddress is a misnomer, it converts a GPU VAddr into an
69 // application VAddr.
70 const VAddr head_address = memory_manager->PhysicalToVirtualAddress(address);
71 VAddr current_addr = head_address;
72 while (current_addr < head_address + size * sizeof(CommandHeader)) {
73 const CommandHeader header = {Memory::Read32(current_addr)};
74 current_addr += sizeof(u32);
75
76 switch (header.mode.Value()) {
77 case SubmissionMode::IncreasingOld:
78 case SubmissionMode::Increasing: {
79 // Increase the method value with each argument.
80 for (unsigned i = 0; i < header.arg_count; ++i) {
81 WriteReg(header.method + i, header.subchannel, Memory::Read32(current_addr));
82 current_addr += sizeof(u32);
83 }
84 break;
85 }
86 case SubmissionMode::NonIncreasingOld:
87 case SubmissionMode::NonIncreasing: {
88 // Use the same method value for all arguments.
89 for (unsigned i = 0; i < header.arg_count; ++i) {
90 WriteReg(header.method, header.subchannel, Memory::Read32(current_addr));
91 current_addr += sizeof(u32);
92 }
93 break;
94 }
95 case SubmissionMode::IncreaseOnce: {
96 ASSERT(header.arg_count.Value() >= 1);
97 // Use the original method for the first argument and then the next method for all other
98 // arguments.
99 WriteReg(header.method, header.subchannel, Memory::Read32(current_addr));
100 current_addr += sizeof(u32);
101 // Use the same method value for all arguments.
102 for (unsigned i = 1; i < header.arg_count; ++i) {
103 WriteReg(header.method + 1, header.subchannel, Memory::Read32(current_addr));
104 current_addr += sizeof(u32);
105 }
106 break;
107 }
108 case SubmissionMode::Inline: {
109 // The register value is stored in the bits 16-28 as an immediate
110 WriteReg(header.method, header.subchannel, header.inline_data);
111 break;
112 }
113 default:
114 UNIMPLEMENTED();
115 }
116 }
117}
118
119} // namespace Tegra
diff --git a/src/video_core/command_processor.h b/src/video_core/command_processor.h
new file mode 100644
index 000000000..b511bfcf7
--- /dev/null
+++ b/src/video_core/command_processor.h
@@ -0,0 +1,39 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <type_traits>
8#include "common/bit_field.h"
9#include "common/common_types.h"
10
11namespace Tegra {
12
13enum class SubmissionMode : u32 {
14 IncreasingOld = 0,
15 Increasing = 1,
16 NonIncreasingOld = 2,
17 NonIncreasing = 3,
18 Inline = 4,
19 IncreaseOnce = 5
20};
21
22union CommandHeader {
23 u32 hex;
24
25 BitField<0, 13, u32> method;
26 BitField<13, 3, u32> subchannel;
27
28 BitField<16, 13, u32> arg_count;
29 BitField<16, 13, u32> inline_data;
30
31 BitField<29, 3, SubmissionMode> mode;
32};
33static_assert(std::is_standard_layout<CommandHeader>::value == true,
34 "CommandHeader does not use standard layout");
35static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect size!");
36
37void ProcessCommandList(VAddr address, u32 size);
38
39} // namespace Tegra
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp
new file mode 100644
index 000000000..7aab163dc
--- /dev/null
+++ b/src/video_core/engines/fermi_2d.cpp
@@ -0,0 +1,13 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include "video_core/engines/fermi_2d.h"
6
7namespace Tegra {
8namespace Engines {
9
10void Fermi2D::WriteReg(u32 method, u32 value) {}
11
12} // namespace Engines
13} // namespace Tegra
diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h
new file mode 100644
index 000000000..8967ddede
--- /dev/null
+++ b/src/video_core/engines/fermi_2d.h
@@ -0,0 +1,22 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace Tegra {
10namespace Engines {
11
12class Fermi2D final {
13public:
14 Fermi2D() = default;
15 ~Fermi2D() = default;
16
17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
20
21} // namespace Engines
22} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
new file mode 100644
index 000000000..ccdb310f0
--- /dev/null
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -0,0 +1,13 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include "video_core/engines/maxwell_3d.h"
6
7namespace Tegra {
8namespace Engines {
9
10void Maxwell3D::WriteReg(u32 method, u32 value) {}
11
12} // namespace Engines
13} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
new file mode 100644
index 000000000..0f4ae1328
--- /dev/null
+++ b/src/video_core/engines/maxwell_3d.h
@@ -0,0 +1,22 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace Tegra {
10namespace Engines {
11
12class Maxwell3D final {
13public:
14 Maxwell3D() = default;
15 ~Maxwell3D() = default;
16
17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
20
21} // namespace Engines
22} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp
new file mode 100644
index 000000000..e4e5f9e5e
--- /dev/null
+++ b/src/video_core/engines/maxwell_compute.cpp
@@ -0,0 +1,13 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include "video_core/engines/maxwell_compute.h"
6
7namespace Tegra {
8namespace Engines {
9
10void MaxwellCompute::WriteReg(u32 method, u32 value) {}
11
12} // namespace Engines
13} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_compute.h b/src/video_core/engines/maxwell_compute.h
new file mode 100644
index 000000000..7262e1bcb
--- /dev/null
+++ b/src/video_core/engines/maxwell_compute.h
@@ -0,0 +1,22 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace Tegra {
10namespace Engines {
11
12class MaxwellCompute final {
13public:
14 MaxwellCompute() = default;
15 ~MaxwellCompute() = default;
16
17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
20
21} // namespace Engines
22} // namespace Tegra
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
new file mode 100644
index 000000000..a961f3fd4
--- /dev/null
+++ b/src/video_core/gpu.h
@@ -0,0 +1,55 @@
1// Copyright 2018 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <memory>
8#include <unordered_map>
9#include "common/common_types.h"
10#include "video_core/engines/fermi_2d.h"
11#include "video_core/engines/maxwell_3d.h"
12#include "video_core/engines/maxwell_compute.h"
13#include "video_core/memory_manager.h"
14
15namespace Tegra {
16
17enum class EngineID {
18 FERMI_TWOD_A = 0x902D, // 2D Engine
19 MAXWELL_B = 0xB197, // 3D Engine
20 MAXWELL_COMPUTE_B = 0xB1C0,
21 KEPLER_INLINE_TO_MEMORY_B = 0xA140,
22 MAXWELL_DMA_COPY_A = 0xB0B5,
23};
24
25class GPU final {
26public:
27 GPU() {
28 memory_manager = std::make_unique<MemoryManager>();
29 maxwell_3d = std::make_unique<Engines::Maxwell3D>();
30 fermi_2d = std::make_unique<Engines::Fermi2D>();
31 maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
32 }
33 ~GPU() = default;
34
35 /// Processes a command list stored at the specified address in GPU memory.
36 void ProcessCommandList(GPUVAddr address, u32 size);
37
38 std::unique_ptr<MemoryManager> memory_manager;
39
40private:
41 /// Writes a single register in the engine bound to the specified subchannel
42 void WriteReg(u32 method, u32 subchannel, u32 value);
43
44 /// Mapping of command subchannels to their bound engine ids.
45 std::unordered_map<u32, EngineID> bound_engines;
46
47 /// 3D engine
48 std::unique_ptr<Engines::Maxwell3D> maxwell_3d;
49 /// 2D engine
50 std::unique_ptr<Engines::Fermi2D> fermi_2d;
51 /// Compute engine
52 std::unique_ptr<Engines::MaxwellCompute> maxwell_compute;
53};
54
55} // namespace Tegra
diff --git a/src/core/hle/service/nvdrv/memory_manager.cpp b/src/video_core/memory_manager.cpp
index 55a8675d5..2789a4ca1 100644
--- a/src/core/hle/service/nvdrv/memory_manager.cpp
+++ b/src/video_core/memory_manager.cpp
@@ -3,10 +3,9 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/assert.h" 5#include "common/assert.h"
6#include "core/hle/service/nvdrv/memory_manager.h" 6#include "video_core/memory_manager.h"
7 7
8namespace Service { 8namespace Tegra {
9namespace Nvidia {
10 9
11PAddr MemoryManager::AllocateSpace(u64 size, u64 align) { 10PAddr MemoryManager::AllocateSpace(u64 size, u64 align) {
12 boost::optional<PAddr> paddr = FindFreeBlock(size, align); 11 boost::optional<PAddr> paddr = FindFreeBlock(size, align);
@@ -108,5 +107,4 @@ VAddr& MemoryManager::PageSlot(PAddr paddr) {
108 return (*block)[(paddr >> Memory::PAGE_BITS) & PAGE_BLOCK_MASK]; 107 return (*block)[(paddr >> Memory::PAGE_BITS) & PAGE_BLOCK_MASK];
109} 108}
110 109
111} // namespace Nvidia 110} // namespace Tegra
112} // namespace Service
diff --git a/src/core/hle/service/nvdrv/memory_manager.h b/src/video_core/memory_manager.h
index 4ba1a3952..47da7acd6 100644
--- a/src/core/hle/service/nvdrv/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -9,8 +9,10 @@
9#include "common/common_types.h" 9#include "common/common_types.h"
10#include "core/memory.h" 10#include "core/memory.h"
11 11
12namespace Service { 12namespace Tegra {
13namespace Nvidia { 13
14/// Virtual addresses in the GPU's memory map are 64 bit.
15using GPUVAddr = u64;
14 16
15class MemoryManager final { 17class MemoryManager final {
16public: 18public:
@@ -44,5 +46,4 @@ private:
44 std::array<std::unique_ptr<PageBlock>, PAGE_TABLE_SIZE> page_table{}; 46 std::array<std::unique_ptr<PageBlock>, PAGE_TABLE_SIZE> page_table{};
45}; 47};
46 48
47} // namespace Nvidia 49} // namespace Tegra
48} // namespace Service