2019-06-30 01:03:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018-2019 CTCaer
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
2019-12-08 00:23:03 +00:00
|
|
|
#include "../../common/memory_map.h"
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
#include "config/config.h"
|
|
|
|
#include "gfx/di.h"
|
|
|
|
#include "gfx/gfx.h"
|
|
|
|
#include "hos/hos.h"
|
|
|
|
#include "ianos/ianos.h"
|
|
|
|
#include "libs/compr/blz.h"
|
|
|
|
#include "libs/fatfs/ff.h"
|
|
|
|
#include "mem/heap.h"
|
|
|
|
#include "mem/minerva.h"
|
|
|
|
#include "mem/sdram.h"
|
|
|
|
#include "power/max77620.h"
|
|
|
|
#include "soc/bpmp.h"
|
|
|
|
#include "soc/fuse.h"
|
|
|
|
#include "soc/gpio.h"
|
|
|
|
#include "soc/hw_init.h"
|
|
|
|
#include "soc/i2c.h"
|
|
|
|
#include "soc/pmc.h"
|
|
|
|
#include "soc/t210.h"
|
|
|
|
#include "soc/uart.h"
|
|
|
|
#include "storage/sdmmc.h"
|
|
|
|
#include "utils/btn.h"
|
|
|
|
#include "utils/dirlist.h"
|
|
|
|
#include "utils/list.h"
|
|
|
|
#include "utils/util.h"
|
|
|
|
|
|
|
|
#include "frontend/fe_emmc_tools.h"
|
|
|
|
#include "frontend/gui.h"
|
|
|
|
|
|
|
|
//TODO: ugly.
|
|
|
|
sdmmc_t sd_sdmmc;
|
|
|
|
sdmmc_storage_t sd_storage;
|
|
|
|
FATFS sd_fs;
|
|
|
|
static bool sd_mounted = false;
|
|
|
|
static bool sd_init_done = false;
|
|
|
|
|
|
|
|
#ifdef MENU_LOGO_ENABLE
|
|
|
|
u8 *Kc_MENU_LOGO;
|
|
|
|
#endif //MENU_LOGO_ENABLE
|
|
|
|
|
|
|
|
hekate_config h_cfg;
|
2019-09-12 20:08:38 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
const volatile ipl_ver_meta_t __attribute__((section ("._ipl_version"))) ipl_ver = {
|
2019-12-11 09:22:11 +00:00
|
|
|
.magic = NYX_MAGIC,
|
|
|
|
.version = (NYX_VER_MJ + '0') | ((NYX_VER_MN + '0') << 8) | ((NYX_VER_HF + '0') << 16),
|
2019-06-30 01:03:00 +00:00
|
|
|
.rsvd0 = 0,
|
|
|
|
.rsvd1 = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
volatile nyx_storage_t *nyx_str = (nyx_storage_t *)NYX_STORAGE_ADDR;
|
|
|
|
volatile boot_cfg_t *b_cfg;
|
|
|
|
|
|
|
|
bool get_sd_card_removed()
|
|
|
|
{
|
|
|
|
if (sd_init_done && !!gpio_read(GPIO_PORT_Z, GPIO_PIN_1))
|
|
|
|
return true;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool sd_mount()
|
|
|
|
{
|
|
|
|
if (sd_mounted)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (!sd_init_done)
|
2019-07-06 19:08:37 +00:00
|
|
|
{
|
2019-06-30 01:03:00 +00:00
|
|
|
res = !sdmmc_storage_init_sd(&sd_storage, &sd_sdmmc, SDMMC_1, SDMMC_BUS_WIDTH_4, 11);
|
2019-07-06 19:08:37 +00:00
|
|
|
if (!res)
|
|
|
|
sd_init_done = true;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
EPRINTF("Failed to init SD card.\nMake sure that it is inserted.\nOr that SD reader is properly seated!");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int res = f_mount(&sd_fs, "", 1);
|
|
|
|
if (res == FR_OK)
|
|
|
|
{
|
2019-07-06 19:08:37 +00:00
|
|
|
sd_mounted = true;
|
2019-06-30 01:03:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EPRINTFARGS("Failed to mount SD card (FatFS Error %d).\nMake sure that a FAT partition exists..", res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sd_unmount(bool deinit)
|
|
|
|
{
|
2019-07-06 19:08:37 +00:00
|
|
|
if (sd_init_done && sd_mounted)
|
2019-06-30 01:03:00 +00:00
|
|
|
{
|
|
|
|
f_mount(NULL, "", 1);
|
|
|
|
sd_mounted = false;
|
|
|
|
}
|
|
|
|
if (sd_init_done && deinit)
|
|
|
|
{
|
|
|
|
sdmmc_storage_end(&sd_storage);
|
|
|
|
sd_init_done = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void *sd_file_read(const char *path, u32 *fsize)
|
|
|
|
{
|
|
|
|
FIL fp;
|
|
|
|
if (f_open(&fp, path, FA_READ) != FR_OK)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
u32 size = f_size(&fp);
|
|
|
|
if (fsize)
|
|
|
|
*fsize = size;
|
|
|
|
|
|
|
|
void *buf = malloc(size);
|
|
|
|
|
|
|
|
if (f_read(&fp, buf, size, NULL) != FR_OK)
|
|
|
|
{
|
|
|
|
free(buf);
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sd_save_to_file(void *buf, u32 size, const char *filename)
|
|
|
|
{
|
|
|
|
FIL fp;
|
|
|
|
u32 res = 0;
|
|
|
|
res = f_open(&fp, filename, FA_CREATE_ALWAYS | FA_WRITE);
|
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
EPRINTFARGS("Error (%d) creating file\n%s.\n", res, filename);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_write(&fp, buf, size, NULL);
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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];
|
|
|
|
bool init_done = false;
|
|
|
|
|
|
|
|
memcpy(path, "backup", 7);
|
|
|
|
f_mkdir(path);
|
|
|
|
|
|
|
|
if (!storage)
|
|
|
|
{
|
|
|
|
if (!sdmmc_storage_init_mmc(&storage2, &sdmmc, SDMMC_4, SDMMC_BUS_WIDTH_8, 4))
|
|
|
|
memcpy(emmcSN, "00000000", 9);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
init_done = true;
|
|
|
|
itoa(storage2.cid.serial, emmcSN, 16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
itoa(storage->cid.serial, emmcSN, 16);
|
|
|
|
|
|
|
|
u32 sub_dir_len = strlen(sub_dir); // Can be a null-terminator.
|
|
|
|
u32 filename_len = strlen(filename); // Can be a null-terminator.
|
|
|
|
|
|
|
|
memcpy(path + strlen(path), "/", 2);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a safe and unused DRAM region for our payloads.
|
|
|
|
#define RELOC_META_OFF 0x7C
|
|
|
|
#define PATCHED_RELOC_SZ 0x94
|
|
|
|
#define PATCHED_RELOC_STACK 0x40007000
|
|
|
|
#define PATCHED_RELOC_ENTRY 0x40010000
|
|
|
|
#define EXT_PAYLOAD_ADDR 0xC0000000
|
|
|
|
#define RCM_PAYLOAD_ADDR (EXT_PAYLOAD_ADDR + ALIGN(PATCHED_RELOC_SZ, 0x10))
|
2020-03-21 20:18:40 +00:00
|
|
|
#define COREBOOT_END_ADDR 0xD0000000
|
2019-06-30 01:03:00 +00:00
|
|
|
#define CBFS_DRAM_EN_ADDR 0x4003e000
|
|
|
|
#define CBFS_DRAM_MAGIC 0x4452414D // "DRAM"
|
|
|
|
|
2020-03-21 20:18:40 +00:00
|
|
|
static void *coreboot_addr;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
void reloc_patcher(u32 payload_dst, u32 payload_src, u32 payload_size)
|
|
|
|
{
|
|
|
|
memcpy((u8 *)payload_src, (u8 *)NYX_LOAD_ADDR, PATCHED_RELOC_SZ);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (payload_size == 0x7000)
|
|
|
|
{
|
2020-03-21 20:18:40 +00:00
|
|
|
memcpy((u8 *)(payload_src + ALIGN(PATCHED_RELOC_SZ, 0x10)), coreboot_addr, 0x7000); //Bootblock
|
2019-06-30 01:03:00 +00:00
|
|
|
*(vu32 *)CBFS_DRAM_EN_ADDR = CBFS_DRAM_MAGIC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lv_res_t launch_payload(lv_obj_t *list)
|
|
|
|
{
|
|
|
|
const char *filename = lv_list_get_btn_text(list);
|
|
|
|
|
|
|
|
if (!filename || !filename[0])
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
char path[128];
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
strcpy(path,"bootloader/payloads/");
|
|
|
|
strcat(path, filename);
|
|
|
|
|
|
|
|
if (sd_mount())
|
|
|
|
{
|
|
|
|
FIL fp;
|
|
|
|
if (f_open(&fp, path, FA_READ))
|
|
|
|
{
|
|
|
|
EPRINTFARGS("Payload file is missing!\n(%s)", path);
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2020-03-21 20:18:40 +00:00
|
|
|
{
|
|
|
|
coreboot_addr = (void *)(COREBOOT_END_ADDR - size);
|
|
|
|
buf = coreboot_addr;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
if (f_read(&fp, buf, size, NULL))
|
|
|
|
{
|
|
|
|
f_close(&fp);
|
2020-03-21 20:18:40 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
sd_unmount(true);
|
|
|
|
|
|
|
|
if (size < 0x30000)
|
|
|
|
{
|
|
|
|
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, ALIGN(size, 0x10));
|
|
|
|
reconfig_hw_workaround(false, byte_swap_32(*(u32 *)(buf + size - sizeof(u32))));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reloc_patcher(PATCHED_RELOC_ENTRY, EXT_PAYLOAD_ADDR, 0x7000);
|
|
|
|
reconfig_hw_workaround(true, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void (*ext_payload_ptr)() = (void *)EXT_PAYLOAD_ADDR;
|
|
|
|
|
2019-08-27 23:39:43 +00:00
|
|
|
// Some cards (Sandisk U1), do not like a fast power cycle. Wait min 100ms.
|
|
|
|
sdmmc_storage_init_wait_sd();
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Launch our payload.
|
|
|
|
(*ext_payload_ptr)();
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2020-03-21 20:18:40 +00:00
|
|
|
sd_unmount(false);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_saved_configuration()
|
|
|
|
{
|
|
|
|
LIST_INIT(ini_sections);
|
|
|
|
|
|
|
|
if (ini_parse(&ini_sections, "bootloader/hekate_ipl.ini", false))
|
|
|
|
{
|
|
|
|
// Load configuration.
|
|
|
|
LIST_FOREACH_ENTRY(ini_sec_t, ini_sec, &ini_sections, link)
|
|
|
|
{
|
2019-09-12 20:08:38 +00:00
|
|
|
// Skip other ini entries.
|
2019-06-30 01:03:00 +00:00
|
|
|
if (ini_sec->type == INI_CHOICE)
|
|
|
|
{
|
|
|
|
if (!strcmp(ini_sec->name, "config"))
|
|
|
|
{
|
|
|
|
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ini_sec->kvs, link)
|
|
|
|
{
|
|
|
|
if (!strcmp("autoboot", kv->key))
|
|
|
|
h_cfg.autoboot = atoi(kv->val);
|
|
|
|
else if (!strcmp("autoboot_list", kv->key))
|
|
|
|
h_cfg.autoboot_list = atoi(kv->val);
|
|
|
|
else if (!strcmp("bootwait", kv->key))
|
|
|
|
h_cfg.bootwait = atoi(kv->val);
|
|
|
|
else if (!strcmp("verification", kv->key))
|
|
|
|
h_cfg.verification = atoi(kv->val);
|
|
|
|
else if (!strcmp("backlight", kv->key))
|
2019-07-06 19:08:37 +00:00
|
|
|
{
|
2019-06-30 01:03:00 +00:00
|
|
|
h_cfg.backlight = atoi(kv->val);
|
2019-07-06 19:08:37 +00:00
|
|
|
if (h_cfg.backlight <= 20)
|
|
|
|
h_cfg.backlight = 30;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
else if (!strcmp("autohosoff", kv->key))
|
|
|
|
h_cfg.autohosoff = atoi(kv->val);
|
|
|
|
else if (!strcmp("autonogc", kv->key))
|
|
|
|
h_cfg.autonogc = atoi(kv->val);
|
2019-12-11 22:13:32 +00:00
|
|
|
else if (!strcmp("updater2p", kv->key))
|
|
|
|
h_cfg.updater2p = atoi(kv->val);
|
2019-06-30 01:03:00 +00: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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nyx_init_load_res()
|
|
|
|
{
|
|
|
|
bpmp_mmu_enable();
|
2019-12-07 00:01:29 +00:00
|
|
|
bpmp_clk_rate_set(BPMP_CLK_DEFAULT_BOOST);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
// Set bootloader's default configuration.
|
|
|
|
set_default_configuration();
|
|
|
|
|
2019-12-08 00:23:03 +00:00
|
|
|
gfx_init_ctxt((u32 *)NYX_FB_ADDRESS, 720, 1280, 720);
|
2019-06-30 01:03:00 +00:00
|
|
|
gfx_con_init();
|
|
|
|
|
|
|
|
sd_mount();
|
|
|
|
|
2019-12-04 19:59:58 +00:00
|
|
|
// Train DRAM and switch to max frequency.
|
2019-06-30 01:03:00 +00:00
|
|
|
minerva_init();
|
|
|
|
|
|
|
|
load_saved_configuration();
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
FIL fp;
|
|
|
|
f_open(&fp, "bootloader/sys/res.pak", FA_READ);
|
|
|
|
f_read(&fp, (void *)NYX_RES_ADDR, f_size(&fp), NULL);
|
|
|
|
f_close(&fp);
|
|
|
|
|
|
|
|
icon_switch = bmp_to_lvimg_obj("bootloader/res/icon_switch.bmp");
|
|
|
|
icon_payload = bmp_to_lvimg_obj("bootloader/res/icon_payload.bmp");
|
|
|
|
icon_lakka = bmp_to_lvimg_obj("bootloader/res/icon_lakka.bmp");
|
|
|
|
hekate_bg = bmp_to_lvimg_obj("bootloader/res/background.bmp");
|
|
|
|
|
|
|
|
sd_unmount(false);
|
|
|
|
|
|
|
|
h_cfg.rcm_patched = fuse_check_patched_rcm();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if (LV_LOG_PRINTF == 1)
|
|
|
|
#include "soc/clock.h"
|
|
|
|
#include "soc/gpio.h"
|
|
|
|
#include "soc/pinmux.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void ipl_main()
|
|
|
|
{
|
|
|
|
//Tegra/Horizon configuration goes to 0x80000000+, package2 goes to 0xA9800000, we place our heap in between.
|
|
|
|
heap_init(IPL_HEAP_START);
|
|
|
|
|
2019-12-04 19:31:39 +00:00
|
|
|
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
b_cfg = (boot_cfg_t *)(nyx_str->hekate + 0x94);
|
|
|
|
|
2019-12-04 19:31:39 +00:00
|
|
|
// Important: Preserve version header!
|
|
|
|
__asm__ ("" : : "" (ipl_ver));
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
#if (LV_LOG_PRINTF == 1)
|
|
|
|
gpio_config(GPIO_PORT_G, GPIO_PIN_0, GPIO_MODE_SPIO);
|
|
|
|
gpio_config(GPIO_PORT_D, GPIO_PIN_1, GPIO_MODE_GPIO);
|
|
|
|
pinmux_config_uart(UART_B);
|
|
|
|
clock_enable_uart(UART_B);
|
|
|
|
uart_init(UART_B, 115200);
|
|
|
|
|
2020-03-21 20:28:50 +00:00
|
|
|
uart_send(UART_B, (u8 *)"hekate-NYX: Hello!\r\n", 20);
|
2019-06-30 01:03:00 +00:00
|
|
|
uart_wait_idle(UART_B, UART_TX_IDLE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Initialize the rest of hw and load nyx's resources.
|
|
|
|
nyx_init_load_res();
|
|
|
|
|
|
|
|
nyx_load_and_run();
|
|
|
|
|
2019-08-27 22:33:38 +00:00
|
|
|
// Halt BPMP if we managed to get out of execution.
|
2019-06-30 01:03:00 +00:00
|
|
|
while (true)
|
2019-08-27 22:33:38 +00:00
|
|
|
bpmp_halt();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|