|
@@ -10,47 +10,48 @@
|
|
|
#include "common/common_funcs.h"
|
|
#include "common/common_funcs.h"
|
|
|
#include "common/common_types.h"
|
|
#include "common/common_types.h"
|
|
|
#include "video_core/gpu.h"
|
|
#include "video_core/gpu.h"
|
|
|
|
|
+#include "video_core/memory_manager.h"
|
|
|
|
|
|
|
|
namespace Tegra::Engines {
|
|
namespace Tegra::Engines {
|
|
|
|
|
|
|
|
-#define MAXWELL_COMPUTE_REG_INDEX(field_name) \
|
|
|
|
|
- (offsetof(Tegra::Engines::MaxwellCompute::Regs, field_name) / sizeof(u32))
|
|
|
|
|
|
|
+#define KEPLER_COMPUTE_REG_INDEX(field_name) \
|
|
|
|
|
+ (offsetof(Tegra::Engines::KeplerCompute::Regs, field_name) / sizeof(u32))
|
|
|
|
|
|
|
|
-class MaxwellCompute final {
|
|
|
|
|
|
|
+class KeplerCompute final {
|
|
|
public:
|
|
public:
|
|
|
- MaxwellCompute() = default;
|
|
|
|
|
- ~MaxwellCompute() = default;
|
|
|
|
|
|
|
+ explicit KeplerCompute(MemoryManager& memory_manager);
|
|
|
|
|
+ ~KeplerCompute();
|
|
|
|
|
+
|
|
|
|
|
+ static constexpr std::size_t NumConstBuffers = 8;
|
|
|
|
|
|
|
|
struct Regs {
|
|
struct Regs {
|
|
|
static constexpr std::size_t NUM_REGS = 0xCF8;
|
|
static constexpr std::size_t NUM_REGS = 0xCF8;
|
|
|
|
|
|
|
|
union {
|
|
union {
|
|
|
struct {
|
|
struct {
|
|
|
- INSERT_PADDING_WORDS(0x281);
|
|
|
|
|
|
|
+ INSERT_PADDING_WORDS(0xAF);
|
|
|
|
|
|
|
|
- union {
|
|
|
|
|
- u32 compute_end;
|
|
|
|
|
- BitField<0, 1, u32> unknown;
|
|
|
|
|
- } compute;
|
|
|
|
|
|
|
+ u32 launch;
|
|
|
|
|
|
|
|
- INSERT_PADDING_WORDS(0xA76);
|
|
|
|
|
|
|
+ INSERT_PADDING_WORDS(0xC48);
|
|
|
};
|
|
};
|
|
|
std::array<u32, NUM_REGS> reg_array;
|
|
std::array<u32, NUM_REGS> reg_array;
|
|
|
};
|
|
};
|
|
|
} regs{};
|
|
} regs{};
|
|
|
-
|
|
|
|
|
static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32),
|
|
static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32),
|
|
|
- "MaxwellCompute Regs has wrong size");
|
|
|
|
|
|
|
+ "KeplerCompute Regs has wrong size");
|
|
|
|
|
+
|
|
|
|
|
+ MemoryManager& memory_manager;
|
|
|
|
|
|
|
|
/// Write the value to the register identified by method.
|
|
/// Write the value to the register identified by method.
|
|
|
void CallMethod(const GPU::MethodCall& method_call);
|
|
void CallMethod(const GPU::MethodCall& method_call);
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
#define ASSERT_REG_POSITION(field_name, position) \
|
|
#define ASSERT_REG_POSITION(field_name, position) \
|
|
|
- static_assert(offsetof(MaxwellCompute::Regs, field_name) == position * 4, \
|
|
|
|
|
|
|
+ static_assert(offsetof(KeplerCompute::Regs, field_name) == position * 4, \
|
|
|
"Field " #field_name " has invalid position")
|
|
"Field " #field_name " has invalid position")
|
|
|
|
|
|
|
|
-ASSERT_REG_POSITION(compute, 0x281);
|
|
|
|
|
|
|
+ASSERT_REG_POSITION(launch, 0xAF);
|
|
|
|
|
|
|
|
#undef ASSERT_REG_POSITION
|
|
#undef ASSERT_REG_POSITION
|
|
|
|
|
|