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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2018-01-09 02:30:22 +00:00
|
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
2018-01-09 15:41:13 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2018-01-08 02:25:57 +00:00
|
|
|
|
2018-11-26 23:34:07 +00:00
|
|
|
namespace Kernel {
|
|
|
|
class WritableEvent;
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Nvidia {
|
2018-01-09 15:41:13 +00:00
|
|
|
|
2018-01-15 23:30:49 +00:00
|
|
|
class NVDRV final : public ServiceFramework<NVDRV> {
|
2018-01-08 02:25:57 +00:00
|
|
|
public:
|
2018-01-15 23:30:49 +00:00
|
|
|
NVDRV(std::shared_ptr<Module> nvdrv, const char* name);
|
2019-04-04 16:16:56 +00:00
|
|
|
~NVDRV() override;
|
2018-01-08 02:25:57 +00:00
|
|
|
|
2019-06-12 11:52:49 +00:00
|
|
|
void SignalGPUInterruptSyncpt(const u32 syncpoint_id, const u32 value);
|
2019-06-07 22:41:55 +00:00
|
|
|
|
2018-01-08 02:25:57 +00:00
|
|
|
private:
|
|
|
|
void Open(Kernel::HLERequestContext& ctx);
|
|
|
|
void Ioctl(Kernel::HLERequestContext& ctx);
|
2019-09-19 05:37:25 +00:00
|
|
|
void Ioctl2(Kernel::HLERequestContext& ctx);
|
|
|
|
void Ioctl3(Kernel::HLERequestContext& ctx);
|
2018-01-17 16:08:46 +00:00
|
|
|
void Close(Kernel::HLERequestContext& ctx);
|
2018-01-08 02:25:57 +00:00
|
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
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
|
|
|
void QueryEvent(Kernel::HLERequestContext& ctx);
|
2018-01-19 04:50:18 +00:00
|
|
|
void SetClientPID(Kernel::HLERequestContext& ctx);
|
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
|
|
|
void FinishInitialize(Kernel::HLERequestContext& ctx);
|
2018-11-23 19:55:41 +00:00
|
|
|
void GetStatus(Kernel::HLERequestContext& ctx);
|
|
|
|
void DumpGraphicsMemoryInfo(Kernel::HLERequestContext& ctx);
|
2019-09-19 05:37:25 +00:00
|
|
|
void IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version);
|
2018-01-08 02:25:57 +00:00
|
|
|
|
2018-01-15 22:39:00 +00:00
|
|
|
std::shared_ptr<Module> nvdrv;
|
2018-01-21 22:59:50 +00:00
|
|
|
|
|
|
|
u64 pid{};
|
2018-01-08 02:25:57 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Nvidia
|