diff options
| author | 2018-03-16 22:28:22 -0400 | |
|---|---|---|
| committer | 2018-03-16 22:28:22 -0400 | |
| commit | cd4e8a989cb01eb9cd10c523d8adbea7ca3cd02c (patch) | |
| tree | 51c9d4b007d0e4ddcb0e6833c4908c7a13998680 /src/video_core/engines | |
| parent | Merge pull request #239 from Subv/shaders (diff) | |
| parent | GPU: Process command mode 5 (IncreaseOnce) differently from other commands. (diff) | |
| download | yuzu-cd4e8a989cb01eb9cd10c523d8adbea7ca3cd02c.tar.gz yuzu-cd4e8a989cb01eb9cd10c523d8adbea7ca3cd02c.tar.xz yuzu-cd4e8a989cb01eb9cd10c523d8adbea7ca3cd02c.zip | |
Merge pull request #241 from Subv/gpu_method_call
GPU: Process command mode 5 (IncreaseOnce) differently from other commands
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/fermi_2d.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/engines/fermi_2d.h | 8 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 17 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 22 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_compute.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_compute.h | 8 |
6 files changed, 56 insertions, 1 deletions
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp index 7aab163dc..6c6162cf3 100644 --- a/src/video_core/engines/fermi_2d.cpp +++ b/src/video_core/engines/fermi_2d.cpp | |||
| @@ -8,6 +8,7 @@ namespace Tegra { | |||
| 8 | namespace Engines { | 8 | namespace Engines { |
| 9 | 9 | ||
| 10 | void Fermi2D::WriteReg(u32 method, u32 value) {} | 10 | void Fermi2D::WriteReg(u32 method, u32 value) {} |
| 11 | void Fermi2D::CallMethod(u32 method, const std::vector<u32>& parameters) {} | ||
| 11 | 12 | ||
| 12 | } // namespace Engines | 13 | } // namespace Engines |
| 13 | } // namespace Tegra | 14 | } // namespace Tegra |
diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h index 8967ddede..ce8920cee 100644 --- a/src/video_core/engines/fermi_2d.h +++ b/src/video_core/engines/fermi_2d.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <vector> | ||
| 7 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 8 | 9 | ||
| 9 | namespace Tegra { | 10 | namespace Tegra { |
| @@ -16,6 +17,13 @@ public: | |||
| 16 | 17 | ||
| 17 | /// Write the value to the register identified by method. | 18 | /// Write the value to the register identified by method. |
| 18 | void WriteReg(u32 method, u32 value); | 19 | void WriteReg(u32 method, u32 value); |
| 20 | |||
| 21 | /** | ||
| 22 | * Handles a method call to this engine. | ||
| 23 | * @param method Method to call | ||
| 24 | * @param parameters Arguments to the method call | ||
| 25 | */ | ||
| 26 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 19 | }; | 27 | }; |
| 20 | 28 | ||
| 21 | } // namespace Engines | 29 | } // namespace Engines |
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 8c6d1172c..1b963e87e 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -8,8 +8,23 @@ | |||
| 8 | namespace Tegra { | 8 | namespace Tegra { |
| 9 | namespace Engines { | 9 | namespace Engines { |
| 10 | 10 | ||
| 11 | const std::unordered_map<u32, Maxwell3D::MethodInfo> Maxwell3D::method_handlers = { | ||
| 12 | {0xE24, {"PrepareShader", 5, &Maxwell3D::PrepareShader}}, | ||
| 13 | }; | ||
| 14 | |||
| 11 | Maxwell3D::Maxwell3D(MemoryManager& memory_manager) : memory_manager(memory_manager) {} | 15 | Maxwell3D::Maxwell3D(MemoryManager& memory_manager) : memory_manager(memory_manager) {} |
| 12 | 16 | ||
| 17 | void Maxwell3D::CallMethod(u32 method, const std::vector<u32>& parameters) { | ||
| 18 | auto itr = method_handlers.find(method); | ||
| 19 | if (itr == method_handlers.end()) { | ||
| 20 | LOG_ERROR(HW_GPU, "Unhandled method call %08X", method); | ||
| 21 | return; | ||
| 22 | } | ||
| 23 | |||
| 24 | ASSERT(itr->second.arguments == parameters.size()); | ||
| 25 | (this->*itr->second.handler)(parameters); | ||
| 26 | } | ||
| 27 | |||
| 13 | void Maxwell3D::WriteReg(u32 method, u32 value) { | 28 | void Maxwell3D::WriteReg(u32 method, u32 value) { |
| 14 | ASSERT_MSG(method < Regs::NUM_REGS, | 29 | ASSERT_MSG(method < Regs::NUM_REGS, |
| 15 | "Invalid Maxwell3D register, increase the size of the Regs structure"); | 30 | "Invalid Maxwell3D register, increase the size of the Regs structure"); |
| @@ -64,5 +79,7 @@ void Maxwell3D::DrawArrays() { | |||
| 64 | LOG_WARNING(HW_GPU, "Game requested a DrawArrays, ignoring"); | 79 | LOG_WARNING(HW_GPU, "Game requested a DrawArrays, ignoring"); |
| 65 | } | 80 | } |
| 66 | 81 | ||
| 82 | void Maxwell3D::PrepareShader(const std::vector<u32>& parameters) {} | ||
| 83 | |||
| 67 | } // namespace Engines | 84 | } // namespace Engines |
| 68 | } // namespace Tegra | 85 | } // namespace Tegra |
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index a2ad28732..8870ef119 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <unordered_map> | ||
| 8 | #include <vector> | ||
| 7 | #include "common/bit_field.h" | 9 | #include "common/bit_field.h" |
| 8 | #include "common/common_funcs.h" | 10 | #include "common/common_funcs.h" |
| 9 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| @@ -20,6 +22,13 @@ public: | |||
| 20 | /// Write the value to the register identified by method. | 22 | /// Write the value to the register identified by method. |
| 21 | void WriteReg(u32 method, u32 value); | 23 | void WriteReg(u32 method, u32 value); |
| 22 | 24 | ||
| 25 | /** | ||
| 26 | * Handles a method call to this engine. | ||
| 27 | * @param method Method to call | ||
| 28 | * @param parameters Arguments to the method call | ||
| 29 | */ | ||
| 30 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 31 | |||
| 23 | /// Register structure of the Maxwell3D engine. | 32 | /// Register structure of the Maxwell3D engine. |
| 24 | /// TODO(Subv): This structure will need to be made bigger as more registers are discovered. | 33 | /// TODO(Subv): This structure will need to be made bigger as more registers are discovered. |
| 25 | struct Regs { | 34 | struct Regs { |
| @@ -112,13 +121,24 @@ public: | |||
| 112 | static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Maxwell3D Regs has wrong size"); | 121 | static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Maxwell3D Regs has wrong size"); |
| 113 | 122 | ||
| 114 | private: | 123 | private: |
| 124 | MemoryManager& memory_manager; | ||
| 125 | |||
| 115 | /// Handles a write to the QUERY_GET register. | 126 | /// Handles a write to the QUERY_GET register. |
| 116 | void ProcessQueryGet(); | 127 | void ProcessQueryGet(); |
| 117 | 128 | ||
| 118 | /// Handles a write to the VERTEX_END_GL register, triggering a draw. | 129 | /// Handles a write to the VERTEX_END_GL register, triggering a draw. |
| 119 | void DrawArrays(); | 130 | void DrawArrays(); |
| 120 | 131 | ||
| 121 | MemoryManager& memory_manager; | 132 | /// Method call handlers |
| 133 | void PrepareShader(const std::vector<u32>& parameters); | ||
| 134 | |||
| 135 | struct MethodInfo { | ||
| 136 | const char* name; | ||
| 137 | u32 arguments; | ||
| 138 | void (Maxwell3D::*handler)(const std::vector<u32>& parameters); | ||
| 139 | }; | ||
| 140 | |||
| 141 | static const std::unordered_map<u32, MethodInfo> method_handlers; | ||
| 122 | }; | 142 | }; |
| 123 | 143 | ||
| 124 | #define ASSERT_REG_POSITION(field_name, position) \ | 144 | #define ASSERT_REG_POSITION(field_name, position) \ |
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp index e4e5f9e5e..3bef7fe86 100644 --- a/src/video_core/engines/maxwell_compute.cpp +++ b/src/video_core/engines/maxwell_compute.cpp | |||
| @@ -8,6 +8,7 @@ namespace Tegra { | |||
| 8 | namespace Engines { | 8 | namespace Engines { |
| 9 | 9 | ||
| 10 | void MaxwellCompute::WriteReg(u32 method, u32 value) {} | 10 | void MaxwellCompute::WriteReg(u32 method, u32 value) {} |
| 11 | void MaxwellCompute::CallMethod(u32 method, const std::vector<u32>& parameters) {} | ||
| 11 | 12 | ||
| 12 | } // namespace Engines | 13 | } // namespace Engines |
| 13 | } // namespace Tegra | 14 | } // namespace Tegra |
diff --git a/src/video_core/engines/maxwell_compute.h b/src/video_core/engines/maxwell_compute.h index 7262e1bcb..5fc7ed635 100644 --- a/src/video_core/engines/maxwell_compute.h +++ b/src/video_core/engines/maxwell_compute.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <vector> | ||
| 7 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 8 | 9 | ||
| 9 | namespace Tegra { | 10 | namespace Tegra { |
| @@ -16,6 +17,13 @@ public: | |||
| 16 | 17 | ||
| 17 | /// Write the value to the register identified by method. | 18 | /// Write the value to the register identified by method. |
| 18 | void WriteReg(u32 method, u32 value); | 19 | void WriteReg(u32 method, u32 value); |
| 20 | |||
| 21 | /** | ||
| 22 | * Handles a method call to this engine. | ||
| 23 | * @param method Method to call | ||
| 24 | * @param parameters Arguments to the method call | ||
| 25 | */ | ||
| 26 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 19 | }; | 27 | }; |
| 20 | 28 | ||
| 21 | } // namespace Engines | 29 | } // namespace Engines |