mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 04:30:06 +00:00
eeb3b5eed7
* Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid * used clang-format-3.9 instead * lowercase pid * Moved nvmemp handlers to cpp * Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG * using std::arrays instead of c arrays * nvhost get config now uses std::array completely * added pid logging back * updated cmakelist * missing includes * added array, removed memcpy * clang-format6.0
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
#include "core/hle/service/nvdrv/devices/nvdevice.h"
|
|
#include "core/hle/service/nvdrv/devices/nvdisp_disp0.h"
|
|
#include "core/hle/service/nvdrv/devices/nvhost_as_gpu.h"
|
|
#include "core/hle/service/nvdrv/devices/nvhost_ctrl.h"
|
|
#include "core/hle/service/nvdrv/devices/nvmap.h"
|
|
#include "core/hle/service/nvdrv/interface.h"
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
|
#include "core/hle/service/nvdrv/nvmemp.h"
|
|
|
|
namespace Service {
|
|
namespace Nvidia {
|
|
|
|
std::weak_ptr<Module> nvdrv;
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
auto module_ = std::make_shared<Module>();
|
|
std::make_shared<NVDRV>(module_, "nvdrv")->InstallAsService(service_manager);
|
|
std::make_shared<NVDRV>(module_, "nvdrv:a")->InstallAsService(service_manager);
|
|
std::make_shared<NVMEMP>()->InstallAsService(service_manager);
|
|
nvdrv = module_;
|
|
}
|
|
|
|
Module::Module() {
|
|
auto nvmap_dev = std::make_shared<Devices::nvmap>();
|
|
devices["/dev/nvhost-as-gpu"] = std::make_shared<Devices::nvhost_as_gpu>();
|
|
devices["/dev/nvmap"] = nvmap_dev;
|
|
devices["/dev/nvdisp_disp0"] = std::make_shared<Devices::nvdisp_disp0>(nvmap_dev);
|
|
devices["/dev/nvhost-ctrl"] = std::make_shared<Devices::nvhost_ctrl>();
|
|
}
|
|
|
|
u32 Module::Open(std::string device_name) {
|
|
ASSERT_MSG(devices.find(device_name) != devices.end(), "Trying to open unknown device %s",
|
|
device_name.c_str());
|
|
|
|
auto device = devices[device_name];
|
|
u32 fd = next_fd++;
|
|
|
|
open_files[fd] = device;
|
|
|
|
return fd;
|
|
}
|
|
|
|
u32 Module::Ioctl(u32 fd, u32 command, const std::vector<u8>& input, std::vector<u8>& output) {
|
|
auto itr = open_files.find(fd);
|
|
ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device");
|
|
|
|
auto device = itr->second;
|
|
return device->ioctl(command, input, output);
|
|
}
|
|
|
|
ResultCode Module::Close(u32 fd) {
|
|
auto itr = open_files.find(fd);
|
|
ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device");
|
|
|
|
open_files.erase(itr);
|
|
|
|
// TODO(flerovium): return correct result code if operation failed.
|
|
return RESULT_SUCCESS;
|
|
}
|
|
|
|
} // namespace Nvidia
|
|
} // namespace Service
|