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-02-25 02:34:15 +00:00
|
|
|
|
2018-03-03 18:31:22 +00:00
|
|
|
#include "se.h"
|
|
|
|
#include "mc.h"
|
|
|
|
#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())) {
|
|
|
|
panic(0xF7F00007); /* invalid CPU context */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IRAM C+D identity mapping has actually been removed on coldboot but we don't really care */
|
|
|
|
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();
|
|
|
|
|
|
|
|
/* TODO: car+clkreset stuff, some other mmio (?) */
|
|
|
|
|
|
|
|
if (mkey_get_revision() >= MASTERKEY_REVISION_400_CURRENT) {
|
|
|
|
setup_4x_mmio(); /* TODO */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
clear_priv_smc_in_progress();
|
|
|
|
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
|
|
|
}
|