2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-04-28 01:47:58 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-26 23:58:06 +00:00
|
|
|
#include <bitset>
|
|
|
|
#include <limits>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-04-28 01:47:58 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Tegra::Engines {
|
|
|
|
|
|
|
|
class EngineInterface {
|
|
|
|
public:
|
2021-04-12 13:49:04 +00:00
|
|
|
virtual ~EngineInterface() = default;
|
|
|
|
|
2020-04-28 01:47:58 +00:00
|
|
|
/// Write the value to the register identified by method.
|
|
|
|
virtual void CallMethod(u32 method, u32 method_argument, bool is_last_call) = 0;
|
|
|
|
|
|
|
|
/// Write multiple values to the register identified by method.
|
2020-04-28 17:53:47 +00:00
|
|
|
virtual void CallMultiMethod(u32 method, const u32* base_start, u32 amount,
|
|
|
|
u32 methods_pending) = 0;
|
2022-02-09 14:00:05 +00:00
|
|
|
|
2022-11-26 23:58:06 +00:00
|
|
|
void ConsumeSink() {
|
|
|
|
if (method_sink.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ConsumeSinkImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::bitset<std::numeric_limits<u16>::max()> execution_mask{};
|
|
|
|
std::vector<std::pair<u32, u32>> method_sink{};
|
2022-11-17 23:21:13 +00:00
|
|
|
bool current_dirty{};
|
2022-02-09 14:00:05 +00:00
|
|
|
GPUVAddr current_dma_segment;
|
2022-11-26 23:58:06 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void ConsumeSinkImpl() {
|
|
|
|
for (auto [method, value] : method_sink) {
|
|
|
|
CallMethod(method, value, true);
|
|
|
|
}
|
|
|
|
method_sink.clear();
|
|
|
|
}
|
2020-04-28 01:47:58 +00:00
|
|
|
};
|
|
|
|
|
2020-04-28 17:53:47 +00:00
|
|
|
} // namespace Tegra::Engines
|