blob: 3614c7d2e4f4afb0a59d2493b70468c4f4d063df [file] [log] [blame]
Yatharth Kochar3a11eda2015-10-14 15:28:11 +01001/*
Roberto Vargas2ca18d92018-02-12 12:36:17 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar3a11eda2015-10-14 15:28:11 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar3a11eda2015-10-14 15:28:11 +01005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
8#include <string.h>
9
10#include <platform_def.h>
11
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010012#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013#include <common/bl_common.h>
14#include <drivers/generic_delay_timer.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000015#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#include <plat/common/platform.h>
17
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010018/* Weak definitions may be overridden in specific ARM standard platform */
19#pragma weak bl2u_platform_setup
20#pragma weak bl2u_early_platform_setup
21#pragma weak bl2u_plat_arch_setup
22
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010023#define MAP_BL2U_TOTAL MAP_REGION_FLAT( \
24 BL2U_BASE, \
25 BL2U_LIMIT - BL2U_BASE, \
26 MT_MEMORY | MT_RW | MT_SECURE)
27
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010028/*
29 * Perform ARM standard platform setup for BL2U
30 */
31void arm_bl2u_platform_setup(void)
32{
33 /* Initialize the secure environment */
34 plat_arm_security_setup();
35}
36
37void bl2u_platform_setup(void)
38{
39 arm_bl2u_platform_setup();
40}
41
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020042void arm_bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info)
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010043{
44 /* Initialize the console to provide early debug support */
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +010045 arm_console_boot_init();
46
Soby Mathewdb141302018-03-06 15:22:55 +000047 generic_delay_timer_init();
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010048}
49
50/*******************************************************************************
51 * BL1 can pass platform dependent information to BL2U in x1.
52 * In case of ARM CSS platforms x1 contains SCP_BL2U image info.
53 * In case of ARM FVP platforms x1 is not used.
54 * In both cases, x0 contains the extents of the memory available to BL2U
55 ******************************************************************************/
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020056void bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info)
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010057{
58 arm_bl2u_early_platform_setup(mem_layout, plat_info);
59}
60
61/*******************************************************************************
62 * Perform the very early platform specific architectural setup here. At the
63 * moment this is only initializes the mmu in a quick and dirty way.
64 * The memory that is used by BL2U is only mapped.
65 ******************************************************************************/
66void arm_bl2u_plat_arch_setup(void)
67{
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010068
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010069#if USE_COHERENT_MEM
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010070 /* Ensure ARM platforms dont use coherent memory in BL2U */
71 assert((BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE) == 0U);
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010072#endif
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010073
74 const mmap_region_t bl_regions[] = {
75 MAP_BL2U_TOTAL,
Daniel Boulby4e97abd2018-07-16 14:09:15 +010076 ARM_MAP_BL_RO,
Roberto Vargase3adc372018-05-23 09:27:06 +010077#if USE_ROMLIB
78 ARM_MAP_ROMLIB_CODE,
79 ARM_MAP_ROMLIB_DATA,
80#endif
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010081 {0}
82 };
83
Roberto Vargas344ff022018-10-19 16:44:18 +010084 setup_page_tables(bl_regions, plat_arm_get_mmap());
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010085
Julius Werner8e0ef0f2019-07-09 14:02:43 -070086#ifdef __aarch64__
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +010087 enable_mmu_el1(0);
Julius Werner8e0ef0f2019-07-09 14:02:43 -070088#else
89 enable_mmu_svc_mon(0);
Yatharth Kochar18dfb302016-11-22 11:06:03 +000090#endif
Roberto Vargase3adc372018-05-23 09:27:06 +010091 arm_setup_romlib();
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010092}
93
94void bl2u_plat_arch_setup(void)
95{
96 arm_bl2u_plat_arch_setup();
97}