suyu/src/video_core/host1x/control.h

42 lines
925 B
C++
Raw Normal View History

2022-01-30 10:31:13 +01:00
// SPDX-FileCopyrightText: 2021 yuzu emulator team and Skyline Team and Contributors
// (https://github.com/skyline-emu/)
// SPDX-License-Identifier: GPL-3.0-or-later Licensed under GPLv3
// or any later version Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
namespace Tegra {
2022-01-30 10:31:13 +01:00
namespace Host1x {
2022-01-30 22:26:01 +01:00
class Host1x;
class Nvdec;
2022-01-30 10:31:13 +01:00
class Control {
public:
enum class Method : u32 {
2020-12-28 07:21:41 +01:00
WaitSyncpt = 0x8,
LoadSyncptPayload32 = 0x4e,
WaitSyncpt32 = 0x50,
};
2022-01-30 22:26:01 +01:00
explicit Control(Host1x& host1x);
2022-01-30 10:31:13 +01:00
~Control();
/// Writes the method into the state, Invoke Execute() if encountered
2020-12-28 07:21:41 +01:00
void ProcessMethod(Method method, u32 argument);
private:
/// For Host1x, execute is waiting on a syncpoint previously written into the state
void Execute(u32 data);
u32 syncpoint_value{};
2022-01-30 22:26:01 +01:00
Host1x& host1x;
};
2022-01-30 10:31:13 +01:00
} // namespace Host1x
} // namespace Tegra