summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-16 00:30:49 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 01:04:09 +0100
commitcb75b56e454a36190f07ee34b0e4e6ee6a7a66be (patch)
treef5af26691caa3aef505c2a66b07831f24c83b8e4 /src/core/hle/service/nvdrv/interface.cpp
parentNV: Move the nvdrv classes into the Nvidia namespace, and move the functionality to a s single module that services call. (diff)
downloadyuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.gz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.bz2
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.lz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.xz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.zst
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.cpp')
-rw-r--r--src/core/hle/service/nvdrv/interface.cpp69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp
new file mode 100644
index 000000000..0670ca155
--- /dev/null
+++ b/src/core/hle/service/nvdrv/interface.cpp
@@ -0,0 +1,69 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "common/logging/log.h"
+#include "core/hle/ipc_helpers.h"
+#include "core/hle/service/nvdrv/interface.h"
+#include "core/hle/service/nvdrv/nvdrv.h"
+
+namespace Service {
+namespace Nvidia {
+
+void NVDRV::Open(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service, "(STUBBED) called");
+
+ auto buffer = ctx.BufferDescriptorA()[0];
+
+ std::string device_name = Memory::ReadCString(buffer.Address(), buffer.Size());
+
+ u32 fd = nvdrv->Open(device_name);
+ IPC::RequestBuilder rb{ctx, 4};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push<u32>(fd);
+ rb.Push<u32>(0);
+}
+
+void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service, "(STUBBED) called");
+
+ IPC::RequestParser rp{ctx};
+ u32 fd = rp.Pop<u32>();
+ u32 command = rp.Pop<u32>();
+
+ auto input_buffer = ctx.BufferDescriptorA()[0];
+ auto output_buffer = ctx.BufferDescriptorB()[0];
+
+ std::vector<u8> input(input_buffer.Size());
+ std::vector<u8> output(output_buffer.Size());
+
+ Memory::ReadBlock(input_buffer.Address(), input.data(), input_buffer.Size());
+
+ u32 nv_result = nvdrv->Ioctl(fd, command, input, output);
+
+ Memory::WriteBlock(output_buffer.Address(), output.data(), output_buffer.Size());
+
+ IPC::RequestBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push(nv_result);
+}
+
+void NVDRV::Initialize(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service, "(STUBBED) called");
+ IPC::RequestBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push<u32>(0);
+}
+
+NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name)
+ : ServiceFramework(name), nvdrv(std::move(nvdrv)) {
+ static const FunctionInfo functions[] = {
+ {0, &NVDRV::Open, "Open"},
+ {1, &NVDRV::Ioctl, "Ioctl"},
+ {3, &NVDRV::Initialize, "Initialize"},
+ };
+ RegisterHandlers(functions);
+}
+
+} // namespace Nvidia
+} // namespace Service