2018-07-29 00:59:09 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2018-07-29 01:08:08 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2018-11-26 23:34:07 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/kernel/readable_event.h"
|
|
|
|
#include "core/hle/kernel/writable_event.h"
|
2018-07-29 00:59:09 +00:00
|
|
|
#include "core/hle/service/btm/btm.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::BTM {
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
class IBtmUserCore final : public ServiceFramework<IBtmUserCore> {
|
|
|
|
public:
|
|
|
|
explicit IBtmUserCore() : ServiceFramework{"IBtmUserCore"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &IBtmUserCore::GetScanEvent, "GetScanEvent"},
|
|
|
|
{1, nullptr, "Unknown1"},
|
|
|
|
{2, nullptr, "Unknown2"},
|
|
|
|
{3, nullptr, "Unknown3"},
|
|
|
|
{4, nullptr, "Unknown4"},
|
|
|
|
{5, nullptr, "Unknown5"},
|
|
|
|
{6, nullptr, "Unknown6"},
|
|
|
|
{7, nullptr, "Unknown7"},
|
|
|
|
{8, nullptr, "Unknown8"},
|
|
|
|
{9, nullptr, "Unknown9"},
|
|
|
|
{10, nullptr, "Unknown10"},
|
|
|
|
{17, &IBtmUserCore::GetConnectionEvent, "GetConnectionEvent"},
|
|
|
|
{18, nullptr, "Unknown18"},
|
|
|
|
{19, nullptr, "Unknown19"},
|
|
|
|
{20, nullptr, "Unknown20"},
|
|
|
|
{21, nullptr, "Unknown21"},
|
|
|
|
{22, nullptr, "Unknown22"},
|
|
|
|
{23, nullptr, "Unknown23"},
|
|
|
|
{24, nullptr, "Unknown24"},
|
|
|
|
{25, nullptr, "Unknown25"},
|
|
|
|
{26, &IBtmUserCore::GetDiscoveryEvent, "AcquireBleServiceDiscoveryEventImpl"},
|
|
|
|
{27, nullptr, "Unknown27"},
|
|
|
|
{28, nullptr, "Unknown28"},
|
|
|
|
{29, nullptr, "Unknown29"},
|
|
|
|
{30, nullptr, "Unknown30"},
|
|
|
|
{31, nullptr, "Unknown31"},
|
|
|
|
{32, nullptr, "Unknown32"},
|
|
|
|
{33, &IBtmUserCore::GetConfigEvent, "GetConfigEvent"},
|
|
|
|
{34, nullptr, "Unknown34"},
|
|
|
|
{35, nullptr, "Unknown35"},
|
|
|
|
{36, nullptr, "Unknown36"},
|
|
|
|
{37, nullptr, "Unknown37"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
2018-11-26 23:34:07 +00:00
|
|
|
|
|
|
|
auto& kernel = Core::System::GetInstance().Kernel();
|
2018-11-27 14:18:29 +00:00
|
|
|
scan_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::OneShot,
|
|
|
|
"IBtmUserCore:ScanEvent");
|
|
|
|
connection_event = Kernel::WritableEvent::CreateEventPair(
|
2018-11-26 23:34:07 +00:00
|
|
|
kernel, Kernel::ResetType::OneShot, "IBtmUserCore:ConnectionEvent");
|
2018-11-27 14:18:29 +00:00
|
|
|
service_discovery = Kernel::WritableEvent::CreateEventPair(
|
2018-11-26 23:34:07 +00:00
|
|
|
kernel, Kernel::ResetType::OneShot, "IBtmUserCore:Discovery");
|
2018-11-27 14:18:29 +00:00
|
|
|
config_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::OneShot,
|
|
|
|
"IBtmUserCore:ConfigEvent");
|
2018-11-16 14:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetScanEvent(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_WARNING(Service_BTM, "(STUBBED) called");
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-11-27 14:18:29 +00:00
|
|
|
rb.PushCopyObjects(scan_event.readable);
|
2018-11-16 14:42:17 +00:00
|
|
|
}
|
2018-11-27 14:18:29 +00:00
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
void GetConnectionEvent(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_WARNING(Service_BTM, "(STUBBED) called");
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-11-27 14:18:29 +00:00
|
|
|
rb.PushCopyObjects(connection_event.readable);
|
2018-11-16 14:42:17 +00:00
|
|
|
}
|
2018-11-27 14:18:29 +00:00
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
void GetDiscoveryEvent(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_WARNING(Service_BTM, "(STUBBED) called");
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-11-27 14:18:29 +00:00
|
|
|
rb.PushCopyObjects(service_discovery.readable);
|
2018-11-16 14:42:17 +00:00
|
|
|
}
|
2018-11-27 14:18:29 +00:00
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
void GetConfigEvent(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_WARNING(Service_BTM, "(STUBBED) called");
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-11-27 14:18:29 +00:00
|
|
|
rb.PushCopyObjects(config_event.readable);
|
2018-11-16 14:42:17 +00:00
|
|
|
}
|
2018-11-26 23:34:07 +00:00
|
|
|
|
2018-11-27 14:18:29 +00:00
|
|
|
Kernel::EventPair scan_event;
|
|
|
|
Kernel::EventPair connection_event;
|
|
|
|
Kernel::EventPair service_discovery;
|
|
|
|
Kernel::EventPair config_event;
|
2018-11-16 14:42:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class BTM_USR final : public ServiceFramework<BTM_USR> {
|
|
|
|
public:
|
|
|
|
explicit BTM_USR() : ServiceFramework{"btm:u"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &BTM_USR::GetCoreImpl, "GetCoreImpl"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetCoreImpl(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_BTM, "called");
|
|
|
|
|
2018-11-16 14:42:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<IBtmUserCore>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-07-29 00:59:09 +00:00
|
|
|
class BTM final : public ServiceFramework<BTM> {
|
|
|
|
public:
|
|
|
|
explicit BTM() : ServiceFramework{"btm"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "Unknown1"},
|
|
|
|
{1, nullptr, "Unknown2"},
|
|
|
|
{2, nullptr, "RegisterSystemEventForConnectedDeviceConditionImpl"},
|
|
|
|
{3, nullptr, "Unknown3"},
|
|
|
|
{4, nullptr, "Unknown4"},
|
|
|
|
{5, nullptr, "Unknown5"},
|
|
|
|
{6, nullptr, "Unknown6"},
|
|
|
|
{7, nullptr, "Unknown7"},
|
|
|
|
{8, nullptr, "RegisterSystemEventForRegisteredDeviceInfoImpl"},
|
|
|
|
{9, nullptr, "Unknown8"},
|
|
|
|
{10, nullptr, "Unknown9"},
|
|
|
|
{11, nullptr, "Unknown10"},
|
|
|
|
{12, nullptr, "Unknown11"},
|
|
|
|
{13, nullptr, "Unknown12"},
|
|
|
|
{14, nullptr, "EnableRadioImpl"},
|
|
|
|
{15, nullptr, "DisableRadioImpl"},
|
|
|
|
{16, nullptr, "Unknown13"},
|
|
|
|
{17, nullptr, "Unknown14"},
|
|
|
|
{18, nullptr, "Unknown15"},
|
|
|
|
{19, nullptr, "Unknown16"},
|
|
|
|
{20, nullptr, "Unknown17"},
|
|
|
|
{21, nullptr, "Unknown18"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BTM_DBG final : public ServiceFramework<BTM_DBG> {
|
|
|
|
public:
|
|
|
|
explicit BTM_DBG() : ServiceFramework{"btm:dbg"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "RegisterSystemEventForDiscoveryImpl"},
|
|
|
|
{1, nullptr, "Unknown1"},
|
|
|
|
{2, nullptr, "Unknown2"},
|
|
|
|
{3, nullptr, "Unknown3"},
|
|
|
|
{4, nullptr, "Unknown4"},
|
|
|
|
{5, nullptr, "Unknown5"},
|
|
|
|
{6, nullptr, "Unknown6"},
|
|
|
|
{7, nullptr, "Unknown7"},
|
|
|
|
{8, nullptr, "Unknown8"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-07-29 01:08:08 +00:00
|
|
|
class IBtmSystemCore final : public ServiceFramework<IBtmSystemCore> {
|
|
|
|
public:
|
|
|
|
explicit IBtmSystemCore() : ServiceFramework{"IBtmSystemCore"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "StartGamepadPairingImpl"},
|
|
|
|
{1, nullptr, "CancelGamepadPairingImpl"},
|
|
|
|
{2, nullptr, "ClearGamepadPairingDatabaseImpl"},
|
|
|
|
{3, nullptr, "GetPairedGamepadCountImpl"},
|
|
|
|
{4, nullptr, "EnableRadioImpl"},
|
|
|
|
{5, nullptr, "DisableRadioImpl"},
|
|
|
|
{6, nullptr, "GetRadioOnOffImpl"},
|
|
|
|
{7, nullptr, "AcquireRadioEventImpl"},
|
|
|
|
{8, nullptr, "AcquireGamepadPairingEventImpl"},
|
|
|
|
{9, nullptr, "IsGamepadPairingStartedImpl"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-07-29 00:59:09 +00:00
|
|
|
class BTM_SYS final : public ServiceFramework<BTM_SYS> {
|
|
|
|
public:
|
|
|
|
explicit BTM_SYS() : ServiceFramework{"btm:sys"} {
|
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
2018-07-29 01:08:08 +00:00
|
|
|
{0, &BTM_SYS::GetCoreImpl, "GetCoreImpl"},
|
2018-07-29 00:59:09 +00:00
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
2018-07-29 01:08:08 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void GetCoreImpl(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_BTM, "called");
|
|
|
|
|
2018-07-29 01:08:08 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<IBtmSystemCore>();
|
|
|
|
}
|
2018-07-29 00:59:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& sm) {
|
|
|
|
std::make_shared<BTM>()->InstallAsService(sm);
|
|
|
|
std::make_shared<BTM_DBG>()->InstallAsService(sm);
|
|
|
|
std::make_shared<BTM_SYS>()->InstallAsService(sm);
|
2018-11-16 14:42:17 +00:00
|
|
|
std::make_shared<BTM_USR>()->InstallAsService(sm);
|
2018-07-29 00:59:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::BTM
|