summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_nvdec.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-05-30 11:49:28 +0200
committermailwl <mailwl@gmail.com>2018-05-30 11:49:28 +0200
commit9a273bb23b3c273f5e3362b304e45f551a36ee60 (patch)
tree7231fab6e0e2f4796b103a21a0024baa873bab01 /src/core/hle/service/nvdrv/devices/nvhost_nvdec.h
parentMerge pull request #482 from Subv/r8 (diff)
downloadyuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar.gz
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar.bz2
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar.lz
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar.xz
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.tar.zst
yuzu-9a273bb23b3c273f5e3362b304e45f551a36ee60.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_nvdec.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_nvdec.h b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.h
new file mode 100644
index 000000000..0192aecdd
--- /dev/null
+++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec.h
@@ -0,0 +1,38 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <array>
+#include <cstdlib>
+#include <cstring>
+#include <vector>
+#include "common/common_types.h"
+#include "core/hle/service/nvdrv/devices/nvdevice.h"
+
+namespace Service::Nvidia::Devices {
+
+class nvhost_nvdec final : public nvdevice {
+public:
+ nvhost_nvdec() = default;
+ ~nvhost_nvdec() override = default;
+
+ u32 ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) override;
+
+private:
+ enum class IoctlCommand : u32_le {
+ IocSetNVMAPfdCommand = 0x40044801,
+ };
+
+ struct IoctlSetNvmapFD {
+ u32_le nvmap_fd;
+ };
+ static_assert(sizeof(IoctlSetNvmapFD) == 4, "IoctlSetNvmapFD is incorrect size");
+
+ u32_le nvmap_fd{};
+
+ u32 SetNVMAPfd(const std::vector<u8>& input, std::vector<u8>& output);
+};
+
+} // namespace Service::Nvidia::Devices