summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.h5
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp7
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.h5
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.cpp7
-rw-r--r--src/video_core/CMakeLists.txt3
-rw-r--r--src/video_core/command_processor.cpp33
-rw-r--r--src/video_core/command_processor.h4
-rw-r--r--src/video_core/engines/fermi_2d.cpp4
-rw-r--r--src/video_core/engines/fermi_2d.h10
-rw-r--r--src/video_core/engines/maxwell_3d.cpp4
-rw-r--r--src/video_core/engines/maxwell_3d.h10
-rw-r--r--src/video_core/engines/maxwell_compute.cpp4
-rw-r--r--src/video_core/engines/maxwell_compute.h10
-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, 125 insertions, 76 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 301a8a79f..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,8 +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, std::shared_ptr<MemoryManager> memory_manager) 22 nvhost_as_gpu(std::shared_ptr<nvmap> nvmap_dev) : nvmap_dev(std::move(nvmap_dev)) {}
24 : nvmap_dev(std::move(nvmap_dev)), memory_manager(std::move(memory_manager)) {}
25 ~nvhost_as_gpu() override = default; 23 ~nvhost_as_gpu() override = default;
26 24
27 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;
@@ -100,7 +98,6 @@ private:
100 u32 GetVARegions(const std::vector<u8>& input, std::vector<u8>& output); 98 u32 GetVARegions(const std::vector<u8>& input, std::vector<u8>& output);
101 99
102 std::shared_ptr<nvmap> nvmap_dev; 100 std::shared_ptr<nvmap> nvmap_dev;
103 std::shared_ptr<MemoryManager> memory_manager;
104}; 101};
105 102
106} // 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 1c3079889..0b2ebd466 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
@@ -5,8 +5,8 @@
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#include "video_core/command_processor.h"
10 10
11namespace Service { 11namespace Service {
12namespace Nvidia { 12namespace Nvidia {
@@ -131,9 +131,8 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp
131 std::memcpy(&entries[0], &input.data()[sizeof(IoctlSubmitGpfifo)], 131 std::memcpy(&entries[0], &input.data()[sizeof(IoctlSubmitGpfifo)],
132 params.num_entries * sizeof(IoctlGpfifoEntry)); 132 params.num_entries * sizeof(IoctlGpfifoEntry));
133 for (auto entry : entries) { 133 for (auto entry : entries) {
134 VAddr va_addr = memory_manager->PhysicalToVirtualAddress(entry.Address()); 134 VAddr va_addr = entry.Address();
135 Tegra::CommandProcessor::ProcessCommandList(va_addr, entry.sz); 135 Core::System::GetInstance().GPU().ProcessCommandList(va_addr, entry.sz);
136 // TODO(ogniK): Process these
137 } 136 }
138 params.fence_out.id = 0; 137 params.fence_out.id = 0;
139 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 6f9b90b05..e7e9a0088 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.h
@@ -9,7 +9,6 @@
9#include "common/common_types.h" 9#include "common/common_types.h"
10#include "common/swap.h" 10#include "common/swap.h"
11#include "core/hle/service/nvdrv/devices/nvdevice.h" 11#include "core/hle/service/nvdrv/devices/nvdevice.h"
12#include "core/hle/service/nvdrv/memory_manager.h"
13 12
14namespace Service { 13namespace Service {
15namespace Nvidia { 14namespace Nvidia {
@@ -21,8 +20,7 @@ constexpr u32 NVGPU_IOCTL_CHANNEL_SUBMIT_GPFIFO(0x8);
21 20
22class nvhost_gpu final : public nvdevice { 21class nvhost_gpu final : public nvdevice {
23public: 22public:
24 nvhost_gpu(std::shared_ptr<nvmap> nvmap_dev, std::shared_ptr<MemoryManager> memory_manager) 23 nvhost_gpu(std::shared_ptr<nvmap> nvmap_dev) : nvmap_dev(std::move(nvmap_dev)) {}
25 : nvmap_dev(std::move(nvmap_dev)), memory_manager(std::move(memory_manager)) {}
26 ~nvhost_gpu() override = default; 24 ~nvhost_gpu() override = default;
27 25
28 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;
@@ -139,7 +137,6 @@ private:
139 u32 SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output); 137 u32 SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output);
140 138
141 std::shared_ptr<nvmap> nvmap_dev; 139 std::shared_ptr<nvmap> nvmap_dev;
142 std::shared_ptr<MemoryManager> memory_manager;
143}; 140};
144 141
145} // namespace Devices 142} // namespace Devices
diff --git a/src/core/hle/service/nvdrv/nvdrv.cpp b/src/core/hle/service/nvdrv/nvdrv.cpp
index 469d6d33a..ea00240e6 100644
--- a/src/core/hle/service/nvdrv/nvdrv.cpp
+++ b/src/core/hle/service/nvdrv/nvdrv.cpp
@@ -11,7 +11,6 @@
11#include "core/hle/service/nvdrv/devices/nvhost_gpu.h" 11#include "core/hle/service/nvdrv/devices/nvhost_gpu.h"
12#include "core/hle/service/nvdrv/devices/nvmap.h" 12#include "core/hle/service/nvdrv/devices/nvmap.h"
13#include "core/hle/service/nvdrv/interface.h" 13#include "core/hle/service/nvdrv/interface.h"
14#include "core/hle/service/nvdrv/memory_manager.h"
15#include "core/hle/service/nvdrv/nvdrv.h" 14#include "core/hle/service/nvdrv/nvdrv.h"
16#include "core/hle/service/nvdrv/nvmemp.h" 15#include "core/hle/service/nvdrv/nvmemp.h"
17 16
@@ -32,10 +31,8 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
32 31
33Module::Module() { 32Module::Module() {
34 auto nvmap_dev = std::make_shared<Devices::nvmap>(); 33 auto nvmap_dev = std::make_shared<Devices::nvmap>();
35 auto memory_manager = std::make_shared<MemoryManager>(); 34 devices["/dev/nvhost-as-gpu"] = std::make_shared<Devices::nvhost_as_gpu>(nvmap_dev);
36 devices["/dev/nvhost-as-gpu"] = 35 devices["/dev/nvhost-gpu"] = std::make_shared<Devices::nvhost_gpu>(nvmap_dev);
37 std::make_shared<Devices::nvhost_as_gpu>(nvmap_dev, memory_manager);
38 devices["/dev/nvhost-gpu"] = std::make_shared<Devices::nvhost_gpu>(nvmap_dev, memory_manager);
39 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>();
40 devices["/dev/nvmap"] = nvmap_dev; 37 devices["/dev/nvmap"] = nvmap_dev;
41 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);
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index 70728d2f6..ed87f8ff1 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -7,6 +7,9 @@ add_library(video_core STATIC
7 engines/maxwell_3d.h 7 engines/maxwell_3d.h
8 engines/maxwell_compute.cpp 8 engines/maxwell_compute.cpp
9 engines/maxwell_compute.h 9 engines/maxwell_compute.h
10 gpu.h
11 memory_manager.cpp
12 memory_manager.h
10 renderer_base.cpp 13 renderer_base.cpp
11 renderer_base.h 14 renderer_base.h
12 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
index e1df875e7..21d672085 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -16,30 +16,18 @@
16#include "video_core/engines/fermi_2d.h" 16#include "video_core/engines/fermi_2d.h"
17#include "video_core/engines/maxwell_3d.h" 17#include "video_core/engines/maxwell_3d.h"
18#include "video_core/engines/maxwell_compute.h" 18#include "video_core/engines/maxwell_compute.h"
19#include "video_core/gpu.h"
19#include "video_core/renderer_base.h" 20#include "video_core/renderer_base.h"
20#include "video_core/video_core.h" 21#include "video_core/video_core.h"
21 22
22namespace Tegra { 23namespace Tegra {
23 24
24namespace CommandProcessor {
25
26enum class BufferMethods { 25enum class BufferMethods {
27 BindObject = 0, 26 BindObject = 0,
28 CountBufferMethods = 0x100, 27 CountBufferMethods = 0x100,
29}; 28};
30 29
31enum class EngineID { 30void GPU::WriteReg(u32 method, u32 subchannel, u32 value) {
32 FERMI_TWOD_A = 0x902D, // 2D Engine
33 MAXWELL_B = 0xB197, // 3D Engine
34 MAXWELL_COMPUTE_B = 0xB1C0,
35 KEPLER_INLINE_TO_MEMORY_B = 0xA140,
36 MAXWELL_DMA_COPY_A = 0xB0B5,
37};
38
39// Mapping of subchannels to their bound engine ids.
40static std::unordered_map<u32, EngineID> bound_engines;
41
42static void WriteReg(u32 method, u32 subchannel, u32 value) {
43 LOG_WARNING(HW_GPU, "Processing method %08X on subchannel %u value %08X", method, subchannel, 31 LOG_WARNING(HW_GPU, "Processing method %08X on subchannel %u value %08X", method, subchannel,
44 value); 32 value);
45 33
@@ -63,22 +51,25 @@ static void WriteReg(u32 method, u32 subchannel, u32 value) {
63 51
64 switch (engine) { 52 switch (engine) {
65 case EngineID::FERMI_TWOD_A: 53 case EngineID::FERMI_TWOD_A:
66 Engines::Fermi2D::WriteReg(method, value); 54 fermi_2d->WriteReg(method, value);
67 break; 55 break;
68 case EngineID::MAXWELL_B: 56 case EngineID::MAXWELL_B:
69 Engines::Maxwell3D::WriteReg(method, value); 57 maxwell_3d->WriteReg(method, value);
70 break; 58 break;
71 case EngineID::MAXWELL_COMPUTE_B: 59 case EngineID::MAXWELL_COMPUTE_B:
72 Engines::MaxwellCompute::WriteReg(method, value); 60 maxwell_compute->WriteReg(method, value);
73 break; 61 break;
74 default: 62 default:
75 UNIMPLEMENTED(); 63 UNIMPLEMENTED();
76 } 64 }
77} 65}
78 66
79void ProcessCommandList(VAddr address, u32 size) { 67void GPU::ProcessCommandList(GPUVAddr address, u32 size) {
80 VAddr current_addr = address; 68 // TODO(Subv): PhysicalToVirtualAddress is a misnomer, it converts a GPU VAddr into an
81 while (current_addr < address + size * sizeof(CommandHeader)) { 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)) {
82 const CommandHeader header = {Memory::Read32(current_addr)}; 73 const CommandHeader header = {Memory::Read32(current_addr)};
83 current_addr += sizeof(u32); 74 current_addr += sizeof(u32);
84 75
@@ -125,6 +116,4 @@ void ProcessCommandList(VAddr address, u32 size) {
125 } 116 }
126} 117}
127 118
128} // namespace CommandProcessor
129
130} // namespace Tegra 119} // namespace Tegra
diff --git a/src/video_core/command_processor.h b/src/video_core/command_processor.h
index 90e64629e..b511bfcf7 100644
--- a/src/video_core/command_processor.h
+++ b/src/video_core/command_processor.h
@@ -10,8 +10,6 @@
10 10
11namespace Tegra { 11namespace Tegra {
12 12
13namespace CommandProcessor {
14
15enum class SubmissionMode : u32 { 13enum class SubmissionMode : u32 {
16 IncreasingOld = 0, 14 IncreasingOld = 0,
17 Increasing = 1, 15 Increasing = 1,
@@ -38,6 +36,4 @@ static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect
38 36
39void ProcessCommandList(VAddr address, u32 size); 37void ProcessCommandList(VAddr address, u32 size);
40 38
41} // namespace CommandProcessor
42
43} // namespace Tegra 39} // namespace Tegra
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp
index 3d62c321f..7aab163dc 100644
--- a/src/video_core/engines/fermi_2d.cpp
+++ b/src/video_core/engines/fermi_2d.cpp
@@ -6,10 +6,8 @@
6 6
7namespace Tegra { 7namespace Tegra {
8namespace Engines { 8namespace Engines {
9namespace Fermi2D {
10 9
11void WriteReg(u32 method, u32 value) {} 10void Fermi2D::WriteReg(u32 method, u32 value) {}
12 11
13} // namespace Fermi2D
14} // namespace Engines 12} // namespace Engines
15} // namespace Tegra 13} // namespace Tegra
diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h
index 6f3f5dfbc..8967ddede 100644
--- a/src/video_core/engines/fermi_2d.h
+++ b/src/video_core/engines/fermi_2d.h
@@ -8,11 +8,15 @@
8 8
9namespace Tegra { 9namespace Tegra {
10namespace Engines { 10namespace Engines {
11namespace Fermi2D {
12 11
13void WriteReg(u32 method, u32 value); 12class Fermi2D final {
13public:
14 Fermi2D() = default;
15 ~Fermi2D() = default;
14 16
15} // namespace Fermi2D 17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
16 20
17} // namespace Engines 21} // namespace Engines
18} // namespace Tegra 22} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index c2697c960..ccdb310f0 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -6,10 +6,8 @@
6 6
7namespace Tegra { 7namespace Tegra {
8namespace Engines { 8namespace Engines {
9namespace Maxwell3D {
10 9
11void WriteReg(u32 method, u32 value) {} 10void Maxwell3D::WriteReg(u32 method, u32 value) {}
12 11
13} // namespace Maxwell3D
14} // namespace Engines 12} // namespace Engines
15} // namespace Tegra 13} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 6957fb721..0f4ae1328 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -8,11 +8,15 @@
8 8
9namespace Tegra { 9namespace Tegra {
10namespace Engines { 10namespace Engines {
11namespace Maxwell3D {
12 11
13void WriteReg(u32 method, u32 value); 12class Maxwell3D final {
13public:
14 Maxwell3D() = default;
15 ~Maxwell3D() = default;
14 16
15} // namespace Maxwell3D 17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
16 20
17} // namespace Engines 21} // namespace Engines
18} // namespace Tegra 22} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp
index c2134d63b..e4e5f9e5e 100644
--- a/src/video_core/engines/maxwell_compute.cpp
+++ b/src/video_core/engines/maxwell_compute.cpp
@@ -6,10 +6,8 @@
6 6
7namespace Tegra { 7namespace Tegra {
8namespace Engines { 8namespace Engines {
9namespace MaxwellCompute {
10 9
11void WriteReg(u32 method, u32 value) {} 10void MaxwellCompute::WriteReg(u32 method, u32 value) {}
12 11
13} // namespace MaxwellCompute
14} // namespace Engines 12} // namespace Engines
15} // namespace Tegra 13} // namespace Tegra
diff --git a/src/video_core/engines/maxwell_compute.h b/src/video_core/engines/maxwell_compute.h
index dc9a13593..7262e1bcb 100644
--- a/src/video_core/engines/maxwell_compute.h
+++ b/src/video_core/engines/maxwell_compute.h
@@ -8,11 +8,15 @@
8 8
9namespace Tegra { 9namespace Tegra {
10namespace Engines { 10namespace Engines {
11namespace MaxwellCompute {
12 11
13void WriteReg(u32 method, u32 value); 12class MaxwellCompute final {
13public:
14 MaxwellCompute() = default;
15 ~MaxwellCompute() = default;
14 16
15} // namespace MaxwellCompute 17 /// Write the value to the register identified by method.
18 void WriteReg(u32 method, u32 value);
19};
16 20
17} // namespace Engines 21} // namespace Engines
18} // namespace Tegra 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