blob: 85ff20e499449f9c1f454414e7f5d23902ac9d4d [file] [log] [blame]
Jens Wiklander52c798e2015-12-07 14:37:10 +01001/*
2 * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Jens Wiklander52c798e2015-12-07 14:37:10 +01005 */
6
7#include <arch.h>
8#include <arch_helpers.h>
9#include <assert.h>
10#include <bl_common.h>
11#include <console.h>
12#include <platform_def.h>
13#include "qemu_private.h"
14
Jens Wiklander52c798e2015-12-07 14:37:10 +010015/*******************************************************************************
16 * Declarations of linker defined symbols which will tell us where BL1 lives
17 * in Trusted RAM
18 ******************************************************************************/
19extern uint64_t __BL1_RAM_START__;
20extern uint64_t __BL1_RAM_END__;
21#define BL1_RAM_BASE (uint64_t)(&__BL1_RAM_START__)
22#define BL1_RAM_LIMIT (uint64_t)(&__BL1_RAM_END__)
23
24/* Data structure which holds the extents of the trusted SRAM for BL1*/
25static meminfo_t bl1_tzram_layout;
26
27
28meminfo_t *bl1_plat_sec_mem_layout(void)
29{
30 return &bl1_tzram_layout;
31}
32
33/*******************************************************************************
34 * Perform any BL1 specific platform actions.
35 ******************************************************************************/
36void bl1_early_platform_setup(void)
37{
38 const size_t bl1_size = BL1_RAM_LIMIT - BL1_RAM_BASE;
39
40 /* Initialize the console to provide early debug support */
41 console_init(PLAT_QEMU_BOOT_UART_BASE, PLAT_QEMU_BOOT_UART_CLK_IN_HZ,
42 PLAT_QEMU_CONSOLE_BAUDRATE);
43
44 /* Allow BL1 to see the whole Trusted RAM */
45 bl1_tzram_layout.total_base = BL_RAM_BASE;
46 bl1_tzram_layout.total_size = BL_RAM_SIZE;
47
48 /* Calculate how much RAM BL1 is using and how much remains free */
49 bl1_tzram_layout.free_base = BL_RAM_BASE;
50 bl1_tzram_layout.free_size = BL_RAM_SIZE;
51 reserve_mem(&bl1_tzram_layout.free_base, &bl1_tzram_layout.free_size,
52 BL1_RAM_BASE, bl1_size);
53}
54
55/******************************************************************************
56 * Perform the very early platform specific architecture setup. This only
57 * does basic initialization. Later architectural setup (bl1_arch_setup())
58 * does not do anything platform specific.
59 *****************************************************************************/
60void bl1_plat_arch_setup(void)
61{
62 qemu_configure_mmu_el3(bl1_tzram_layout.total_base,
63 bl1_tzram_layout.total_size,
64 BL1_RO_BASE, BL1_RO_LIMIT,
Masahiro Yamada0fac5af2016-12-28 16:11:41 +090065 BL_COHERENT_RAM_BASE, BL_COHERENT_RAM_END);
Jens Wiklander52c798e2015-12-07 14:37:10 +010066}
67
68void bl1_platform_setup(void)
69{
70 plat_qemu_io_setup();
71}
72
73/*******************************************************************************
74 * Function that takes a memory layout into which BL2 has been loaded and
75 * populates a new memory layout for BL2 that ensures that BL1's data sections
76 * resident in secure RAM are not visible to BL2.
77 ******************************************************************************/
78void bl1_init_bl2_mem_layout(const meminfo_t *bl1_mem_layout,
79 meminfo_t *bl2_mem_layout)
80{
81 const size_t bl1_size = BL1_RAM_LIMIT - BL1_RAM_BASE;
82
83 assert(bl1_mem_layout != NULL);
84 assert(bl2_mem_layout != NULL);
85
86 /* Check that BL1's memory is lying outside of the free memory */
87 assert((BL1_RAM_LIMIT <= bl1_mem_layout->free_base) ||
88 (BL1_RAM_BASE >= (bl1_mem_layout->free_base +
89 bl1_mem_layout->free_size)));
90
91 /* Remove BL1 RW data from the scope of memory visible to BL2 */
92 *bl2_mem_layout = *bl1_mem_layout;
93 reserve_mem(&bl2_mem_layout->total_base,
94 &bl2_mem_layout->total_size,
95 BL1_RAM_BASE,
96 bl1_size);
97
98 flush_dcache_range((unsigned long)bl2_mem_layout, sizeof(meminfo_t));
99}
100
101/*******************************************************************************
102 * Before calling this function BL2 is loaded in memory and its entrypoint
103 * is set by load_image. This is a placeholder for the platform to change
104 * the entrypoint of BL2 and set SPSR and security state.
105 * On ARM standard platforms we only set the security state of the entrypoint
106 ******************************************************************************/
107void bl1_plat_set_bl2_ep_info(image_info_t *bl2_image,
108 entry_point_info_t *bl2_ep)
109{
110 SET_SECURITY_STATE(bl2_ep->h.attr, SECURE);
111 bl2_ep->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
112}