2018-11-27 09:45:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
2019-02-24 01:03:17 +00:00
|
|
|
* Copyright (c) 2018-2019 CTCaer
|
2018-11-27 09:45:43 +00:00
|
|
|
* Copyright (c) 2018 Reisyukaku
|
|
|
|
*
|
|
|
|
* 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 <stdlib.h>
|
|
|
|
|
|
|
|
#include "fe_tools.h"
|
|
|
|
#include "../config/config.h"
|
|
|
|
#include "../gfx/gfx.h"
|
|
|
|
#include "../gfx/tui.h"
|
|
|
|
#include "../hos/hos.h"
|
|
|
|
#include "../hos/pkg1.h"
|
|
|
|
#include "../hos/pkg2.h"
|
2019-02-24 01:03:17 +00:00
|
|
|
#include "../hos/sept.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "../libs/fatfs/ff.h"
|
|
|
|
#include "../mem/heap.h"
|
|
|
|
#include "../power/max7762x.h"
|
2018-12-02 09:11:07 +00:00
|
|
|
#include "../sec/se.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "../storage/nx_emmc.h"
|
2020-04-29 21:20:18 +01:00
|
|
|
#include "../storage/nx_sd.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "../storage/sdmmc.h"
|
2019-04-16 18:05:35 +01:00
|
|
|
#include "../soc/fuse.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "../utils/btn.h"
|
|
|
|
#include "../utils/util.h"
|
|
|
|
|
2019-03-07 22:02:37 +00:00
|
|
|
extern boot_cfg_t b_cfg;
|
2018-11-27 09:45:43 +00:00
|
|
|
extern hekate_config h_cfg;
|
2019-02-23 22:59:33 +00:00
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
extern void emmcsn_path_impl(char *path, char *sub_dir, char *filename, sdmmc_storage_t *storage);
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
#pragma GCC push_options
|
|
|
|
#pragma GCC optimize ("Os")
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
void dump_packages12()
|
|
|
|
{
|
|
|
|
if (!sd_mount())
|
|
|
|
return;
|
|
|
|
|
2019-04-21 15:37:12 +01:00
|
|
|
char path[64];
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
u8 *pkg1 = (u8 *)calloc(1, 0x40000);
|
|
|
|
u8 *warmboot = (u8 *)calloc(1, 0x40000);
|
|
|
|
u8 *secmon = (u8 *)calloc(1, 0x40000);
|
|
|
|
u8 *loader = (u8 *)calloc(1, 0x40000);
|
|
|
|
u8 *pkg2 = NULL;
|
2018-12-02 09:11:07 +00:00
|
|
|
u8 kb = 0;
|
|
|
|
|
|
|
|
tsec_ctxt_t tsec_ctxt;
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
sdmmc_storage_t storage;
|
|
|
|
sdmmc_t sdmmc;
|
2020-04-29 16:53:29 +01:00
|
|
|
if (!sdmmc_storage_init_mmc(&storage, &sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400))
|
2018-11-27 09:45:43 +00:00
|
|
|
{
|
|
|
|
EPRINTF("Failed to init eMMC.");
|
|
|
|
goto out_free;
|
|
|
|
}
|
2020-04-29 20:06:33 +01:00
|
|
|
sdmmc_storage_set_mmc_partition(&storage, EMMC_BOOT0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Read package1.
|
|
|
|
sdmmc_storage_read(&storage, 0x100000 / NX_EMMC_BLOCKSIZE, 0x40000 / NX_EMMC_BLOCKSIZE, pkg1);
|
|
|
|
const pkg1_id_t *pkg1_id = pkg1_identify(pkg1);
|
|
|
|
if (!pkg1_id)
|
|
|
|
{
|
2019-02-23 22:59:33 +00:00
|
|
|
EPRINTF("Unknown pkg1 version for reading\nTSEC firmware.");
|
2019-04-21 15:37:12 +01:00
|
|
|
// Dump package1.
|
|
|
|
emmcsn_path_impl(path, "/pkg1", "pkg1_enc.bin", &storage);
|
|
|
|
if (sd_save_to_file(pkg1, 0x40000, path))
|
|
|
|
goto out_free;
|
|
|
|
gfx_puts("\nEnc pkg1 dumped to pkg1_enc.bin\n");
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
goto out_free;
|
|
|
|
}
|
2019-04-21 15:37:12 +01:00
|
|
|
const pk11_hdr_t *hdr = (pk11_hdr_t *)(pkg1 + pkg1_id->pkg11_off + 0x20);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2018-12-02 09:11:07 +00:00
|
|
|
kb = pkg1_id->kb;
|
|
|
|
|
2019-04-23 01:38:35 +01:00
|
|
|
if (!h_cfg.se_keygen_done)
|
2018-11-27 09:45:43 +00:00
|
|
|
{
|
2018-12-02 09:11:07 +00:00
|
|
|
tsec_ctxt.fw = (void *)pkg1 + pkg1_id->tsec_off;
|
|
|
|
tsec_ctxt.pkg1 = (void *)pkg1;
|
|
|
|
tsec_ctxt.pkg11_off = pkg1_id->pkg11_off;
|
|
|
|
tsec_ctxt.secmon_base = pkg1_id->secmon_base;
|
|
|
|
|
2019-02-24 01:03:17 +00:00
|
|
|
if (kb >= KB_FIRMWARE_VERSION_700 && !h_cfg.sept_run)
|
|
|
|
{
|
2019-03-07 22:02:37 +00:00
|
|
|
b_cfg.autoboot = 0;
|
|
|
|
b_cfg.autoboot_list = 0;
|
2019-02-24 01:03:17 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("sept will run to get the keys.\nThen rerun this option.");
|
2019-02-24 01:03:17 +00:00
|
|
|
btn_wait();
|
|
|
|
|
2019-12-15 22:53:22 +00:00
|
|
|
if (!reboot_to_sept((u8 *)tsec_ctxt.fw, kb, NULL))
|
2019-02-24 01:03:17 +00:00
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("Failed to run sept\n");
|
2019-02-24 01:03:17 +00:00
|
|
|
goto out_free;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
// Read keyblob.
|
|
|
|
u8 *keyblob = (u8 *)calloc(NX_EMMC_BLOCKSIZE, 1);
|
2018-12-02 09:11:07 +00:00
|
|
|
sdmmc_storage_read(&storage, 0x180000 / NX_EMMC_BLOCKSIZE + kb, 1, keyblob);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Decrypt.
|
2020-04-30 02:25:51 +01:00
|
|
|
hos_keygen(keyblob, kb, &tsec_ctxt, NULL);
|
2019-04-23 01:38:35 +01:00
|
|
|
if (kb <= KB_FIRMWARE_VERSION_600)
|
|
|
|
h_cfg.se_keygen_done = 1;
|
2018-11-27 09:45:43 +00:00
|
|
|
free(keyblob);
|
|
|
|
}
|
2018-12-02 09:11:07 +00:00
|
|
|
|
|
|
|
if (kb <= KB_FIRMWARE_VERSION_600)
|
|
|
|
pkg1_decrypt(pkg1_id, pkg1);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
if (kb <= KB_FIRMWARE_VERSION_620)
|
|
|
|
{
|
|
|
|
pkg1_unpack(warmboot, secmon, loader, pkg1_id, pkg1);
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
// Display info.
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kNX Bootloader size: %k0x%05X\n\n", 0xFFC7EA46, 0xFFCCCCCC, hdr->ldr_size);
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kSecure monitor addr: %k0x%05X\n", 0xFFC7EA46, 0xFFCCCCCC, pkg1_id->secmon_base);
|
|
|
|
gfx_printf("%kSecure monitor size: %k0x%05X\n\n", 0xFFC7EA46, 0xFFCCCCCC, hdr->sm_size);
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kWarmboot addr: %k0x%05X\n", 0xFFC7EA46, 0xFFCCCCCC, pkg1_id->warmboot_base);
|
|
|
|
gfx_printf("%kWarmboot size: %k0x%05X\n\n", 0xFFC7EA46, 0xFFCCCCCC, hdr->wb_size);
|
2019-02-23 22:59:33 +00:00
|
|
|
|
|
|
|
// Dump package1.1.
|
|
|
|
emmcsn_path_impl(path, "/pkg1", "pkg1_decr.bin", &storage);
|
|
|
|
if (sd_save_to_file(pkg1, 0x40000, path))
|
|
|
|
goto out_free;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("\npkg1 dumped to pkg1_decr.bin\n");
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
// Dump nxbootloader.
|
|
|
|
emmcsn_path_impl(path, "/pkg1", "nxloader.bin", &storage);
|
|
|
|
if (sd_save_to_file(loader, hdr->ldr_size, path))
|
|
|
|
goto out_free;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("NX Bootloader dumped to nxloader.bin\n");
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
// Dump secmon.
|
|
|
|
emmcsn_path_impl(path, "/pkg1", "secmon.bin", &storage);
|
|
|
|
if (sd_save_to_file(secmon, hdr->sm_size, path))
|
|
|
|
goto out_free;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("Secure Monitor dumped to secmon.bin\n");
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
// Dump warmboot.
|
|
|
|
emmcsn_path_impl(path, "/pkg1", "warmboot.bin", &storage);
|
|
|
|
if (sd_save_to_file(warmboot, hdr->wb_size, path))
|
|
|
|
goto out_free;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("Warmboot dumped to warmboot.bin\n\n\n");
|
2019-02-23 22:59:33 +00:00
|
|
|
}
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Dump package2.1.
|
2020-04-29 20:06:33 +01:00
|
|
|
sdmmc_storage_set_mmc_partition(&storage, EMMC_GPP);
|
2018-11-27 09:45:43 +00:00
|
|
|
// Parse eMMC GPT.
|
|
|
|
LIST_INIT(gpt);
|
|
|
|
nx_emmc_gpt_parse(&gpt, &storage);
|
|
|
|
// Find package2 partition.
|
|
|
|
emmc_part_t *pkg2_part = nx_emmc_part_find(&gpt, "BCPKG2-1-Normal-Main");
|
|
|
|
if (!pkg2_part)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
// Read in package2 header and get package2 real size.
|
|
|
|
u8 *tmp = (u8 *)malloc(NX_EMMC_BLOCKSIZE);
|
|
|
|
nx_emmc_part_read(&storage, pkg2_part, 0x4000 / NX_EMMC_BLOCKSIZE, 1, tmp);
|
|
|
|
u32 *hdr_pkg2_raw = (u32 *)(tmp + 0x100);
|
|
|
|
u32 pkg2_size = hdr_pkg2_raw[0] ^ hdr_pkg2_raw[2] ^ hdr_pkg2_raw[3];
|
|
|
|
free(tmp);
|
|
|
|
// Read in package2.
|
|
|
|
u32 pkg2_size_aligned = ALIGN(pkg2_size, NX_EMMC_BLOCKSIZE);
|
|
|
|
pkg2 = malloc(pkg2_size_aligned);
|
2019-10-18 16:02:06 +01:00
|
|
|
nx_emmc_part_read(&storage, pkg2_part, 0x4000 / NX_EMMC_BLOCKSIZE,
|
2018-11-27 09:45:43 +00:00
|
|
|
pkg2_size_aligned / NX_EMMC_BLOCKSIZE, pkg2);
|
|
|
|
// Decrypt package2 and parse KIP1 blobs in INI1 section.
|
2019-09-12 21:39:47 +01:00
|
|
|
pkg2_hdr_t *pkg2_hdr = pkg2_decrypt(pkg2, kb);
|
2019-04-23 01:38:35 +01:00
|
|
|
if (!pkg2_hdr)
|
|
|
|
{
|
|
|
|
gfx_printf("Pkg2 decryption failed!\n");
|
|
|
|
goto out;
|
|
|
|
}
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Display info.
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kKernel size: %k0x%05X\n\n", 0xFFC7EA46, 0xFFCCCCCC, pkg2_hdr->sec_size[PKG2_SEC_KERNEL]);
|
|
|
|
gfx_printf("%kINI1 size: %k0x%05X\n\n", 0xFFC7EA46, 0xFFCCCCCC, pkg2_hdr->sec_size[PKG2_SEC_INI1]);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Dump pkg2.1.
|
|
|
|
emmcsn_path_impl(path, "/pkg2", "pkg2_decr.bin", &storage);
|
|
|
|
if (sd_save_to_file(pkg2, pkg2_hdr->sec_size[PKG2_SEC_KERNEL] + pkg2_hdr->sec_size[PKG2_SEC_INI1], path))
|
|
|
|
goto out;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("\npkg2 dumped to pkg2_decr.bin\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Dump kernel.
|
|
|
|
emmcsn_path_impl(path, "/pkg2", "kernel.bin", &storage);
|
|
|
|
if (sd_save_to_file(pkg2_hdr->data, pkg2_hdr->sec_size[PKG2_SEC_KERNEL], path))
|
|
|
|
goto out;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("Kernel dumped to kernel.bin\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
// Dump INI1.
|
|
|
|
emmcsn_path_impl(path, "/pkg2", "ini1.bin", &storage);
|
2019-04-21 15:37:12 +01:00
|
|
|
u32 ini1_off = pkg2_hdr->sec_size[PKG2_SEC_KERNEL];
|
|
|
|
u32 ini1_size = pkg2_hdr->sec_size[PKG2_SEC_INI1];
|
|
|
|
if (!ini1_size)
|
|
|
|
{
|
2019-09-12 21:37:00 +01:00
|
|
|
pkg2_get_newkern_info(pkg2_hdr->data);
|
|
|
|
ini1_off = pkg2_newkern_ini1_start;
|
|
|
|
ini1_size = pkg2_newkern_ini1_end - pkg2_newkern_ini1_start;
|
2019-04-21 15:37:12 +01:00
|
|
|
}
|
2020-04-14 15:40:41 +01:00
|
|
|
if (ini1_off)
|
|
|
|
{
|
|
|
|
if (sd_save_to_file(pkg2_hdr->data + ini1_off, ini1_size, path))
|
|
|
|
goto out;
|
|
|
|
gfx_puts("INI1 dumped to ini1.bin\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gfx_puts("Failed to dump INI1!\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
goto out;
|
2020-04-14 15:40:41 +01:00
|
|
|
}
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("\nDone. Press any key...\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
nx_emmc_gpt_free(&gpt);
|
|
|
|
out_free:
|
|
|
|
free(pkg1);
|
|
|
|
free(secmon);
|
|
|
|
free(warmboot);
|
|
|
|
free(loader);
|
|
|
|
free(pkg2);
|
|
|
|
sdmmc_storage_end(&storage);
|
|
|
|
sd_unmount();
|
|
|
|
|
2018-12-02 09:11:07 +00:00
|
|
|
if (kb >= KB_FIRMWARE_VERSION_620)
|
|
|
|
se_aes_key_clear(8);
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _toggle_autorcm(bool enable)
|
|
|
|
{
|
|
|
|
sdmmc_storage_t storage;
|
|
|
|
sdmmc_t sdmmc;
|
|
|
|
|
|
|
|
u8 randomXor = 0;
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2020-04-29 16:53:29 +01:00
|
|
|
if (!sdmmc_storage_init_mmc(&storage, &sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400))
|
2018-11-27 09:45:43 +00:00
|
|
|
{
|
|
|
|
EPRINTF("Failed to init eMMC.");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 *tempbuf = (u8 *)malloc(0x200);
|
2020-04-29 20:06:33 +01:00
|
|
|
sdmmc_storage_set_mmc_partition(&storage, EMMC_BOOT0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
int i, sect = 0;
|
2019-04-16 18:05:35 +01:00
|
|
|
u8 corr_mod_byte0;
|
|
|
|
if ((fuse_read_odm(4) & 3) != 3)
|
|
|
|
corr_mod_byte0 = 0xF7;
|
|
|
|
else
|
|
|
|
corr_mod_byte0 = 0x37;
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
sect = (0x200 + (0x4000 * i)) / NX_EMMC_BLOCKSIZE;
|
|
|
|
sdmmc_storage_read(&storage, sect, 1, tempbuf);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
randomXor = get_tmr_us() & 0xFF; // Bricmii style of bricking.
|
|
|
|
} while (!randomXor); // Avoid the lottery.
|
|
|
|
|
|
|
|
tempbuf[0x10] ^= randomXor;
|
|
|
|
}
|
|
|
|
else
|
2019-04-16 18:05:35 +01:00
|
|
|
tempbuf[0x10] = corr_mod_byte0;
|
2018-11-27 09:45:43 +00:00
|
|
|
sdmmc_storage_write(&storage, sect, 1, tempbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(tempbuf);
|
|
|
|
sdmmc_storage_end(&storage);
|
|
|
|
|
|
|
|
if (enable)
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kAutoRCM mode enabled!%k", 0xFFFFBA00, 0xFFCCCCCC);
|
2018-11-27 09:45:43 +00:00
|
|
|
else
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kAutoRCM mode disabled!%k", 0xFF96FF00, 0xFFCCCCCC);
|
|
|
|
gfx_printf("\n\nPress any key...\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _enable_autorcm() { _toggle_autorcm(true); }
|
|
|
|
void _disable_autorcm() { _toggle_autorcm(false); }
|
|
|
|
|
|
|
|
void menu_autorcm()
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-04-16 18:09:04 +01:00
|
|
|
if (h_cfg.rcm_patched)
|
|
|
|
{
|
|
|
|
gfx_printf("%kThis device is RCM patched and\nAutoRCM function is disabled.\n\n"
|
|
|
|
"In case %kAutoRCM%k is enabled\nthis will %kBRICK%k your device PERMANENTLY!!%k",
|
|
|
|
0xFFFFDD00, 0xFFFF0000, 0xFFFFDD00, 0xFFFF0000, 0xFFFFDD00, 0xFFCCCCCC);
|
|
|
|
btn_wait();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
// Do a simple check on the main BCT.
|
|
|
|
sdmmc_storage_t storage;
|
|
|
|
sdmmc_t sdmmc;
|
|
|
|
bool disabled = true;
|
|
|
|
|
2020-04-29 16:53:29 +01:00
|
|
|
if (!sdmmc_storage_init_mmc(&storage, &sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400))
|
2018-11-27 09:45:43 +00:00
|
|
|
{
|
|
|
|
EPRINTF("Failed to init eMMC.");
|
|
|
|
btn_wait();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 *tempbuf = (u8 *)malloc(0x200);
|
2020-04-29 20:06:33 +01:00
|
|
|
sdmmc_storage_set_mmc_partition(&storage, EMMC_BOOT0);
|
2018-11-27 09:45:43 +00:00
|
|
|
sdmmc_storage_read(&storage, 0x200 / NX_EMMC_BLOCKSIZE, 1, tempbuf);
|
|
|
|
|
2019-04-16 18:05:35 +01:00
|
|
|
if ((fuse_read_odm(4) & 3) != 3)
|
|
|
|
{
|
|
|
|
if (tempbuf[0x10] != 0xF7)
|
|
|
|
disabled = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tempbuf[0x10] != 0x37)
|
|
|
|
disabled = false;
|
|
|
|
}
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
free(tempbuf);
|
|
|
|
sdmmc_storage_end(&storage);
|
|
|
|
|
|
|
|
// Create AutoRCM menu.
|
|
|
|
ment_t *ments = (ment_t *)malloc(sizeof(ment_t) * 6);
|
|
|
|
|
|
|
|
ments[0].type = MENT_BACK;
|
|
|
|
ments[0].caption = "Back";
|
|
|
|
|
|
|
|
ments[1].type = MENT_CHGLINE;
|
|
|
|
|
|
|
|
ments[2].type = MENT_CAPTION;
|
|
|
|
ments[3].type = MENT_CHGLINE;
|
|
|
|
if (disabled)
|
|
|
|
{
|
|
|
|
ments[2].caption = "Status: Disabled!";
|
|
|
|
ments[2].color = 0xFF96FF00;
|
|
|
|
ments[4].caption = "Enable AutoRCM";
|
|
|
|
ments[4].handler = _enable_autorcm;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ments[2].caption = "Status: Enabled!";
|
|
|
|
ments[2].color = 0xFFFFBA00;
|
|
|
|
ments[4].caption = "Disable AutoRCM";
|
|
|
|
ments[4].handler = _disable_autorcm;
|
|
|
|
}
|
|
|
|
ments[4].type = MENT_HDLR_RE;
|
2018-12-16 18:21:59 +00:00
|
|
|
ments[4].data = NULL;
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
memset(&ments[5], 0, sizeof(ment_t));
|
|
|
|
menu_t menu = {ments, "This corrupts your BOOT0!", 0, 0};
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
tui_do_menu(&menu);
|
2018-11-27 09:45:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-16 14:57:49 +00:00
|
|
|
int _fix_attributes(char *path, u32 *total, u32 hos_folder, u32 check_first_run)
|
2018-11-27 09:45:43 +00:00
|
|
|
{
|
|
|
|
FRESULT res;
|
|
|
|
DIR dir;
|
|
|
|
u32 dirLength = 0;
|
|
|
|
static FILINFO fno;
|
|
|
|
|
|
|
|
if (check_first_run)
|
|
|
|
{
|
|
|
|
// Read file attributes.
|
|
|
|
res = f_stat(path, &fno);
|
|
|
|
if (res != FR_OK)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
// Check if archive bit is set.
|
|
|
|
if (fno.fattrib & AM_ARC)
|
|
|
|
{
|
|
|
|
*(u32 *)total = *(u32 *)total + 1;
|
|
|
|
f_chmod(path, 0, AM_ARC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open directory.
|
|
|
|
res = f_opendir(&dir, path);
|
|
|
|
if (res != FR_OK)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
dirLength = strlen(path);
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
// Clear file or folder path.
|
|
|
|
path[dirLength] = 0;
|
|
|
|
|
|
|
|
// Read a directory item.
|
|
|
|
res = f_readdir(&dir, &fno);
|
|
|
|
|
|
|
|
// Break on error or end of dir.
|
|
|
|
if (res != FR_OK || fno.fname[0] == 0)
|
|
|
|
break;
|
|
|
|
|
2018-12-16 14:57:49 +00:00
|
|
|
// Skip official Nintendo dir if started from root.
|
|
|
|
if (!hos_folder && !strcmp(fno.fname, "Nintendo"))
|
2018-11-27 09:45:43 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Set new directory or file.
|
|
|
|
memcpy(&path[dirLength], "/", 1);
|
|
|
|
memcpy(&path[dirLength + 1], fno.fname, strlen(fno.fname) + 1);
|
|
|
|
|
|
|
|
// Check if archive bit is set.
|
|
|
|
if (fno.fattrib & AM_ARC)
|
|
|
|
{
|
2018-12-16 14:57:49 +00:00
|
|
|
*total = *total + 1;
|
2018-11-27 09:45:43 +00:00
|
|
|
f_chmod(path, 0, AM_ARC);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is it a directory?
|
|
|
|
if (fno.fattrib & AM_DIR)
|
|
|
|
{
|
2018-12-16 14:57:49 +00:00
|
|
|
// Set archive bit to NCA folders.
|
|
|
|
if (hos_folder && !strcmp(fno.fname + strlen(fno.fname) - 4, ".nca"))
|
|
|
|
{
|
|
|
|
*total = *total + 1;
|
|
|
|
f_chmod(path, AM_ARC, AM_ARC);
|
|
|
|
}
|
2019-04-14 00:41:29 +01:00
|
|
|
|
|
|
|
// Update status bar.
|
|
|
|
tui_sbar(false);
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
// Enter the directory.
|
2018-12-16 14:57:49 +00:00
|
|
|
res = _fix_attributes(path, total, hos_folder, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
if (res != FR_OK)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f_closedir(&dir);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _fix_sd_attr(u32 type)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
char path[256];
|
2018-12-16 14:57:49 +00:00
|
|
|
char label[16];
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
u32 total = 0;
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case 0:
|
2019-12-04 13:56:53 +00:00
|
|
|
strcpy(path, "/");
|
|
|
|
strcpy(label, "SD Card");
|
2018-11-27 09:45:43 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
default:
|
2019-12-04 13:56:53 +00:00
|
|
|
strcpy(path, "/Nintendo");
|
|
|
|
strcpy(label, "Nintendo folder");
|
2018-11-27 09:45:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("Traversing all %s files!\nThis may take some time...\n\n", label);
|
2018-12-16 14:57:49 +00:00
|
|
|
_fix_attributes(path, &total, type, type);
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kTotal archive bits cleared: %d!%k\n\nDone! Press any key...", 0xFF96FF00, total, 0xFFCCCCCC);
|
2018-11-27 09:45:43 +00:00
|
|
|
sd_unmount();
|
|
|
|
}
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
2018-12-16 14:57:49 +00:00
|
|
|
void fix_sd_all_attr() { _fix_sd_attr(0); }
|
|
|
|
void fix_sd_nin_attr() { _fix_sd_attr(1); }
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
/* void fix_fuel_gauge_configuration()
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
int battVoltage, avgCurrent;
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_VCELL, &battVoltage);
|
|
|
|
max17050_get_property(MAX17050_AvgCurrent, &avgCurrent);
|
|
|
|
|
|
|
|
// Check if still charging. If not, check if battery is >= 95% (4.1V).
|
|
|
|
if (avgCurrent < 0 && battVoltage > 4100)
|
|
|
|
{
|
|
|
|
if ((avgCurrent / 1000) < -10)
|
|
|
|
EPRINTF("You need to be connected to a wall adapter,\nto apply this fix!");
|
|
|
|
else
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kAre you really sure?\nThis will reset your fuel gauge completely!\n", 0xFFFFDD00);
|
|
|
|
gfx_printf("Additionally this will power off your console.\n%k", 0xFFCCCCCC);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("\nPress POWER to Continue.\nPress VOL to go to the menu.\n\n\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
u32 btn = btn_wait();
|
|
|
|
if (btn & BTN_POWER)
|
|
|
|
{
|
|
|
|
max17050_fix_configuration();
|
|
|
|
msleep(1000);
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_con_getpos(&gfx_con.savedx, &gfx_con.savedy);
|
2018-11-27 09:45:43 +00:00
|
|
|
u16 value = 0;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%kThe console will power off in 45 seconds.\n%k", 0xFFFFDD00, 0xFFCCCCCC);
|
2018-11-27 09:45:43 +00:00
|
|
|
while (value < 46)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_con_setpos(gfx_con.savedx, gfx_con.savedy);
|
|
|
|
gfx_printf("%2ds elapsed", value);
|
2018-11-27 09:45:43 +00:00
|
|
|
msleep(1000);
|
|
|
|
value++;
|
|
|
|
}
|
|
|
|
msleep(2000);
|
|
|
|
|
|
|
|
power_off();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
EPRINTF("You need a fully charged battery\nand connected to a wall adapter,\nto apply this fix!");
|
|
|
|
|
|
|
|
msleep(500);
|
|
|
|
btn_wait();
|
|
|
|
} */
|
|
|
|
|
|
|
|
/*void reset_pmic_fuel_gauge_charger_config()
|
|
|
|
{
|
|
|
|
int avgCurrent;
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("%k\nThis will wipe your battery stats completely!\n"
|
2018-11-27 09:45:43 +00:00
|
|
|
"%kAnd it may not power on without physically\nremoving and re-inserting the battery.\n%k"
|
|
|
|
"\nAre you really sure?%k\n", 0xFFFFDD00, 0xFFFF0000, 0xFFFFDD00, 0xFFCCCCCC);
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_puts("\nPress POWER to Continue.\nPress VOL to go to the menu.\n\n\n");
|
2018-11-27 09:45:43 +00:00
|
|
|
u32 btn = btn_wait();
|
|
|
|
if (btn & BTN_POWER)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
|
|
|
gfx_con_setpos(0, 0);
|
|
|
|
gfx_printf("%kKeep the USB cable connected!%k\n\n", 0xFFFFDD00, 0xFFCCCCCC);
|
|
|
|
gfx_con_getpos(&gfx_con.savedx, &gfx_con.savedy);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
u8 value = 30;
|
|
|
|
while (value > 0)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_con_setpos(gfx_con.savedx, gfx_con.savedy);
|
|
|
|
gfx_printf("%kWait... (%ds) %k", 0xFF888888, value, 0xFFCCCCCC);
|
2018-11-27 09:45:43 +00:00
|
|
|
msleep(1000);
|
|
|
|
value--;
|
|
|
|
}
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_con_setpos(gfx_con.savedx, gfx_con.savedy);
|
2018-11-27 09:45:43 +00:00
|
|
|
|
|
|
|
//Check if still connected.
|
|
|
|
max17050_get_property(MAX17050_AvgCurrent, &avgCurrent);
|
|
|
|
if ((avgCurrent / 1000) < -10)
|
|
|
|
EPRINTF("You need to be connected to a wall adapter\nor PC to apply this fix!");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Apply fix.
|
|
|
|
bq24193_fake_battery_removal();
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf("Done! \n"
|
2018-11-27 09:45:43 +00:00
|
|
|
"%k1. Remove the USB cable\n"
|
|
|
|
"2. Press POWER for 15s.\n"
|
|
|
|
"3. Reconnect the USB to power-on!%k\n", 0xFFFFDD00, 0xFFCCCCCC);
|
|
|
|
}
|
|
|
|
msleep(500);
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
#pragma GCC pop_options
|