// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "core/hle/service/psc/ovln/receiver_service.h" #include "core/hle/service/psc/ovln/sender_service.h" #include "core/hle/service/psc/pm_control.h" #include "core/hle/service/psc/pm_service.h" #include "core/hle/service/psc/psc.h" #include "core/hle/service/psc/time/manager.h" #include "core/hle/service/psc/time/power_state_service.h" #include "core/hle/service/psc/time/service_manager.h" #include "core/hle/service/psc/time/static.h" #include "core/hle/service/service.h" namespace Service::PSC { class PSC_L final : public ServiceFramework { public: explicit PSC_L(Core::System& system_) : ServiceFramework{system_, "psc:l"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "Initialize_3"}, {1, nullptr, "Lock"}, {2, nullptr, "Unlock"}, {3, nullptr, "IsLocked"}, {4, nullptr, "GetRelatedState"}, }; // clang-format on RegisterHandlers(functions); } }; class INS_R final : public ServiceFramework { public: explicit INS_R(Core::System& system_) : ServiceFramework{system_, "ins:r"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "GetInputSourceState"}, {1, nullptr, "GetTriggerTargetEvent"}, }; // clang-format on RegisterHandlers(functions); } }; class INS_S final : public ServiceFramework { public: explicit INS_S(Core::System& system_) : ServiceFramework{system_, "ins:s"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "GetNotifyEvent"}, }; // clang-format on RegisterHandlers(functions); } }; class HSHL_SYS final : public ServiceFramework { public: explicit HSHL_SYS(Core::System& system_) : ServiceFramework{system_, "hshl:sys"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "GetBatteryPercentage"}, {1, nullptr, "GetChargerType"}, {2, nullptr, "OpenChargeSession"}, {3, nullptr, "GetRawBatteryPercentage"}, {4, nullptr, "GetBatteryVoltageLevel"}, {5, nullptr, "OpenThermalSession"}, {6, nullptr, "GetAbnormalTemperatureSet"}, {7, nullptr, "OpenClockSession"}, {8, nullptr, "GetClockRate"}, {9, nullptr, "OpenBridgeSession"}, {10, nullptr, "GetBridgePowerSupply"}, {11, nullptr, "OpenVsysVoltageSession"}, {12, nullptr, "GetIsBatteryEnoughForFullAwake"}, {13, nullptr, "GetIsCharging"}, {14, nullptr, "Cmd14"}, {15, nullptr, "Cmd15"}, }; // clang-format on RegisterHandlers(functions); } }; class HSHL_SET final : public ServiceFramework { public: explicit HSHL_SET(Core::System& system_) : ServiceFramework{system_, "hshl:set"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "OpenChargeSession_2"}, {1, nullptr, "OpenThermalSession_2"}, {2, nullptr, "SetClockRate"}, {3, nullptr, "SetBridgePowerSupply"}, {4, nullptr, "Cmd4"}, {5, nullptr, "Cmd5"}, }; // clang-format on RegisterHandlers(functions); } }; void LoopProcess(Core::System& system) { auto server_manager = std::make_unique(system); server_manager->RegisterNamedService("psc:c", std::make_shared(system)); server_manager->RegisterNamedService("psc:m", std::make_shared(system)); server_manager->RegisterNamedService("psc:l", std::make_shared(system)); server_manager->RegisterNamedService("ins:r", std::make_shared(system)); server_manager->RegisterNamedService("ins:s", std::make_shared(system)); server_manager->RegisterNamedService("hshl:sys", std::make_shared(system)); server_manager->RegisterNamedService("hshl:set", std::make_shared(system)); server_manager->RegisterNamedService("ovln:rcv", std::make_shared(system)); server_manager->RegisterNamedService("ovln:snd", std::make_shared(system)); auto time = std::make_shared(system); server_manager->RegisterNamedService("time:m", std::make_shared(system, time, server_manager.get())); server_manager->RegisterNamedService("time:su", std::make_shared(system, Time::StaticServiceSetupInfo{0, 0, 0, 0, 0, 1}, time, "time:su")); server_manager->RegisterNamedService("time:al", std::make_shared(system, time)); ServerManager::RunServer(std::move(server_manager)); } } // namespace Service::PSC