2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2018-01-08 02:25:57 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-01-15 23:30:49 +00:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2018-01-15 22:39:00 +00:00
|
|
|
#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"
|
2018-01-21 22:59:50 +00:00
|
|
|
#include "core/hle/service/nvdrv/devices/nvhost_ctrl.h"
|
Extra nvdrv support (#162)
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
2018-02-06 02:19:31 +00:00
|
|
|
#include "core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h"
|
|
|
|
#include "core/hle/service/nvdrv/devices/nvhost_gpu.h"
|
2018-01-15 22:39:00 +00:00
|
|
|
#include "core/hle/service/nvdrv/devices/nvmap.h"
|
2018-01-15 23:30:49 +00:00
|
|
|
#include "core/hle/service/nvdrv/interface.h"
|
2018-02-12 02:30:23 +00:00
|
|
|
#include "core/hle/service/nvdrv/memory_manager.h"
|
2018-01-20 07:48:02 +00:00
|
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
2018-01-21 22:59:50 +00:00
|
|
|
#include "core/hle/service/nvdrv/nvmemp.h"
|
2018-01-08 02:25:57 +00:00
|
|
|
|
|
|
|
namespace Service {
|
2018-01-15 22:39:00 +00:00
|
|
|
namespace Nvidia {
|
2018-01-08 02:25:57 +00:00
|
|
|
|
2018-01-15 22:39:00 +00:00
|
|
|
std::weak_ptr<Module> nvdrv;
|
2018-01-09 02:30:22 +00:00
|
|
|
|
2018-01-08 02:25:57 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
2018-01-15 22:39:00 +00:00
|
|
|
auto module_ = std::make_shared<Module>();
|
2018-01-15 23:30:49 +00:00
|
|
|
std::make_shared<NVDRV>(module_, "nvdrv")->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NVDRV>(module_, "nvdrv:a")->InstallAsService(service_manager);
|
Extra nvdrv support (#162)
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
2018-02-06 02:19:31 +00:00
|
|
|
std::make_shared<NVDRV>(module_, "nvdrv:s")->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NVDRV>(module_, "nvdrv:t")->InstallAsService(service_manager);
|
2018-01-21 22:59:50 +00:00
|
|
|
std::make_shared<NVMEMP>()->InstallAsService(service_manager);
|
2018-01-15 22:39:00 +00:00
|
|
|
nvdrv = module_;
|
2018-01-08 02:25:57 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 22:39:00 +00:00
|
|
|
Module::Module() {
|
|
|
|
auto nvmap_dev = std::make_shared<Devices::nvmap>();
|
2018-02-12 02:30:23 +00:00
|
|
|
auto memory_manager = std::make_shared<MemoryManager>();
|
|
|
|
devices["/dev/nvhost-as-gpu"] =
|
|
|
|
std::make_shared<Devices::nvhost_as_gpu>(nvmap_dev, memory_manager);
|
|
|
|
devices["/dev/nvhost-gpu"] = std::make_shared<Devices::nvhost_gpu>(nvmap_dev, memory_manager);
|
Extra nvdrv support (#162)
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
2018-02-06 02:19:31 +00:00
|
|
|
devices["/dev/nvhost-ctrl-gpu"] = std::make_shared<Devices::nvhost_ctrl_gpu>();
|
2018-01-15 22:39:00 +00:00
|
|
|
devices["/dev/nvmap"] = nvmap_dev;
|
|
|
|
devices["/dev/nvdisp_disp0"] = std::make_shared<Devices::nvdisp_disp0>(nvmap_dev);
|
2018-01-21 22:59:50 +00:00
|
|
|
devices["/dev/nvhost-ctrl"] = std::make_shared<Devices::nvhost_ctrl>();
|
2018-01-15 22:39:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
Extra nvdrv support (#162)
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
2018-02-06 02:19:31 +00:00
|
|
|
u32 Module::Ioctl(u32 fd, u32_le command, const std::vector<u8>& input, std::vector<u8>& output) {
|
2018-01-15 22:39:00 +00:00
|
|
|
auto itr = open_files.find(fd);
|
|
|
|
ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device");
|
|
|
|
|
|
|
|
auto device = itr->second;
|
Extra nvdrv support (#162)
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
2018-02-06 02:19:31 +00:00
|
|
|
return device->ioctl({command}, input, output);
|
2018-01-15 22:39:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 16:08:46 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-15 22:39:00 +00:00
|
|
|
} // namespace Nvidia
|
2018-01-08 02:25:57 +00:00
|
|
|
} // namespace Service
|