Files
eden/src/core/hle/service/ptm/psm.cpp
T

80 lines
2.5 KiB
C++
Raw Normal View History

2018-10-20 17:22:15 -04:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <memory>
#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/ptm/psm.h"
#include "core/hle/service/service.h"
#include "core/hle/service/sm/sm.h"
namespace Service::PSM {
2018-10-21 22:03:17 -04:00
class PSM final : public ServiceFramework<PSM> {
public:
explicit PSM() : ServiceFramework{"psm"} {
// clang-format off
2018-10-20 17:22:15 -04:00
static const FunctionInfo functions[] = {
2018-10-20 17:23:43 -04:00
{0, &PSM::GetBatteryChargePercentage, "GetBatteryChargePercentage"},
2018-10-21 22:03:17 -04:00
{1, &PSM::GetChargerType, "GetChargerType"},
2018-10-20 17:22:15 -04:00
{2, nullptr, "EnableBatteryCharging"},
{3, nullptr, "DisableBatteryCharging"},
{4, nullptr, "IsBatteryChargingEnabled"},
{5, nullptr, "AcquireControllerPowerSupply"},
{6, nullptr, "ReleaseControllerPowerSupply"},
{7, nullptr, "OpenSession"},
{8, nullptr, "EnableEnoughPowerChargeEmulation"},
{9, nullptr, "DisableEnoughPowerChargeEmulation"},
{10, nullptr, "EnableFastBatteryCharging"},
{11, nullptr, "DisableFastBatteryCharging"},
{12, nullptr, "GetBatteryVoltageState"},
{13, nullptr, "GetRawBatteryChargePercentage"},
{14, nullptr, "IsEnoughPowerSupplied"},
{15, nullptr, "GetBatteryAgePercentage"},
{16, nullptr, "GetBatteryChargeInfoEvent"},
{17, nullptr, "GetBatteryChargeInfoFields"},
2020-06-29 04:01:34 +02:00
{18, nullptr, "GetBatteryChargeCalibratedEvent"},
2018-10-20 17:22:15 -04:00
};
2018-10-21 22:03:17 -04:00
// clang-format on
2018-10-20 17:22:15 -04:00
2018-10-21 22:03:17 -04:00
RegisterHandlers(functions);
}
2018-10-20 17:22:15 -04:00
2018-10-21 22:03:17 -04:00
~PSM() override = default;
2018-10-20 17:22:15 -04:00
2018-10-21 22:03:17 -04:00
private:
void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx) {
2020-04-29 22:39:49 +10:00
LOG_DEBUG(Service_PSM, "called");
2018-10-20 17:23:43 -04:00
2018-10-21 22:03:17 -04:00
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
2020-04-29 22:39:49 +10:00
rb.Push<u32>(battery_charge_percentage);
2018-10-21 22:03:17 -04:00
}
void GetChargerType(Kernel::HLERequestContext& ctx) {
2020-04-29 22:39:49 +10:00
LOG_DEBUG(Service_PSM, "called");
2018-10-21 22:03:17 -04:00
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
2020-04-29 22:39:49 +10:00
rb.PushEnum(charger_type);
2018-10-21 22:03:17 -04:00
}
2020-04-29 22:39:49 +10:00
enum class ChargerType : u32 {
Unplugged = 0,
RegularCharger = 1,
LowPowerCharger = 2,
Unknown = 3,
};
u32 battery_charge_percentage{100}; // 100%
ChargerType charger_type{ChargerType::RegularCharger};
2018-10-21 22:03:17 -04:00
};
2018-10-20 17:23:43 -04:00
2018-10-20 17:22:15 -04:00
void InstallInterfaces(SM::ServiceManager& sm) {
std::make_shared<PSM>()->InstallAsService(sm);
}
} // namespace Service::PSM