summaryrefslogtreecommitdiff
path: root/src/video_core
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/video_core
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/video_core')
-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.cpp110
-rw-r--r--src/video_core/memory_manager.h49
12 files changed, 488 insertions, 0 deletions
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/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