2018-02-25 02:34:15 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "memory_map.h"
|
2018-03-03 02:43:46 +00:00
|
|
|
#include "cpu_context.h"
|
2018-03-03 18:31:22 +00:00
|
|
|
#include "bootconfig.h"
|
|
|
|
#include "configitem.h"
|
|
|
|
#include "masterkey.h"
|
|
|
|
#include "bootup.h"
|
|
|
|
#include "smc_api.h"
|
2018-03-25 22:05:08 +01:00
|
|
|
#include "exocfg.h"
|
2018-02-25 02:34:15 +00:00
|
|
|
|
2018-03-03 18:31:22 +00:00
|
|
|
#include "se.h"
|
|
|
|
#include "mc.h"
|
2018-03-04 13:04:49 +00:00
|
|
|
#include "car.h"
|
|
|
|
#include "i2c.h"
|
|
|
|
#include "misc.h"
|
2018-03-03 18:31:22 +00:00
|
|
|
#include "interrupt.h"
|
|
|
|
|
|
|
|
void __attribute__((noreturn)) warmboot_main(void) {
|
|
|
|
/*
|
|
|
|
This function and its callers are reached in either of the following events, under normal conditions:
|
|
|
|
- warmboot (core 3)
|
|
|
|
- cpu_on
|
|
|
|
*/
|
|
|
|
if (is_core_active(get_core_id())) {
|
2018-03-03 18:49:25 +00:00
|
|
|
panic(0xF7F00009); /* invalid CPU context */
|
2018-03-03 18:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IRAM C+D identity mapping has actually been removed on coldboot but we don't really care */
|
2018-05-11 13:07:37 +01:00
|
|
|
/* For our crt0 to work, this doesn't actually unmap TZRAM */
|
2018-03-03 18:31:22 +00:00
|
|
|
identity_unmap_iram_cd_tzram();
|
|
|
|
|
|
|
|
/* On warmboot (not cpu_on) only */
|
2018-03-03 18:43:44 +00:00
|
|
|
if (MC_SECURITY_CFG3_0 == 0) {
|
2018-03-03 18:31:22 +00:00
|
|
|
if (!configitem_is_retail()) {
|
|
|
|
/* TODO: uart_log("OHAYO"); */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sanity check the Security Engine. */
|
|
|
|
se_verify_flags_cleared();
|
|
|
|
|
|
|
|
/* Initialize interrupts. */
|
|
|
|
intr_initialize_gic_nonsecure();
|
|
|
|
|
|
|
|
bootup_misc_mmio();
|
|
|
|
|
|
|
|
/* Make PMC (2.x+), MC (4.x+) registers secure-only */
|
|
|
|
secure_additional_devices();
|
|
|
|
|
2018-03-25 22:05:08 +01:00
|
|
|
if (exosphere_get_target_firmware() < EXOSPHERE_TARGET_FIRMWARE_400 || configitem_get_hardware_type() == 0) {
|
2018-03-04 13:04:49 +00:00
|
|
|
/* Enable input to I2C1 */
|
|
|
|
PINMUX_AUX_GEN1_I2C_SCL_0 = 0x40;
|
|
|
|
PINMUX_AUX_GEN1_I2C_SDA_0 = 0x40;
|
|
|
|
|
|
|
|
clkrst_enable(CARDEVICE_I2C1);
|
|
|
|
i2c_init(0);
|
|
|
|
i2c_clear_ti_charger_bit_7();
|
|
|
|
clkrst_disable(CARDEVICE_I2C1);
|
|
|
|
}
|
2018-03-03 18:31:22 +00:00
|
|
|
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
|
|
|
|
2018-03-25 22:05:08 +01:00
|
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
2018-05-11 13:07:37 +01:00
|
|
|
setup_4x_mmio();
|
|
|
|
}
|
2018-03-03 18:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup_current_core_state();
|
|
|
|
|
|
|
|
/* Update SCR_EL3 depending on value in Bootconfig. */
|
|
|
|
set_extabt_serror_taken_to_el3(bootconfig_take_extabt_serror_to_el3());
|
2018-03-03 02:43:46 +00:00
|
|
|
core_jump_to_lower_el();
|
2018-02-25 02:34:15 +00:00
|
|
|
}
|