2024-03-06 05:26:38 +00:00
|
|
|
// SPDX-FileCopyrightText: 2021 yuzu Emulator Project
|
2022-06-29 23:27:49 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2022-01-30 21:26:01 +00:00
|
|
|
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "video_core/host1x/host1x.h"
|
2024-03-08 22:44:03 +00:00
|
|
|
#include "video_core/host1x/nvdec.h"
|
|
|
|
#include "video_core/host1x/vic.h"
|
2022-01-30 21:26:01 +00:00
|
|
|
|
2024-03-08 22:44:03 +00:00
|
|
|
namespace Tegra::Host1x {
|
2022-01-30 21:26:01 +00:00
|
|
|
|
|
|
|
Host1x::Host1x(Core::System& system_)
|
2024-03-16 00:05:43 +00:00
|
|
|
: system{system_}, syncpoint_manager{},
|
|
|
|
memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 0, 12},
|
2023-12-29 08:50:04 +00:00
|
|
|
allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {}
|
2022-01-30 21:26:01 +00:00
|
|
|
|
2023-12-30 03:37:25 +00:00
|
|
|
Host1x::~Host1x() = default;
|
|
|
|
|
2024-03-08 22:44:03 +00:00
|
|
|
void Host1x::StartDevice(s32 fd, ChannelType type, u32 syncpt) {
|
|
|
|
switch (type) {
|
|
|
|
case ChannelType::NvDec:
|
|
|
|
devices[fd] = std::make_unique<Tegra::Host1x::Nvdec>(*this, fd, syncpt, frame_queue);
|
|
|
|
break;
|
|
|
|
case ChannelType::VIC:
|
|
|
|
devices[fd] = std::make_unique<Tegra::Host1x::Vic>(*this, fd, syncpt, frame_queue);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG_ERROR(HW_GPU, "Unimplemented host1x device {}", static_cast<u32>(type));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Host1x::StopDevice(s32 fd, ChannelType type) {
|
|
|
|
devices.erase(fd);
|
|
|
|
}
|
2022-01-30 21:26:01 +00:00
|
|
|
|
2024-03-08 22:44:03 +00:00
|
|
|
} // namespace Tegra::Host1x
|