2022-04-28 16:24:11 +00:00
|
|
|
// SPDX-FileCopyrightText: Ryujinx Team and Contributors
|
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-27 03:07:36 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include "sync_manager.h"
|
2022-01-30 09:31:13 +00:00
|
|
|
#include "video_core/host1x/host1x.h"
|
|
|
|
#include "video_core/host1x/syncpoint_manager.h"
|
2020-10-27 03:07:36 +00:00
|
|
|
|
|
|
|
namespace Tegra {
|
2022-01-30 09:31:13 +00:00
|
|
|
namespace Host1x {
|
|
|
|
|
2022-01-30 21:26:01 +00:00
|
|
|
SyncptIncrManager::SyncptIncrManager(Host1x& host1x_) : host1x(host1x_) {}
|
2020-10-27 03:07:36 +00:00
|
|
|
SyncptIncrManager::~SyncptIncrManager() = default;
|
|
|
|
|
|
|
|
void SyncptIncrManager::Increment(u32 id) {
|
2020-10-27 07:02:39 +00:00
|
|
|
increments.emplace_back(0, 0, id, true);
|
2020-10-27 03:07:36 +00:00
|
|
|
IncrementAllDone();
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 SyncptIncrManager::IncrementWhenDone(u32 class_id, u32 id) {
|
|
|
|
const u32 handle = current_id++;
|
2020-10-27 07:02:39 +00:00
|
|
|
increments.emplace_back(handle, class_id, id);
|
2020-10-27 03:07:36 +00:00
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SyncptIncrManager::SignalDone(u32 handle) {
|
2020-10-27 07:02:39 +00:00
|
|
|
const auto done_incr =
|
|
|
|
std::find_if(increments.begin(), increments.end(),
|
|
|
|
[handle](const SyncptIncr& incr) { return incr.id == handle; });
|
|
|
|
if (done_incr != increments.cend()) {
|
|
|
|
done_incr->complete = true;
|
2020-10-27 03:07:36 +00:00
|
|
|
}
|
|
|
|
IncrementAllDone();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SyncptIncrManager::IncrementAllDone() {
|
|
|
|
std::size_t done_count = 0;
|
|
|
|
for (; done_count < increments.size(); ++done_count) {
|
|
|
|
if (!increments[done_count].complete) {
|
|
|
|
break;
|
|
|
|
}
|
2022-01-30 21:26:01 +00:00
|
|
|
auto& syncpoint_manager = host1x.GetSyncpointManager();
|
2022-01-30 09:31:13 +00:00
|
|
|
syncpoint_manager.IncrementGuest(increments[done_count].syncpt_id);
|
|
|
|
syncpoint_manager.IncrementHost(increments[done_count].syncpt_id);
|
2020-10-27 03:07:36 +00:00
|
|
|
}
|
|
|
|
increments.erase(increments.begin(), increments.begin() + done_count);
|
|
|
|
}
|
2022-01-30 09:31:13 +00:00
|
|
|
|
|
|
|
} // namespace Host1x
|
2020-10-27 03:07:36 +00:00
|
|
|
} // namespace Tegra
|