summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Subv2018-02-11 23:44:12 -0500
committerGravatar Subv2018-02-11 23:44:12 -0500
commit6cddf9d88e7fc49919fda92bcd4235797c56f07f (patch)
tree3f7da3795b5561b2d325325b72610996e2857742 /src/video_core
parentGPU: Added a command processor to decode the GPU pushbuffers and forward the ... (diff)
downloadyuzu-6cddf9d88e7fc49919fda92bcd4235797c56f07f.tar.gz
yuzu-6cddf9d88e7fc49919fda92bcd4235797c56f07f.tar.xz
yuzu-6cddf9d88e7fc49919fda92bcd4235797c56f07f.zip
Make a GPU class in VideoCore to contain the GPU state.
Also moved the GPU MemoryManager class to video_core since it makes more sense for it to be there.
Diffstat (limited to 'src/video_core')
-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.cpp110
-rw-r--r--src/video_core/memory_manager.h49
12 files changed, 252 insertions, 44 deletions
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/video_core/memory_manager.cpp b/src/video_core/memory_manager.cpp
new file mode 100644
index 000000000..2789a4ca1
--- /dev/null
+++ b/src/video_core/memory_manager.cpp
@@ -0,0 +1,110 @@
1// Copyright 2018 yuzu emulator team
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include "common/assert.h"
6#include "video_core/memory_manager.h"
7
8namespace Tegra {
9
10PAddr MemoryManager::AllocateSpace(u64 size, u64 align) {
11 boost::optional<PAddr> paddr = FindFreeBlock(size, align);
12 ASSERT(paddr);
13
14 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
15 PageSlot(*paddr + offset) = static_cast<u64>(PageStatus::Allocated);
16 }
17
18 return *paddr;
19}
20
21PAddr MemoryManager::AllocateSpace(PAddr paddr, u64 size, u64 align) {
22 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
23 if (IsPageMapped(paddr + offset)) {
24 return AllocateSpace(size, align);
25 }
26 }
27
28 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
29 PageSlot(paddr + offset) = static_cast<u64>(PageStatus::Allocated);
30 }
31
32 return paddr;
33}
34
35PAddr MemoryManager::MapBufferEx(VAddr vaddr, u64 size) {
36 vaddr &= ~Memory::PAGE_MASK;
37
38 boost::optional<PAddr> paddr = FindFreeBlock(size);
39 ASSERT(paddr);
40
41 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
42 PageSlot(*paddr + offset) = vaddr + offset;
43 }
44
45 return *paddr;
46}
47
48PAddr MemoryManager::MapBufferEx(VAddr vaddr, PAddr paddr, u64 size) {
49 vaddr &= ~Memory::PAGE_MASK;
50 paddr &= ~Memory::PAGE_MASK;
51
52 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
53 if (PageSlot(paddr + offset) != static_cast<u64>(PageStatus::Allocated)) {
54 return MapBufferEx(vaddr, size);
55 }
56 }
57
58 for (u64 offset = 0; offset < size; offset += Memory::PAGE_SIZE) {
59 PageSlot(paddr + offset) = vaddr + offset;
60 }
61
62 return paddr;
63}
64
65boost::optional<PAddr> MemoryManager::FindFreeBlock(u64 size, u64 align) {
66 PAddr paddr{};
67 u64 free_space{};
68 align = (align + Memory::PAGE_MASK) & ~Memory::PAGE_MASK;
69
70 while (paddr + free_space < MAX_ADDRESS) {
71 if (!IsPageMapped(paddr + free_space)) {
72 free_space += Memory::PAGE_SIZE;
73 if (free_space >= size) {
74 return paddr;
75 }
76 } else {
77 paddr += free_space + Memory::PAGE_SIZE;
78 free_space = 0;
79 const u64 remainder{paddr % align};
80 if (!remainder) {
81 paddr = (paddr - remainder) + align;
82 }
83 }
84 }
85
86 return {};
87}
88
89VAddr MemoryManager::PhysicalToVirtualAddress(PAddr paddr) {
90 VAddr base_addr = PageSlot(paddr);
91 ASSERT(base_addr != static_cast<u64>(PageStatus::Unmapped));
92 return base_addr + (paddr & Memory::PAGE_MASK);
93}
94
95bool MemoryManager::IsPageMapped(PAddr paddr) {
96 return PageSlot(paddr) != static_cast<u64>(PageStatus::Unmapped);
97}
98
99VAddr& MemoryManager::PageSlot(PAddr paddr) {
100 auto& block = page_table[(paddr >> (Memory::PAGE_BITS + PAGE_TABLE_BITS)) & PAGE_TABLE_MASK];
101 if (!block) {
102 block = std::make_unique<PageBlock>();
103 for (unsigned index = 0; index < PAGE_BLOCK_SIZE; index++) {
104 (*block)[index] = static_cast<u64>(PageStatus::Unmapped);
105 }
106 }
107 return (*block)[(paddr >> Memory::PAGE_BITS) & PAGE_BLOCK_MASK];
108}
109
110} // namespace Tegra
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
new file mode 100644
index 000000000..47da7acd6
--- /dev/null
+++ b/src/video_core/memory_manager.h
@@ -0,0 +1,49 @@
1// Copyright 2018 yuzu emulator team
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <array>
8#include <memory>
9#include "common/common_types.h"
10#include "core/memory.h"
11
12namespace Tegra {
13
14/// Virtual addresses in the GPU's memory map are 64 bit.
15using GPUVAddr = u64;
16
17class MemoryManager final {
18public:
19 MemoryManager() = default;
20
21 PAddr AllocateSpace(u64 size, u64 align);
22 PAddr AllocateSpace(PAddr paddr, u64 size, u64 align);
23 PAddr MapBufferEx(VAddr vaddr, u64 size);
24 PAddr MapBufferEx(VAddr vaddr, PAddr paddr, u64 size);
25 VAddr PhysicalToVirtualAddress(PAddr paddr);
26
27private:
28 boost::optional<PAddr> FindFreeBlock(u64 size, u64 align = 1);
29 bool IsPageMapped(PAddr paddr);
30 VAddr& PageSlot(PAddr paddr);
31
32 enum class PageStatus : u64 {
33 Unmapped = 0xFFFFFFFFFFFFFFFFULL,
34 Allocated = 0xFFFFFFFFFFFFFFFEULL,
35 };
36
37 static constexpr u64 MAX_ADDRESS{0x10000000000ULL};
38 static constexpr u64 PAGE_TABLE_BITS{14};
39 static constexpr u64 PAGE_TABLE_SIZE{1 << PAGE_TABLE_BITS};
40 static constexpr u64 PAGE_TABLE_MASK{PAGE_TABLE_SIZE - 1};
41 static constexpr u64 PAGE_BLOCK_BITS{14};
42 static constexpr u64 PAGE_BLOCK_SIZE{1 << PAGE_BLOCK_BITS};
43 static constexpr u64 PAGE_BLOCK_MASK{PAGE_BLOCK_SIZE - 1};
44
45 using PageBlock = std::array<VAddr, PAGE_BLOCK_SIZE>;
46 std::array<std::unique_ptr<PageBlock>, PAGE_TABLE_SIZE> page_table{};
47};
48
49} // namespace Tegra