2019-02-20 14:31:46 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-02-20 14:31:46 +00: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/>.
|
|
|
|
*/
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 14:31:46 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "exception_handlers.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "hwinit.h"
|
2021-01-05 01:18:13 +00:00
|
|
|
#include "car.h"
|
2019-02-20 14:31:46 +00:00
|
|
|
#include "di.h"
|
2019-02-20 17:20:19 +00:00
|
|
|
#include "se.h"
|
|
|
|
#include "pmc.h"
|
2019-02-20 19:31:36 +00:00
|
|
|
#include "emc.h"
|
2019-06-19 07:32:04 +00:00
|
|
|
#include "sysreg.h"
|
2019-02-20 19:31:36 +00:00
|
|
|
#include "key_derivation.h"
|
2019-02-20 14:31:46 +00:00
|
|
|
#include "timers.h"
|
|
|
|
#include "fs_utils.h"
|
|
|
|
#include "stage2.h"
|
2019-02-20 23:05:25 +00:00
|
|
|
#include "splash.h"
|
2019-02-20 14:31:46 +00:00
|
|
|
#include "chainloader.h"
|
2020-11-10 18:44:50 +00:00
|
|
|
#include "../../../fusee/common/sdmmc/sdmmc.h"
|
|
|
|
#include "../../../fusee/common/fatfs/ff.h"
|
|
|
|
#include "../../../fusee/common/log.h"
|
|
|
|
#include "../../../fusee/common/vsprintf.h"
|
|
|
|
#include "../../../fusee/common/ini.h"
|
|
|
|
#include "../../../fusee/common/display/video_fb.h"
|
2019-02-20 14:31:46 +00:00
|
|
|
|
|
|
|
extern void (*__program_exit_callback)(int rc);
|
|
|
|
|
|
|
|
static void *g_framebuffer;
|
|
|
|
|
2019-02-20 17:20:19 +00:00
|
|
|
static bool has_rebooted(void) {
|
|
|
|
return MAKE_REG32(0x4003FFFC) == 0xFAFAFAFA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_has_rebooted(bool rebooted) {
|
|
|
|
MAKE_REG32(0x4003FFFC) = rebooted ? 0xFAFAFAFA : 0x00000000;
|
|
|
|
}
|
|
|
|
|
2019-06-19 06:23:31 +00:00
|
|
|
static void exfiltrate_keys_and_reboot_if_needed(uint32_t version) {
|
2019-02-20 17:20:19 +00:00
|
|
|
volatile tegra_pmc_t *pmc = pmc_get_regs();
|
|
|
|
uint8_t *enc_se_state = (uint8_t *)0x4003E000;
|
|
|
|
uint8_t *dec_se_state = (uint8_t *)0x4003F000;
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 17:20:19 +00:00
|
|
|
if (!has_rebooted()) {
|
2019-02-21 16:23:33 +00:00
|
|
|
/* Prepare for a reboot before doing anything else. */
|
|
|
|
prepare_for_reboot_to_self();
|
|
|
|
set_has_rebooted(true);
|
2019-06-19 05:22:40 +00:00
|
|
|
|
|
|
|
/* Derive keys. */
|
2019-06-19 06:23:31 +00:00
|
|
|
derive_keys(version);
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 17:20:19 +00:00
|
|
|
reboot_to_self();
|
|
|
|
} else {
|
|
|
|
/* Decrypt the security engine state. */
|
|
|
|
uint32_t ALIGN(16) context_key[4];
|
|
|
|
context_key[0] = pmc->secure_scratch4;
|
|
|
|
context_key[1] = pmc->secure_scratch5;
|
|
|
|
context_key[2] = pmc->secure_scratch6;
|
|
|
|
context_key[3] = pmc->secure_scratch7;
|
|
|
|
set_aes_keyslot(0xC, context_key, sizeof(context_key));
|
|
|
|
se_aes_128_cbc_decrypt(0xC, dec_se_state, 0x840, enc_se_state, 0x840);
|
2019-06-19 05:22:40 +00:00
|
|
|
|
|
|
|
/* Load keys in from decrypted state. */
|
|
|
|
load_keys(dec_se_state);
|
|
|
|
|
2019-02-20 17:20:19 +00:00
|
|
|
/* Clear the security engine state. */
|
2019-02-20 21:12:15 +00:00
|
|
|
for (size_t i = 0; i < 0x840; i += 4) {
|
2019-02-20 17:20:19 +00:00
|
|
|
MAKE_REG32((uintptr_t)(enc_se_state) + i) = 0xCCCCCCCC;
|
|
|
|
MAKE_REG32((uintptr_t)(dec_se_state) + i) = 0xCCCCCCCC;
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < 4; i++) {
|
|
|
|
context_key[i] = 0xCCCCCCCC;
|
|
|
|
}
|
|
|
|
pmc->secure_scratch4 = 0xCCCCCCCC;
|
|
|
|
pmc->secure_scratch5 = 0xCCCCCCCC;
|
|
|
|
pmc->secure_scratch6 = 0xCCCCCCCC;
|
|
|
|
pmc->secure_scratch7 = 0xCCCCCCCC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-26 19:38:15 +00:00
|
|
|
static void display_splash_screen(void) {
|
|
|
|
/* Draw splash. */
|
|
|
|
draw_splash((volatile uint32_t *)g_framebuffer);
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-07-26 19:38:15 +00:00
|
|
|
/* Turn on the backlight. */
|
|
|
|
display_backlight(true);
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-07-26 19:38:15 +00:00
|
|
|
/* Ensure the splash screen is displayed for at least one second. */
|
|
|
|
mdelay(1000);
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-07-26 19:38:15 +00:00
|
|
|
/* Turn off the backlight. */
|
|
|
|
display_backlight(false);
|
|
|
|
}
|
|
|
|
|
2019-02-20 14:31:46 +00:00
|
|
|
static void setup_env(void) {
|
|
|
|
g_framebuffer = (void *)0xC0000000;
|
|
|
|
|
|
|
|
/* Initialize hardware. */
|
2020-12-04 16:29:30 +00:00
|
|
|
nx_hwinit(false);
|
2019-02-20 14:31:46 +00:00
|
|
|
|
|
|
|
/* Zero-fill the framebuffer and register it as printk provider. */
|
|
|
|
video_init(g_framebuffer);
|
|
|
|
|
|
|
|
/* Initialize the display. */
|
2020-12-04 16:29:30 +00:00
|
|
|
display_init();
|
2019-02-20 14:31:46 +00:00
|
|
|
|
|
|
|
/* Set the framebuffer. */
|
|
|
|
display_init_framebuffer(g_framebuffer);
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-02-20 14:31:46 +00:00
|
|
|
/* Set up the exception handlers. */
|
|
|
|
setup_exception_handlers();
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 14:31:46 +00:00
|
|
|
/* Mount the SD card. */
|
|
|
|
mount_sd();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cleanup_env(void) {
|
|
|
|
/* Unmount the SD card. */
|
|
|
|
unmount_sd();
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-07-06 19:58:01 +00:00
|
|
|
/* Terminate the display. */
|
2020-12-04 16:29:30 +00:00
|
|
|
display_end();
|
2019-02-20 14:31:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void exit_callback(int rc) {
|
|
|
|
(void)rc;
|
|
|
|
relocate_and_chainload();
|
|
|
|
}
|
|
|
|
|
2019-06-19 06:23:31 +00:00
|
|
|
int sept_main(uint32_t version) {
|
2019-02-20 21:12:15 +00:00
|
|
|
const char *stage2_path;
|
|
|
|
stage2_args_t *stage2_args;
|
|
|
|
uint32_t stage2_version = 0;
|
2019-02-20 23:05:25 +00:00
|
|
|
ScreenLogLevel log_level = SCREEN_LOG_LEVEL_NONE;
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-06-19 07:32:04 +00:00
|
|
|
/* Validate that we can safely boot the CCPLEX. */
|
|
|
|
if (SB_CSR_0 & 2) {
|
|
|
|
generic_panic();
|
|
|
|
}
|
|
|
|
|
2019-02-20 17:20:19 +00:00
|
|
|
/* Extract keys from the security engine, which TSEC FW locked down. */
|
2019-06-19 06:23:31 +00:00
|
|
|
exfiltrate_keys_and_reboot_if_needed(version);
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 14:31:46 +00:00
|
|
|
/* Override the global logging level. */
|
|
|
|
log_set_log_level(log_level);
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-07-06 19:58:01 +00:00
|
|
|
/* Initialize the boot environment. */
|
2019-02-20 14:31:46 +00:00
|
|
|
setup_env();
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 19:31:36 +00:00
|
|
|
/* Mark EMC scratch to say that sept has run. */
|
|
|
|
MAKE_EMC_REG(EMC_SCRATCH0) |= 0x80000000;
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-02-20 21:12:15 +00:00
|
|
|
/* Load the loader payload into DRAM. */
|
|
|
|
load_stage2();
|
2021-01-05 01:18:13 +00:00
|
|
|
|
2019-07-26 19:38:15 +00:00
|
|
|
/* Display the splash screen. */
|
|
|
|
display_splash_screen();
|
2019-02-20 21:12:15 +00:00
|
|
|
|
|
|
|
/* Setup argument data. */
|
|
|
|
stage2_path = stage2_get_program_path();
|
|
|
|
strcpy(g_chainloader_arg_data, stage2_path);
|
|
|
|
stage2_args = (stage2_args_t *)(g_chainloader_arg_data + strlen(stage2_path) + 1); /* May be unaligned. */
|
|
|
|
memcpy(&stage2_args->version, &stage2_version, 4);
|
|
|
|
memcpy(&stage2_args->log_level, &log_level, sizeof(log_level));
|
|
|
|
strcpy(stage2_args->bct0, "");
|
|
|
|
g_chainloader_argc = 2;
|
2019-06-19 05:22:40 +00:00
|
|
|
|
2019-07-06 19:58:01 +00:00
|
|
|
/* Terminate the boot environment. */
|
2019-02-20 14:31:46 +00:00
|
|
|
cleanup_env();
|
|
|
|
|
|
|
|
/* Finally, after the cleanup routines (__libc_fini_array, etc.) are called, jump to Stage2. */
|
|
|
|
__program_exit_callback = exit_callback;
|
|
|
|
return 0;
|
|
|
|
}
|