Skip to content
Snippets Groups Projects
Commit 9d09d92c authored by Lioncash's avatar Lioncash
Browse files

mm_u: Move implementation class into the cpp file

Now if changes are ever made to the behavior of the class, it doesn't
involve rebuilding everything that includes the mm_u header.
parent 46fbf6dd
No related branches found
No related tags found
No related merge requests found
...@@ -9,42 +9,57 @@ ...@@ -9,42 +9,57 @@
namespace Service::MM { namespace Service::MM {
void InstallInterfaces(SM::ServiceManager& service_manager) { class MM_U final : public ServiceFramework<MM_U> {
std::make_shared<MM_U>()->InstallAsService(service_manager); public:
} explicit MM_U() : ServiceFramework{"mm:u"} {
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "InitializeOld"},
{1, nullptr, "FinalizeOld"},
{2, nullptr, "SetAndWaitOld"},
{3, nullptr, "GetOld"},
{4, &MM_U::Initialize, "Initialize"},
{5, nullptr, "Finalize"},
{6, &MM_U::SetAndWait, "SetAndWait"},
{7, &MM_U::Get, "Get"},
};
// clang-format on
void MM_U::Initialize(Kernel::HLERequestContext& ctx) { RegisterHandlers(functions);
LOG_WARNING(Service_MM, "(STUBBED) called"); }
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}
void MM_U::SetAndWait(Kernel::HLERequestContext& ctx) { private:
IPC::RequestParser rp{ctx}; void Initialize(Kernel::HLERequestContext& ctx) {
min = rp.Pop<u32>(); LOG_WARNING(Service_MM, "(STUBBED) called");
max = rp.Pop<u32>(); IPC::ResponseBuilder rb{ctx, 2};
current = min; rb.Push(RESULT_SUCCESS);
}
LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max); void SetAndWait(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2}; IPC::RequestParser rp{ctx};
rb.Push(RESULT_SUCCESS); min = rp.Pop<u32>();
} max = rp.Pop<u32>();
current = min;
void MM_U::Get(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max);
LOG_WARNING(Service_MM, "(STUBBED) called"); IPC::ResponseBuilder rb{ctx, 2};
IPC::ResponseBuilder rb{ctx, 3}; rb.Push(RESULT_SUCCESS);
rb.Push(RESULT_SUCCESS); }
rb.Push(current);
} void Get(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_MM, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push(current);
}
u32 min{0};
u32 max{0};
u32 current{0};
};
MM_U::MM_U() : ServiceFramework("mm:u") { void InstallInterfaces(SM::ServiceManager& service_manager) {
static const FunctionInfo functions[] = { std::make_shared<MM_U>()->InstallAsService(service_manager);
{0, nullptr, "InitializeOld"}, {1, nullptr, "FinalizeOld"},
{2, nullptr, "SetAndWaitOld"}, {3, nullptr, "GetOld"},
{4, &MM_U::Initialize, "Initialize"}, {5, nullptr, "Finalize"},
{6, &MM_U::SetAndWait, "SetAndWait"}, {7, &MM_U::Get, "Get"},
};
RegisterHandlers(functions);
} }
} // namespace Service::MM } // namespace Service::MM
...@@ -8,21 +8,6 @@ ...@@ -8,21 +8,6 @@
namespace Service::MM { namespace Service::MM {
class MM_U final : public ServiceFramework<MM_U> {
public:
MM_U();
~MM_U() = default;
private:
void Initialize(Kernel::HLERequestContext& ctx);
void SetAndWait(Kernel::HLERequestContext& ctx);
void Get(Kernel::HLERequestContext& ctx);
u32 min{0};
u32 max{0};
u32 current{0};
};
/// Registers all MM services with the specified service manager. /// Registers all MM services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager); void InstallInterfaces(SM::ServiceManager& service_manager);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment