2019-07-18 04:04:00 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <switch.h>
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
#include <stratosphere/cfg.hpp>
|
|
|
|
#include <stratosphere/sm.hpp>
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::cfg {
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Convenience definitions. */
|
|
|
|
constexpr sm::ServiceName RequiredServicesForSdCardAccess[] = {
|
|
|
|
sm::ServiceName::Encode("pcv"),
|
|
|
|
sm::ServiceName::Encode("gpio"),
|
|
|
|
sm::ServiceName::Encode("pinmux"),
|
2019-09-12 09:18:58 +01:00
|
|
|
sm::ServiceName::Encode("psc:m"),
|
2019-07-18 04:04:00 +01:00
|
|
|
};
|
|
|
|
constexpr size_t NumRequiredServicesForSdCardAccess = util::size(RequiredServicesForSdCardAccess);
|
|
|
|
|
|
|
|
/* SD card globals. */
|
2019-09-24 11:15:36 +01:00
|
|
|
os::Mutex g_sd_card_lock;
|
2019-07-18 04:04:00 +01:00
|
|
|
bool g_sd_card_initialized = false;
|
|
|
|
FsFileSystem g_sd_card_filesystem = {};
|
|
|
|
|
|
|
|
/* SD card helpers. */
|
2019-10-19 05:06:40 +01:00
|
|
|
Result CheckSdCardServicesReady() {
|
2019-07-18 04:04:00 +01:00
|
|
|
for (size_t i = 0; i < NumRequiredServicesForSdCardAccess; i++) {
|
|
|
|
bool service_present = false;
|
|
|
|
R_TRY(sm::HasService(&service_present, RequiredServicesForSdCardAccess[i]));
|
|
|
|
if (!service_present) {
|
2019-10-24 09:40:44 +01:00
|
|
|
return fs::ResultSdCardNotPresent();
|
2019-07-18 04:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-12 09:18:58 +01:00
|
|
|
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-07-18 04:04:00 +01:00
|
|
|
}
|
|
|
|
|
2019-10-19 05:06:40 +01:00
|
|
|
void WaitSdCardServicesReadyImpl() {
|
2019-07-18 04:04:00 +01:00
|
|
|
for (size_t i = 0; i < NumRequiredServicesForSdCardAccess; i++) {
|
|
|
|
R_ASSERT(sm::WaitService(RequiredServicesForSdCardAccess[i]));
|
|
|
|
}
|
2019-10-19 05:06:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result TryInitializeSdCard() {
|
|
|
|
R_TRY(CheckSdCardServicesReady());
|
2019-10-23 08:07:20 +01:00
|
|
|
R_ASSERT(fsOpenSdCardFileSystem(&g_sd_card_filesystem));
|
2019-10-19 05:06:40 +01:00
|
|
|
g_sd_card_initialized = true;
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-10-19 05:06:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void InitializeSdCard() {
|
|
|
|
WaitSdCardServicesReadyImpl();
|
2019-10-23 08:07:20 +01:00
|
|
|
R_ASSERT(fsOpenSdCardFileSystem(&g_sd_card_filesystem));
|
2019-07-18 04:04:00 +01:00
|
|
|
g_sd_card_initialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SD card utilities. */
|
2019-10-19 05:06:40 +01:00
|
|
|
bool IsSdCardRequiredServicesReady() {
|
|
|
|
return R_SUCCEEDED(CheckSdCardServicesReady());
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaitSdCardRequiredServicesReady() {
|
|
|
|
WaitSdCardServicesReadyImpl();
|
|
|
|
}
|
|
|
|
|
2019-07-18 04:04:00 +01:00
|
|
|
bool IsSdCardInitialized() {
|
2019-09-24 11:15:36 +01:00
|
|
|
std::scoped_lock lk(g_sd_card_lock);
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
if (!g_sd_card_initialized) {
|
|
|
|
if (R_SUCCEEDED(TryInitializeSdCard())) {
|
|
|
|
g_sd_card_initialized = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return g_sd_card_initialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaitSdCardInitialized() {
|
2019-09-24 11:15:36 +01:00
|
|
|
std::scoped_lock lk(g_sd_card_lock);
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
InitializeSdCard();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|