2018-02-12 02:34:20 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-24 01:12:40 +00:00
|
|
|
#include <array>
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_funcs.h"
|
2018-02-12 02:34:20 +00:00
|
|
|
#include "common/common_types.h"
|
2018-04-24 01:12:40 +00:00
|
|
|
#include "video_core/memory_manager.h"
|
2018-02-12 02:34:20 +00:00
|
|
|
|
|
|
|
namespace Tegra {
|
|
|
|
namespace Engines {
|
|
|
|
|
2018-04-24 01:12:40 +00:00
|
|
|
#define FERMI2D_REG_INDEX(field_name) \
|
|
|
|
(offsetof(Tegra::Engines::Fermi2D::Regs, field_name) / sizeof(u32))
|
|
|
|
|
2018-02-12 04:44:12 +00:00
|
|
|
class Fermi2D final {
|
|
|
|
public:
|
2018-04-24 01:12:40 +00:00
|
|
|
explicit Fermi2D(MemoryManager& memory_manager);
|
2018-02-12 04:44:12 +00:00
|
|
|
~Fermi2D() = default;
|
2018-02-12 02:34:20 +00:00
|
|
|
|
2018-02-12 04:44:12 +00:00
|
|
|
/// Write the value to the register identified by method.
|
|
|
|
void WriteReg(u32 method, u32 value);
|
2018-04-24 01:12:40 +00:00
|
|
|
|
|
|
|
struct Regs {
|
|
|
|
static constexpr size_t NUM_REGS = 0x258;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
INSERT_PADDING_WORDS(0x258);
|
|
|
|
};
|
|
|
|
std::array<u32, NUM_REGS> reg_array;
|
|
|
|
};
|
|
|
|
} regs{};
|
|
|
|
|
|
|
|
MemoryManager& memory_manager;
|
2018-02-12 04:44:12 +00:00
|
|
|
};
|
2018-02-12 02:34:20 +00:00
|
|
|
|
2018-04-24 01:12:40 +00:00
|
|
|
#define ASSERT_REG_POSITION(field_name, position) \
|
|
|
|
static_assert(offsetof(Fermi2D::Regs, field_name) == position * 4, \
|
|
|
|
"Field " #field_name " has invalid position")
|
|
|
|
|
|
|
|
#undef ASSERT_REG_POSITION
|
|
|
|
|
2018-02-12 02:34:20 +00:00
|
|
|
} // namespace Engines
|
|
|
|
} // namespace Tegra
|