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
34 lines
804 B
C++
34 lines
804 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace Nvidia {
|
|
|
|
class NVDRV final : public ServiceFramework<NVDRV> {
|
|
public:
|
|
NVDRV(std::shared_ptr<Module> nvdrv, const char* name);
|
|
~NVDRV() = default;
|
|
|
|
private:
|
|
void Open(Kernel::HLERequestContext& ctx);
|
|
void Ioctl(Kernel::HLERequestContext& ctx);
|
|
void Close(Kernel::HLERequestContext& ctx);
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
|
void SetClientPID(Kernel::HLERequestContext& ctx);
|
|
|
|
std::shared_ptr<Module> nvdrv;
|
|
|
|
u64 pid{};
|
|
};
|
|
|
|
} // namespace Nvidia
|
|
} // namespace Service
|