2018-09-07 15:00:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-03-02 19:28:05 +00:00
|
|
|
#include <stdint.h>
|
2018-03-02 21:44:21 +00:00
|
|
|
#include <stdbool.h>
|
2018-03-02 19:28:05 +00:00
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "bootup.h"
|
|
|
|
|
2018-03-02 20:16:30 +00:00
|
|
|
#include "fuse.h"
|
2018-03-25 21:05:08 +00:00
|
|
|
#include "bpmp.h"
|
2018-03-02 20:16:30 +00:00
|
|
|
#include "flow.h"
|
|
|
|
#include "pmc.h"
|
|
|
|
#include "mc.h"
|
2018-03-02 21:44:21 +00:00
|
|
|
#include "car.h"
|
2018-03-02 20:16:30 +00:00
|
|
|
#include "se.h"
|
|
|
|
#include "masterkey.h"
|
|
|
|
#include "configitem.h"
|
2018-03-02 20:45:37 +00:00
|
|
|
#include "timers.h"
|
2018-03-02 20:16:30 +00:00
|
|
|
#include "misc.h"
|
2018-03-02 21:44:21 +00:00
|
|
|
#include "bpmp.h"
|
|
|
|
#include "sysreg.h"
|
|
|
|
#include "interrupt.h"
|
|
|
|
#include "cpu_context.h"
|
|
|
|
#include "actmon.h"
|
2018-03-07 13:34:47 +00:00
|
|
|
#include "sysctr0.h"
|
2018-03-25 21:05:08 +00:00
|
|
|
#include "exocfg.h"
|
2018-03-02 21:44:21 +00:00
|
|
|
|
2018-03-03 18:31:22 +00:00
|
|
|
#include "mmu.h"
|
|
|
|
#include "arm.h"
|
|
|
|
#include "memory_map.h"
|
|
|
|
#include "synchronization.h"
|
|
|
|
|
2018-03-02 21:44:21 +00:00
|
|
|
static bool g_has_booted_up = false;
|
2018-03-02 20:16:30 +00:00
|
|
|
|
2018-09-09 06:51:52 +00:00
|
|
|
void setup_dram_magic_numbers(void) {
|
2018-11-14 20:14:41 +00:00
|
|
|
/* These DRAM writes test and set values for the GPU UCODE carveout. */
|
2018-09-09 06:51:52 +00:00
|
|
|
unsigned int target_fw = exosphere_get_target_firmware();
|
|
|
|
if (EXOSPHERE_TARGET_FIRMWARE_400 <= target_fw) {
|
2018-11-14 20:14:41 +00:00
|
|
|
(*(volatile uint32_t *)(0x8005FFFC)) = 0xC0EDBBCC; /* Access test value. */
|
2018-09-09 06:51:52 +00:00
|
|
|
flush_dcache_range((void *)0x8005FFFC, (void *)0x80060000);
|
|
|
|
if (EXOSPHERE_TARGET_FIRMWARE_600 <= target_fw) {
|
2018-11-14 20:14:41 +00:00
|
|
|
(*(volatile uint32_t *)(0x8005FF00)) = 0x00000083; /* SKU code. */
|
2018-09-09 06:51:52 +00:00
|
|
|
(*(volatile uint32_t *)(0x8005FF04)) = 0x00000002;
|
2018-11-14 20:14:41 +00:00
|
|
|
(*(volatile uint32_t *)(0x8005FF08)) = 0x00000210; /* Tegra210 code. */
|
2018-09-09 06:51:52 +00:00
|
|
|
flush_dcache_range((void *)0x8005FF00, (void *)0x8005FF0C);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
__dsb_sy();
|
|
|
|
}
|
|
|
|
|
2018-03-02 19:28:05 +00:00
|
|
|
void bootup_misc_mmio(void) {
|
2018-03-02 20:16:30 +00:00
|
|
|
/* Initialize Fuse registers. */
|
|
|
|
fuse_init();
|
2018-05-21 10:30:32 +00:00
|
|
|
|
2018-03-02 20:16:30 +00:00
|
|
|
/* Verify Security Engine sanity. */
|
|
|
|
se_set_in_context_save_mode(false);
|
|
|
|
/* TODO: se_verify_keys_unreadable(); */
|
|
|
|
se_validate_stored_vector();
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < KEYSLOT_SWITCH_SESSIONKEY; i++) {
|
|
|
|
clear_aes_keyslot(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < KEYSLOT_RSA_MAX; i++) {
|
|
|
|
clear_rsa_keyslot(i);
|
|
|
|
}
|
|
|
|
se_initialize_rng(KEYSLOT_SWITCH_RNGKEY);
|
|
|
|
se_generate_random_key(KEYSLOT_SWITCH_SRKGENKEY, KEYSLOT_SWITCH_RNGKEY);
|
|
|
|
se_generate_srk(KEYSLOT_SWITCH_SRKGENKEY);
|
|
|
|
|
2018-09-09 06:51:52 +00:00
|
|
|
if (!g_has_booted_up && EXOSPHERE_TARGET_FIRMWARE_600 > exosphere_get_target_firmware() && exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
setup_dram_magic_numbers();
|
2018-03-02 21:44:21 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
/* Mark TMR5, TMR6, TMR7, TMR8, WDT0, WDT1, WDT2 and WDT3 as secure. */
|
|
|
|
SHARED_TIMER_SECURE_CFG_0 = 0xF1E0;
|
2018-03-02 20:45:37 +00:00
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
FLOW_CTLR_BPMP_CLUSTER_CONTROL_0 = 4; /* ACTIVE_CLUSTER_LOCK. */
|
|
|
|
FLOW_CTLR_FLOW_DBG_QUAL_0 = 0x10000000; /* Enable FIQ2CCPLEX */
|
2018-03-02 20:45:37 +00:00
|
|
|
|
2018-03-02 20:16:30 +00:00
|
|
|
/* Disable Deep Power Down. */
|
|
|
|
APBDEV_PMC_DPD_ENABLE_0 = 0;
|
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
/* Setup MC carveouts. */
|
|
|
|
MAKE_MC_REG(MC_VIDEO_PROTECT_GPU_OVERRIDE_0) = 1;
|
|
|
|
MAKE_MC_REG(MC_VIDEO_PROTECT_BOM) = 0;
|
|
|
|
MAKE_MC_REG(MC_VIDEO_PROTECT_SIZE_MB) = 0;
|
|
|
|
MAKE_MC_REG(MC_VIDEO_PROTECT_REG_CTRL) = 1;
|
|
|
|
MAKE_MC_REG(MC_SEC_CARVEOUT_BOM) = 0;
|
|
|
|
MAKE_MC_REG(MC_SEC_CARVEOUT_SIZE_MB) = 0;
|
|
|
|
MAKE_MC_REG(MC_SEC_CARVEOUT_REG_CTRL) = 1;
|
|
|
|
MAKE_MC_REG(MC_MTS_CARVEOUT_BOM) = 0;
|
|
|
|
MAKE_MC_REG(MC_MTS_CARVEOUT_SIZE_MB) = 0;
|
|
|
|
MAKE_MC_REG(MC_MTS_CARVEOUT_ADR_HI) = 0;
|
|
|
|
MAKE_MC_REG(MC_MTS_CARVEOUT_REG_CTRL) = 1;
|
|
|
|
MAKE_MC_REG(MC_SECURITY_CFG0) = 0;
|
|
|
|
MAKE_MC_REG(MC_SECURITY_CFG1) = 0;
|
|
|
|
MAKE_MC_REG(MC_SECURITY_CFG3) = 3;
|
2018-03-02 20:16:30 +00:00
|
|
|
configure_default_carveouts();
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-02 20:16:30 +00:00
|
|
|
/* Mark registers secure world only. */
|
2018-05-22 02:14:06 +00:00
|
|
|
if (exosphere_get_target_firmware() == EXOSPHERE_TARGET_FIRMWARE_100) {
|
2018-09-05 03:55:46 +00:00
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG0_0 = APB_SSER0_SATA_AUX | APB_SSER0_DTV | APB_SSER0_QSPI | APB_SSER0_SATA | APB_SSER0_LA;
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG1_0 = APB_SSER1_SPI1 | APB_SSER1_SPI2 | APB_SSER1_SPI3 | APB_SSER1_SPI5 | APB_SSER1_SPI6 | APB_SSER1_I2C4 | APB_SSER1_I2C6;
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG2_0 = 1 << 4 | 1 << 5 | APB_SSER2_DDS; /* bits 4 and 5 are not labeled in 21.1.7.3 */
|
2018-05-22 02:14:06 +00:00
|
|
|
} else {
|
|
|
|
/* Mark SATA_AUX, DTV, QSPI, SE, SATA, LA secure only. */
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG0_0 = APB_SSER0_SATA_AUX | APB_SSER0_DTV | APB_SSER0_QSPI | APB_SSER0_SE | APB_SSER0_SATA | APB_SSER0_LA;
|
|
|
|
|
|
|
|
/* By default, mark SPI1, SPI2, SPI3, SPI5, SPI6, I2C6 secure only. */
|
|
|
|
uint32_t sec_disable_1 = APB_SSER1_SPI1 | APB_SSER1_SPI2 | APB_SSER1_SPI3 | APB_SSER1_SPI5 | APB_SSER1_SPI6 | APB_SSER1_I2C6;
|
|
|
|
/* By default, mark SDMMC3, DDS, DP2 secure only. */
|
|
|
|
uint32_t sec_disable_2 = APB_SSER2_SDMMC3 | APB_SSER2_DDS | APB_SSER2_DP2;
|
|
|
|
uint64_t hardware_type = configitem_get_hardware_type();
|
|
|
|
if (hardware_type != 1) {
|
|
|
|
/* Also mark I2C4 secure only, */
|
|
|
|
sec_disable_1 |= APB_SSER1_I2C4;
|
|
|
|
}
|
|
|
|
if (hardware_type != 0 && exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
/* Starting on 4.x on non-dev units, mark UARTB, UARTC, SPI4, I2C3 secure only. */
|
|
|
|
sec_disable_1 |= APB_SSER1_UART_B | APB_SSER1_UART_C | APB_SSER1_SPI4 | APB_SSER1_I2C3;
|
|
|
|
/* Starting on 4.x on non-dev units, mark SDMMC1 secure only. */
|
|
|
|
sec_disable_2 |= APB_SSER2_SDMMC1;
|
|
|
|
}
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG1_0 = sec_disable_1;
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG2_0 = sec_disable_2;
|
2018-03-02 20:16:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
/* Reset Translation Enable Registers. */
|
|
|
|
MAKE_MC_REG(MC_SMMU_TRANSLATION_ENABLE_0) = 0xFFFFFFFF;
|
|
|
|
MAKE_MC_REG(MC_SMMU_TRANSLATION_ENABLE_1) = 0xFFFFFFFF;
|
|
|
|
MAKE_MC_REG(MC_SMMU_TRANSLATION_ENABLE_2) = 0xFFFFFFFF;
|
|
|
|
MAKE_MC_REG(MC_SMMU_TRANSLATION_ENABLE_3) = 0xFFFFFFFF;
|
|
|
|
MAKE_MC_REG(MC_SMMU_TRANSLATION_ENABLE_4) = 0xFFFFFFFF;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-02 21:44:21 +00:00
|
|
|
/* TODO: What are these MC reg writes? */
|
2018-06-01 00:32:25 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
MAKE_MC_REG(0x038) = 0xE;
|
|
|
|
} else {
|
|
|
|
MAKE_MC_REG(0x038) = 0x0;
|
|
|
|
}
|
2018-03-02 21:44:21 +00:00
|
|
|
MAKE_MC_REG(0x03C) = 0;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
/* MISC registers. */
|
2018-05-21 10:30:32 +00:00
|
|
|
MAKE_MC_REG(0x9E0) = 0;
|
|
|
|
MAKE_MC_REG(0x9E4) = 0;
|
|
|
|
MAKE_MC_REG(0x9E8) = 0;
|
|
|
|
MAKE_MC_REG(0x9EC) = 0;
|
|
|
|
MAKE_MC_REG(0x9F0) = 0;
|
|
|
|
MAKE_MC_REG(0x9F4) = 0;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-06-01 00:32:25 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
2018-11-14 20:14:41 +00:00
|
|
|
MAKE_MC_REG(MC_SMMU_PTB_ASID) = 0;
|
2018-06-01 00:32:25 +00:00
|
|
|
}
|
2018-11-14 20:14:41 +00:00
|
|
|
MAKE_MC_REG(MC_SMMU_PTB_DATA) = 0;
|
|
|
|
MAKE_MC_REG(MC_SMMU_TLB_CONFIG) = 0x30000030;
|
|
|
|
MAKE_MC_REG(MC_SMMU_PTC_CONFIG) = 0x2800003F;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_PTC_FLUSH) = 0;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_TLB_FLUSH) = 0;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_CONFIG) = 1; /* Enable SMMU. */
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
2018-05-21 10:30:32 +00:00
|
|
|
|
2018-03-02 21:44:21 +00:00
|
|
|
/* Clear RESET Vector, setup CPU Secure Boot RESET Vectors. */
|
2018-08-03 04:33:55 +00:00
|
|
|
uint32_t reset_vec;
|
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_500) {
|
2018-08-17 01:56:04 +00:00
|
|
|
reset_vec = TZRAM_GET_SEGMENT_5X_PA(TZRAM_SEGMENT_ID_WARMBOOT_CRT0_AND_MAIN);
|
2018-08-03 04:33:55 +00:00
|
|
|
} else {
|
2018-08-17 01:56:04 +00:00
|
|
|
reset_vec = TZRAM_GET_SEGMENT_PA(TZRAM_SEGMENT_ID_WARMBOOT_CRT0_AND_MAIN);
|
|
|
|
}
|
2018-03-02 21:44:21 +00:00
|
|
|
EVP_CPU_RESET_VECTOR_0 = 0;
|
|
|
|
SB_AA64_RESET_LOW_0 = reset_vec | 1;
|
|
|
|
SB_AA64_RESET_HIGH_0 = 0;
|
|
|
|
|
|
|
|
/* Lock Non-Secure writes to Secure Boot RESET Vector. */
|
|
|
|
SB_CSR_0 = 2;
|
2018-03-07 13:34:47 +00:00
|
|
|
|
2018-03-02 21:44:21 +00:00
|
|
|
/* Setup PMC Secure Scratch RESET Vector for warmboot. */
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH34_0 = reset_vec;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH35_0 = 0;
|
|
|
|
APBDEV_PMC_SEC_DISABLE3_0 = 0x500000;
|
|
|
|
|
|
|
|
/* Setup FIQs. */
|
2018-03-03 18:31:22 +00:00
|
|
|
|
2018-03-02 19:28:05 +00:00
|
|
|
/* And assign "se_operation_completed" to Interrupt 0x5A. */
|
2018-03-02 21:44:21 +00:00
|
|
|
intr_set_priority(INTERRUPT_ID_SECURITY_ENGINE, 0);
|
|
|
|
intr_set_group(INTERRUPT_ID_SECURITY_ENGINE, 0);
|
|
|
|
intr_set_enabled(INTERRUPT_ID_SECURITY_ENGINE, 1);
|
|
|
|
intr_set_cpu_mask(INTERRUPT_ID_SECURITY_ENGINE, 8);
|
|
|
|
intr_set_edge_level(INTERRUPT_ID_SECURITY_ENGINE, 0);
|
2018-11-14 20:14:41 +00:00
|
|
|
|
2018-05-22 02:14:06 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
intr_set_priority(INTERRUPT_ID_ACTIVITY_MONITOR_4X, 0);
|
|
|
|
intr_set_group(INTERRUPT_ID_ACTIVITY_MONITOR_4X, 0);
|
|
|
|
intr_set_enabled(INTERRUPT_ID_ACTIVITY_MONITOR_4X, 1);
|
|
|
|
intr_set_cpu_mask(INTERRUPT_ID_ACTIVITY_MONITOR_4X, 8);
|
|
|
|
intr_set_edge_level(INTERRUPT_ID_ACTIVITY_MONITOR_4X, 0);
|
|
|
|
}
|
2018-03-02 21:44:21 +00:00
|
|
|
|
|
|
|
if (!g_has_booted_up) {
|
|
|
|
intr_register_handler(INTERRUPT_ID_SECURITY_ENGINE, se_operation_completed);
|
2018-05-22 02:14:06 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
intr_register_handler(INTERRUPT_ID_ACTIVITY_MONITOR_4X, actmon_interrupt_handler);
|
|
|
|
}
|
2018-03-02 21:44:21 +00:00
|
|
|
for (unsigned int core = 1; core < NUM_CPU_CORES; core++) {
|
|
|
|
set_core_is_active(core, false);
|
|
|
|
}
|
|
|
|
g_has_booted_up = true;
|
2018-03-25 21:05:08 +00:00
|
|
|
} else if (exosphere_get_target_firmware() < EXOSPHERE_TARGET_FIRMWARE_400) {
|
2018-11-14 20:14:41 +00:00
|
|
|
/* Disable AHB redirect. */
|
|
|
|
MAKE_MC_REG(MC_IRAM_BOM) = 0xFFFFF000;
|
|
|
|
MAKE_MC_REG(MC_IRAM_TOM) = 0;
|
|
|
|
MAKE_MC_REG(MC_IRAM_REG_CTRL) |= 1;
|
2018-03-02 21:44:21 +00:00
|
|
|
CLK_RST_CONTROLLER_LVL2_CLK_GATE_OVRD_0 &= 0xFFF7FFFF;
|
|
|
|
}
|
2018-03-02 19:28:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup_4x_mmio(void) {
|
2018-09-09 06:51:52 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_600) {
|
|
|
|
configure_gpu_ucode_carveout();
|
|
|
|
}
|
2018-11-14 20:14:41 +00:00
|
|
|
|
|
|
|
/* Disable AHB redirect. */
|
|
|
|
MAKE_MC_REG(MC_IRAM_BOM) = 0xFFFFF000;
|
|
|
|
MAKE_MC_REG(MC_IRAM_TOM) = 0;
|
|
|
|
MAKE_MC_REG(MC_IRAM_REG_CTRL) |= 1;
|
2018-03-25 21:05:08 +00:00
|
|
|
CLK_RST_CONTROLLER_LVL2_CLK_GATE_OVRD_0 &= 0xFFF7FFFF;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* TODO: What are these PMC scratch writes? */
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH51_0 = (APBDEV_PMC_SECURE_SCRATCH51_0 & 0xFFFF8000) | 0x4000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH16_0 &= 0x3FFFFFFF;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH55_0 = (APBDEV_PMC_SECURE_SCRATCH55_0 & 0xFF000FFF) | 0x1000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH74_0 = 0x40008000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH75_0 = 0x40000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH76_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH77_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH78_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH99_0 = 0x40008000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH100_0 = 0x40000;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH101_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH102_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH103_0 = 0x0;
|
|
|
|
APBDEV_PMC_SECURE_SCRATCH39_0 = (APBDEV_PMC_SECURE_SCRATCH39_0 & 0xF8000000) | 0x88;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* TODO: Do we want to bother locking the secure scratch registers? */
|
|
|
|
/* 4.x Jamais Vu mitigations. */
|
|
|
|
/* Overwrite exception vectors. */
|
|
|
|
BPMP_VECTOR_RESET = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_UNDEF = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_SWI = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_PREFETCH_ABORT = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_DATA_ABORT = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_UNK = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_IRQ = BPMP_MITIGATION_RESET_VAL;
|
|
|
|
BPMP_VECTOR_FIQ = BPMP_MITIGATION_RESET_VAL;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* Disable AHB arbitration for the BPMP. */
|
|
|
|
AHB_ARBITRATION_DISABLE_0 |= 2;
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* Set SMMU for BPMP/APB-DMA to point to TZRAM. */
|
2018-11-14 20:14:41 +00:00
|
|
|
MAKE_MC_REG(MC_SMMU_PTB_ASID) = 1;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_PTB_DATA) = 0x70012;
|
|
|
|
MAKE_MC_REG(MC_SMMU_AVPC_ASID) = 0x80000001;
|
|
|
|
MAKE_MC_REG(MC_SMMU_PPCS1_ASID) = 0x80000001;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_PTC_FLUSH) = 0;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
|
|
|
MAKE_MC_REG(MC_SMMU_TLB_FLUSH) = 0;
|
|
|
|
(void)MAKE_MC_REG(MC_SMMU_TLB_CONFIG);
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* Wait for the BPMP to halt. */
|
2018-06-02 04:20:04 +00:00
|
|
|
while ((FLOW_CTLR_HALT_COP_EVENTS_0 >> 29) != 2) {
|
2018-03-25 21:05:08 +00:00
|
|
|
wait(1);
|
|
|
|
}
|
2018-09-05 03:55:46 +00:00
|
|
|
|
2018-03-25 21:05:08 +00:00
|
|
|
/* If not in a debugging context, setup the activity monitor. */
|
|
|
|
if ((get_debug_authentication_status() & 3) != 3) {
|
|
|
|
FLOW_CTLR_HALT_COP_EVENTS_0 = 0x40000000;
|
|
|
|
clkrst_reboot(CARDEVICE_ACTMON);
|
|
|
|
/* Sample every microsecond. */
|
|
|
|
ACTMON_GLB_PERIOD_CTRL_0 = 0x100;
|
|
|
|
/* Fire interrupt every wakeup. */
|
|
|
|
ACTMON_COP_UPPER_WMARK_0 = 0;
|
|
|
|
/* Cause a panic() on BPMP wakeup. */
|
|
|
|
actmon_set_callback(actmon_on_bpmp_wakeup);
|
|
|
|
/* Enable interrupt when above watermark, periodic sampling. */
|
|
|
|
ACTMON_COP_CTRL_0 = 0xC0040000;
|
|
|
|
}
|
2018-03-02 22:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup_current_core_state(void) {
|
|
|
|
uint64_t temp_reg;
|
2018-03-07 13:34:47 +00:00
|
|
|
|
2018-03-02 22:16:54 +00:00
|
|
|
/* Setup system registers. */
|
2018-08-17 01:45:38 +00:00
|
|
|
SET_SYSREG(spsr_el3, 0b1111 << 6 | 0b0101); /* use EL2h+DAIF set initially, may be overwritten later. Not in official code */
|
2018-03-11 11:53:52 +00:00
|
|
|
|
2018-03-02 22:16:54 +00:00
|
|
|
SET_SYSREG(actlr_el3, 0x73ull);
|
|
|
|
SET_SYSREG(actlr_el2, 0x73ull);
|
|
|
|
SET_SYSREG(hcr_el2, 0x80000000ull);
|
|
|
|
SET_SYSREG(dacr32_el2, 0xFFFFFFFFull);
|
|
|
|
SET_SYSREG(sctlr_el1, 0xC50838ull);
|
|
|
|
SET_SYSREG(sctlr_el2, 0x30C50838ull);
|
2018-03-03 18:31:22 +00:00
|
|
|
|
|
|
|
__isb();
|
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
SET_SYSREG(cntfrq_el0, SYSCTR0_CNTFID0_0);
|
2018-03-02 22:16:54 +00:00
|
|
|
SET_SYSREG(cnthctl_el2, 3ull);
|
|
|
|
|
2018-03-03 18:31:22 +00:00
|
|
|
__isb();
|
2018-03-02 22:16:54 +00:00
|
|
|
|
|
|
|
/* Setup Interrupts, flow. */
|
|
|
|
flow_clear_csr0_and_events(get_core_id());
|
|
|
|
intr_initialize_gic();
|
|
|
|
intr_set_priority(INTERRUPT_ID_1C, 0);
|
|
|
|
intr_set_group(INTERRUPT_ID_1C, 0);
|
|
|
|
intr_set_enabled(INTERRUPT_ID_1C, 1);
|
|
|
|
|
|
|
|
/* Restore current core context. */
|
|
|
|
restore_current_core_context();
|
2018-03-03 18:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void identity_unmap_iram_cd_tzram(void) {
|
|
|
|
/* See also: configure_ttbls (in coldboot_init.c). */
|
2018-05-11 12:07:37 +00:00
|
|
|
/*uintptr_t *mmu_l1_tbl = (uintptr_t *)(TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGEMENT_ID_SECMON_EVT) + 0x800 - 64);
|
|
|
|
uintptr_t *mmu_l2_tbl = (uintptr_t *)TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGMENT_ID_L2_TRANSLATION_TABLE);*/
|
2018-03-03 18:31:22 +00:00
|
|
|
uintptr_t *mmu_l3_tbl = (uintptr_t *)TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGMENT_ID_L3_TRANSLATION_TABLE);
|
|
|
|
|
2018-05-11 14:13:45 +00:00
|
|
|
mmu_unmap_range(3, mmu_l3_tbl, IDENTITY_GET_MAPPING_ADDRESS(IDENTITY_MAPPING_IRAM_A_CCRT0), IDENTITY_GET_MAPPING_SIZE(IDENTITY_MAPPING_IRAM_A_CCRT0));
|
2018-03-03 18:31:22 +00:00
|
|
|
mmu_unmap_range(3, mmu_l3_tbl, IDENTITY_GET_MAPPING_ADDRESS(IDENTITY_MAPPING_IRAM_CD), IDENTITY_GET_MAPPING_SIZE(IDENTITY_MAPPING_IRAM_CD));
|
2018-05-11 12:07:37 +00:00
|
|
|
/*mmu_unmap_range(3, mmu_l3_tbl, IDENTITY_GET_MAPPING_ADDRESS(IDENTITY_MAPPING_TZRAM), IDENTITY_GET_MAPPING_SIZE(IDENTITY_MAPPING_TZRAM));
|
2018-03-03 18:31:22 +00:00
|
|
|
|
|
|
|
mmu_unmap(2, mmu_l2_tbl, 0x40000000);
|
|
|
|
mmu_unmap(2, mmu_l2_tbl, 0x7C000000);
|
|
|
|
|
2018-05-11 12:07:37 +00:00
|
|
|
mmu_unmap(1, mmu_l1_tbl, 0x40000000);*/
|
2018-03-03 18:31:22 +00:00
|
|
|
|
|
|
|
tlb_invalidate_all_inner_shareable();
|
|
|
|
}
|
|
|
|
|
|
|
|
void secure_additional_devices(void) {
|
2018-05-22 02:14:06 +00:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_200) {
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG0_0 |= APB_SSER0_PMC; /* make PMC secure-only (2.x+) */
|
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
|
|
APB_MISC_SECURE_REGS_APB_SLAVE_SECURITY_ENABLE_REG1_0 |= APB_SSER1_MC0 | APB_SSER1_MC1 | APB_SSER1_MCB; /* make MC0, MC1, MCB secure-only (4.x+) */
|
|
|
|
}
|
2018-03-03 18:31:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_extabt_serror_taken_to_el3(bool taken_to_el3) {
|
|
|
|
uint64_t temp_scr_el3;
|
|
|
|
__asm__ __volatile__ ("mrs %0, scr_el3" : "=r"(temp_scr_el3) :: "memory");
|
|
|
|
|
|
|
|
temp_scr_el3 &= 0xFFFFFFF7;
|
|
|
|
temp_scr_el3 |= taken_to_el3 ? 8 : 0;
|
|
|
|
|
|
|
|
__asm__ __volatile__ ("msr scr_el3, %0" :: "r"(temp_scr_el3) : "memory");
|
|
|
|
__isb();
|
|
|
|
}
|