mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-17 09:26:41 +00:00
kern: support reboot to fatal error on mariko
This commit is contained in:
parent
c06a4c696d
commit
5717ea6c00
2 changed files with 5 additions and 9 deletions
|
@ -623,13 +623,8 @@ namespace ams::kern::board::nintendo::nx {
|
||||||
for (size_t i = 0; i < RebootPayloadSize / sizeof(u32); ++i) {
|
for (size_t i = 0; i < RebootPayloadSize / sizeof(u32); ++i) {
|
||||||
GetPointer<volatile u32>(iram_address)[i] = GetPointer<volatile u32>(reboot_payload)[i];
|
GetPointer<volatile u32>(iram_address)[i] = GetPointer<volatile u32>(reboot_payload)[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reboot. */
|
|
||||||
smc::SetConfig(smc::ConfigItem::ExosphereNeedsReboot, smc::UserRebootType_ToPayload);
|
|
||||||
} else {
|
|
||||||
/* If we don't have a payload, reboot to rcm. */
|
|
||||||
smc::SetConfig(smc::ConfigItem::ExosphereNeedsReboot, smc::UserRebootType_ToRcm);
|
|
||||||
}
|
}
|
||||||
|
smc::SetConfig(smc::ConfigItem::ExosphereNeedsReboot, smc::UserRebootType_ToFatalError);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_call_smc_on_panic) {
|
if (g_call_smc_on_panic) {
|
||||||
|
|
|
@ -101,6 +101,7 @@ namespace ams::kern::board::nintendo::nx::smc {
|
||||||
UserRebootType_None = 0,
|
UserRebootType_None = 0,
|
||||||
UserRebootType_ToRcm = 1,
|
UserRebootType_ToRcm = 1,
|
||||||
UserRebootType_ToPayload = 2,
|
UserRebootType_ToPayload = 2,
|
||||||
|
UserRebootType_ToFatalError = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
void GenerateRandomBytes(void *dst, size_t size);
|
void GenerateRandomBytes(void *dst, size_t size);
|
||||||
|
|
Loading…
Reference in a new issue