2018-05-01 06:15:48 +01:00
|
|
|
/*
|
2018-08-05 12:40:32 +01:00
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
2019-02-23 23:06:24 +00:00
|
|
|
* Copyright (c) 2018-2019 CTCaer
|
2018-08-05 12:40:32 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
2018-05-01 12:17:13 +01:00
|
|
|
#include <stdlib.h>
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "config/config.h"
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "gfx/di.h"
|
|
|
|
#include "gfx/gfx.h"
|
|
|
|
#include "gfx/logos.h"
|
|
|
|
#include "gfx/tui.h"
|
|
|
|
#include "hos/hos.h"
|
2019-04-14 02:24:37 +01:00
|
|
|
#include "hos/secmon_exo.h"
|
2019-02-24 01:03:17 +00:00
|
|
|
#include "hos/sept.h"
|
2018-08-21 02:12:03 +01:00
|
|
|
#include "ianos/ianos.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "libs/compr/blz.h"
|
|
|
|
#include "libs/fatfs/ff.h"
|
|
|
|
#include "mem/heap.h"
|
2019-06-30 01:49:33 +01:00
|
|
|
#include "mem/minerva.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "mem/sdram.h"
|
|
|
|
#include "power/max77620.h"
|
2019-02-11 22:45:27 +00:00
|
|
|
#include "rtc/max77620-rtc.h"
|
2019-06-30 01:55:19 +01:00
|
|
|
#include "soc/bpmp.h"
|
2019-04-16 18:09:04 +01:00
|
|
|
#include "soc/fuse.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "soc/hw_init.h"
|
|
|
|
#include "soc/i2c.h"
|
|
|
|
#include "soc/t210.h"
|
|
|
|
#include "soc/uart.h"
|
2019-06-30 01:24:58 +01:00
|
|
|
#include "storage/emummc.h"
|
2019-04-16 18:09:04 +01:00
|
|
|
#include "storage/nx_emmc.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "storage/sdmmc.h"
|
|
|
|
#include "utils/btn.h"
|
2018-08-21 02:37:40 +01:00
|
|
|
#include "utils/dirlist.h"
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "utils/list.h"
|
|
|
|
#include "utils/util.h"
|
2018-08-07 15:53:58 +01:00
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
#include "frontend/fe_emmc_tools.h"
|
|
|
|
#include "frontend/fe_tools.h"
|
|
|
|
#include "frontend/fe_info.h"
|
2018-08-21 02:41:16 +01:00
|
|
|
|
2018-05-13 23:38:10 +01:00
|
|
|
//TODO: ugly.
|
|
|
|
sdmmc_t sd_sdmmc;
|
|
|
|
sdmmc_storage_t sd_storage;
|
|
|
|
FATFS sd_fs;
|
2018-09-18 21:47:37 +01:00
|
|
|
static bool sd_mounted;
|
2018-05-13 23:38:10 +01:00
|
|
|
|
2018-06-19 15:10:59 +01:00
|
|
|
#ifdef MENU_LOGO_ENABLE
|
|
|
|
u8 *Kc_MENU_LOGO;
|
|
|
|
#endif //MENU_LOGO_ENABLE
|
|
|
|
|
2018-07-01 18:45:25 +01:00
|
|
|
hekate_config h_cfg;
|
2019-03-07 21:41:07 +00:00
|
|
|
boot_cfg_t __attribute__((section ("._boot_cfg"))) b_cfg;
|
|
|
|
const volatile ipl_ver_meta_t __attribute__((section ("._ipl_version"))) ipl_ver = {
|
|
|
|
.magic = BL_MAGIC,
|
|
|
|
.version = (BL_VER_MJ + '0') | ((BL_VER_MN + '0') << 8) | ((BL_VER_HF + '0') << 16),
|
|
|
|
.rsvd0 = 0,
|
|
|
|
.rsvd1 = 0
|
|
|
|
};
|
2018-07-01 18:45:25 +01:00
|
|
|
|
2019-06-30 01:55:19 +01:00
|
|
|
volatile nyx_storage_t *nyx_str = (nyx_storage_t *)NYX_STORAGE_ADDR;
|
|
|
|
|
2018-08-13 10:12:53 +01:00
|
|
|
bool sd_mount()
|
2018-05-13 23:38:10 +01:00
|
|
|
{
|
|
|
|
if (sd_mounted)
|
2018-08-13 10:12:53 +01:00
|
|
|
return true;
|
2018-05-13 23:38:10 +01:00
|
|
|
|
2018-05-15 18:15:22 +01:00
|
|
|
if (!sdmmc_storage_init_sd(&sd_storage, &sd_sdmmc, SDMMC_1, SDMMC_BUS_WIDTH_4, 11))
|
2018-05-13 23:38:10 +01:00
|
|
|
{
|
2018-09-18 21:47:37 +01:00
|
|
|
EPRINTF("Failed to init SD card.\nMake sure that it is inserted.\nOr that SD reader is properly seated!");
|
2018-05-15 18:15:22 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
res = f_mount(&sd_fs, "", 1);
|
|
|
|
if (res == FR_OK)
|
|
|
|
{
|
|
|
|
sd_mounted = 1;
|
2018-08-13 10:12:53 +01:00
|
|
|
return true;
|
2018-05-15 18:15:22 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-10 14:59:03 +01:00
|
|
|
EPRINTFARGS("Failed to mount SD card (FatFS Error %d).\nMake sure that a FAT partition exists..", res);
|
2018-05-15 18:15:22 +01:00
|
|
|
}
|
2018-05-13 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
2018-08-13 10:12:53 +01:00
|
|
|
return false;
|
2018-05-13 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
2018-05-17 17:38:27 +01:00
|
|
|
void sd_unmount()
|
|
|
|
{
|
|
|
|
if (sd_mounted)
|
|
|
|
{
|
|
|
|
f_mount(NULL, "", 1);
|
|
|
|
sdmmc_storage_end(&sd_storage);
|
2018-08-13 10:12:53 +01:00
|
|
|
sd_mounted = false;
|
2018-05-17 17:38:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 21:35:43 +00:00
|
|
|
void *sd_file_read(const char *path, u32 *fsize)
|
2018-05-13 23:38:10 +01:00
|
|
|
{
|
|
|
|
FIL fp;
|
|
|
|
if (f_open(&fp, path, FA_READ) != FR_OK)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
u32 size = f_size(&fp);
|
2019-03-16 21:35:43 +00:00
|
|
|
if (fsize)
|
|
|
|
*fsize = size;
|
|
|
|
|
2018-05-13 23:38:10 +01:00
|
|
|
void *buf = malloc(size);
|
|
|
|
|
2019-03-16 21:35:43 +00:00
|
|
|
if (f_read(&fp, buf, size, NULL) != FR_OK)
|
2018-05-13 23:38:10 +01:00
|
|
|
{
|
2019-03-16 21:35:43 +00:00
|
|
|
free(buf);
|
|
|
|
f_close(&fp);
|
2018-05-13 23:38:10 +01:00
|
|
|
|
2019-03-16 21:35:43 +00:00
|
|
|
return NULL;
|
2018-05-13 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
int sd_save_to_file(void *buf, u32 size, const char *filename)
|
2018-05-19 00:05:28 +01:00
|
|
|
{
|
|
|
|
FIL fp;
|
2018-06-23 05:04:41 +01:00
|
|
|
u32 res = 0;
|
2018-06-26 17:00:46 +01:00
|
|
|
res = f_open(&fp, filename, FA_CREATE_ALWAYS | FA_WRITE);
|
2018-08-05 12:40:32 +01:00
|
|
|
if (res)
|
|
|
|
{
|
2018-07-01 02:56:58 +01:00
|
|
|
EPRINTFARGS("Error (%d) creating file\n%s.\n", res, filename);
|
2019-06-30 01:15:46 +01:00
|
|
|
return res;
|
2018-05-19 00:05:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
f_write(&fp, buf, size, NULL);
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-07-22 13:24:09 +01:00
|
|
|
void emmcsn_path_impl(char *path, char *sub_dir, char *filename, sdmmc_storage_t *storage)
|
|
|
|
{
|
|
|
|
sdmmc_storage_t storage2;
|
|
|
|
sdmmc_t sdmmc;
|
|
|
|
char emmcSN[9];
|
2018-08-13 10:12:53 +01:00
|
|
|
bool init_done = false;
|
2018-07-22 13:24:09 +01:00
|
|
|
|
2018-08-21 02:21:09 +01:00
|
|
|
memcpy(path, "backup", 7);
|
2018-07-22 13:24:09 +01:00
|
|
|
f_mkdir(path);
|
|
|
|
|
|
|
|
if (!storage)
|
|
|
|
{
|
|
|
|
if (!sdmmc_storage_init_mmc(&storage2, &sdmmc, SDMMC_4, SDMMC_BUS_WIDTH_8, 4))
|
|
|
|
memcpy(emmcSN, "00000000", 9);
|
|
|
|
else
|
|
|
|
{
|
2018-08-13 10:12:53 +01:00
|
|
|
init_done = true;
|
2018-07-22 13:24:09 +01:00
|
|
|
itoa(storage2.cid.serial, emmcSN, 16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
itoa(storage->cid.serial, emmcSN, 16);
|
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
u32 sub_dir_len = strlen(sub_dir); // Can be a null-terminator.
|
|
|
|
u32 filename_len = strlen(filename); // Can be a null-terminator.
|
2018-07-22 13:24:09 +01:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
memcpy(path + strlen(path), "/", 2);
|
2018-07-22 13:24:09 +01:00
|
|
|
memcpy(path + strlen(path), emmcSN, 9);
|
|
|
|
f_mkdir(path);
|
|
|
|
memcpy(path + strlen(path), sub_dir, sub_dir_len + 1);
|
|
|
|
if (sub_dir_len)
|
|
|
|
f_mkdir(path);
|
|
|
|
memcpy(path + strlen(path), "/", 2);
|
|
|
|
memcpy(path + strlen(path), filename, filename_len + 1);
|
|
|
|
|
|
|
|
if (init_done)
|
|
|
|
sdmmc_storage_end(&storage2);
|
|
|
|
}
|
|
|
|
|
2018-09-18 22:34:05 +01:00
|
|
|
void check_power_off_from_hos()
|
|
|
|
{
|
|
|
|
// Power off on AutoRCM wakeup from HOS shutdown. For modchips/dongles.
|
|
|
|
u8 hosWakeup = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_IRQTOP);
|
|
|
|
if (hosWakeup & MAX77620_IRQ_TOP_RTC_MASK)
|
|
|
|
{
|
2018-09-24 21:45:06 +01:00
|
|
|
sd_unmount();
|
2019-02-11 22:45:27 +00:00
|
|
|
|
|
|
|
// Stop the alarm, in case we injected too fast.
|
|
|
|
max77620_rtc_stop_alarm();
|
|
|
|
|
2018-09-30 00:09:18 +01:00
|
|
|
if (h_cfg.autohosoff == 1)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
2018-11-27 09:45:43 +00:00
|
|
|
u8 *BOOTLOGO = (void *)malloc(0x4000);
|
|
|
|
blz_uncompress_srcdest(BOOTLOGO_BLZ, SZ_BOOTLOGO_BLZ, BOOTLOGO, SZ_BOOTLOGO);
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_set_rect_grey(BOOTLOGO, X_BOOTLOGO, Y_BOOTLOGO, 326, 544);
|
2018-05-24 22:37:30 +01:00
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
display_backlight_brightness(10, 5000);
|
|
|
|
display_backlight_brightness(100, 25000);
|
2019-03-07 22:19:04 +00:00
|
|
|
msleep(600);
|
2018-11-27 09:45:43 +00:00
|
|
|
display_backlight_brightness(0, 20000);
|
|
|
|
}
|
|
|
|
power_off();
|
|
|
|
}
|
2018-05-13 02:13:17 +01:00
|
|
|
}
|
|
|
|
|
2018-08-23 03:05:31 +01:00
|
|
|
// This is a safe and unused DRAM region for our payloads.
|
2019-03-07 22:23:19 +00:00
|
|
|
#define RELOC_META_OFF 0x7C
|
|
|
|
#define PATCHED_RELOC_SZ 0x94
|
|
|
|
#define PATCHED_RELOC_STACK 0x40007000
|
|
|
|
#define PATCHED_RELOC_ENTRY 0x40010000
|
|
|
|
#define EXT_PAYLOAD_ADDR 0xC03C0000
|
|
|
|
#define RCM_PAYLOAD_ADDR (EXT_PAYLOAD_ADDR + ALIGN(PATCHED_RELOC_SZ, 0x10))
|
|
|
|
#define COREBOOT_ADDR (0xD0000000 - 0x100000)
|
|
|
|
#define CBFS_DRAM_EN_ADDR 0x4003e000
|
|
|
|
#define CBFS_DRAM_MAGIC 0x4452414D // "DRAM"
|
2018-08-23 03:05:31 +01:00
|
|
|
|
2019-02-24 01:03:17 +00:00
|
|
|
void reloc_patcher(u32 payload_dst, u32 payload_src, u32 payload_size)
|
2018-08-23 03:05:31 +01:00
|
|
|
{
|
2019-02-24 01:03:17 +00:00
|
|
|
memcpy((u8 *)payload_src, (u8 *)IPL_LOAD_ADDR, PATCHED_RELOC_SZ);
|
2018-08-23 03:05:31 +01:00
|
|
|
|
2019-03-07 22:23:19 +00:00
|
|
|
volatile reloc_meta_t *relocator = (reloc_meta_t *)(payload_src + RELOC_META_OFF);
|
|
|
|
|
|
|
|
relocator->start = payload_dst - ALIGN(PATCHED_RELOC_SZ, 0x10);
|
|
|
|
relocator->stack = PATCHED_RELOC_STACK;
|
|
|
|
relocator->end = payload_dst + payload_size;
|
|
|
|
relocator->ep = payload_dst;
|
2018-08-23 03:05:31 +01:00
|
|
|
|
|
|
|
if (payload_size == 0x7000)
|
|
|
|
{
|
2019-02-24 01:03:17 +00:00
|
|
|
memcpy((u8 *)(payload_src + ALIGN(PATCHED_RELOC_SZ, 0x10)), (u8 *)COREBOOT_ADDR, 0x7000); //Bootblock
|
2019-03-07 22:23:19 +00:00
|
|
|
*(vu32 *)CBFS_DRAM_EN_ADDR = CBFS_DRAM_MAGIC;
|
2018-08-23 03:05:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 21:53:58 +00:00
|
|
|
bool is_ipl_updated(void *buf)
|
|
|
|
{
|
|
|
|
ipl_ver_meta_t *update_ft = (ipl_ver_meta_t *)(buf + PATCHED_RELOC_SZ + sizeof(boot_cfg_t));
|
|
|
|
|
|
|
|
if (update_ft->magic == ipl_ver.magic)
|
|
|
|
{
|
|
|
|
if (byte_swap_32(update_ft->version) <= byte_swap_32(ipl_ver.version))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-23 03:05:31 +01:00
|
|
|
int launch_payload(char *path, bool update)
|
|
|
|
{
|
2019-03-07 21:53:58 +00:00
|
|
|
if (!update)
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-08-23 03:05:31 +01:00
|
|
|
if (!path)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
|
|
|
FIL fp;
|
|
|
|
if (f_open(&fp, path, FA_READ))
|
|
|
|
{
|
|
|
|
EPRINTFARGS("Payload file is missing!\n(%s)", path);
|
|
|
|
sd_unmount();
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read and copy the payload to our chosen address
|
|
|
|
void *buf;
|
|
|
|
u32 size = f_size(&fp);
|
|
|
|
|
|
|
|
if (size < 0x30000)
|
|
|
|
buf = (void *)RCM_PAYLOAD_ADDR;
|
|
|
|
else
|
|
|
|
buf = (void *)COREBOOT_ADDR;
|
|
|
|
|
|
|
|
if (f_read(&fp, buf, size, NULL))
|
|
|
|
{
|
|
|
|
f_close(&fp);
|
|
|
|
sd_unmount();
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_close(&fp);
|
2019-02-23 22:59:33 +00:00
|
|
|
free(path);
|
|
|
|
|
2019-03-07 21:53:58 +00:00
|
|
|
if (update && is_ipl_updated(buf))
|
|
|
|
return 1;
|
2019-02-24 01:04:28 +00:00
|
|
|
|
2018-08-23 03:05:31 +01:00
|
|
|
sd_unmount();
|
|
|
|
|
|
|
|
if (size < 0x30000)
|
|
|
|
{
|
2019-03-07 21:53:58 +00:00
|
|
|
if (update)
|
|
|
|
memcpy((u8 *)(RCM_PAYLOAD_ADDR + PATCHED_RELOC_SZ), &b_cfg, sizeof(boot_cfg_t)); // Transfer boot cfg.
|
2019-02-24 00:43:13 +00:00
|
|
|
else
|
2019-03-07 21:53:58 +00:00
|
|
|
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, ALIGN(size, 0x10));
|
2019-02-24 01:03:17 +00:00
|
|
|
|
2018-09-18 22:46:32 +01:00
|
|
|
reconfig_hw_workaround(false, byte_swap_32(*(u32 *)(buf + size - sizeof(u32))));
|
2018-08-23 03:05:31 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-07 22:23:19 +00:00
|
|
|
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, 0x7000);
|
2018-09-18 22:46:32 +01:00
|
|
|
reconfig_hw_workaround(true, 0);
|
2018-08-23 03:05:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-07 22:23:19 +00:00
|
|
|
void (*ext_payload_ptr)() = (void *)EXT_PAYLOAD_ADDR;
|
|
|
|
void (*update_ptr)() = (void *)RCM_PAYLOAD_ADDR;
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
msleep(100);
|
|
|
|
|
2018-08-23 03:05:31 +01:00
|
|
|
// Launch our payload.
|
2018-12-16 17:04:46 +00:00
|
|
|
if (!update)
|
|
|
|
(*ext_payload_ptr)();
|
|
|
|
else
|
2019-03-07 22:08:39 +00:00
|
|
|
{
|
|
|
|
EMC(EMC_SCRATCH0) |= EMC_HEKA_UPD;
|
2018-12-16 17:04:46 +00:00
|
|
|
(*update_ptr)();
|
2019-03-07 22:08:39 +00:00
|
|
|
}
|
2018-08-23 03:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-21 02:41:16 +01:00
|
|
|
void auto_launch_update()
|
|
|
|
{
|
2019-03-07 21:53:58 +00:00
|
|
|
if (EMC(EMC_SCRATCH0) & EMC_HEKA_UPD)
|
|
|
|
EMC(EMC_SCRATCH0) &= ~EMC_HEKA_UPD;
|
|
|
|
else if (sd_mount())
|
2018-08-21 02:41:16 +01:00
|
|
|
{
|
2019-03-07 21:53:58 +00:00
|
|
|
if (!f_stat("bootloader/update.bin", NULL))
|
|
|
|
launch_payload("bootloader/update.bin", true);
|
2018-08-21 02:41:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
void launch_tools()
|
2018-08-21 02:45:19 +01:00
|
|
|
{
|
|
|
|
u8 max_entries = 61;
|
|
|
|
char *filelist = NULL;
|
|
|
|
char *file_sec = NULL;
|
2018-11-20 19:32:54 +00:00
|
|
|
char *dir = NULL;
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
ment_t *ments = (ment_t *)malloc(sizeof(ment_t) * (max_entries + 3));
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
|
|
|
dir = (char *)malloc(256);
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
memcpy(dir, "bootloader/payloads", 20);
|
2018-08-21 02:45:19 +01:00
|
|
|
|
2018-11-09 00:09:14 +00:00
|
|
|
filelist = dirlist(dir, NULL, false);
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
u32 i = 0;
|
|
|
|
|
|
|
|
if (filelist)
|
|
|
|
{
|
|
|
|
// Build configuration menu.
|
|
|
|
ments[0].type = MENT_BACK;
|
|
|
|
ments[0].caption = "Back";
|
|
|
|
ments[1].type = MENT_CHGLINE;
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
if (i > max_entries || !filelist[i * 256])
|
|
|
|
break;
|
|
|
|
ments[i + 2].type = INI_CHOICE;
|
|
|
|
ments[i + 2].caption = &filelist[i * 256];
|
|
|
|
ments[i + 2].data = &filelist[i * 256];
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
{
|
|
|
|
memset(&ments[i + 2], 0, sizeof(ment_t));
|
2019-06-30 01:15:46 +01:00
|
|
|
menu_t menu = { ments, "Choose a file to launch", 0, 0 };
|
2018-08-21 02:45:19 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
file_sec = (char *)tui_do_menu(&menu);
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
if (!file_sec)
|
|
|
|
{
|
|
|
|
free(ments);
|
2018-11-20 19:32:54 +00:00
|
|
|
free(dir);
|
2018-08-21 02:45:19 +01:00
|
|
|
free(filelist);
|
|
|
|
sd_unmount();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2019-03-07 22:08:39 +00:00
|
|
|
EPRINTF("No payloads or modules found.");
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
free(ments);
|
|
|
|
free(filelist);
|
|
|
|
}
|
|
|
|
else
|
2018-08-23 02:37:02 +01:00
|
|
|
{
|
|
|
|
free(ments);
|
2018-08-21 02:45:19 +01:00
|
|
|
goto out;
|
2018-08-23 02:37:02 +01:00
|
|
|
}
|
|
|
|
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
if (file_sec)
|
|
|
|
{
|
|
|
|
memcpy(dir + strlen(dir), "/", 2);
|
|
|
|
memcpy(dir + strlen(dir), file_sec, strlen(file_sec) + 1);
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
if (launch_payload(dir, false))
|
2018-08-21 02:45:19 +01:00
|
|
|
{
|
2019-06-30 01:15:46 +01:00
|
|
|
EPRINTF("Failed to launch payload.");
|
|
|
|
free(dir);
|
2018-08-21 02:45:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
sd_unmount();
|
2018-11-20 19:32:54 +00:00
|
|
|
free(dir);
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
void ini_list_launcher()
|
2018-05-01 06:15:48 +01:00
|
|
|
{
|
2018-07-01 18:29:30 +01:00
|
|
|
u8 max_entries = 61;
|
2018-08-21 02:37:40 +01:00
|
|
|
char *payload_path = NULL;
|
2018-06-13 00:34:32 +01:00
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
ini_sec_t *cfg_tmp = NULL;
|
2018-05-01 06:15:48 +01:00
|
|
|
ini_sec_t *cfg_sec = NULL;
|
2018-08-21 02:37:40 +01:00
|
|
|
LIST_INIT(ini_list_sections);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
2018-08-21 02:37:40 +01:00
|
|
|
if (ini_parse(&ini_list_sections, "bootloader/ini", true))
|
2018-05-01 06:15:48 +01:00
|
|
|
{
|
2018-06-13 00:34:32 +01:00
|
|
|
// Build configuration menu.
|
2018-07-01 18:29:30 +01:00
|
|
|
ment_t *ments = (ment_t *)malloc(sizeof(ment_t) * (max_entries + 3));
|
2018-05-01 06:15:48 +01:00
|
|
|
ments[0].type = MENT_BACK;
|
|
|
|
ments[0].caption = "Back";
|
2018-07-01 18:29:30 +01:00
|
|
|
ments[1].type = MENT_CHGLINE;
|
|
|
|
|
|
|
|
u32 i = 2;
|
2018-08-21 02:37:40 +01:00
|
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_list_sections, link)
|
2018-05-01 06:15:48 +01:00
|
|
|
{
|
2018-07-01 18:29:30 +01:00
|
|
|
if (!strcmp(ini_sec->name, "config") ||
|
|
|
|
ini_sec->type == INI_COMMENT || ini_sec->type == INI_NEWLINE)
|
2018-05-01 06:15:48 +01:00
|
|
|
continue;
|
2018-07-01 18:29:30 +01:00
|
|
|
ments[i].type = ini_sec->type;
|
2018-05-01 06:15:48 +01:00
|
|
|
ments[i].caption = ini_sec->name;
|
|
|
|
ments[i].data = ini_sec;
|
2018-07-01 18:29:30 +01:00
|
|
|
if (ini_sec->type == MENT_CAPTION)
|
|
|
|
ments[i].color = ini_sec->color;
|
2018-05-01 06:15:48 +01:00
|
|
|
i++;
|
2018-06-13 00:34:32 +01:00
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
if ((i - 1) > max_entries)
|
2018-06-13 00:34:32 +01:00
|
|
|
break;
|
2018-05-01 06:15:48 +01:00
|
|
|
}
|
2018-07-01 18:29:30 +01:00
|
|
|
if (i > 2)
|
2018-08-21 02:37:40 +01:00
|
|
|
{
|
|
|
|
memset(&ments[i], 0, sizeof(ment_t));
|
|
|
|
menu_t menu = {
|
|
|
|
ments, "Launch ini configurations", 0, 0
|
|
|
|
};
|
2019-02-24 00:43:13 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
cfg_tmp = (ini_sec_t *)tui_do_menu(&menu);
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
if (cfg_tmp)
|
|
|
|
{
|
|
|
|
u32 non_cfg = 1;
|
|
|
|
for (int j = 2; j < i; j++)
|
|
|
|
{
|
|
|
|
if (ments[j].type != INI_CHOICE)
|
|
|
|
non_cfg++;
|
|
|
|
|
|
|
|
if (ments[j].data == cfg_tmp)
|
|
|
|
{
|
2019-03-07 21:41:07 +00:00
|
|
|
b_cfg.boot_cfg = BOOT_CFG_FROM_LAUNCH;
|
|
|
|
b_cfg.autoboot = j - non_cfg;
|
|
|
|
b_cfg.autoboot_list = 1;
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 01:03:17 +00:00
|
|
|
payload_path = ini_check_payload_section(cfg_tmp);
|
|
|
|
|
|
|
|
if (cfg_tmp && !payload_path)
|
|
|
|
check_sept();
|
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
cfg_sec = ini_clone_section(cfg_tmp);
|
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
if (!cfg_sec)
|
|
|
|
{
|
|
|
|
free(ments);
|
|
|
|
ini_free(&ini_list_sections);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2019-03-07 22:08:39 +00:00
|
|
|
EPRINTF("No extra configs found.");
|
2018-08-21 02:37:40 +01:00
|
|
|
free(ments);
|
2018-08-23 02:37:02 +01:00
|
|
|
ini_free(&ini_list_sections);
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
|
|
|
else
|
2019-02-24 00:43:13 +00:00
|
|
|
EPRINTF("Could not find any ini\nin bootloader/ini!");
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!cfg_sec)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (payload_path)
|
|
|
|
{
|
|
|
|
ini_free_section(cfg_sec);
|
2018-08-23 03:05:31 +01:00
|
|
|
if (launch_payload(payload_path, false))
|
|
|
|
{
|
2018-08-21 02:37:40 +01:00
|
|
|
EPRINTF("Failed to launch payload.");
|
|
|
|
free(payload_path);
|
2018-08-23 03:05:31 +01:00
|
|
|
}
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
|
|
|
else if (!hos_launch(cfg_sec))
|
|
|
|
{
|
|
|
|
EPRINTF("Failed to launch firmware.");
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
ini_free_section(cfg_sec);
|
|
|
|
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
void launch_firmware()
|
|
|
|
{
|
|
|
|
u8 max_entries = 61;
|
2018-08-21 02:45:19 +01:00
|
|
|
char *payload_path = NULL;
|
2018-08-21 02:37:40 +01:00
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
ini_sec_t *cfg_tmp = NULL;
|
2018-08-21 02:37:40 +01:00
|
|
|
ini_sec_t *cfg_sec = NULL;
|
|
|
|
LIST_INIT(ini_sections);
|
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-08-21 02:37:40 +01:00
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
|
|
|
if (ini_parse(&ini_sections, "bootloader/hekate_ipl.ini", false))
|
|
|
|
{
|
|
|
|
// Build configuration menu.
|
2018-08-21 02:45:19 +01:00
|
|
|
ment_t *ments = (ment_t *)malloc(sizeof(ment_t) * (max_entries + 6));
|
2018-08-21 02:37:40 +01:00
|
|
|
ments[0].type = MENT_BACK;
|
|
|
|
ments[0].caption = "Back";
|
|
|
|
ments[1].type = MENT_CHGLINE;
|
|
|
|
|
|
|
|
ments[2].type = MENT_HANDLER;
|
2018-08-21 02:45:19 +01:00
|
|
|
ments[2].caption = "Payloads...";
|
2019-06-30 01:15:46 +01:00
|
|
|
ments[2].handler = launch_tools;
|
2018-08-21 02:45:19 +01:00
|
|
|
ments[3].type = MENT_HANDLER;
|
|
|
|
ments[3].caption = "More configs...";
|
|
|
|
ments[3].handler = ini_list_launcher;
|
2018-08-21 02:37:40 +01:00
|
|
|
|
2018-08-21 02:45:19 +01:00
|
|
|
ments[4].type = MENT_CHGLINE;
|
2018-08-21 02:37:40 +01:00
|
|
|
|
2018-08-21 02:45:19 +01:00
|
|
|
u32 i = 5;
|
2018-08-21 02:37:40 +01:00
|
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_sections, link)
|
|
|
|
{
|
|
|
|
if (!strcmp(ini_sec->name, "config") ||
|
|
|
|
ini_sec->type == INI_COMMENT || ini_sec->type == INI_NEWLINE)
|
|
|
|
continue;
|
|
|
|
ments[i].type = ini_sec->type;
|
|
|
|
ments[i].caption = ini_sec->name;
|
|
|
|
ments[i].data = ini_sec;
|
|
|
|
if (ini_sec->type == MENT_CAPTION)
|
|
|
|
ments[i].color = ini_sec->color;
|
|
|
|
i++;
|
|
|
|
|
2018-08-21 02:45:19 +01:00
|
|
|
if ((i - 4) > max_entries)
|
2018-08-21 02:37:40 +01:00
|
|
|
break;
|
|
|
|
}
|
2018-09-18 21:47:37 +01:00
|
|
|
if (i < 6)
|
2018-05-01 06:15:48 +01:00
|
|
|
{
|
2018-09-18 21:47:37 +01:00
|
|
|
ments[i].type = MENT_CAPTION;
|
2019-03-07 22:08:39 +00:00
|
|
|
ments[i].caption = "No main configs found...";
|
2018-09-18 21:47:37 +01:00
|
|
|
ments[i].color = 0xFFFFDD00;
|
|
|
|
i++;
|
2018-05-01 06:15:48 +01:00
|
|
|
}
|
2018-09-18 21:47:37 +01:00
|
|
|
memset(&ments[i], 0, sizeof(ment_t));
|
|
|
|
menu_t menu = {
|
|
|
|
ments, "Launch configurations", 0, 0
|
|
|
|
};
|
2019-02-24 00:43:13 +00:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
cfg_tmp = (ini_sec_t *)tui_do_menu(&menu);
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
if (cfg_tmp)
|
|
|
|
{
|
|
|
|
u8 non_cfg = 4;
|
|
|
|
for (int j = 5; j < i; j++)
|
|
|
|
{
|
|
|
|
if (ments[j].type != INI_CHOICE)
|
|
|
|
non_cfg++;
|
|
|
|
if (ments[j].data == cfg_tmp)
|
|
|
|
{
|
2019-03-07 21:41:07 +00:00
|
|
|
b_cfg.boot_cfg = BOOT_CFG_FROM_LAUNCH;
|
|
|
|
b_cfg.autoboot = j - non_cfg;
|
|
|
|
b_cfg.autoboot_list = 0;
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 01:03:17 +00:00
|
|
|
payload_path = ini_check_payload_section(cfg_tmp);
|
|
|
|
|
2019-06-30 01:24:58 +01:00
|
|
|
if (cfg_tmp)
|
|
|
|
{
|
|
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &cfg_tmp->kvs, link)
|
|
|
|
{
|
|
|
|
if (!strcmp("emummc_force_disable", kv->key))
|
|
|
|
h_cfg.emummc_force_disable = atoi(kv->val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 01:03:17 +00:00
|
|
|
if (cfg_tmp && !payload_path)
|
|
|
|
check_sept();
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
cfg_sec = ini_clone_section(cfg_tmp);
|
2018-09-18 21:47:37 +01:00
|
|
|
if (!cfg_sec)
|
|
|
|
{
|
|
|
|
free(ments);
|
|
|
|
ini_free(&ini_sections);
|
|
|
|
sd_unmount();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
free(ments);
|
2018-06-13 00:34:32 +01:00
|
|
|
ini_free(&ini_sections);
|
2018-05-01 06:15:48 +01:00
|
|
|
}
|
|
|
|
else
|
2019-02-24 00:43:13 +00:00
|
|
|
EPRINTF("Could not open 'bootloader/hekate_ipl.ini'.\nMake sure it exists!");
|
2018-05-01 06:15:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!cfg_sec)
|
2018-05-24 22:41:20 +01:00
|
|
|
{
|
2019-06-30 01:15:46 +01:00
|
|
|
gfx_puts("\nUsing default launch configuration...\n");
|
|
|
|
gfx_puts("\nPress POWER to Continue.\nPress VOL to go to the menu.");
|
2018-07-22 13:24:09 +01:00
|
|
|
|
|
|
|
u32 btn = btn_wait();
|
|
|
|
if (!(btn & BTN_POWER))
|
|
|
|
goto out;
|
2018-05-24 22:41:20 +01:00
|
|
|
}
|
2018-08-21 02:45:19 +01:00
|
|
|
|
|
|
|
if (payload_path)
|
2018-06-19 15:10:59 +01:00
|
|
|
{
|
2018-08-21 02:45:19 +01:00
|
|
|
ini_free_section(cfg_sec);
|
2018-08-23 02:37:02 +01:00
|
|
|
if (launch_payload(payload_path, false))
|
|
|
|
{
|
2018-08-21 02:45:19 +01:00
|
|
|
EPRINTF("Failed to launch payload.");
|
|
|
|
free(payload_path);
|
2018-08-23 02:37:02 +01:00
|
|
|
}
|
2018-08-21 02:45:19 +01:00
|
|
|
}
|
|
|
|
else if (!hos_launch(cfg_sec))
|
|
|
|
EPRINTF("Failed to launch firmware.");
|
|
|
|
|
2018-08-21 02:21:09 +01:00
|
|
|
out:
|
2018-06-13 00:34:32 +01:00
|
|
|
ini_free_section(cfg_sec);
|
2018-07-01 02:56:58 +01:00
|
|
|
sd_unmount();
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-06-30 01:24:58 +01:00
|
|
|
h_cfg.emummc_force_disable = false;
|
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
2019-06-30 01:55:19 +01:00
|
|
|
void nyx_load_run()
|
|
|
|
{
|
|
|
|
sd_mount();
|
|
|
|
|
|
|
|
u8 *nyx = sd_file_read("bootloader/sys/nyx.bin", false);
|
|
|
|
if (!nyx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sd_unmount();
|
|
|
|
|
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
u8 *BOOTLOGO = (void *)malloc(0x4000);
|
|
|
|
blz_uncompress_srcdest(BOOTLOGO_BLZ, SZ_BOOTLOGO_BLZ, BOOTLOGO, SZ_BOOTLOGO);
|
|
|
|
gfx_set_rect_grey(BOOTLOGO, X_BOOTLOGO, Y_BOOTLOGO, 326, 544);
|
|
|
|
free(BOOTLOGO);
|
|
|
|
display_backlight_brightness(h_cfg.backlight, 1000);
|
|
|
|
|
|
|
|
nyx_str->cfg = 0;
|
|
|
|
if (b_cfg.extra_cfg & EXTRA_CFG_NYX_DUMP)
|
|
|
|
{
|
|
|
|
b_cfg.extra_cfg &= ~(EXTRA_CFG_NYX_DUMP);
|
|
|
|
nyx_str->cfg |= NYX_CFG_DUMP;
|
|
|
|
}
|
|
|
|
if (nyx_str->mtc_cfg.mtc_table)
|
|
|
|
nyx_str->cfg |= NYX_CFG_MINERVA;
|
|
|
|
|
|
|
|
nyx_str->version = ipl_ver.version - 0x303030;
|
|
|
|
|
|
|
|
memcpy((u8 *)nyx_str->irama, (void *)IRAM_BASE, 0x8000);
|
|
|
|
volatile reloc_meta_t *reloc = (reloc_meta_t *)(IPL_LOAD_ADDR + RELOC_META_OFF);
|
|
|
|
memcpy((u8 *)nyx_str->hekate, (u8 *)reloc->start, reloc->end - reloc->start);
|
|
|
|
|
|
|
|
void (*nyx_ptr)() = (void *)nyx;
|
|
|
|
|
|
|
|
bpmp_mmu_disable();
|
|
|
|
bpmp_clk_rate_set(BPMP_CLK_NORMAL);
|
|
|
|
msleep(100);
|
|
|
|
minerva_periodic_training();
|
|
|
|
|
|
|
|
(*nyx_ptr)();
|
|
|
|
}
|
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
void auto_launch_firmware()
|
|
|
|
{
|
2019-06-30 01:55:19 +01:00
|
|
|
if(!h_cfg.sept_run && (b_cfg.extra_cfg & EXTRA_CFG_NYX_DUMP))
|
|
|
|
{
|
|
|
|
EMC(EMC_SCRATCH0) |= EMC_HEKA_UPD;
|
|
|
|
check_sept();
|
|
|
|
}
|
|
|
|
|
2019-03-07 22:35:43 +00:00
|
|
|
if (!h_cfg.sept_run)
|
2019-02-24 00:43:13 +00:00
|
|
|
auto_launch_update();
|
2018-08-23 02:27:49 +01:00
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
u8 *BOOTLOGO = NULL;
|
2018-08-21 02:45:19 +01:00
|
|
|
char *payload_path = NULL;
|
2019-02-24 00:43:13 +00:00
|
|
|
u32 btn = 0;
|
2018-08-21 02:45:19 +01:00
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
struct _bmp_data
|
|
|
|
{
|
|
|
|
u32 size;
|
|
|
|
u32 size_x;
|
|
|
|
u32 size_y;
|
|
|
|
u32 offset;
|
|
|
|
u32 pos_x;
|
|
|
|
u32 pos_y;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _bmp_data bmpData;
|
2018-08-13 10:12:53 +01:00
|
|
|
bool bootlogoFound = false;
|
2018-07-01 18:45:52 +01:00
|
|
|
char *bootlogoCustomEntry = NULL;
|
|
|
|
|
2019-03-07 22:35:43 +00:00
|
|
|
if (!(b_cfg.boot_cfg & BOOT_CFG_FROM_LAUNCH))
|
|
|
|
gfx_con.mute = true;
|
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
ini_sec_t *cfg_sec = NULL;
|
|
|
|
LIST_INIT(ini_sections);
|
2018-08-21 02:37:40 +01:00
|
|
|
LIST_INIT(ini_list_sections);
|
2018-07-01 18:45:52 +01:00
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
2019-03-07 21:53:58 +00:00
|
|
|
if (f_stat("bootloader/hekate_ipl.ini", NULL))
|
2018-09-18 21:47:37 +01:00
|
|
|
create_config_entry();
|
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
if (ini_parse(&ini_sections, "bootloader/hekate_ipl.ini", false))
|
2018-07-01 18:45:52 +01:00
|
|
|
{
|
|
|
|
u32 configEntry = 0;
|
|
|
|
u32 boot_entry_id = 0;
|
|
|
|
|
|
|
|
// Load configuration.
|
|
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_sections, link)
|
|
|
|
{
|
|
|
|
// Skip other ini entries for autoboot.
|
|
|
|
if (ini_sec->type == INI_CHOICE)
|
|
|
|
{
|
|
|
|
if (!strcmp(ini_sec->name, "config"))
|
|
|
|
{
|
|
|
|
configEntry = 1;
|
|
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ini_sec->kvs, link)
|
|
|
|
{
|
|
|
|
if (!strcmp("autoboot", kv->key))
|
|
|
|
h_cfg.autoboot = atoi(kv->val);
|
2018-08-21 02:37:40 +01:00
|
|
|
else if (!strcmp("autoboot_list", kv->key))
|
|
|
|
h_cfg.autoboot_list = atoi(kv->val);
|
2018-07-01 18:45:52 +01:00
|
|
|
else if (!strcmp("bootwait", kv->key))
|
|
|
|
h_cfg.bootwait = atoi(kv->val);
|
|
|
|
else if (!strcmp("verification", kv->key))
|
|
|
|
h_cfg.verification = atoi(kv->val);
|
2018-09-18 22:01:42 +01:00
|
|
|
else if (!strcmp("backlight", kv->key))
|
|
|
|
h_cfg.backlight = atoi(kv->val);
|
2018-09-24 21:45:06 +01:00
|
|
|
else if (!strcmp("autohosoff", kv->key))
|
|
|
|
h_cfg.autohosoff = atoi(kv->val);
|
2019-02-23 23:06:24 +00:00
|
|
|
else if (!strcmp("autonogc", kv->key))
|
|
|
|
h_cfg.autonogc = atoi(kv->val);
|
2019-06-30 01:55:19 +01:00
|
|
|
else if (!strcmp("brand", kv->key))
|
|
|
|
{
|
|
|
|
h_cfg.brand = malloc(strlen(kv->val) + 1);
|
|
|
|
strcpy(h_cfg.brand, kv->val);
|
|
|
|
}
|
|
|
|
else if (!strcmp("tagline", kv->key))
|
|
|
|
{
|
|
|
|
h_cfg.tagline = malloc(strlen(kv->val) + 1);
|
|
|
|
strcpy(h_cfg.tagline, kv->val);
|
|
|
|
}
|
2018-07-01 18:45:52 +01:00
|
|
|
}
|
|
|
|
boot_entry_id++;
|
2019-02-24 00:43:13 +00:00
|
|
|
|
|
|
|
// Override autoboot, otherwise save it for a possbile sept run.
|
2019-03-07 21:41:07 +00:00
|
|
|
if (b_cfg.boot_cfg & BOOT_CFG_AUTOBOOT_EN)
|
2019-02-24 00:43:13 +00:00
|
|
|
{
|
2019-03-07 21:41:07 +00:00
|
|
|
h_cfg.autoboot = b_cfg.autoboot;
|
|
|
|
h_cfg.autoboot_list = b_cfg.autoboot_list;
|
2019-02-24 00:43:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-07 21:41:07 +00:00
|
|
|
b_cfg.autoboot = h_cfg.autoboot;
|
|
|
|
b_cfg.autoboot_list = h_cfg.autoboot_list;
|
2019-02-24 00:43:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (h_cfg.autoboot == boot_entry_id && configEntry)
|
|
|
|
{
|
|
|
|
cfg_sec = ini_clone_section(ini_sec);
|
|
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &cfg_sec->kvs, link)
|
|
|
|
{
|
|
|
|
if (!strcmp("logopath", kv->key))
|
|
|
|
bootlogoCustomEntry = kv->val;
|
2019-06-30 01:24:58 +01:00
|
|
|
if (!strcmp("emummc_force_disable", kv->key))
|
|
|
|
h_cfg.emummc_force_disable = atoi(kv->val);
|
2018-08-05 12:40:32 +01:00
|
|
|
}
|
|
|
|
break;
|
2018-07-01 18:45:52 +01:00
|
|
|
}
|
|
|
|
boot_entry_id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 21:41:07 +00:00
|
|
|
if (h_cfg.autohosoff && !(b_cfg.boot_cfg & BOOT_CFG_AUTOBOOT_EN))
|
2018-09-24 21:45:06 +01:00
|
|
|
check_power_off_from_hos();
|
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
if (h_cfg.autoboot_list)
|
|
|
|
{
|
|
|
|
ini_free_section(cfg_sec);
|
|
|
|
boot_entry_id = 1;
|
|
|
|
bootlogoCustomEntry = NULL;
|
|
|
|
|
|
|
|
if (ini_parse(&ini_list_sections, "bootloader/ini", true))
|
|
|
|
{
|
|
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec_list, &ini_list_sections, link)
|
|
|
|
{
|
|
|
|
if (ini_sec_list->type == INI_CHOICE)
|
|
|
|
{
|
|
|
|
if (!strcmp(ini_sec_list->name, "config"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (h_cfg.autoboot == boot_entry_id)
|
|
|
|
{
|
2019-06-30 01:24:58 +01:00
|
|
|
h_cfg.emummc_force_disable = false;
|
2018-08-21 02:37:40 +01:00
|
|
|
cfg_sec = ini_clone_section(ini_sec_list);
|
|
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &cfg_sec->kvs, link)
|
|
|
|
{
|
|
|
|
if (!strcmp("logopath", kv->key))
|
|
|
|
bootlogoCustomEntry = kv->val;
|
2019-06-30 01:24:58 +01:00
|
|
|
if (!strcmp("emummc_force_disable", kv->key))
|
|
|
|
h_cfg.emummc_force_disable = atoi(kv->val);
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
boot_entry_id++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
// Add missing configuration entry.
|
|
|
|
if (!configEntry)
|
|
|
|
create_config_entry();
|
|
|
|
|
|
|
|
if (!h_cfg.autoboot)
|
|
|
|
goto out; // Auto boot is disabled.
|
|
|
|
|
|
|
|
if (!cfg_sec)
|
|
|
|
goto out; // No configurations.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
goto out; // Can't load hekate_ipl.ini.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
goto out;
|
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
u8 *bitmap = NULL;
|
2019-06-30 01:15:46 +01:00
|
|
|
if (!(b_cfg.boot_cfg & BOOT_CFG_FROM_LAUNCH) && h_cfg.bootwait && !h_cfg.sept_run)
|
2019-02-24 00:43:13 +00:00
|
|
|
{
|
2019-03-07 22:19:04 +00:00
|
|
|
if (bootlogoCustomEntry) // Check if user set custom logo path at the boot entry.
|
2019-03-16 21:35:43 +00:00
|
|
|
bitmap = (u8 *)sd_file_read(bootlogoCustomEntry, NULL);
|
2019-03-07 22:19:04 +00:00
|
|
|
|
|
|
|
if (!bitmap) // Custom entry bootlogo not found, trying default custom one.
|
2019-03-16 21:35:43 +00:00
|
|
|
bitmap = (u8 *)sd_file_read("bootloader/bootlogo.bmp", NULL);
|
2018-07-01 18:45:52 +01:00
|
|
|
|
2019-03-07 22:19:04 +00:00
|
|
|
if (bitmap)
|
2018-07-01 18:45:52 +01:00
|
|
|
{
|
|
|
|
// Get values manually to avoid unaligned access.
|
|
|
|
bmpData.size = bitmap[2] | bitmap[3] << 8 |
|
|
|
|
bitmap[4] << 16 | bitmap[5] << 24;
|
|
|
|
bmpData.offset = bitmap[10] | bitmap[11] << 8 |
|
|
|
|
bitmap[12] << 16 | bitmap[13] << 24;
|
|
|
|
bmpData.size_x = bitmap[18] | bitmap[19] << 8 |
|
|
|
|
bitmap[20] << 16 | bitmap[21] << 24;
|
|
|
|
bmpData.size_y = bitmap[22] | bitmap[23] << 8 |
|
|
|
|
bitmap[24] << 16 | bitmap[25] << 24;
|
|
|
|
// Sanity check.
|
|
|
|
if (bitmap[0] == 'B' &&
|
|
|
|
bitmap[1] == 'M' &&
|
2019-03-07 22:19:04 +00:00
|
|
|
bitmap[28] == 32 && // Only 32 bit BMPs allowed.
|
2018-07-01 18:45:52 +01:00
|
|
|
bmpData.size_x <= 720 &&
|
|
|
|
bmpData.size_y <= 1280)
|
|
|
|
{
|
|
|
|
if ((bmpData.size - bmpData.offset) <= 0x400000)
|
|
|
|
{
|
|
|
|
// Avoid unaligned access from BM 2-byte MAGIC and remove header.
|
|
|
|
BOOTLOGO = (u8 *)malloc(0x400000);
|
|
|
|
memcpy(BOOTLOGO, bitmap + bmpData.offset, bmpData.size - bmpData.offset);
|
|
|
|
free(bitmap);
|
|
|
|
// Center logo if res < 720x1280.
|
|
|
|
bmpData.pos_x = (720 - bmpData.size_x) >> 1;
|
|
|
|
bmpData.pos_y = (1280 - bmpData.size_y) >> 1;
|
2018-07-09 13:55:09 +01:00
|
|
|
// Get background color from 1st pixel.
|
|
|
|
if (bmpData.size_x < 720 || bmpData.size_y < 1280)
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_color(*(u32 *)BOOTLOGO);
|
2018-07-01 18:45:52 +01:00
|
|
|
|
2018-08-13 10:12:53 +01:00
|
|
|
bootlogoFound = true;
|
2018-07-01 18:45:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
free(bitmap);
|
|
|
|
}
|
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
// Render boot logo.
|
|
|
|
if (bootlogoFound)
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_render_bmp_argb((u32 *)BOOTLOGO, bmpData.size_x, bmpData.size_y,
|
2019-02-24 00:43:13 +00:00
|
|
|
bmpData.pos_x, bmpData.pos_y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
2019-02-24 00:43:13 +00:00
|
|
|
BOOTLOGO = (void *)malloc(0x4000);
|
|
|
|
blz_uncompress_srcdest(BOOTLOGO_BLZ, SZ_BOOTLOGO_BLZ, BOOTLOGO, SZ_BOOTLOGO);
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_set_rect_grey(BOOTLOGO, X_BOOTLOGO, Y_BOOTLOGO, 326, 544);
|
2019-02-24 00:43:13 +00:00
|
|
|
}
|
|
|
|
free(BOOTLOGO);
|
2018-07-01 18:45:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ini_free(&ini_sections);
|
2018-08-21 02:37:40 +01:00
|
|
|
if (h_cfg.autoboot_list)
|
|
|
|
ini_free(&ini_list_sections);
|
2018-07-01 18:45:52 +01:00
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
if (!h_cfg.sept_run && h_cfg.bootwait)
|
2019-02-24 00:43:13 +00:00
|
|
|
display_backlight_brightness(h_cfg.backlight, 1000);
|
|
|
|
|
|
|
|
// Wait before booting. If VOL- is pressed go into bootloader menu.
|
2019-03-07 22:35:43 +00:00
|
|
|
if (!h_cfg.sept_run)
|
2019-02-24 00:43:13 +00:00
|
|
|
{
|
|
|
|
btn = btn_wait_timeout(h_cfg.bootwait * 1000, BTN_VOL_DOWN);
|
|
|
|
|
|
|
|
if (btn & BTN_VOL_DOWN)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-03-07 22:35:43 +00:00
|
|
|
payload_path = ini_check_payload_section(cfg_sec);
|
|
|
|
|
2018-08-21 02:45:19 +01:00
|
|
|
if (payload_path)
|
2018-07-01 18:45:52 +01:00
|
|
|
{
|
2018-08-21 02:45:19 +01:00
|
|
|
ini_free_section(cfg_sec);
|
2018-08-23 03:05:31 +01:00
|
|
|
if (launch_payload(payload_path, false))
|
2018-08-21 02:45:19 +01:00
|
|
|
free(payload_path);
|
|
|
|
}
|
|
|
|
else
|
2019-03-07 22:35:43 +00:00
|
|
|
{
|
|
|
|
check_sept();
|
2018-08-21 02:45:19 +01:00
|
|
|
hos_launch(cfg_sec);
|
2019-03-07 22:35:43 +00:00
|
|
|
}
|
2018-08-21 02:45:19 +01:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
out:
|
2018-07-22 13:18:30 +01:00
|
|
|
ini_free(&ini_sections);
|
2018-08-21 02:37:40 +01:00
|
|
|
if (h_cfg.autoboot_list)
|
|
|
|
ini_free(&ini_list_sections);
|
2018-07-01 18:45:52 +01:00
|
|
|
ini_free_section(cfg_sec);
|
|
|
|
|
2018-08-13 10:12:53 +01:00
|
|
|
gfx_con.mute = false;
|
2019-02-24 00:43:13 +00:00
|
|
|
|
2019-03-07 21:41:07 +00:00
|
|
|
b_cfg.boot_cfg &= ~(BOOT_CFG_AUTOBOOT_EN | BOOT_CFG_FROM_LAUNCH);
|
2019-06-30 01:24:58 +01:00
|
|
|
h_cfg.emummc_force_disable = false;
|
2019-06-30 01:55:19 +01:00
|
|
|
|
|
|
|
nyx_load_run();
|
|
|
|
|
2019-06-30 01:24:58 +01:00
|
|
|
sd_unmount();
|
2018-07-01 18:45:52 +01:00
|
|
|
}
|
|
|
|
|
2019-04-16 18:09:04 +01:00
|
|
|
void patched_rcm_protection()
|
|
|
|
{
|
|
|
|
sdmmc_storage_t storage;
|
|
|
|
sdmmc_t sdmmc;
|
|
|
|
|
|
|
|
h_cfg.rcm_patched = fuse_check_patched_rcm();
|
|
|
|
|
|
|
|
if (!h_cfg.rcm_patched)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check if AutoRCM is enabled and protect from a permanent brick.
|
|
|
|
if (!sdmmc_storage_init_mmc(&storage, &sdmmc, SDMMC_4, SDMMC_BUS_WIDTH_8, 4))
|
|
|
|
return;
|
|
|
|
|
|
|
|
u8 *tempbuf = (u8 *)malloc(0x200);
|
|
|
|
sdmmc_storage_set_mmc_partition(&storage, 1);
|
|
|
|
|
|
|
|
u8 corr_mod_byte0;
|
|
|
|
int i, sect = 0;
|
|
|
|
if ((fuse_read_odm(4) & 3) != 3)
|
|
|
|
corr_mod_byte0 = 0xF7;
|
|
|
|
else
|
|
|
|
corr_mod_byte0 = 0x37;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
sect = (0x200 + (0x4000 * i)) / NX_EMMC_BLOCKSIZE;
|
|
|
|
sdmmc_storage_read(&storage, sect, 1, tempbuf);
|
|
|
|
|
|
|
|
// If AutoRCM is enabled, disable it.
|
|
|
|
if (tempbuf[0x10] != corr_mod_byte0)
|
|
|
|
{
|
|
|
|
tempbuf[0x10] = corr_mod_byte0;
|
|
|
|
|
|
|
|
sdmmc_storage_write(&storage, sect, 1, tempbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(tempbuf);
|
|
|
|
sdmmc_storage_end(&storage);
|
|
|
|
}
|
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
void about()
|
|
|
|
{
|
2018-06-26 17:09:26 +01:00
|
|
|
static const char credits[] =
|
2019-02-23 23:06:24 +00:00
|
|
|
"\nhekate (c) 2018 naehrwert, st4rk\n\n"
|
|
|
|
"CTCaer mod (c) 2018 CTCaer\n"
|
2018-08-05 12:40:32 +01:00
|
|
|
" ___________________________________________\n\n"
|
|
|
|
"Thanks to: %kderrek, nedwill, plutoo,\n"
|
|
|
|
" shuffle2, smea, thexyz, yellows8%k\n"
|
|
|
|
" ___________________________________________\n\n"
|
|
|
|
"Greetings to: fincs, hexkyz, SciresM,\n"
|
|
|
|
" Shiny Quagsire, WinterMute\n"
|
|
|
|
" ___________________________________________\n\n"
|
|
|
|
"Open source and free packages used:\n\n"
|
|
|
|
" - FatFs R0.13b,\n"
|
2019-02-23 23:06:24 +00:00
|
|
|
" Copyright (c) 2018, ChaN\n\n"
|
2018-08-05 12:40:32 +01:00
|
|
|
" - bcl-1.2.0,\n"
|
2019-02-23 23:06:24 +00:00
|
|
|
" Copyright (c) 2003-2006, Marcus Geelnard\n\n"
|
2018-08-05 12:40:32 +01:00
|
|
|
" - Atmosphere (SE sha256, prc id patches),\n"
|
2019-02-23 23:06:24 +00:00
|
|
|
" Copyright (c) 2018, Atmosphere-NX\n\n"
|
2018-08-07 15:53:58 +01:00
|
|
|
" - elfload,\n"
|
2019-02-23 23:06:24 +00:00
|
|
|
" Copyright (c) 2014, Owen Shepherd\n"
|
|
|
|
" Copyright (c) 2018, M4xw\n"
|
2018-08-05 12:40:32 +01:00
|
|
|
" ___________________________________________\n\n";
|
2018-05-01 06:15:48 +01:00
|
|
|
static const char octopus[] =
|
2018-08-05 12:40:32 +01:00
|
|
|
" %k___\n"
|
|
|
|
" .-' `'.\n"
|
|
|
|
" / \\\n"
|
|
|
|
" | ;\n"
|
|
|
|
" | | ___.--,\n"
|
|
|
|
" _.._ |0) = (0) | _.---'`__.-( (_.\n"
|
|
|
|
" __.--'`_.. '.__.\\ '--. \\_.-' ,.--'` `\"\"`\n"
|
|
|
|
" ( ,.--'` ',__ /./; ;, '.__.'` __\n"
|
|
|
|
" _`) ) .---.__.' / | |\\ \\__..--\"\" \"\"\"--.,_\n"
|
|
|
|
" `---' .'.''-._.-'`_./ /\\ '. \\ _.--''````'''--._`-.__.'\n"
|
|
|
|
" | | .' _.-' | | \\ \\ '. `----`\n"
|
|
|
|
" \\ \\/ .' \\ \\ '. '-._)\n"
|
|
|
|
" \\/ / \\ \\ `=.__`'-.\n"
|
|
|
|
" / /\\ `) ) / / `\"\".`\\\n"
|
|
|
|
" , _.-'.'\\ \\ / / ( ( / /\n"
|
|
|
|
" `--'` ) ) .-'.' '.'. | (\n"
|
|
|
|
" (/` ( (` ) ) '-; %k[switchbrew]%k\n"
|
|
|
|
" ` '-; (-'%k";
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_clear_grey(0x1B);
|
|
|
|
gfx_con_setpos(0, 0);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf(credits, 0xFF00CCFF, 0xFFCCCCCC);
|
2018-06-27 22:21:05 +01:00
|
|
|
gfx_con.fntsz = 8;
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_printf(octopus, 0xFF00CCFF, 0xFF00FFCC, 0xFF00CCFF, 0xFFCCCCCC);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
btn_wait();
|
|
|
|
}
|
|
|
|
|
2018-07-01 18:45:25 +01:00
|
|
|
ment_t ment_options[] = {
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_BACK(),
|
|
|
|
MDEF_CHGLINE(),
|
|
|
|
MDEF_HANDLER("Auto boot", config_autoboot),
|
|
|
|
MDEF_HANDLER("Boot time delay", config_bootdelay),
|
2019-02-23 23:06:24 +00:00
|
|
|
MDEF_HANDLER("Auto NoGC", config_nogc),
|
2018-09-24 21:45:06 +01:00
|
|
|
MDEF_HANDLER("Auto HOS power off", config_auto_hos_poweroff),
|
2018-09-18 22:01:42 +01:00
|
|
|
MDEF_HANDLER("Backlight", config_backlight),
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_END()
|
2018-07-01 03:06:13 +01:00
|
|
|
};
|
2018-06-27 22:36:18 +01:00
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
menu_t menu_options = { ment_options, "Launch Options", 0, 0 };
|
2018-06-27 22:36:18 +01:00
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
ment_t ment_cinfo[] = {
|
|
|
|
MDEF_BACK(),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2018-06-19 14:53:41 +01:00
|
|
|
MDEF_CAPTION("---- SoC Info ----", 0xFF0AB9E6),
|
2018-09-18 21:38:54 +01:00
|
|
|
MDEF_HANDLER("Ipatches & bootrom info", bootrom_ipatches_info),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_HANDLER("Print fuse info", print_fuseinfo),
|
|
|
|
MDEF_HANDLER("Print kfuse info", print_kfuseinfo),
|
|
|
|
MDEF_HANDLER("Print TSEC keys", print_tsec_key),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2018-06-19 14:53:41 +01:00
|
|
|
MDEF_CAPTION("-- Storage Info --", 0xFF0AB9E6),
|
2018-05-13 23:38:10 +01:00
|
|
|
MDEF_HANDLER("Print eMMC info", print_mmc_info),
|
|
|
|
MDEF_HANDLER("Print SD Card info", print_sdcard_info),
|
2018-06-24 20:38:32 +01:00
|
|
|
MDEF_CHGLINE(),
|
|
|
|
MDEF_CAPTION("------ Misc ------", 0xFF0AB9E6),
|
2018-06-28 02:05:19 +01:00
|
|
|
MDEF_HANDLER("Print battery info", print_battery_info),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_END()
|
|
|
|
};
|
2019-06-30 01:15:46 +01:00
|
|
|
|
|
|
|
menu_t menu_cinfo = { ment_cinfo, "Console Info", 0, 0 };
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-07-01 18:46:22 +01:00
|
|
|
ment_t ment_restore[] = {
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_BACK(),
|
|
|
|
MDEF_CHGLINE(),
|
|
|
|
MDEF_CAPTION("------ Full --------", 0xFF0AB9E6),
|
|
|
|
MDEF_HANDLER("Restore eMMC BOOT0/1", restore_emmc_boot),
|
2019-03-08 22:09:36 +00:00
|
|
|
MDEF_HANDLER("Restore eMMC RAW GPP", restore_emmc_rawnand),
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_CHGLINE(),
|
|
|
|
MDEF_CAPTION("-- GPP Partitions --", 0xFF0AB9E6),
|
|
|
|
MDEF_HANDLER("Restore GPP partitions", restore_emmc_gpp_parts),
|
|
|
|
MDEF_END()
|
|
|
|
};
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
menu_t menu_restore = { ment_restore, "Restore Options", 0, 0 };
|
2018-06-27 22:36:18 +01:00
|
|
|
|
|
|
|
ment_t ment_backup[] = {
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_BACK(),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2018-06-19 14:53:41 +01:00
|
|
|
MDEF_CAPTION("------ Full --------", 0xFF0AB9E6),
|
2018-06-04 23:55:32 +01:00
|
|
|
MDEF_HANDLER("Backup eMMC BOOT0/1", dump_emmc_boot),
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_HANDLER("Backup eMMC RAW GPP", dump_emmc_rawnand),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2018-06-19 14:53:41 +01:00
|
|
|
MDEF_CAPTION("-- GPP Partitions --", 0xFF0AB9E6),
|
2018-06-04 23:55:32 +01:00
|
|
|
MDEF_HANDLER("Backup eMMC SYS", dump_emmc_system),
|
|
|
|
MDEF_HANDLER("Backup eMMC USER", dump_emmc_user),
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_END()
|
|
|
|
};
|
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
menu_t menu_backup = { ment_backup, "Backup Options", 0, 0 };
|
2018-06-27 22:36:18 +01:00
|
|
|
|
|
|
|
ment_t ment_tools[] = {
|
|
|
|
MDEF_BACK(),
|
|
|
|
MDEF_CHGLINE(),
|
|
|
|
MDEF_CAPTION("-- Backup & Restore --", 0xFF0AB9E6),
|
|
|
|
MDEF_MENU("Backup", &menu_backup),
|
2018-07-01 18:46:22 +01:00
|
|
|
MDEF_MENU("Restore", &menu_restore),
|
2018-07-01 18:45:25 +01:00
|
|
|
MDEF_HANDLER("Verification options", config_verification),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2018-06-27 22:36:18 +01:00
|
|
|
MDEF_CAPTION("-------- Misc --------", 0xFF0AB9E6),
|
2018-07-09 21:01:40 +01:00
|
|
|
MDEF_HANDLER("Dump package1/2", dump_packages12),
|
2019-02-23 23:06:24 +00:00
|
|
|
MDEF_HANDLER("Fix archive bit (except Nintendo)", fix_sd_all_attr),
|
|
|
|
MDEF_HANDLER("Fix archive bit (Nintendo only)", fix_sd_nin_attr),
|
2018-06-28 02:05:19 +01:00
|
|
|
//MDEF_HANDLER("Fix fuel gauge configuration", fix_fuel_gauge_configuration),
|
2018-07-01 14:58:59 +01:00
|
|
|
//MDEF_HANDLER("Reset all battery cfg", reset_pmic_fuel_gauge_charger_config),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CHGLINE(),
|
2019-04-16 18:09:04 +01:00
|
|
|
MDEF_CAPTION("-------- Other -------", 0xFFFFDD00),
|
2018-08-21 02:43:00 +01:00
|
|
|
MDEF_HANDLER("AutoRCM", menu_autorcm),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_END()
|
|
|
|
};
|
2018-05-24 00:37:16 +01:00
|
|
|
|
2019-06-30 01:15:46 +01:00
|
|
|
menu_t menu_tools = { ment_tools, "Tools", 0, 0 };
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
ment_t ment_top[] = {
|
2018-08-21 02:37:40 +01:00
|
|
|
MDEF_HANDLER("Launch", launch_firmware),
|
2018-09-18 22:01:42 +01:00
|
|
|
MDEF_MENU("Options", &menu_options),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CAPTION("---------------", 0xFF444444),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_MENU("Tools", &menu_tools),
|
|
|
|
MDEF_MENU("Console info", &menu_cinfo),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CAPTION("---------------", 0xFF444444),
|
|
|
|
MDEF_HANDLER("Reboot (Normal)", reboot_normal),
|
|
|
|
MDEF_HANDLER("Reboot (RCM)", reboot_rcm),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_HANDLER("Power off", power_off),
|
2018-05-24 22:33:11 +01:00
|
|
|
MDEF_CAPTION("---------------", 0xFF444444),
|
2018-05-01 06:15:48 +01:00
|
|
|
MDEF_HANDLER("About", about),
|
|
|
|
MDEF_END()
|
|
|
|
};
|
2019-06-30 01:15:46 +01:00
|
|
|
|
|
|
|
menu_t menu_top = { ment_top, "hekate - CTCaer mod v4.10.1", 0, 0 };
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2019-03-07 22:19:04 +00:00
|
|
|
#define IPL_STACK_TOP 0x90010000
|
|
|
|
#define IPL_HEAP_START 0x90020000
|
2019-03-08 20:18:54 +00:00
|
|
|
#define IPL_HEAP_END 0xB5000000
|
2019-03-07 22:19:04 +00:00
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
extern void pivot_stack(u32 stack_top);
|
|
|
|
|
|
|
|
void ipl_main()
|
|
|
|
{
|
2019-02-11 22:46:06 +00:00
|
|
|
// Do initial HW configuration. This is compatible with consecutive reruns without a reset.
|
2018-12-16 17:04:46 +00:00
|
|
|
config_hw();
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
//Pivot the stack so we have enough space.
|
2019-03-07 22:19:04 +00:00
|
|
|
pivot_stack(IPL_STACK_TOP);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
|
|
|
//Tegra/Horizon configuration goes to 0x80000000+, package2 goes to 0xA9800000, we place our heap in between.
|
2019-03-07 22:19:04 +00:00
|
|
|
heap_init(IPL_HEAP_START);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-12-07 20:00:19 +00:00
|
|
|
#ifdef DEBUG_UART_PORT
|
2019-03-07 22:19:04 +00:00
|
|
|
uart_send(DEBUG_UART_PORT, (u8 *)"Hekate: Hello!\r\n", 16);
|
2018-12-16 14:52:38 +00:00
|
|
|
uart_wait_idle(DEBUG_UART_PORT, UART_TX_IDLE);
|
2018-12-07 20:00:19 +00:00
|
|
|
#endif
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-09-18 21:38:54 +01:00
|
|
|
// Set bootloader's default configuration.
|
|
|
|
set_default_configuration();
|
|
|
|
|
2019-06-30 01:49:33 +01:00
|
|
|
sd_mount();
|
|
|
|
|
2018-08-21 02:14:31 +01:00
|
|
|
// Save sdram lp0 config.
|
2019-06-30 01:49:33 +01:00
|
|
|
if (!ianos_loader(false, "bootloader/sys/libsys_lp0.bso", DRAM_LIB, (void *)sdram_get_params_patched()))
|
2018-12-16 17:04:46 +00:00
|
|
|
h_cfg.errors |= ERR_LIBSYS_LP0;
|
2019-06-30 01:49:33 +01:00
|
|
|
|
|
|
|
minerva_init();
|
|
|
|
minerva_change_freq(FREQ_1600);
|
2018-08-21 02:14:31 +01:00
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
display_init();
|
2018-08-21 02:26:14 +01:00
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
u32 *fb = display_init_framebuffer();
|
2019-04-14 00:30:14 +01:00
|
|
|
gfx_init_ctxt(fb, 720, 1280, 720);
|
2018-06-23 05:04:41 +01:00
|
|
|
|
2018-06-19 15:10:59 +01:00
|
|
|
#ifdef MENU_LOGO_ENABLE
|
2019-03-07 22:08:39 +00:00
|
|
|
Kc_MENU_LOGO = (u8 *)malloc(ALIGN(SZ_MENU_LOGO, 0x1000));
|
2018-07-22 21:22:10 +01:00
|
|
|
blz_uncompress_srcdest(Kc_MENU_LOGO_blz, SZ_MENU_LOGO_BLZ, Kc_MENU_LOGO, SZ_MENU_LOGO);
|
2019-03-07 22:08:39 +00:00
|
|
|
#endif
|
2018-06-23 05:04:41 +01:00
|
|
|
|
2019-04-21 15:38:29 +01:00
|
|
|
gfx_con_init();
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-09-18 22:01:42 +01:00
|
|
|
display_backlight_pwm_init();
|
|
|
|
//display_backlight_brightness(h_cfg.backlight, 1000);
|
2018-08-21 02:26:14 +01:00
|
|
|
|
2019-06-30 01:55:19 +01:00
|
|
|
// Overclock BPMP.
|
|
|
|
bpmp_clk_rate_set(BPMP_CLK_SUPER_BOOST);
|
|
|
|
|
2019-04-14 02:24:37 +01:00
|
|
|
// Check if we had a panic while in CFW.
|
|
|
|
secmon_exo_check_panic();
|
|
|
|
|
2019-04-16 18:09:04 +01:00
|
|
|
// Check if RCM is patched and protect from a possible brick.
|
|
|
|
patched_rcm_protection();
|
|
|
|
|
2019-06-30 01:24:58 +01:00
|
|
|
// Load emuMMC configuration from SD.
|
|
|
|
emummc_load_cfg();
|
|
|
|
|
2018-07-01 18:45:52 +01:00
|
|
|
// Load saved configuration and auto boot if enabled.
|
|
|
|
auto_launch_firmware();
|
2018-06-06 11:29:38 +01:00
|
|
|
|
2019-06-30 01:49:33 +01:00
|
|
|
minerva_change_freq(FREQ_800);
|
|
|
|
|
2018-09-18 21:38:54 +01:00
|
|
|
while (true)
|
2019-04-14 00:30:14 +01:00
|
|
|
tui_do_menu(&menu_top);
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-09-18 21:38:54 +01:00
|
|
|
while (true)
|
2018-05-01 06:15:48 +01:00
|
|
|
;
|
|
|
|
}
|