mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

For v8-R64, especially R82, creating code to run BL1 at EL2, using MPU. Signed-off-by: Gary Morrison <gary.morrison@arm.com> Change-Id: I439ac3915b982ad1e61d24365bdd1584b3070425
149 lines
3.4 KiB
C
149 lines
3.4 KiB
C
/*
|
|
* Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/* Use the xlat_tables_v2 data structures: */
|
|
#define XLAT_TABLES_LIB_V2 1
|
|
|
|
#include <assert.h>
|
|
|
|
#include "../../../../lib/xlat_mpu/xlat_mpu.h"
|
|
#include <bl1/bl1.h>
|
|
#include <common/tbbr/tbbr_img_def.h>
|
|
#include <drivers/arm/sp805.h>
|
|
|
|
#include "fvp_r_private.h"
|
|
#include <plat/arm/common/arm_config.h>
|
|
#include <plat/arm/common/arm_def.h>
|
|
#include <plat/arm/common/plat_arm.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
#define MAP_BL1_TOTAL MAP_REGION_FLAT( \
|
|
bl1_tzram_layout.total_base, \
|
|
bl1_tzram_layout.total_size, \
|
|
MT_MEMORY | MT_RW | MT_SECURE)
|
|
/*
|
|
* If SEPARATE_CODE_AND_RODATA=1 we define a region for each section
|
|
* otherwise one region is defined containing both
|
|
*/
|
|
#if SEPARATE_CODE_AND_RODATA
|
|
#define MAP_BL1_RO MAP_REGION_FLAT( \
|
|
BL_CODE_BASE, \
|
|
BL1_CODE_END - BL_CODE_BASE, \
|
|
MT_CODE | MT_SECURE), \
|
|
MAP_REGION_FLAT( \
|
|
BL1_RO_DATA_BASE, \
|
|
BL1_RO_DATA_END \
|
|
- BL_RO_DATA_BASE, \
|
|
MT_RO_DATA | MT_SECURE)
|
|
#else
|
|
#define MAP_BL1_RO MAP_REGION_FLAT( \
|
|
BL_CODE_BASE, \
|
|
BL1_CODE_END - BL_CODE_BASE, \
|
|
MT_CODE | MT_SECURE)
|
|
#endif
|
|
|
|
/* Data structure which holds the extents of the trusted SRAM for BL1*/
|
|
static meminfo_t bl1_tzram_layout;
|
|
|
|
struct meminfo *bl1_plat_sec_mem_layout(void)
|
|
{
|
|
return &bl1_tzram_layout;
|
|
}
|
|
|
|
void arm_bl1_early_platform_setup(void)
|
|
{
|
|
|
|
#if !ARM_DISABLE_TRUSTED_WDOG
|
|
/* Enable watchdog */
|
|
plat_arm_secure_wdt_start();
|
|
#endif
|
|
|
|
/* Initialize the console to provide early debug support */
|
|
arm_console_boot_init();
|
|
|
|
/* Allow BL1 to see the whole Trusted RAM */
|
|
bl1_tzram_layout.total_base = ARM_BL_RAM_BASE;
|
|
bl1_tzram_layout.total_size = ARM_BL_RAM_SIZE;
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* Perform any BL1 specific platform actions.
|
|
******************************************************************************/
|
|
void bl1_early_platform_setup(void)
|
|
{
|
|
arm_bl1_early_platform_setup();
|
|
|
|
/* Initialize the platform config for future decision making */
|
|
fvp_config_setup();
|
|
|
|
/*
|
|
* Initialize Interconnect for this cluster during cold boot.
|
|
* No need for locks as no other CPU is active.
|
|
*/
|
|
fvp_interconnect_init();
|
|
/*
|
|
* Enable coherency in Interconnect for the primary CPU's cluster.
|
|
*/
|
|
fvp_interconnect_enable();
|
|
}
|
|
|
|
void arm_bl1_plat_arch_setup(void)
|
|
{
|
|
const mmap_region_t bl_regions[] = {
|
|
MAP_BL1_TOTAL,
|
|
MAP_BL1_RO,
|
|
#if USE_ROMLIB
|
|
ARM_MAP_ROMLIB_CODE,
|
|
ARM_MAP_ROMLIB_DATA,
|
|
#endif
|
|
#if ARM_CRYPTOCELL_INTEG
|
|
ARM_MAP_BL_COHERENT_RAM,
|
|
#endif
|
|
/* DRAM1_region: */
|
|
MAP_REGION_FLAT( \
|
|
PLAT_ARM_DRAM1_BASE, \
|
|
PLAT_ARM_DRAM1_SIZE, \
|
|
MT_MEMORY | MT_SECURE | MT_EXECUTE \
|
|
| MT_RW | MT_NON_CACHEABLE),
|
|
/* NULL terminator: */
|
|
{0}
|
|
};
|
|
|
|
setup_page_tables(bl_regions, plat_arm_get_mmap());
|
|
enable_mpu_el2(0);
|
|
|
|
arm_setup_romlib();
|
|
}
|
|
|
|
void plat_arm_secure_wdt_start(void)
|
|
{
|
|
sp805_start(ARM_SP805_TWDG_BASE, ARM_TWDG_LOAD_VAL);
|
|
}
|
|
|
|
void plat_arm_secure_wdt_stop(void)
|
|
{
|
|
sp805_stop(ARM_SP805_TWDG_BASE);
|
|
}
|
|
|
|
void bl1_platform_setup(void)
|
|
{
|
|
arm_bl1_platform_setup();
|
|
|
|
/* Initialize System level generic or SP804 timer */
|
|
fvp_timer_init();
|
|
}
|
|
|
|
__dead2 void bl1_plat_fwu_done(void *client_cookie, void *reserved)
|
|
{
|
|
/* Setup the watchdog to reset the system as soon as possible */
|
|
sp805_refresh(ARM_SP805_TWDG_BASE, 1U);
|
|
|
|
while (true) {
|
|
wfi();
|
|
}
|
|
}
|