2018-01-13 16:22:39 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2018-01-07 21:25:57 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
2018-02-14 00:51:42 -05:00
|
|
|
#include <cinttypes>
|
2018-01-07 21:25:57 -05:00
|
|
|
#include "common/logging/log.h"
|
2018-08-28 12:30:33 -04:00
|
|
|
#include "core/core.h"
|
2018-01-07 21:25:57 -05:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2018-11-26 18:34:07 -05:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
|
#include "core/hle/kernel/readable_event.h"
|
2019-06-16 11:43:41 -04:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-11-26 18:34:07 -05:00
|
|
|
#include "core/hle/kernel/writable_event.h"
|
2018-01-15 18:30:49 -05:00
|
|
|
#include "core/hle/service/nvdrv/interface.h"
|
2019-06-07 18:41:55 -04:00
|
|
|
#include "core/hle/service/nvdrv/nvdata.h"
|
2018-01-07 21:25:57 -05:00
|
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::Nvidia {
|
2018-01-07 21:25:57 -05:00
|
|
|
|
2019-06-12 07:52:49 -04:00
|
|
|
void NVDRV::SignalGPUInterruptSyncpt(const u32 syncpoint_id, const u32 value) {
|
|
|
|
|
nvdrv->SignalSyncpt(syncpoint_id, value);
|
2019-06-07 18:41:55 -04:00
|
|
|
}
|
|
|
|
|
|
2018-01-15 18:30:49 -05:00
|
|
|
void NVDRV::Open(Kernel::HLERequestContext& ctx) {
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
2018-01-07 21:25:57 -05:00
|
|
|
|
2018-02-13 23:16:19 -05:00
|
|
|
const auto& buffer = ctx.ReadBuffer();
|
|
|
|
|
std::string device_name(buffer.begin(), buffer.end());
|
2018-01-07 21:25:57 -05:00
|
|
|
|
2018-01-15 17:39:00 -05:00
|
|
|
u32 fd = nvdrv->Open(device_name);
|
2018-01-23 19:52:18 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
2018-01-07 21:25:57 -05:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
rb.Push<u32>(fd);
|
|
|
|
|
rb.Push<u32>(0);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 15:37:25 +10:00
|
|
|
void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
|
2018-01-07 21:25:57 -05:00
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
|
u32 fd = rp.Pop<u32>();
|
|
|
|
|
u32 command = rp.Pop<u32>();
|
|
|
|
|
|
2019-09-19 15:37:25 +10:00
|
|
|
/// Ioctl 3 has 2 outputs, first in the input params, second is the result
|
|
|
|
|
std::vector<u8> output(ctx.GetWriteBufferSize(0));
|
|
|
|
|
std::vector<u8> output2;
|
|
|
|
|
if (version == IoctlVersion::Version3) {
|
|
|
|
|
output2.resize((ctx.GetWriteBufferSize(1)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Ioctl2 has 2 inputs. It's used to pass data directly instead of providing a pointer.
|
|
|
|
|
/// KickOfPB uses this
|
|
|
|
|
auto input = ctx.ReadBuffer(0);
|
|
|
|
|
|
|
|
|
|
std::vector<u8> input2;
|
|
|
|
|
if (version == IoctlVersion::Version2) {
|
|
|
|
|
input2 = ctx.ReadBuffer(1);
|
|
|
|
|
}
|
2018-02-13 22:21:17 -05:00
|
|
|
|
2019-06-16 11:43:41 -04:00
|
|
|
IoctlCtrl ctrl{};
|
|
|
|
|
|
2019-09-19 15:37:25 +10:00
|
|
|
u32 result = nvdrv->Ioctl(fd, command, input, input2, output, output2, ctrl, version);
|
2019-06-16 11:43:41 -04:00
|
|
|
|
2019-07-04 10:19:25 -04:00
|
|
|
if (ctrl.must_delay) {
|
|
|
|
|
ctrl.fresh_call = false;
|
2020-08-03 11:28:18 -04:00
|
|
|
ctx.SleepClientThread(
|
2020-10-15 14:49:45 -04:00
|
|
|
"NVServices::DelayedResponse", static_cast<u64>(ctrl.timeout),
|
|
|
|
|
[=, this](std::shared_ptr<Kernel::Thread>, Kernel::HLERequestContext& ctx_,
|
|
|
|
|
Kernel::ThreadWakeupReason) {
|
2020-08-03 11:28:18 -04:00
|
|
|
IoctlCtrl ctrl2{ctrl};
|
|
|
|
|
std::vector<u8> tmp_output = output;
|
|
|
|
|
std::vector<u8> tmp_output2 = output2;
|
|
|
|
|
const u32 ioctl_result = nvdrv->Ioctl(fd, command, input, input2, tmp_output,
|
|
|
|
|
tmp_output2, ctrl2, version);
|
|
|
|
|
ctx_.WriteBuffer(tmp_output, 0);
|
|
|
|
|
if (version == IoctlVersion::Version3) {
|
|
|
|
|
ctx_.WriteBuffer(tmp_output2, 1);
|
|
|
|
|
}
|
|
|
|
|
IPC::ResponseBuilder rb{ctx_, 3};
|
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
rb.Push(ioctl_result);
|
|
|
|
|
},
|
2020-10-15 14:49:45 -04:00
|
|
|
nvdrv->GetEventWriteable(static_cast<u32>(ctrl.event_id)));
|
2019-07-04 10:19:25 -04:00
|
|
|
} else {
|
2019-06-16 11:43:41 -04:00
|
|
|
ctx.WriteBuffer(output);
|
2019-09-19 15:37:25 +10:00
|
|
|
if (version == IoctlVersion::Version3) {
|
|
|
|
|
ctx.WriteBuffer(output2, 1);
|
|
|
|
|
}
|
2019-06-16 11:43:41 -04:00
|
|
|
}
|
2019-07-04 10:19:25 -04:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
rb.Push(result);
|
2018-01-07 21:25:57 -05:00
|
|
|
}
|
|
|
|
|
|
2019-09-19 15:37:25 +10:00
|
|
|
void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
|
|
|
|
IoctlBase(ctx, IoctlVersion::Version1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NVDRV::Ioctl2(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
|
|
|
|
IoctlBase(ctx, IoctlVersion::Version2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NVDRV::Ioctl3(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
|
|
|
|
IoctlBase(ctx, IoctlVersion::Version3);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-17 17:08:46 +01:00
|
|
|
void NVDRV::Close(Kernel::HLERequestContext& ctx) {
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
2018-01-17 17:08:46 +01:00
|
|
|
|
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
|
u32 fd = rp.Pop<u32>();
|
|
|
|
|
|
|
|
|
|
auto result = nvdrv->Close(fd);
|
|
|
|
|
|
2018-01-23 19:52:18 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2018-01-17 17:08:46 +01:00
|
|
|
rb.Push(result);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-15 18:30:49 -05:00
|
|
|
void NVDRV::Initialize(Kernel::HLERequestContext& ctx) {
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_WARNING(Service_NVDRV, "(STUBBED) called");
|
2018-11-26 17:06:13 +11:00
|
|
|
|
2018-01-23 19:52:18 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2018-01-07 21:25:57 -05:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
rb.Push<u32>(0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-05 18:19:31 -08:00
|
|
|
void NVDRV::QueryEvent(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
|
u32 fd = rp.Pop<u32>();
|
2019-06-07 18:41:55 -04:00
|
|
|
// TODO(Blinkhawk): Figure the meaning of the flag at bit 16
|
|
|
|
|
u32 event_id = rp.Pop<u32>() & 0x000000FF;
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_WARNING(Service_NVDRV, "(STUBBED) called, fd={:X}, event_id={:X}", fd, event_id);
|
2018-02-05 18:19:31 -08:00
|
|
|
|
2018-02-09 00:56:45 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3, 1};
|
2018-02-05 18:19:31 -08:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2019-07-01 11:10:27 -04:00
|
|
|
if (event_id < MaxNvEvents) {
|
2019-09-26 18:11:27 -04:00
|
|
|
auto event = nvdrv->GetEvent(event_id);
|
|
|
|
|
event->Clear();
|
|
|
|
|
rb.PushCopyObjects(event);
|
2019-06-07 18:41:55 -04:00
|
|
|
rb.Push<u32>(NvResult::Success);
|
|
|
|
|
} else {
|
|
|
|
|
rb.Push<u32>(0);
|
|
|
|
|
rb.Push<u32>(NvResult::BadParameter);
|
|
|
|
|
}
|
2018-02-05 18:19:31 -08:00
|
|
|
}
|
|
|
|
|
|
2020-06-29 04:01:34 +02:00
|
|
|
void NVDRV::SetAruid(Kernel::HLERequestContext& ctx) {
|
2018-01-18 23:50:18 -05:00
|
|
|
IPC::RequestParser rp{ctx};
|
2018-01-21 14:59:50 -08:00
|
|
|
pid = rp.Pop<u64>();
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_WARNING(Service_NVDRV, "(STUBBED) called, pid=0x{:X}", pid);
|
2018-11-26 17:06:13 +11:00
|
|
|
|
2018-01-23 19:52:18 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2018-01-18 23:50:18 -05:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-21 14:59:50 -08:00
|
|
|
rb.Push<u32>(0);
|
2018-01-18 23:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
2020-06-29 04:01:34 +02:00
|
|
|
void NVDRV::SetGraphicsFirmwareMemoryMarginEnabled(Kernel::HLERequestContext& ctx) {
|
2018-07-02 10:13:26 -06:00
|
|
|
LOG_WARNING(Service_NVDRV, "(STUBBED) called");
|
2018-11-26 17:06:13 +11:00
|
|
|
|
2018-02-05 18:19:31 -08:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-23 14:55:41 -05:00
|
|
|
void NVDRV::GetStatus(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
LOG_WARNING(Service_NVDRV, "(STUBBED) called");
|
2018-11-26 17:06:13 +11:00
|
|
|
|
2018-11-23 14:55:41 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NVDRV::DumpGraphicsMemoryInfo(Kernel::HLERequestContext& ctx) {
|
|
|
|
|
// According to SwitchBrew, this has no inputs and no outputs, so effectively does nothing on
|
|
|
|
|
// retail hardware.
|
|
|
|
|
LOG_DEBUG(Service_NVDRV, "called");
|
2018-11-26 17:06:13 +11:00
|
|
|
|
2018-11-23 14:55:41 -05:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-15 18:30:49 -05:00
|
|
|
NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name)
|
|
|
|
|
: ServiceFramework(name), nvdrv(std::move(nvdrv)) {
|
2018-01-07 21:25:57 -05:00
|
|
|
static const FunctionInfo functions[] = {
|
2018-01-15 18:30:49 -05:00
|
|
|
{0, &NVDRV::Open, "Open"},
|
|
|
|
|
{1, &NVDRV::Ioctl, "Ioctl"},
|
2018-01-17 17:08:46 +01:00
|
|
|
{2, &NVDRV::Close, "Close"},
|
2018-01-15 18:30:49 -05:00
|
|
|
{3, &NVDRV::Initialize, "Initialize"},
|
2018-02-05 18:19:31 -08:00
|
|
|
{4, &NVDRV::QueryEvent, "QueryEvent"},
|
2018-04-10 20:26:49 +03:00
|
|
|
{5, nullptr, "MapSharedMem"},
|
2018-11-23 14:55:41 -05:00
|
|
|
{6, &NVDRV::GetStatus, "GetStatus"},
|
2020-06-29 04:01:34 +02:00
|
|
|
{7, nullptr, "SetAruidForTest"},
|
|
|
|
|
{8, &NVDRV::SetAruid, "SetAruid"},
|
2018-11-23 14:55:41 -05:00
|
|
|
{9, &NVDRV::DumpGraphicsMemoryInfo, "DumpGraphicsMemoryInfo"},
|
2018-04-10 20:26:49 +03:00
|
|
|
{10, nullptr, "InitializeDevtools"},
|
2019-09-19 15:37:25 +10:00
|
|
|
{11, &NVDRV::Ioctl2, "Ioctl2"},
|
|
|
|
|
{12, &NVDRV::Ioctl3, "Ioctl3"},
|
2020-06-29 04:01:34 +02:00
|
|
|
{13, &NVDRV::SetGraphicsFirmwareMemoryMarginEnabled,
|
|
|
|
|
"SetGraphicsFirmwareMemoryMarginEnabled"},
|
2018-01-07 21:25:57 -05:00
|
|
|
};
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-10 21:20:52 -04:00
|
|
|
NVDRV::~NVDRV() = default;
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Nvidia
|