2018-07-31 10:33:38 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "core/hle/service/pcie/pcie.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
|
|
|
|
namespace Service::PCIe {
|
|
|
|
|
|
|
|
class ISession final : public ServiceFramework<ISession> {
|
|
|
|
public:
|
2020-11-26 20:19:08 +00:00
|
|
|
explicit ISession(Core::System& system_) : ServiceFramework{system_, "ISession"} {
|
2018-07-31 10:33:38 +00:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "QueryFunctions"},
|
|
|
|
{1, nullptr, "AcquireFunction"},
|
|
|
|
{2, nullptr, "ReleaseFunction"},
|
|
|
|
{3, nullptr, "GetFunctionState"},
|
|
|
|
{4, nullptr, "GetBarProfile"},
|
|
|
|
{5, nullptr, "ReadConfig"},
|
|
|
|
{6, nullptr, "WriteConfig"},
|
|
|
|
{7, nullptr, "ReadBarRegion"},
|
|
|
|
{8, nullptr, "WriteBarRegion"},
|
|
|
|
{9, nullptr, "FindCapability"},
|
|
|
|
{10, nullptr, "FindExtendedCapability"},
|
|
|
|
{11, nullptr, "MapDma"},
|
|
|
|
{12, nullptr, "UnmapDma"},
|
|
|
|
{13, nullptr, "UnmapDmaBusAddress"},
|
|
|
|
{14, nullptr, "GetDmaBusAddress"},
|
|
|
|
{15, nullptr, "GetDmaBusAddressRange"},
|
|
|
|
{16, nullptr, "SetDmaEnable"},
|
|
|
|
{17, nullptr, "AcquireIrq"},
|
|
|
|
{18, nullptr, "ReleaseIrq"},
|
|
|
|
{19, nullptr, "SetIrqEnable"},
|
|
|
|
{20, nullptr, "SetAspmEnable"},
|
2020-06-29 02:01:34 +00:00
|
|
|
{21, nullptr, "SetResetUponResumeEnable"},
|
|
|
|
{22, nullptr, "Unknown22"},
|
|
|
|
{23, nullptr, "Unknown23"},
|
2018-07-31 10:33:38 +00:00
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PCIe final : public ServiceFramework<PCIe> {
|
|
|
|
public:
|
2020-12-30 05:58:38 +00:00
|
|
|
explicit PCIe(Core::System& system_) : ServiceFramework{system_, "pcie"} {
|
2018-07-31 10:33:38 +00:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "RegisterClassDriver"},
|
|
|
|
{1, nullptr, "QueryFunctionsUnregistered"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-26 20:19:08 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
|
|
|
|
std::make_shared<PCIe>(system)->InstallAsService(sm);
|
2018-07-31 10:33:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::PCIe
|