2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-06-07 20:41:06 -04:00
|
|
|
|
|
|
|
#include "core/core.h"
|
2019-06-18 20:53:21 -04:00
|
|
|
#include "core/core_timing.h"
|
2019-06-07 20:41:06 -04:00
|
|
|
#include "core/hardware_interrupt_manager.h"
|
2021-07-14 00:52:17 -04:00
|
|
|
#include "core/hle/service/nvdrv/nvdrv_interface.h"
|
2019-06-07 20:41:06 -04:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
|
|
|
|
namespace Core::Hardware {
|
|
|
|
|
|
|
|
InterruptManager::InterruptManager(Core::System& system_in) : system(system_in) {
|
2020-07-27 19:00:41 -04:00
|
|
|
gpu_interrupt_event = Core::Timing::CreateEvent(
|
2022-07-10 01:59:40 -04:00
|
|
|
"GPUInterrupt",
|
|
|
|
[this](std::uintptr_t message, u64 time,
|
|
|
|
std::chrono::nanoseconds) -> std::optional<std::chrono::nanoseconds> {
|
2020-07-15 19:14:21 -04:00
|
|
|
auto nvdrv = system.ServiceManager().GetService<Service::Nvidia::NVDRV>("nvdrv");
|
|
|
|
const u32 syncpt = static_cast<u32>(message >> 32);
|
|
|
|
const u32 value = static_cast<u32>(message);
|
|
|
|
nvdrv->SignalGPUInterruptSyncpt(syncpt, value);
|
2022-07-10 01:59:40 -04:00
|
|
|
return std::nullopt;
|
2020-07-15 19:14:21 -04:00
|
|
|
});
|
2019-06-07 20:41:06 -04:00
|
|
|
}
|
|
|
|
|
2019-06-18 20:53:21 -04:00
|
|
|
InterruptManager::~InterruptManager() = default;
|
|
|
|
|
2019-06-12 07:52:49 -04:00
|
|
|
void InterruptManager::GPUInterruptSyncpt(const u32 syncpoint_id, const u32 value) {
|
|
|
|
const u64 msg = (static_cast<u64>(syncpoint_id) << 32ULL) | value;
|
2020-07-15 18:30:06 -04:00
|
|
|
system.CoreTiming().ScheduleEvent(std::chrono::nanoseconds{10}, gpu_interrupt_event, msg);
|
2019-06-07 20:41:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core::Hardware
|