e31425df38
This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host Timing, Reworks the Kernel's Scheduler, Introduce Idle State and Suspended State, Recreates the bootmanager, Initializes Multicore system.
194 lines
5.8 KiB
C++
194 lines
5.8 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "common/swap.h"
|
|
#include "core/core.h"
|
|
#include "core/core_timing.h"
|
|
#include "core/hle/ipc_helpers.h"
|
|
#include "core/hle/kernel/kernel.h"
|
|
#include "core/hle/kernel/shared_memory.h"
|
|
#include "core/hle/service/hid/irs.h"
|
|
|
|
namespace Service::HID {
|
|
|
|
IRS::IRS(Core::System& system) : ServiceFramework{"irs"}, system(system) {
|
|
// clang-format off
|
|
static const FunctionInfo functions[] = {
|
|
{302, &IRS::ActivateIrsensor, "ActivateIrsensor"},
|
|
{303, &IRS::DeactivateIrsensor, "DeactivateIrsensor"},
|
|
{304, &IRS::GetIrsensorSharedMemoryHandle, "GetIrsensorSharedMemoryHandle"},
|
|
{305, &IRS::StopImageProcessor, "StopImageProcessor"},
|
|
{306, &IRS::RunMomentProcessor, "RunMomentProcessor"},
|
|
{307, &IRS::RunClusteringProcessor, "RunClusteringProcessor"},
|
|
{308, &IRS::RunImageTransferProcessor, "RunImageTransferProcessor"},
|
|
{309, &IRS::GetImageTransferProcessorState, "GetImageTransferProcessorState"},
|
|
{310, &IRS::RunTeraPluginProcessor, "RunTeraPluginProcessor"},
|
|
{311, &IRS::GetNpadIrCameraHandle, "GetNpadIrCameraHandle"},
|
|
{312, &IRS::RunPointingProcessor, "RunPointingProcessor"},
|
|
{313, &IRS::SuspendImageProcessor, "SuspendImageProcessor"},
|
|
{314, &IRS::CheckFirmwareVersion, "CheckFirmwareVersion"},
|
|
{315, &IRS::SetFunctionLevel, "SetFunctionLevel"},
|
|
{316, &IRS::RunImageTransferExProcessor, "RunImageTransferExProcessor"},
|
|
{317, &IRS::RunIrLedProcessor, "RunIrLedProcessor"},
|
|
{318, &IRS::StopImageProcessorAsync, "StopImageProcessorAsync"},
|
|
{319, &IRS::ActivateIrsensorWithFunctionLevel, "ActivateIrsensorWithFunctionLevel"},
|
|
};
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
shared_mem = SharedFrom(&kernel.GetIrsSharedMem());
|
|
}
|
|
|
|
void IRS::ActivateIrsensor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::DeactivateIrsensor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::GetIrsensorSharedMemoryHandle(Kernel::HLERequestContext& ctx) {
|
|
LOG_DEBUG(Service_IRS, "called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
rb.Push(RESULT_SUCCESS);
|
|
rb.PushCopyObjects(shared_mem);
|
|
}
|
|
|
|
void IRS::StopImageProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::RunMomentProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::RunClusteringProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::RunImageTransferProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::GetImageTransferProcessorState(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 5};
|
|
rb.Push(RESULT_SUCCESS);
|
|
rb.PushRaw<u64>(system.CoreTiming().GetCPUTicks());
|
|
rb.PushRaw<u32>(0);
|
|
}
|
|
|
|
void IRS::RunTeraPluginProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::GetNpadIrCameraHandle(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
rb.Push(RESULT_SUCCESS);
|
|
rb.PushRaw<u32>(device_handle);
|
|
}
|
|
|
|
void IRS::RunPointingProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::SuspendImageProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::CheckFirmwareVersion(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::SetFunctionLevel(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::RunImageTransferExProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::RunIrLedProcessor(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::StopImageProcessorAsync(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void IRS::ActivateIrsensorWithFunctionLevel(Kernel::HLERequestContext& ctx) {
|
|
LOG_WARNING(Service_IRS, "(STUBBED) called");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
IRS::~IRS() = default;
|
|
|
|
IRS_SYS::IRS_SYS() : ServiceFramework{"irs:sys"} {
|
|
// clang-format off
|
|
static const FunctionInfo functions[] = {
|
|
{500, nullptr, "SetAppletResourceUserId"},
|
|
{501, nullptr, "RegisterAppletResourceUserId"},
|
|
{502, nullptr, "UnregisterAppletResourceUserId"},
|
|
{503, nullptr, "EnableAppletToGetInput"},
|
|
};
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
|
}
|
|
|
|
IRS_SYS::~IRS_SYS() = default;
|
|
|
|
} // namespace Service::HID
|