Compare commits
18 Commits
prodinfo_b
...
0.8.10
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
422dce6974 | ||
|
|
1d429261e9 | ||
|
|
6f25e92892 | ||
|
|
6cc29185d2 | ||
|
|
13a1566b4e | ||
|
|
bbb658a7e5 | ||
|
|
ad812c8125 | ||
|
|
a64fdce505 | ||
|
|
7e950c3bcc | ||
|
|
d0d7772f98 | ||
|
|
674175e1c6 | ||
|
|
eab2d05680 | ||
|
|
56d7473451 | ||
|
|
bfd4d41834 | ||
|
|
defee07625 | ||
|
|
2c3111f9c9 | ||
|
|
ca2c171482 | ||
|
|
cfcb1cd3a1 |
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#define ATMOSPHERE_RELEASE_VERSION_MAJOR 0
|
#define ATMOSPHERE_RELEASE_VERSION_MAJOR 0
|
||||||
#define ATMOSPHERE_RELEASE_VERSION_MINOR 8
|
#define ATMOSPHERE_RELEASE_VERSION_MINOR 8
|
||||||
#define ATMOSPHERE_RELEASE_VERSION_MICRO 9
|
#define ATMOSPHERE_RELEASE_VERSION_MICRO 10
|
||||||
|
|
||||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MAJOR 8
|
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MAJOR 8
|
||||||
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 0
|
#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 0
|
||||||
|
|||||||
@@ -1,4 +1,20 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
## 0.8.10
|
||||||
|
+ A bug was fixed that could cause incorrect system memory allocation on 5.0.0.
|
||||||
|
+ 5.0.0 should now correctly have an additional 12 MiB allocated for sysmodules.
|
||||||
|
+ Atmosphère features which check button presses now consider all controllers, isntead of just P1.
|
||||||
|
+ Support was added for configuring language/region on a per-game basis.
|
||||||
|
+ This is managed by editing `atmosphere/titles/<title id>/config.ini` for the game.
|
||||||
|
+ To edit title language, edit `override_config!override_language`.
|
||||||
|
+ The languages supported are `ja`, `en-US`, `fr`, `de`, `it`, `es`, `zh-CN`, `ko`, `nl`, `pt`, `ru`, `zh-TW`, `en-GB`, `fr-CA`, `es-419`, `zh-Hans`, `zh-Hant`.
|
||||||
|
+ To edit title region, edit `override_config!override_region`.
|
||||||
|
+ The regions supported are `jpn`, `usa`, `eur`, `aus`, `chn`, `kor`, `twn`.
|
||||||
|
+ Atmosphère now provides a reimplementation of the `boot` system module.
|
||||||
|
+ `boot` is responsible for performing hardware initialization, showing the Nintendo logo, and repairing NAND on system update failure.
|
||||||
|
+ Atmosphère's `boot` implementation preserves AutoRCM during NAND repair.
|
||||||
|
+ NAND repair occurs when an unexpected shutdown or error happens during a system update.
|
||||||
|
+ This fixes a final edge case where AutoRCM might be removed by HOS, which could cause a user to burn fuses.
|
||||||
|
+ General system stability improvements to enhance the user's experience.
|
||||||
## 0.8.9
|
## 0.8.9
|
||||||
+ A number of bugs were fixed, including:
|
+ A number of bugs were fixed, including:
|
||||||
+ A data abort was fixed when mounting certain partitions on NAND.
|
+ A data abort was fixed when mounting certain partitions on NAND.
|
||||||
|
|||||||
@@ -668,7 +668,7 @@ static int sdmmc_int_clk_enable(sdmmc_t *sdmmc)
|
|||||||
|
|
||||||
/* Clock failed to stabilize. */
|
/* Clock failed to stabilize. */
|
||||||
if (is_timeout) {
|
if (is_timeout) {
|
||||||
sdmmc_error(sdmmc, "clock never stabilized!");
|
sdmmc_error(sdmmc, "Clock never stabilized!");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1353,7 +1353,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
{
|
{
|
||||||
/* Invalid block count or size. */
|
/* Invalid block count or size. */
|
||||||
if (!req->blksz || !req->num_blocks)
|
if (!req->blksz || !req->num_blocks)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Empty DMA request!");
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t blkcnt = req->num_blocks;
|
uint32_t blkcnt = req->num_blocks;
|
||||||
|
|
||||||
@@ -1366,7 +1369,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
|
|
||||||
/* DMA buffer address must be aligned to 4 bytes. */
|
/* DMA buffer address must be aligned to 4 bytes. */
|
||||||
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Invalid DMA request data buffer: 0x%08X", dma_base_addr);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Write our address to the registers. */
|
/* Write our address to the registers. */
|
||||||
if (sdmmc->use_adma)
|
if (sdmmc->use_adma)
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
|
|
||||||
extern void (*__program_exit_callback)(int rc);
|
extern void (*__program_exit_callback)(int rc);
|
||||||
|
|
||||||
|
static __attribute__((__aligned__(0x200))) stage2_args_t g_stage2_args_store;
|
||||||
static stage2_args_t *g_stage2_args;
|
static stage2_args_t *g_stage2_args;
|
||||||
static bool g_do_nxboot;
|
static bool g_do_nxboot;
|
||||||
|
|
||||||
@@ -84,7 +85,8 @@ int main(int argc, void **argv) {
|
|||||||
generic_panic();
|
generic_panic();
|
||||||
}
|
}
|
||||||
|
|
||||||
g_stage2_args = (stage2_args_t *)argv[STAGE2_ARGV_ARGUMENT_STRUCT];
|
g_stage2_args = &g_stage2_args_store;
|
||||||
|
memcpy(g_stage2_args, (stage2_args_t *)argv[STAGE2_ARGV_ARGUMENT_STRUCT], sizeof(*g_stage2_args));
|
||||||
|
|
||||||
if (g_stage2_args->version != 0) {
|
if (g_stage2_args->version != 0) {
|
||||||
generic_panic();
|
generic_panic();
|
||||||
@@ -101,10 +103,11 @@ int main(int argc, void **argv) {
|
|||||||
|
|
||||||
/* Load BCT0 from SD if needed. */
|
/* Load BCT0 from SD if needed. */
|
||||||
if (strcmp(g_stage2_args->bct0, "") == 0) {
|
if (strcmp(g_stage2_args->bct0, "") == 0) {
|
||||||
read_from_file(g_stage2_args->bct0, sizeof(g_stage2_args->bct0) - 1, "atmosphere/BCT.ini");
|
uint32_t bct_tmp_buf[sizeof(g_stage2_args->bct0) / sizeof(uint32_t)] = {0};
|
||||||
if (!read_from_file(g_stage2_args->bct0, sizeof(g_stage2_args->bct0) - 1, "atmosphere/BCT.ini")) {
|
if (!read_from_file(bct_tmp_buf, sizeof(bct_tmp_buf) - 1, "atmosphere/BCT.ini")) {
|
||||||
fatal_error("Failed to read BCT0 from SD!\n");
|
fatal_error("Failed to read BCT0 from SD!\n");
|
||||||
}
|
}
|
||||||
|
memcpy(g_stage2_args->bct0, bct_tmp_buf, sizeof(bct_tmp_buf));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This will load all remaining binaries off of the SD. */
|
/* This will load all remaining binaries off of the SD. */
|
||||||
|
|||||||
@@ -668,7 +668,7 @@ static int sdmmc_int_clk_enable(sdmmc_t *sdmmc)
|
|||||||
|
|
||||||
/* Clock failed to stabilize. */
|
/* Clock failed to stabilize. */
|
||||||
if (is_timeout) {
|
if (is_timeout) {
|
||||||
sdmmc_error(sdmmc, "clock never stabilized!");
|
sdmmc_error(sdmmc, "Clock never stabilized!");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1353,7 +1353,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
{
|
{
|
||||||
/* Invalid block count or size. */
|
/* Invalid block count or size. */
|
||||||
if (!req->blksz || !req->num_blocks)
|
if (!req->blksz || !req->num_blocks)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Empty DMA request!");
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t blkcnt = req->num_blocks;
|
uint32_t blkcnt = req->num_blocks;
|
||||||
|
|
||||||
@@ -1366,7 +1369,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
|
|
||||||
/* DMA buffer address must be aligned to 4 bytes. */
|
/* DMA buffer address must be aligned to 4 bytes. */
|
||||||
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Invalid DMA request data buffer: 0x%08X", dma_base_addr);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Write our address to the registers. */
|
/* Write our address to the registers. */
|
||||||
if (sdmmc->use_adma)
|
if (sdmmc->use_adma)
|
||||||
|
|||||||
@@ -668,7 +668,7 @@ static int sdmmc_int_clk_enable(sdmmc_t *sdmmc)
|
|||||||
|
|
||||||
/* Clock failed to stabilize. */
|
/* Clock failed to stabilize. */
|
||||||
if (is_timeout) {
|
if (is_timeout) {
|
||||||
sdmmc_error(sdmmc, "clock never stabilized!");
|
sdmmc_error(sdmmc, "Clock never stabilized!");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1353,7 +1353,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
{
|
{
|
||||||
/* Invalid block count or size. */
|
/* Invalid block count or size. */
|
||||||
if (!req->blksz || !req->num_blocks)
|
if (!req->blksz || !req->num_blocks)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Empty DMA request!");
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t blkcnt = req->num_blocks;
|
uint32_t blkcnt = req->num_blocks;
|
||||||
|
|
||||||
@@ -1366,7 +1369,10 @@ static int sdmmc_dma_init(sdmmc_t *sdmmc, sdmmc_request_t *req)
|
|||||||
|
|
||||||
/* DMA buffer address must be aligned to 4 bytes. */
|
/* DMA buffer address must be aligned to 4 bytes. */
|
||||||
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
if ((4 - (dma_base_addr & 0x03)) & 0x03)
|
||||||
|
{
|
||||||
|
sdmmc_error(sdmmc, "Invalid DMA request data buffer: 0x%08X", dma_base_addr);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Write our address to the registers. */
|
/* Write our address to the registers. */
|
||||||
if (sdmmc->use_adma)
|
if (sdmmc->use_adma)
|
||||||
|
|||||||
@@ -78,6 +78,16 @@ void __appInit(void) {
|
|||||||
if (R_FAILED(rc)) {
|
if (R_FAILED(rc)) {
|
||||||
std::abort();
|
std::abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc = pmdmntInitialize();
|
||||||
|
if (R_FAILED(rc)) {
|
||||||
|
std::abort();
|
||||||
|
}
|
||||||
|
|
||||||
|
rc = pminfoInitialize();
|
||||||
|
if (R_FAILED(rc)) {
|
||||||
|
std::abort();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
|
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
|
||||||
|
|||||||
@@ -163,12 +163,13 @@ Result FsMitmService::OpenFileSystemWithId(Out<std::shared_ptr<IFileSystemInterf
|
|||||||
|
|
||||||
Result FsMitmService::OpenSaveDataFileSystem(Out<std::shared_ptr<IFileSystemInterface>> out_fs, u8 space_id, FsSave save_struct) {
|
Result FsMitmService::OpenSaveDataFileSystem(Out<std::shared_ptr<IFileSystemInterface>> out_fs, u8 space_id, FsSave save_struct) {
|
||||||
bool should_redirect_saves = false;
|
bool should_redirect_saves = false;
|
||||||
|
const bool has_redirect_save_flags = Utils::HasFlag(this->title_id, "redirect_save");
|
||||||
if (R_FAILED(Utils::GetSettingsItemBooleanValue("atmosphere", "fsmitm_redirect_saves_to_sd", &should_redirect_saves))) {
|
if (R_FAILED(Utils::GetSettingsItemBooleanValue("atmosphere", "fsmitm_redirect_saves_to_sd", &should_redirect_saves))) {
|
||||||
return ResultAtmosphereMitmShouldForwardToSession;
|
return ResultAtmosphereMitmShouldForwardToSession;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For now, until we're sure this is robust, only intercept normal savedata. */
|
/* For now, until we're sure this is robust, only intercept normal savedata , check if flag exist*/
|
||||||
if (!should_redirect_saves || save_struct.SaveDataType != FsSaveDataType_SaveData) {
|
if (!has_redirect_save_flags || !should_redirect_saves || save_struct.SaveDataType != FsSaveDataType_SaveData) {
|
||||||
return ResultAtmosphereMitmShouldForwardToSession;
|
return ResultAtmosphereMitmShouldForwardToSession;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
113
stratosphere/ams_mitm/source/set_mitm/set_mitm_service.cpp
Normal file
113
stratosphere/ams_mitm/source/set_mitm/set_mitm_service.cpp
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
/*
|
||||||
|
* 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 <mutex>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <switch.h>
|
||||||
|
#include "set_mitm_service.hpp"
|
||||||
|
#include "set_shim.h"
|
||||||
|
|
||||||
|
void SetMitmService::PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx) {
|
||||||
|
/* No commands need postprocessing. */
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetMitmService::IsValidLanguageCode(u64 lang_code) {
|
||||||
|
static constexpr u64 s_valid_language_codes[] = {
|
||||||
|
LanguageCode_Japanese,
|
||||||
|
LanguageCode_AmericanEnglish,
|
||||||
|
LanguageCode_French,
|
||||||
|
LanguageCode_German,
|
||||||
|
LanguageCode_Italian,
|
||||||
|
LanguageCode_Spanish,
|
||||||
|
LanguageCode_Chinese,
|
||||||
|
LanguageCode_Korean,
|
||||||
|
LanguageCode_Dutch,
|
||||||
|
LanguageCode_Portuguese,
|
||||||
|
LanguageCode_Russian,
|
||||||
|
LanguageCode_Taiwanese,
|
||||||
|
LanguageCode_BritishEnglish,
|
||||||
|
LanguageCode_CanadianFrench,
|
||||||
|
LanguageCode_LatinAmericanSpanish,
|
||||||
|
LanguageCode_SimplifiedChinese,
|
||||||
|
LanguageCode_TraditionalChinese,
|
||||||
|
};
|
||||||
|
size_t num_language_codes = sizeof(s_valid_language_codes) / sizeof(s_valid_language_codes[0]);
|
||||||
|
if (GetRuntimeFirmwareVersion() < FirmwareVersion_400) {
|
||||||
|
/* 4.0.0 added simplified and traditional chinese. */
|
||||||
|
num_language_codes -= 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < num_language_codes; i++) {
|
||||||
|
if (lang_code == s_valid_language_codes[i]) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SetMitmService::IsValidRegionCode(u32 region_code) {
|
||||||
|
return region_code < RegionCode_Max;
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetMitmService::EnsureLocale() {
|
||||||
|
std::scoped_lock<HosMutex> lk(this->lock);
|
||||||
|
|
||||||
|
if (!this->got_locale) {
|
||||||
|
std::memset(&this->locale, 0xCC, sizeof(this->locale));
|
||||||
|
if (this->title_id == TitleId_Ns) {
|
||||||
|
u64 app_pid = 0;
|
||||||
|
u64 app_tid = 0;
|
||||||
|
Result rc;
|
||||||
|
if (R_FAILED((rc = pmdmntGetApplicationPid(&app_pid)))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (R_FAILED((rc = pminfoGetTitleId(&app_tid, app_pid)))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this->locale = Utils::GetTitleOverrideLocale(app_tid);
|
||||||
|
} else {
|
||||||
|
this->locale = Utils::GetTitleOverrideLocale(this->title_id);
|
||||||
|
this->got_locale = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Result SetMitmService::GetLanguageCode(Out<u64> out_lang_code) {
|
||||||
|
this->EnsureLocale();
|
||||||
|
|
||||||
|
if (!IsValidLanguageCode(this->locale.language_code)) {
|
||||||
|
return ResultAtmosphereMitmShouldForwardToSession;
|
||||||
|
}
|
||||||
|
|
||||||
|
out_lang_code.SetValue(this->locale.language_code);
|
||||||
|
return ResultSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
Result SetMitmService::GetRegionCode(Out<u32> out_region_code) {
|
||||||
|
this->EnsureLocale();
|
||||||
|
|
||||||
|
if (!IsValidRegionCode(this->locale.region_code)) {
|
||||||
|
return ResultAtmosphereMitmShouldForwardToSession;
|
||||||
|
}
|
||||||
|
|
||||||
|
out_region_code.SetValue(this->locale.region_code);
|
||||||
|
return ResultSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
Result SetMitmService::GetAvailableLanguageCodes(OutPointerWithClientSize<u64> out_language_codes, Out<s32> out_count) {
|
||||||
|
return setGetAvailableLanguageCodesFwd(this->forward_service.get(), out_count.GetPointer(), out_language_codes.pointer, out_language_codes.num_elements);
|
||||||
|
}
|
||||||
68
stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp
Normal file
68
stratosphere/ams_mitm/source/set_mitm/set_mitm_service.hpp
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
/*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include <switch.h>
|
||||||
|
#include <stratosphere.hpp>
|
||||||
|
|
||||||
|
#include "../utils.hpp"
|
||||||
|
|
||||||
|
enum SetCmd : u32 {
|
||||||
|
SetCmd_GetLanguageCode = 0,
|
||||||
|
SetCmd_GetRegionCode = 4,
|
||||||
|
|
||||||
|
/* Commands for which set:sys *must* act as a passthrough. */
|
||||||
|
/* TODO: Solve the relevant IPC detection problem. */
|
||||||
|
SetCmd_GetAvailableLanguageCodes = 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
class SetMitmService : public IMitmServiceObject {
|
||||||
|
private:
|
||||||
|
HosMutex lock;
|
||||||
|
OverrideLocale locale;
|
||||||
|
bool got_locale;
|
||||||
|
public:
|
||||||
|
SetMitmService(std::shared_ptr<Service> s, u64 pid) : IMitmServiceObject(s, pid) {
|
||||||
|
this->got_locale = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool ShouldMitm(u64 pid, u64 tid) {
|
||||||
|
/* Mitm all applications. */
|
||||||
|
return tid == TitleId_Ns || TitleIdIsApplication(tid);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
static bool IsValidLanguageCode(u64 lang_code);
|
||||||
|
static bool IsValidRegionCode(u32 region_code);
|
||||||
|
|
||||||
|
void EnsureLocale();
|
||||||
|
protected:
|
||||||
|
/* Overridden commands. */
|
||||||
|
Result GetLanguageCode(Out<u64> out_lang_code);
|
||||||
|
Result GetRegionCode(Out<u32> out_region_code);
|
||||||
|
|
||||||
|
/* Forced passthrough commands. */
|
||||||
|
Result GetAvailableLanguageCodes(OutPointerWithClientSize<u64> out_language_codes, Out<s32> out_count);
|
||||||
|
public:
|
||||||
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
||||||
|
MakeServiceCommandMeta<SetCmd_GetLanguageCode, &SetMitmService::GetLanguageCode>(),
|
||||||
|
MakeServiceCommandMeta<SetCmd_GetRegionCode, &SetMitmService::GetRegionCode>(),
|
||||||
|
|
||||||
|
MakeServiceCommandMeta<SetCmd_GetAvailableLanguageCodes, &SetMitmService::GetAvailableLanguageCodes>(),
|
||||||
|
};
|
||||||
|
};
|
||||||
59
stratosphere/ams_mitm/source/set_mitm/set_shim.c
Normal file
59
stratosphere/ams_mitm/source/set_mitm/set_shim.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* 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 <string.h>
|
||||||
|
#include <switch.h>
|
||||||
|
#include "setsys_shim.h"
|
||||||
|
|
||||||
|
/* Command forwarders. */
|
||||||
|
Result setGetAvailableLanguageCodesFwd(Service* s, s32 *total_entries, u64 *language_codes, size_t max_entries) {
|
||||||
|
IpcCommand c;
|
||||||
|
ipcInitialize(&c);
|
||||||
|
ipcAddRecvStatic(&c, language_codes, max_entries * sizeof(*language_codes), 0);
|
||||||
|
|
||||||
|
struct {
|
||||||
|
u64 magic;
|
||||||
|
u64 cmd_id;
|
||||||
|
} *raw;
|
||||||
|
|
||||||
|
raw = serviceIpcPrepareHeader(s, &c, sizeof(*raw));
|
||||||
|
|
||||||
|
raw->magic = SFCI_MAGIC;
|
||||||
|
raw->cmd_id = 1;
|
||||||
|
|
||||||
|
Result rc = serviceIpcDispatch(s);
|
||||||
|
|
||||||
|
if (R_SUCCEEDED(rc)) {
|
||||||
|
IpcParsedCommand r;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
u64 magic;
|
||||||
|
u64 result;
|
||||||
|
s32 total_entries;
|
||||||
|
} *resp;
|
||||||
|
|
||||||
|
serviceIpcParse(s, &r, sizeof(*resp));
|
||||||
|
resp = r.Raw;
|
||||||
|
|
||||||
|
rc = resp->result;
|
||||||
|
|
||||||
|
if (R_SUCCEEDED(rc)) {
|
||||||
|
*total_entries = resp->total_entries;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
19
stratosphere/ams_mitm/source/set_mitm/set_shim.h
Normal file
19
stratosphere/ams_mitm/source/set_mitm/set_shim.h
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
/**
|
||||||
|
* @file set_shim.h
|
||||||
|
* @brief Settings Services (set) IPC wrapper. To be merged into libnx, eventually.
|
||||||
|
* @author SciresM
|
||||||
|
* @copyright libnx Authors
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
#include <switch.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Command forwarders. */
|
||||||
|
Result setGetAvailableLanguageCodesFwd(Service* s, s32 *total_entries, u64 *language_codes, size_t max_entries);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
@@ -28,6 +28,8 @@
|
|||||||
#include "setsys_settings_items.hpp"
|
#include "setsys_settings_items.hpp"
|
||||||
#include "setsys_firmware_version.hpp"
|
#include "setsys_firmware_version.hpp"
|
||||||
|
|
||||||
|
#include "set_mitm_service.hpp"
|
||||||
|
|
||||||
#include "../utils.hpp"
|
#include "../utils.hpp"
|
||||||
|
|
||||||
struct SetSysManagerOptions {
|
struct SetSysManagerOptions {
|
||||||
@@ -46,11 +48,14 @@ void SetMitmMain(void *arg) {
|
|||||||
VersionManager::Initialize();
|
VersionManager::Initialize();
|
||||||
|
|
||||||
/* Create server manager */
|
/* Create server manager */
|
||||||
auto server_manager = new SetMitmManager(3);
|
auto server_manager = new SetMitmManager(4);
|
||||||
|
|
||||||
/* Create set:sys mitm. */
|
/* Create set:sys mitm. */
|
||||||
AddMitmServerToManager<SetSysMitmService>(server_manager, "set:sys", 60);
|
AddMitmServerToManager<SetSysMitmService>(server_manager, "set:sys", 60);
|
||||||
|
|
||||||
|
/* Create set mitm. */
|
||||||
|
AddMitmServerToManager<SetMitmService>(server_manager, "set", 60);
|
||||||
|
|
||||||
/* Loop forever, servicing our services. */
|
/* Loop forever, servicing our services. */
|
||||||
server_manager->Process();
|
server_manager->Process();
|
||||||
|
|
||||||
|
|||||||
@@ -460,7 +460,11 @@ Result Utils::GetKeysHeld(u64 *keys) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hidScanInput();
|
hidScanInput();
|
||||||
*keys = hidKeysHeld(CONTROLLER_P1_AUTO);
|
*keys = 0;
|
||||||
|
|
||||||
|
for (int controller = 0; controller < 10; controller++) {
|
||||||
|
*keys |= hidKeysHeld((HidControllerID) controller);
|
||||||
|
}
|
||||||
|
|
||||||
return ResultSuccess;
|
return ResultSuccess;
|
||||||
}
|
}
|
||||||
@@ -620,6 +624,64 @@ OverrideKey Utils::GetTitleOverrideKey(u64 tid) {
|
|||||||
return cfg;
|
return cfg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int FsMitmTitleSpecificLocaleIniHandler(void *user, const char *section, const char *name, const char *value) {
|
||||||
|
/* We'll output an override locale when relevant. */
|
||||||
|
OverrideLocale *user_locale = reinterpret_cast<OverrideLocale *>(user);
|
||||||
|
|
||||||
|
if (strcasecmp(section, "override_config") == 0) {
|
||||||
|
if (strcasecmp(name, "override_language") == 0) {
|
||||||
|
user_locale->language_code = EncodeLanguageCode(value);
|
||||||
|
} else if (strcasecmp(name, "override_region") == 0) {
|
||||||
|
if (strcasecmp(value, "jpn") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_Japan;
|
||||||
|
} else if (strcasecmp(value, "usa") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_America;
|
||||||
|
} else if (strcasecmp(value, "eur") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_Europe;
|
||||||
|
} else if (strcasecmp(value, "aus") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_Australia;
|
||||||
|
} else if (strcasecmp(value, "chn") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_China;
|
||||||
|
} else if (strcasecmp(value, "kor") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_Korea;
|
||||||
|
} else if (strcasecmp(value, "twn") == 0) {
|
||||||
|
user_locale->region_code = RegionCode_Taiwan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
OverrideLocale Utils::GetTitleOverrideLocale(u64 tid) {
|
||||||
|
OverrideLocale locale;
|
||||||
|
std::memset(&locale, 0xCC, sizeof(locale));
|
||||||
|
char path[FS_MAX_PATH+1] = {0};
|
||||||
|
snprintf(path, FS_MAX_PATH, "/atmosphere/titles/%016lx/config.ini", tid);
|
||||||
|
FsFile cfg_file;
|
||||||
|
|
||||||
|
if (R_SUCCEEDED(fsFsOpenFile(&g_sd_filesystem, path, FS_OPEN_READ, &cfg_file))) {
|
||||||
|
ON_SCOPE_EXIT { fsFileClose(&cfg_file); };
|
||||||
|
|
||||||
|
size_t config_file_size = 0x20000;
|
||||||
|
fsFileGetSize(&cfg_file, &config_file_size);
|
||||||
|
|
||||||
|
char *config_buf = reinterpret_cast<char *>(calloc(1, config_file_size + 1));
|
||||||
|
if (config_buf != NULL) {
|
||||||
|
ON_SCOPE_EXIT { free(config_buf); };
|
||||||
|
|
||||||
|
/* Read title ini contents. */
|
||||||
|
fsFileRead(&cfg_file, 0, config_buf, config_file_size, &config_file_size);
|
||||||
|
|
||||||
|
/* Parse title ini. */
|
||||||
|
ini_parse_string(config_buf, FsMitmTitleSpecificLocaleIniHandler, &locale);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return locale;
|
||||||
|
}
|
||||||
|
|
||||||
void Utils::RefreshConfiguration() {
|
void Utils::RefreshConfiguration() {
|
||||||
FsFile config_file;
|
FsFile config_file;
|
||||||
if (R_FAILED(fsFsOpenFile(&g_sd_filesystem, "/atmosphere/loader.ini", FS_OPEN_READ, &config_file))) {
|
if (R_FAILED(fsFsOpenFile(&g_sd_filesystem, "/atmosphere/loader.ini", FS_OPEN_READ, &config_file))) {
|
||||||
|
|||||||
@@ -42,6 +42,56 @@ struct OverrideKey {
|
|||||||
bool override_by_default;
|
bool override_by_default;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct OverrideLocale {
|
||||||
|
u64 language_code;
|
||||||
|
u32 region_code;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum RegionCode : u32 {
|
||||||
|
RegionCode_Japan = 0,
|
||||||
|
RegionCode_America = 1,
|
||||||
|
RegionCode_Europe = 2,
|
||||||
|
RegionCode_Australia = 3,
|
||||||
|
RegionCode_China = 4,
|
||||||
|
RegionCode_Korea = 5,
|
||||||
|
RegionCode_Taiwan = 6,
|
||||||
|
|
||||||
|
RegionCode_Max,
|
||||||
|
};
|
||||||
|
|
||||||
|
static constexpr inline u64 EncodeLanguageCode(const char *code) {
|
||||||
|
u64 lang_code = 0;
|
||||||
|
for (size_t i = 0; i < sizeof(lang_code); i++) {
|
||||||
|
if (code[i] == '\x00') {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
lang_code |= static_cast<u64>(code[i]) << (8ul * i);
|
||||||
|
}
|
||||||
|
return lang_code;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum LanguageCode : u64 {
|
||||||
|
LanguageCode_Japanese = EncodeLanguageCode("ja"),
|
||||||
|
LanguageCode_AmericanEnglish = EncodeLanguageCode("en-US"),
|
||||||
|
LanguageCode_French = EncodeLanguageCode("fr"),
|
||||||
|
LanguageCode_German = EncodeLanguageCode("de"),
|
||||||
|
LanguageCode_Italian = EncodeLanguageCode("it"),
|
||||||
|
LanguageCode_Spanish = EncodeLanguageCode("es"),
|
||||||
|
LanguageCode_Chinese = EncodeLanguageCode("zh-CN"),
|
||||||
|
LanguageCode_Korean = EncodeLanguageCode("ko"),
|
||||||
|
LanguageCode_Dutch = EncodeLanguageCode("nl"),
|
||||||
|
LanguageCode_Portuguese = EncodeLanguageCode("pt"),
|
||||||
|
LanguageCode_Russian = EncodeLanguageCode("ru"),
|
||||||
|
LanguageCode_Taiwanese = EncodeLanguageCode("zh-TW"),
|
||||||
|
LanguageCode_BritishEnglish = EncodeLanguageCode("en-GB"),
|
||||||
|
LanguageCode_CanadianFrench = EncodeLanguageCode("fr-CA"),
|
||||||
|
LanguageCode_LatinAmericanSpanish = EncodeLanguageCode("es-419"),
|
||||||
|
/* 4.0.0+ */
|
||||||
|
LanguageCode_SimplifiedChinese = EncodeLanguageCode("zh-Hans"),
|
||||||
|
LanguageCode_TraditionalChinese = EncodeLanguageCode("zh-Hant"),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class Utils {
|
class Utils {
|
||||||
public:
|
public:
|
||||||
static bool IsSdInitialized();
|
static bool IsSdInitialized();
|
||||||
@@ -82,6 +132,8 @@ class Utils {
|
|||||||
static OverrideKey GetTitleOverrideKey(u64 tid);
|
static OverrideKey GetTitleOverrideKey(u64 tid);
|
||||||
static bool HasOverrideButton(u64 tid);
|
static bool HasOverrideButton(u64 tid);
|
||||||
|
|
||||||
|
static OverrideLocale GetTitleOverrideLocale(u64 tid);
|
||||||
|
|
||||||
/* Settings! */
|
/* Settings! */
|
||||||
static Result GetSettingsItemValueSize(const char *name, const char *key, u64 *out_size);
|
static Result GetSettingsItemValueSize(const char *name, const char *key, u64 *out_size);
|
||||||
static Result GetSettingsItemValue(const char *name, const char *key, void *out, size_t max_size, u64 *out_size);
|
static Result GetSettingsItemValue(const char *name, const char *key, void *out, size_t max_size, u64 *out_size);
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ class ChargerDriver {
|
|||||||
I2cDriver::Initialize();
|
I2cDriver::Initialize();
|
||||||
I2cDriver::OpenSession(&this->i2c_session, I2cDevice_Bq24193);
|
I2cDriver::OpenSession(&this->i2c_session, I2cDevice_Bq24193);
|
||||||
|
|
||||||
|
Boot::GpioConfigure(GpioPadName_Bq24193Charger);
|
||||||
Boot::GpioSetDirection(GpioPadName_Bq24193Charger, GpioDirection_Output);
|
Boot::GpioSetDirection(GpioPadName_Bq24193Charger, GpioDirection_Output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ static constexpr u32 GpioPadName_FanEnable = 0x4B;
|
|||||||
|
|
||||||
void Boot::SetFanEnabled() {
|
void Boot::SetFanEnabled() {
|
||||||
if (Boot::GetHardwareType() == HardwareType_Copper) {
|
if (Boot::GetHardwareType() == HardwareType_Copper) {
|
||||||
|
Boot::GpioConfigure(GpioPadName_FanEnable);
|
||||||
Boot::GpioSetDirection(GpioPadName_FanEnable, GpioDirection_Output);
|
Boot::GpioSetDirection(GpioPadName_FanEnable, GpioDirection_Output);
|
||||||
Boot::GpioSetValue(GpioPadName_FanEnable, GpioValue_High);
|
Boot::GpioSetValue(GpioPadName_FanEnable, GpioValue_High);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ class Boot {
|
|||||||
static u32 PinmuxUpdatePark(u32 pinmux_name);
|
static u32 PinmuxUpdatePark(u32 pinmux_name);
|
||||||
static u32 PinmuxUpdatePad(u32 pinmux_name, u32 config_val, u32 config_mask);
|
static u32 PinmuxUpdatePad(u32 pinmux_name, u32 config_val, u32 config_mask);
|
||||||
static u32 PinmuxUpdateDrivePad(u32 pinmux_drivepad_name, u32 config_val, u32 config_mask);
|
static u32 PinmuxUpdateDrivePad(u32 pinmux_drivepad_name, u32 config_val, u32 config_mask);
|
||||||
|
static u32 PinmuxDummyReadDrivePad(u32 pinmux_drivepad_name);
|
||||||
static void ConfigurePinmuxInitialPads();
|
static void ConfigurePinmuxInitialPads();
|
||||||
static void ConfigurePinmuxInitialDrivePads();
|
static void ConfigurePinmuxInitialDrivePads();
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,9 @@ void Boot::SetInitialGpioConfiguration() {
|
|||||||
/* Set the GPIO's direction. */
|
/* Set the GPIO's direction. */
|
||||||
Boot::GpioSetDirection(configs[i].pad_name, configs[i].direction);
|
Boot::GpioSetDirection(configs[i].pad_name, configs[i].direction);
|
||||||
|
|
||||||
/* Set the GPIO's value. */
|
if (configs[i].direction == GpioDirection_Output) {
|
||||||
Boot::GpioSetValue(configs[i].pad_name, configs[i].value);
|
/* Set the GPIO's value. */
|
||||||
|
Boot::GpioSetValue(configs[i].pad_name, configs[i].value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -28,6 +28,11 @@ void Boot::ConfigurePinmux() {
|
|||||||
Boot::PinmuxUpdatePark(static_cast<u32>(i));
|
Boot::PinmuxUpdatePark(static_cast<u32>(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Dummy read all drive pads. */
|
||||||
|
for (size_t i = 0; i < PinmuxDrivePadNameMax; i++) {
|
||||||
|
Boot::PinmuxDummyReadDrivePad(static_cast<u32>(i));
|
||||||
|
}
|
||||||
|
|
||||||
/* Set initial pad configs. */
|
/* Set initial pad configs. */
|
||||||
Boot::ConfigurePinmuxInitialPads();
|
Boot::ConfigurePinmuxInitialPads();
|
||||||
|
|
||||||
|
|||||||
@@ -98,20 +98,16 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
u32 pinmux_val = *pinmux_reg;
|
u32 pinmux_val = *pinmux_reg;
|
||||||
|
|
||||||
/* This PINMUX register is locked */
|
/* This PINMUX register is locked */
|
||||||
if (pinmux_val & 0x80)
|
if (pinmux_val & 0x80) {
|
||||||
return pinmux_val;
|
std::abort();
|
||||||
|
}
|
||||||
|
|
||||||
u32 pm_config_val = (pinmux_config_val & 0x07);
|
u32 pm_val = (pinmux_config_val & 0x07);
|
||||||
u32 pm_val = pm_config_val;
|
|
||||||
|
|
||||||
/* Adjust PM */
|
/* Adjust PM */
|
||||||
if (pinmux_config_mask_val & 0x07) {
|
if (pinmux_config_mask_val & 0x07) {
|
||||||
/* Default to safe value */
|
|
||||||
if (pm_config_val >= 0x06)
|
|
||||||
pm_val = 0x04;
|
|
||||||
|
|
||||||
/* Apply additional changes first */
|
/* Apply additional changes first */
|
||||||
if (pm_config_val == 0x05) {
|
if (pm_val == 0x05) {
|
||||||
/* This pin supports PUPD change */
|
/* This pin supports PUPD change */
|
||||||
if (pinmux_mask_val & 0x0C) {
|
if (pinmux_mask_val & 0x0C) {
|
||||||
/* Change PUPD */
|
/* Change PUPD */
|
||||||
@@ -136,14 +132,15 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
pinmux_val &= 0xFFFFFFBF;
|
pinmux_val &= 0xFFFFFFBF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (pm_val >= 0x06) {
|
||||||
/* Default to safe value */
|
/* Default to safe value */
|
||||||
pm_val = 0x04;
|
pm_val = 0x04;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Translate PM value if necessary */
|
/* Translate PM value if necessary */
|
||||||
if ((pm_val & 0xFF) == 0x04)
|
if (pm_val == 0x04 || pm_val == 0x05) {
|
||||||
pm_val = pinmux_def->pm_val;
|
pm_val = pinmux_def->pm_val;
|
||||||
|
}
|
||||||
|
|
||||||
/* This pin supports PM change */
|
/* This pin supports PM change */
|
||||||
if (pinmux_mask_val & 0x03) {
|
if (pinmux_mask_val & 0x03) {
|
||||||
@@ -163,7 +160,7 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
/* This pin supports PUPD change */
|
/* This pin supports PUPD change */
|
||||||
if (pinmux_mask_val & 0x0C) {
|
if (pinmux_mask_val & 0x0C) {
|
||||||
/* Change PUPD */
|
/* Change PUPD */
|
||||||
if ((pinmux_val & 0x0C) != (pupd_config_val >> 0x03)) {
|
if (((pinmux_val >> 0x02) & 0x03) != (pupd_config_val >> 0x03)) {
|
||||||
pinmux_val &= 0xFFFFFFF3;
|
pinmux_val &= 0xFFFFFFF3;
|
||||||
pinmux_val |= (pupd_config_val >> 0x01);
|
pinmux_val |= (pupd_config_val >> 0x01);
|
||||||
}
|
}
|
||||||
@@ -288,7 +285,7 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 ioreset_config_val = ((pinmux_config_val >> 0x08) & 0x10000);
|
u32 ioreset_config_val = (((pinmux_config_val >> 0x08) & 0x1) << 0x10);
|
||||||
|
|
||||||
/* Adjust IoReset */
|
/* Adjust IoReset */
|
||||||
if (pinmux_config_mask_val & 0x100) {
|
if (pinmux_config_mask_val & 0x100) {
|
||||||
@@ -296,12 +293,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x10000) {
|
if (pinmux_mask_val & 0x10000) {
|
||||||
/* Change IoReset */
|
/* Change IoReset */
|
||||||
if (((pinmux_val >> 0x10) ^ (pinmux_config_val >> 0x08)) & 0x01) {
|
if (((pinmux_val >> 0x10) ^ (pinmux_config_val >> 0x08)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFEFFFF;
|
||||||
pinmux_val |= ioreset_config_val;
|
pinmux_val |= ioreset_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 park_config_val = ((pinmux_config_val >> 0x0A) & 0x20);
|
u32 park_config_val = (((pinmux_config_val >> 0x0A) & 0x1) << 0x5);
|
||||||
|
|
||||||
/* Adjust Park */
|
/* Adjust Park */
|
||||||
if (pinmux_config_mask_val & 0x400) {
|
if (pinmux_config_mask_val & 0x400) {
|
||||||
@@ -309,12 +307,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x20) {
|
if (pinmux_mask_val & 0x20) {
|
||||||
/* Change Park */
|
/* Change Park */
|
||||||
if (((pinmux_val >> 0x05) ^ (pinmux_config_val >> 0x0A)) & 0x01) {
|
if (((pinmux_val >> 0x05) ^ (pinmux_config_val >> 0x0A)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFFFFDF;
|
||||||
pinmux_val |= park_config_val;
|
pinmux_val |= park_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 elpdr_config_val = ((pinmux_config_val >> 0x0B) & 0x100);
|
u32 elpdr_config_val = (((pinmux_config_val >> 0x0B) & 0x1) << 0x08);
|
||||||
|
|
||||||
/* Adjust ELpdr */
|
/* Adjust ELpdr */
|
||||||
if (pinmux_config_mask_val & 0x800) {
|
if (pinmux_config_mask_val & 0x800) {
|
||||||
@@ -322,12 +321,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x100) {
|
if (pinmux_mask_val & 0x100) {
|
||||||
/* Change ELpdr */
|
/* Change ELpdr */
|
||||||
if (((pinmux_val >> 0x08) ^ (pinmux_config_val >> 0x0B)) & 0x01) {
|
if (((pinmux_val >> 0x08) ^ (pinmux_config_val >> 0x0B)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFFFEFF;
|
||||||
pinmux_val |= elpdr_config_val;
|
pinmux_val |= elpdr_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 ehsm_config_val = ((pinmux_config_val >> 0x0C) & 0x200);
|
u32 ehsm_config_val = (((pinmux_config_val >> 0x0C) & 0x1) << 0x09);
|
||||||
|
|
||||||
/* Adjust EHsm */
|
/* Adjust EHsm */
|
||||||
if (pinmux_config_mask_val & 0x1000) {
|
if (pinmux_config_mask_val & 0x1000) {
|
||||||
@@ -335,12 +335,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x200) {
|
if (pinmux_mask_val & 0x200) {
|
||||||
/* Change EHsm */
|
/* Change EHsm */
|
||||||
if (((pinmux_val >> 0x09) ^ (pinmux_config_val >> 0x0C)) & 0x01) {
|
if (((pinmux_val >> 0x09) ^ (pinmux_config_val >> 0x0C)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFFFDFF;
|
||||||
pinmux_val |= ehsm_config_val;
|
pinmux_val |= ehsm_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 eiohv_config_val = ((pinmux_config_val >> 0x09) & 0x400);
|
u32 eiohv_config_val = (((pinmux_config_val >> 0x09) & 0x1) << 0x0A);
|
||||||
|
|
||||||
/* Adjust EIoHv */
|
/* Adjust EIoHv */
|
||||||
if (pinmux_config_mask_val & 0x200) {
|
if (pinmux_config_mask_val & 0x200) {
|
||||||
@@ -348,12 +349,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x400) {
|
if (pinmux_mask_val & 0x400) {
|
||||||
/* Change EIoHv */
|
/* Change EIoHv */
|
||||||
if (((pinmux_val >> 0x0A) ^ (pinmux_config_val >> 0x09)) & 0x01) {
|
if (((pinmux_val >> 0x0A) ^ (pinmux_config_val >> 0x09)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFFFBFF;
|
||||||
pinmux_val |= eiohv_config_val;
|
pinmux_val |= eiohv_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 eschmt_config_val = ((pinmux_config_val >> 0x0D) & 0x1000);
|
u32 eschmt_config_val = (((pinmux_config_val >> 0x0D) & 0x1) << 0x0C);
|
||||||
|
|
||||||
/* Adjust ESchmt */
|
/* Adjust ESchmt */
|
||||||
if (pinmux_config_mask_val & 0x2000) {
|
if (pinmux_config_mask_val & 0x2000) {
|
||||||
@@ -361,12 +363,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x1000) {
|
if (pinmux_mask_val & 0x1000) {
|
||||||
/* Change ESchmt */
|
/* Change ESchmt */
|
||||||
if (((pinmux_val >> 0x0C) ^ (pinmux_config_val >> 0x0D)) & 0x01) {
|
if (((pinmux_val >> 0x0C) ^ (pinmux_config_val >> 0x0D)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFFEFFF;
|
||||||
pinmux_val |= eschmt_config_val;
|
pinmux_val |= eschmt_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 preemp_config_val = ((pinmux_config_val >> 0x0D) & 0x8000);
|
u32 preemp_config_val = (((pinmux_config_val >> 0x10) & 0x1) << 0xF);
|
||||||
|
|
||||||
/* Adjust Preemp */
|
/* Adjust Preemp */
|
||||||
if (pinmux_config_mask_val & 0x10000) {
|
if (pinmux_config_mask_val & 0x10000) {
|
||||||
@@ -374,12 +377,13 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x8000) {
|
if (pinmux_mask_val & 0x8000) {
|
||||||
/* Change Preemp */
|
/* Change Preemp */
|
||||||
if (((pinmux_val >> 0x0F) ^ (pinmux_config_val >> 0x10)) & 0x01) {
|
if (((pinmux_val >> 0x0F) ^ (pinmux_config_val >> 0x10)) & 0x01) {
|
||||||
|
pinmux_val &= 0xFFFF7FFF;
|
||||||
pinmux_val |= preemp_config_val;
|
pinmux_val |= preemp_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 drvtype_config_val = ((pinmux_config_val >> 0x0E) & 0x6000);
|
u32 drvtype_config_val = (((pinmux_config_val >> 0x0E) & 0x3) << 0xD);
|
||||||
|
|
||||||
/* Adjust DrvType */
|
/* Adjust DrvType */
|
||||||
if (pinmux_config_mask_val & 0xC000) {
|
if (pinmux_config_mask_val & 0xC000) {
|
||||||
@@ -387,6 +391,7 @@ u32 Boot::PinmuxUpdatePad(u32 pinmux_name, u32 pinmux_config_val, u32 pinmux_con
|
|||||||
if (pinmux_mask_val & 0x6000) {
|
if (pinmux_mask_val & 0x6000) {
|
||||||
/* Change DrvType */
|
/* Change DrvType */
|
||||||
if (((pinmux_val >> 0x0D) ^ (pinmux_config_val >> 0x0E)) & 0x03) {
|
if (((pinmux_val >> 0x0D) ^ (pinmux_config_val >> 0x0E)) & 0x03) {
|
||||||
|
pinmux_val &= 0xFFFF9FFF;
|
||||||
pinmux_val |= drvtype_config_val;
|
pinmux_val |= drvtype_config_val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -485,3 +490,16 @@ u32 Boot::PinmuxUpdateDrivePad(u32 pinmux_drivepad_name, u32 pinmux_drivepad_con
|
|||||||
|
|
||||||
return pinmux_drivepad_val;
|
return pinmux_drivepad_val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
u32 Boot::PinmuxDummyReadDrivePad(u32 pinmux_drivepad_name) {
|
||||||
|
const uintptr_t pinmux_base_vaddr = GetPinmuxBaseAddress();
|
||||||
|
const PinmuxDrivePadDefinition *pinmux_drivepad_def = GetPinmuxDrivePadDefinition(pinmux_drivepad_name);
|
||||||
|
|
||||||
|
/* Fetch this PINMUX drive group's register offset */
|
||||||
|
u32 pinmux_drivepad_reg_offset = pinmux_drivepad_def->reg_offset;
|
||||||
|
|
||||||
|
/* Get current register ptr. */
|
||||||
|
volatile u32 *pinmux_drivepad_reg = reinterpret_cast<volatile u32 *>(pinmux_base_vaddr + pinmux_drivepad_reg_offset);
|
||||||
|
|
||||||
|
return *pinmux_drivepad_reg;
|
||||||
|
}
|
||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 Atmosphère-NX
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
||||||
*
|
*
|
||||||
* This program is free software{
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
|
||||||
} you can redistribute it and/or modify it
|
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
* version 2, as published by the Free Software Foundation.
|
* version 2, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||||
* ANY WARRANTY{
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
|
||||||
} without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
* more details.
|
* more details.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -26,7 +26,11 @@ Result HidManagement::GetKeysDown(u64 *keys) {
|
|||||||
std::scoped_lock<HosMutex> lk(g_hid_keys_down_lock);
|
std::scoped_lock<HosMutex> lk(g_hid_keys_down_lock);
|
||||||
|
|
||||||
hidScanInput();
|
hidScanInput();
|
||||||
*keys = hidKeysHeld(CONTROLLER_P1_AUTO);
|
*keys = 0;
|
||||||
|
|
||||||
|
for (int controller = 0; controller < 10; controller++) {
|
||||||
|
*keys |= hidKeysHeld((HidControllerID) controller);
|
||||||
|
}
|
||||||
|
|
||||||
return ResultSuccess;
|
return ResultSuccess;
|
||||||
}
|
}
|
||||||
Submodule stratosphere/libstratosphere updated: 8ec43f0d69...8f2328975a
@@ -36,7 +36,11 @@ Result HidManagement::GetKeysHeld(u64 *keys) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hidScanInput();
|
hidScanInput();
|
||||||
*keys = hidKeysHeld(CONTROLLER_P1_AUTO);
|
*keys = 0;
|
||||||
|
|
||||||
|
for (int controller = 0; controller < 10; controller++) {
|
||||||
|
*keys |= hidKeysHeld((HidControllerID) controller);
|
||||||
|
}
|
||||||
|
|
||||||
return ResultSuccess;
|
return ResultSuccess;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -175,9 +175,9 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
/* TODO: Create services. */
|
/* TODO: Create services. */
|
||||||
s_server_manager.AddWaitable(new ServiceServer<ShellService>("pm:shell", 3));
|
s_server_manager.AddWaitable(new ServiceServer<ShellService>("pm:shell", 3));
|
||||||
s_server_manager.AddWaitable(new ServiceServer<DebugMonitorService>("pm:dmnt", 2));
|
s_server_manager.AddWaitable(new ServiceServer<DebugMonitorService>("pm:dmnt", 3));
|
||||||
s_server_manager.AddWaitable(new ServiceServer<BootModeService>("pm:bm", 6));
|
s_server_manager.AddWaitable(new ServiceServer<BootModeService>("pm:bm", 6));
|
||||||
s_server_manager.AddWaitable(new ServiceServer<InformationService>("pm:info", 2));
|
s_server_manager.AddWaitable(new ServiceServer<InformationService>("pm:info", 3));
|
||||||
|
|
||||||
/* Loop forever, servicing our services. */
|
/* Loop forever, servicing our services. */
|
||||||
s_server_manager.Process();
|
s_server_manager.Process();
|
||||||
|
|||||||
@@ -79,8 +79,12 @@ int main(int argc, char **argv)
|
|||||||
//Scan all the inputs. This should be done once for each frame
|
//Scan all the inputs. This should be done once for each frame
|
||||||
hidScanInput();
|
hidScanInput();
|
||||||
|
|
||||||
//hidKeysDown returns information about which buttons have been just pressed (and they weren't in the previous frame)
|
u64 kDown = 0;
|
||||||
u64 kDown = hidKeysDown(CONTROLLER_P1_AUTO);
|
|
||||||
|
for (int controller = 0; controller < 10; controller++) {
|
||||||
|
// hidKeysDown returns information about which buttons have been just pressed (and they weren't in the previous frame)
|
||||||
|
kDown |= hidKeysDown((HidControllerID) controller);
|
||||||
|
}
|
||||||
|
|
||||||
if (can_reboot && kDown & KEY_MINUS) {
|
if (can_reboot && kDown & KEY_MINUS) {
|
||||||
reboot_to_payload();
|
reboot_to_payload();
|
||||||
|
|||||||
Reference in New Issue
Block a user