summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mm/mm_u.cpp
blob: 08f45b78af65d338db69812ec5e6f12cbe6f5016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/client_session.h"
#include "core/hle/service/mm/mm_u.h"

namespace Service::MM {

void InstallInterfaces(SM::ServiceManager& service_manager) {
    std::make_shared<MM_U>()->InstallAsService(service_manager);
}

void MM_U::Initialize(Kernel::HLERequestContext& ctx) {
    LOG_WARNING(Service_MM, "(STUBBED) called");
    IPC::ResponseBuilder rb{ctx, 2};
    rb.Push(RESULT_SUCCESS);
}

void MM_U::SetAndWait(Kernel::HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};
    min = rp.Pop<u32>();
    max = rp.Pop<u32>();
    current = min;

    LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max);
    IPC::ResponseBuilder rb{ctx, 2};
    rb.Push(RESULT_SUCCESS);
}

void MM_U::Get(Kernel::HLERequestContext& ctx) {
    LOG_WARNING(Service_MM, "(STUBBED) called");
    IPC::ResponseBuilder rb{ctx, 3};
    rb.Push(RESULT_SUCCESS);
    rb.Push(current);
}

MM_U::MM_U() : ServiceFramework("mm:u") {
    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"},
    };
    RegisterHandlers(functions);
}

} // namespace Service::MM