2019-05-03 03:33:12 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-22 20:23:46 +01:00
|
|
|
#include <stratosphere/spl.hpp>
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
#include "boot_boot_reason.hpp"
|
2019-05-03 03:33:12 +01:00
|
|
|
#include "boot_pmic_driver.hpp"
|
|
|
|
#include "boot_rtc_driver.hpp"
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
namespace sts::boot {
|
2019-05-03 03:33:12 +01:00
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Types. */
|
|
|
|
struct BootReasonValue {
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
u8 power_intr;
|
|
|
|
u8 rtc_intr;
|
|
|
|
u8 nv_erc;
|
|
|
|
u8 boot_reason;
|
|
|
|
};
|
|
|
|
u32 value;
|
|
|
|
};
|
2019-05-03 03:33:12 +01:00
|
|
|
};
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
/* Globals. */
|
|
|
|
u32 g_boot_reason = 0;
|
|
|
|
bool g_detected_boot_reason = false;
|
|
|
|
|
|
|
|
/* Helpers. */
|
|
|
|
u32 MakeBootReason(u32 power_intr, u8 rtc_intr, u8 nv_erc, bool ac_ok) {
|
|
|
|
if (power_intr & 0x08) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
if (rtc_intr & 0x02) {
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
if (power_intr & 0x80) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (rtc_intr & 0x04) {
|
2019-06-22 19:34:18 +01:00
|
|
|
if (nv_erc != 0x80 && !spl::IsRecoveryBoot()) {
|
2019-06-22 08:10:21 +01:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((nv_erc & 0x40) && ac_ok) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
2019-06-22 08:10:21 +01:00
|
|
|
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
2019-06-22 08:10:21 +01:00
|
|
|
|
|
|
|
void DetectBootReason() {
|
|
|
|
u8 power_intr;
|
|
|
|
u8 rtc_intr;
|
|
|
|
u8 rtc_intr_m;
|
|
|
|
u8 nv_erc;
|
|
|
|
bool ac_ok;
|
|
|
|
|
|
|
|
/* Get values from PMIC. */
|
|
|
|
{
|
|
|
|
PmicDriver pmic_driver;
|
2019-09-28 02:04:58 +01:00
|
|
|
R_ASSERT(pmic_driver.GetPowerIntr(&power_intr));
|
|
|
|
R_ASSERT(pmic_driver.GetNvErc(&nv_erc));
|
|
|
|
R_ASSERT(pmic_driver.GetAcOk(&ac_ok));
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
/* Get values from RTC. */
|
|
|
|
{
|
|
|
|
RtcDriver rtc_driver;
|
2019-09-28 02:04:58 +01:00
|
|
|
R_ASSERT(rtc_driver.GetRtcIntr(&rtc_intr));
|
|
|
|
R_ASSERT(rtc_driver.GetRtcIntrM(&rtc_intr_m));
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
2019-06-22 08:10:21 +01:00
|
|
|
|
|
|
|
/* Set global derived boot reason. */
|
|
|
|
g_boot_reason = MakeBootReason(power_intr, rtc_intr & ~rtc_intr_m, nv_erc, ac_ok);
|
|
|
|
|
|
|
|
/* Set boot reason for SPL. */
|
2019-10-16 22:28:19 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_300) {
|
2019-06-22 08:10:21 +01:00
|
|
|
BootReasonValue boot_reason_value;
|
|
|
|
boot_reason_value.power_intr = power_intr;
|
|
|
|
boot_reason_value.rtc_intr = rtc_intr & ~rtc_intr_m;
|
|
|
|
boot_reason_value.nv_erc = nv_erc;
|
|
|
|
boot_reason_value.boot_reason = g_boot_reason;
|
2019-09-28 02:04:58 +01:00
|
|
|
R_ASSERT(splSetBootReason(boot_reason_value.value));
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
2019-06-22 08:10:21 +01:00
|
|
|
|
|
|
|
g_detected_boot_reason = true;
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
u32 GetBootReason() {
|
2019-09-28 02:04:58 +01:00
|
|
|
STS_ASSERT(g_detected_boot_reason);
|
2019-06-22 08:10:21 +01:00
|
|
|
return g_boot_reason;
|
2019-05-03 03:33:12 +01:00
|
|
|
}
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
}
|