mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-22 20:06:40 +00:00
ProcessManager: Add BootModeInterface
This commit is contained in:
parent
bd1315022a
commit
593efedb2c
3 changed files with 58 additions and 1 deletions
33
stratosphere/pm/source/pm_boot_mode.cpp
Normal file
33
stratosphere/pm/source/pm_boot_mode.cpp
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
#include <switch.h>
|
||||||
|
#include "pm_boot_mode.hpp"
|
||||||
|
|
||||||
|
static bool g_is_maintenance_boot = false;
|
||||||
|
|
||||||
|
Result BootModeService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
||||||
|
Result rc = 0xF601;
|
||||||
|
switch ((BootModeCmd)cmd_id) {
|
||||||
|
case BootMode_Cmd_GetBootMode:
|
||||||
|
rc = WrapIpcCommandImpl<&BootModeService::get_boot_mode>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
||||||
|
break;
|
||||||
|
case BootMode_Cmd_SetMaintenanceBoot:
|
||||||
|
rc = WrapIpcCommandImpl<&BootModeService::set_maintenance_boot>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
Result BootModeService::handle_deferred() {
|
||||||
|
/* This service is never deferrable. */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<Result, bool> BootModeService::get_boot_mode() {
|
||||||
|
return std::make_tuple(0, g_is_maintenance_boot);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<Result> BootModeService::set_maintenance_boot() {
|
||||||
|
g_is_maintenance_boot = true;
|
||||||
|
return std::make_tuple(0);
|
||||||
|
}
|
19
stratosphere/pm/source/pm_boot_mode.hpp
Normal file
19
stratosphere/pm/source/pm_boot_mode.hpp
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
#pragma once
|
||||||
|
#include <switch.h>
|
||||||
|
#include <stratosphere/iserviceobject.hpp>
|
||||||
|
|
||||||
|
enum BootModeCmd {
|
||||||
|
BootMode_Cmd_GetBootMode = 0,
|
||||||
|
BootMode_Cmd_SetMaintenanceBoot = 1
|
||||||
|
};
|
||||||
|
|
||||||
|
class BootModeService : IServiceObject {
|
||||||
|
public:
|
||||||
|
virtual Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
||||||
|
virtual Result handle_deferred();
|
||||||
|
|
||||||
|
private:
|
||||||
|
/* Actual commands. */
|
||||||
|
std::tuple<Result, bool> get_boot_mode();
|
||||||
|
std::tuple<Result> set_maintenance_boot();
|
||||||
|
};
|
|
@ -36,7 +36,6 @@ void __libnx_initheap(void) {
|
||||||
void __appInit(void) {
|
void __appInit(void) {
|
||||||
Result rc;
|
Result rc;
|
||||||
|
|
||||||
/* Initialize services we need (TODO: SPL) */
|
|
||||||
rc = smInitialize();
|
rc = smInitialize();
|
||||||
if (R_FAILED(rc)) {
|
if (R_FAILED(rc)) {
|
||||||
fatalSimple(MAKERESULT(Module_Libnx, LibnxError_InitFail_SM));
|
fatalSimple(MAKERESULT(Module_Libnx, LibnxError_InitFail_SM));
|
||||||
|
@ -56,11 +55,17 @@ void __appInit(void) {
|
||||||
if (R_FAILED(rc)) {
|
if (R_FAILED(rc)) {
|
||||||
fatalSimple(0xCAFE << 4 | 2);
|
fatalSimple(0xCAFE << 4 | 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc = splInitialize();
|
||||||
|
if (R_FAILED(rc)) {
|
||||||
|
fatalSimple(0xCAFE << 4 | 3);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void __appExit(void) {
|
void __appExit(void) {
|
||||||
/* Cleanup services. */
|
/* Cleanup services. */
|
||||||
fsdevUnmountAll();
|
fsdevUnmountAll();
|
||||||
|
splExit();
|
||||||
fsprExit();
|
fsprExit();
|
||||||
lrExit();
|
lrExit();
|
||||||
fsExit();
|
fsExit();
|
||||||
|
|
Loading…
Reference in a new issue