mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
166318ba77
* sdmmc: begin skeletoning sdmmc driver * sdmmc: add most of SdHostStandardController * sdmmc: implement most of SdmmcController * sdmmc: Sdmmc2Controller * sdmmc: skeleton implementation of Sdmmc1Controller * sdmmc: complete abstract logic for Sdmmc1 power controller * sdmmc: implement gpio handling for sdmmc1-register-control * sdmmc: implement pinmux handling for sdmmc1-register-control * sdmmc: fix building for arm32 and in stratosphere context * sdmmc: implement voltage enable/set for sdmmc1-register-control * util: move T(V)SNPrintf from kernel to util * sdmmc: implement BaseDeviceAccessor * sdmmc: implement MmcDeviceAccessor * sdmmc: implement clock reset controller for register api * sdmmc: fix bug in WaitWhileCommandInhibit, add mmc accessors * exo: add sdmmc test program * sdmmc: fix speed mode extension, add CheckMmcConnection for debug * sdmmc: add DeviceDetector, gpio: implement client api * gpio: modernize client api instead of doing it the lazy way * sdmmc: SdCardDeviceAccessor impl * sdmmc: update test program to read first two sectors of sd card * sdmmc: fix vref sel * sdmmc: finish outward-facing api (untested) * ams: changes for libvapours including tegra register defs * sdmmc: remove hwinit
116 lines
4.1 KiB
C++
116 lines
4.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020 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/>.
|
|
*/
|
|
#include <stratosphere.hpp>
|
|
#include "fatal_repair.hpp"
|
|
#include "fatal_service_for_self.hpp"
|
|
|
|
namespace ams::fatal::srv {
|
|
|
|
namespace {
|
|
|
|
bool IsInRepair() {
|
|
/* Before firmware 3.0.0, this wasn't implemented. */
|
|
if (hos::GetVersion() < hos::Version_3_0_0) {
|
|
return false;
|
|
}
|
|
|
|
bool in_repair;
|
|
return R_SUCCEEDED(setsysGetInRepairProcessEnableFlag(&in_repair)) && in_repair;
|
|
}
|
|
|
|
bool IsInRepairWithoutVolHeld() {
|
|
if (IsInRepair()) {
|
|
gpio::GpioPadSession vol_btn;
|
|
if (R_FAILED(gpio::OpenSession(std::addressof(vol_btn), gpio::DeviceCode_ButtonVolUp))) {
|
|
return true;
|
|
}
|
|
|
|
/* Ensure we close even on early return. */
|
|
ON_SCOPE_EXIT { gpio::CloseSession(std::addressof(vol_btn)); };
|
|
|
|
/* Set direction input. */
|
|
gpio::SetDirection(std::addressof(vol_btn), gpio::Direction_Input);
|
|
|
|
/* Ensure that we're holding the volume button for a full second. */
|
|
auto start = os::GetSystemTick();
|
|
do {
|
|
if (gpio::GetValue(std::addressof(vol_btn)) != gpio::GpioValue_Low) {
|
|
return true;
|
|
}
|
|
|
|
/* Sleep for 100 ms. */
|
|
os::SleepThread(TimeSpan::FromMilliSeconds(100));
|
|
} while (os::ConvertToTimeSpan(os::GetSystemTick() - start) < TimeSpan::FromSeconds(1));
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool NeedsRunTimeReviser() {
|
|
/* Before firmware 5.0.0, this wasn't implemented. */
|
|
if (hos::GetVersion() < hos::Version_5_0_0) {
|
|
return false;
|
|
}
|
|
|
|
bool requires_time_reviser;
|
|
return R_SUCCEEDED(setsysGetRequiresRunRepairTimeReviser(&requires_time_reviser)) && requires_time_reviser;
|
|
}
|
|
|
|
bool IsTimeReviserCartridgeInserted() {
|
|
FsGameCardHandle gc_hnd;
|
|
u8 gc_attr;
|
|
{
|
|
FsDeviceOperator devop;
|
|
if (R_FAILED(fsOpenDeviceOperator(&devop))) {
|
|
return false;
|
|
}
|
|
|
|
/* Ensure we close even on early return. */
|
|
ON_SCOPE_EXIT { fsDeviceOperatorClose(&devop); };
|
|
|
|
/* Check that a gamecard is inserted. */
|
|
bool inserted;
|
|
if (R_FAILED(fsDeviceOperatorIsGameCardInserted(&devop, &inserted)) || !inserted) {
|
|
return false;
|
|
}
|
|
|
|
/* Check that we can retrieve the gamecard's attributes. */
|
|
if (R_FAILED(fsDeviceOperatorGetGameCardHandle(&devop, &gc_hnd)) || R_FAILED(fsDeviceOperatorGetGameCardAttribute(&devop, &gc_hnd, &gc_attr))) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/* Check that the gamecard is a repair tool. */
|
|
return (gc_attr & FsGameCardAttribute_RepairToolFlag);
|
|
}
|
|
|
|
bool IsInRepairWithoutTimeReviserCartridge() {
|
|
return NeedsRunTimeReviser() && IsTimeReviserCartridgeInserted();
|
|
}
|
|
|
|
}
|
|
|
|
void CheckRepairStatus() {
|
|
if (IsInRepairWithoutVolHeld()) {
|
|
ThrowFatalForSelf(ResultInRepairWithoutVolHeld());
|
|
}
|
|
|
|
if (IsInRepairWithoutTimeReviserCartridge()) {
|
|
ThrowFatalForSelf(ResultInRepairWithoutTimeReviserCartridge());
|
|
}
|
|
}
|
|
|
|
}
|