mirror of
https://github.com/eden-emulator/mirror.git
synced 2026-06-06 07:25:52 +08:00
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include <memory>
|
|
|
|
#include "common/assert.h"
|
|
#include "video_core/control/channel_state.h"
|
|
#include "video_core/control/scheduler.h"
|
|
#include "video_core/gpu.h"
|
|
|
|
namespace Tegra::Control {
|
|
|
|
void Scheduler::Push(GPU& gpu, s32 channel, CommandList&& entries) {
|
|
std::shared_ptr<ChannelState> channel_state;
|
|
{
|
|
std::unique_lock lk(scheduling_guard);
|
|
auto it = channels.find(channel);
|
|
ASSERT(it != channels.end());
|
|
channel_state = it->second;
|
|
gpu.BindChannel(channel_state->bind_id);
|
|
}
|
|
// Process commands outside the lock to reduce contention.
|
|
// Multiple channels can prepare their commands in parallel.
|
|
channel_state->payload->dma_pusher.Push(std::move(entries));
|
|
channel_state->payload->dma_pusher.DispatchCalls();
|
|
}
|
|
|
|
void Scheduler::DeclareChannel(std::shared_ptr<ChannelState> new_channel) {
|
|
s32 channel = new_channel->bind_id;
|
|
std::unique_lock lk(scheduling_guard);
|
|
channels.emplace(channel, new_channel);
|
|
}
|
|
|
|
} // namespace Tegra::Control
|