2018-10-20 23:22:15 +02: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"
|
2021-01-25 11:37:51 +01:00
|
|
|
#include "core/core.h"
|
2018-10-20 23:22:15 +02:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2021-01-31 10:38:57 +01:00
|
|
|
#include "core/hle/kernel/k_event.h"
|
2021-01-30 07:48:06 +01:00
|
|
|
#include "core/hle/kernel/k_readable_event.h"
|
2021-01-30 08:51:40 +01:00
|
|
|
#include "core/hle/kernel/k_writable_event.h"
|
2021-01-25 11:37:51 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2018-10-20 23:22:15 +02:00
|
|
|
#include "core/hle/service/ptm/psm.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
|
|
|
|
namespace Service::PSM {
|
|
|
|
|
2021-01-25 11:37:51 +01:00
|
|
|
class IPsmSession final : public ServiceFramework<IPsmSession> {
|
|
|
|
public:
|
2021-04-04 09:56:09 +02:00
|
|
|
explicit IPsmSession(Core::System& system_)
|
|
|
|
: ServiceFramework{system_, "IPsmSession"}, state_change_event{system.Kernel()} {
|
2021-01-25 11:37:51 +01:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &IPsmSession::BindStateChangeEvent, "BindStateChangeEvent"},
|
|
|
|
{1, &IPsmSession::UnbindStateChangeEvent, "UnbindStateChangeEvent"},
|
|
|
|
{2, &IPsmSession::SetChargerTypeChangeEventEnabled, "SetChargerTypeChangeEventEnabled"},
|
|
|
|
{3, &IPsmSession::SetPowerSupplyChangeEventEnabled, "SetPowerSupplyChangeEventEnabled"},
|
|
|
|
{4, &IPsmSession::SetBatteryVoltageStateChangeEventEnabled, "SetBatteryVoltageStateChangeEventEnabled"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
2021-04-10 01:56:11 +02:00
|
|
|
Kernel::KAutoObject::Create(std::addressof(state_change_event));
|
2021-04-04 09:56:09 +02:00
|
|
|
state_change_event.Initialize("IPsmSession::state_change_event");
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~IPsmSession() override = default;
|
|
|
|
|
|
|
|
void SignalChargerTypeChanged() {
|
|
|
|
if (should_signal && should_signal_charger_type) {
|
2021-04-10 11:34:26 +02:00
|
|
|
state_change_event.GetWritableEvent().Signal();
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SignalPowerSupplyChanged() {
|
|
|
|
if (should_signal && should_signal_power_supply) {
|
2021-04-10 11:34:26 +02:00
|
|
|
state_change_event.GetWritableEvent().Signal();
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SignalBatteryVoltageStateChanged() {
|
|
|
|
if (should_signal && should_signal_battery_voltage) {
|
2021-04-10 11:34:26 +02:00
|
|
|
state_change_event.GetWritableEvent().Signal();
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void BindStateChangeEvent(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_PSM, "called");
|
|
|
|
|
|
|
|
should_signal = true;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-04-04 09:56:09 +02:00
|
|
|
rb.PushCopyObjects(state_change_event.GetReadableEvent());
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void UnbindStateChangeEvent(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_PSM, "called");
|
|
|
|
|
|
|
|
should_signal = false;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetChargerTypeChangeEventEnabled(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto state = rp.Pop<bool>();
|
|
|
|
LOG_DEBUG(Service_PSM, "called, state={}", state);
|
|
|
|
|
|
|
|
should_signal_charger_type = state;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetPowerSupplyChangeEventEnabled(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto state = rp.Pop<bool>();
|
|
|
|
LOG_DEBUG(Service_PSM, "called, state={}", state);
|
|
|
|
|
|
|
|
should_signal_power_supply = state;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetBatteryVoltageStateChangeEventEnabled(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto state = rp.Pop<bool>();
|
|
|
|
LOG_DEBUG(Service_PSM, "called, state={}", state);
|
|
|
|
|
|
|
|
should_signal_battery_voltage = state;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-01-25 11:37:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool should_signal_charger_type{};
|
|
|
|
bool should_signal_power_supply{};
|
|
|
|
bool should_signal_battery_voltage{};
|
|
|
|
bool should_signal{};
|
2021-04-04 09:56:09 +02:00
|
|
|
Kernel::KEvent state_change_event;
|
2021-01-25 11:37:51 +01:00
|
|
|
};
|
|
|
|
|
2018-10-22 04:03:17 +02:00
|
|
|
class PSM final : public ServiceFramework<PSM> {
|
|
|
|
public:
|
2021-01-25 13:13:37 +01:00
|
|
|
explicit PSM(Core::System& system_) : ServiceFramework{system_, "psm"} {
|
2018-10-22 04:03:17 +02:00
|
|
|
// clang-format off
|
2018-10-20 23:22:15 +02:00
|
|
|
static const FunctionInfo functions[] = {
|
2018-10-20 23:23:43 +02:00
|
|
|
{0, &PSM::GetBatteryChargePercentage, "GetBatteryChargePercentage"},
|
2018-10-22 04:03:17 +02:00
|
|
|
{1, &PSM::GetChargerType, "GetChargerType"},
|
2018-10-20 23:22:15 +02:00
|
|
|
{2, nullptr, "EnableBatteryCharging"},
|
|
|
|
{3, nullptr, "DisableBatteryCharging"},
|
|
|
|
{4, nullptr, "IsBatteryChargingEnabled"},
|
|
|
|
{5, nullptr, "AcquireControllerPowerSupply"},
|
|
|
|
{6, nullptr, "ReleaseControllerPowerSupply"},
|
2021-01-25 11:37:51 +01:00
|
|
|
{7, &PSM::OpenSession, "OpenSession"},
|
2018-10-20 23:22:15 +02:00
|
|
|
{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 23:22:15 +02:00
|
|
|
};
|
2018-10-22 04:03:17 +02:00
|
|
|
// clang-format on
|
2018-10-20 23:22:15 +02:00
|
|
|
|
2018-10-22 04:03:17 +02:00
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
2018-10-20 23:22:15 +02:00
|
|
|
|
2018-10-22 04:03:17 +02:00
|
|
|
~PSM() override = default;
|
2018-10-20 23:22:15 +02:00
|
|
|
|
2018-10-22 04:03:17 +02:00
|
|
|
private:
|
|
|
|
void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx) {
|
2020-04-29 14:39:49 +02:00
|
|
|
LOG_DEBUG(Service_PSM, "called");
|
2018-10-20 23:23:43 +02:00
|
|
|
|
2018-10-22 04:03:17 +02:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2020-04-29 14:39:49 +02:00
|
|
|
rb.Push<u32>(battery_charge_percentage);
|
2018-10-22 04:03:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GetChargerType(Kernel::HLERequestContext& ctx) {
|
2020-04-29 14:39:49 +02:00
|
|
|
LOG_DEBUG(Service_PSM, "called");
|
2018-10-22 04:03:17 +02:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2020-04-29 14:39:49 +02:00
|
|
|
rb.PushEnum(charger_type);
|
2018-10-22 04:03:17 +02:00
|
|
|
}
|
2020-04-29 14:39:49 +02:00
|
|
|
|
2021-01-25 11:37:51 +01:00
|
|
|
void OpenSession(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_PSM, "called");
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2021-01-25 11:37:51 +01:00
|
|
|
rb.PushIpcInterface<IPsmSession>(system);
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:39:49 +02: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-22 04:03:17 +02:00
|
|
|
};
|
2018-10-20 23:23:43 +02:00
|
|
|
|
2020-11-26 21:19:08 +01:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
|
|
|
|
std::make_shared<PSM>(system)->InstallAsService(sm);
|
2018-10-20 23:22:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::PSM
|