blob: 67f33273fe82c38a90b662609366ce999ca3d80e [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
Jens Wiklander52c798e2015-12-07 14:37:10 +01007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Jens Wiklander52c798e2015-12-07 14:37:10 +01009#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010
11#include <arch.h>
12#include <arch_helpers.h>
13#include <common/bl_common.h>
14
Jens Wiklander52c798e2015-12-07 14:37:10 +010015#include "qemu_private.h"
16
Jens Wiklander52c798e2015-12-07 14:37:10 +010017/* Data structure which holds the extents of the trusted SRAM for BL1*/
18static meminfo_t bl1_tzram_layout;
19
20
21meminfo_t *bl1_plat_sec_mem_layout(void)
22{
23 return &bl1_tzram_layout;
24}
25
26/*******************************************************************************
27 * Perform any BL1 specific platform actions.
28 ******************************************************************************/
29void bl1_early_platform_setup(void)
30{
Jens Wiklander52c798e2015-12-07 14:37:10 +010031 /* Initialize the console to provide early debug support */
Michalis Pappascca6cb72018-03-04 15:43:38 +080032 qemu_console_init();
Jens Wiklander52c798e2015-12-07 14:37:10 +010033
34 /* Allow BL1 to see the whole Trusted RAM */
35 bl1_tzram_layout.total_base = BL_RAM_BASE;
36 bl1_tzram_layout.total_size = BL_RAM_SIZE;
Jens Wiklander52c798e2015-12-07 14:37:10 +010037}
38
39/******************************************************************************
40 * Perform the very early platform specific architecture setup. This only
41 * does basic initialization. Later architectural setup (bl1_arch_setup())
42 * does not do anything platform specific.
43 *****************************************************************************/
Julius Werner8e0ef0f2019-07-09 14:02:43 -070044#ifdef __aarch64__
Etienne Carriere911de8c2018-02-02 13:23:22 +010045#define QEMU_CONFIGURE_BL1_MMU(...) qemu_configure_mmu_el3(__VA_ARGS__)
Julius Werner8e0ef0f2019-07-09 14:02:43 -070046#else
47#define QEMU_CONFIGURE_BL1_MMU(...) qemu_configure_mmu_svc_mon(__VA_ARGS__)
Etienne Carriere911de8c2018-02-02 13:23:22 +010048#endif
49
Jens Wiklander52c798e2015-12-07 14:37:10 +010050void bl1_plat_arch_setup(void)
51{
Etienne Carriere911de8c2018-02-02 13:23:22 +010052 QEMU_CONFIGURE_BL1_MMU(bl1_tzram_layout.total_base,
Jens Wiklander52c798e2015-12-07 14:37:10 +010053 bl1_tzram_layout.total_size,
Michalis Pappasba861122018-02-28 14:36:03 +080054 BL_CODE_BASE, BL1_CODE_END,
55 BL1_RO_DATA_BASE, BL1_RO_DATA_END,
Masahiro Yamada0fac5af2016-12-28 16:11:41 +090056 BL_COHERENT_RAM_BASE, BL_COHERENT_RAM_END);
Jens Wiklander52c798e2015-12-07 14:37:10 +010057}
58
59void bl1_platform_setup(void)
60{
61 plat_qemu_io_setup();
62}