blob: 4f60eb163a56de43d90bad1463b44f43ba809c8c [file] [log] [blame]
Jens Wiklander52c798e2015-12-07 14:37:10 +01001/*
Hongbo Zhang32338ec2018-04-19 13:06:07 +08002 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
Jens Wiklander52c798e2015-12-07 14:37:10 +01003 *
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 <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/bl_common.h>
Maxim Uvarova0b85c22020-12-14 10:17:44 +000010#include <drivers/arm/pl061_gpio.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <plat/common/platform.h>
12
Jens Wiklander52c798e2015-12-07 14:37:10 +010013#include "qemu_private.h"
14
15/*
Jens Wiklander52c798e2015-12-07 14:37:10 +010016 * Placeholder variables for copying the arguments that have been passed to
17 * BL3-1 from BL2.
18 */
19static entry_point_info_t bl32_image_ep_info;
20static entry_point_info_t bl33_image_ep_info;
21
22/*******************************************************************************
23 * Perform any BL3-1 early platform setup. Here is an opportunity to copy
John Tsichritzisd653d332018-09-14 10:34:57 +010024 * parameters passed by the calling EL (S-EL1 in BL2 & EL3 in BL1) before
Jens Wiklander52c798e2015-12-07 14:37:10 +010025 * they are lost (potentially). This needs to be done before the MMU is
26 * initialized so that the memory layout can be used while creating page
27 * tables. BL2 has flushed this information to memory, so we are guaranteed
28 * to pick up good data.
29 ******************************************************************************/
Jens Wiklandere22b91e2018-09-04 14:07:19 +020030void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
31 u_register_t arg2, u_register_t arg3)
Jens Wiklander52c798e2015-12-07 14:37:10 +010032{
33 /* Initialize the console to provide early debug support */
Michalis Pappascca6cb72018-03-04 15:43:38 +080034 qemu_console_init();
Jens Wiklander52c798e2015-12-07 14:37:10 +010035
Fu Weic2f78442017-05-27 21:21:42 +080036 /*
37 * Check params passed from BL2
38 */
Jens Wiklandere22b91e2018-09-04 14:07:19 +020039 bl_params_t *params_from_bl2 = (bl_params_t *)arg0;
Fu Weic2f78442017-05-27 21:21:42 +080040
41 assert(params_from_bl2);
42 assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
43 assert(params_from_bl2->h.version >= VERSION_2);
44
45 bl_params_node_t *bl_params = params_from_bl2->head;
46
47 /*
48 * Copy BL33 and BL32 (if present), entry point information.
49 * They are stored in Secure RAM, in BL2's address space.
50 */
51 while (bl_params) {
52 if (bl_params->image_id == BL32_IMAGE_ID)
53 bl32_image_ep_info = *bl_params->ep_info;
54
55 if (bl_params->image_id == BL33_IMAGE_ID)
56 bl33_image_ep_info = *bl_params->ep_info;
57
58 bl_params = bl_params->next_params_info;
59 }
60
61 if (!bl33_image_ep_info.pc)
62 panic();
Jens Wiklander52c798e2015-12-07 14:37:10 +010063}
64
65void bl31_plat_arch_setup(void)
66{
Michalis Pappasba861122018-02-28 14:36:03 +080067 qemu_configure_mmu_el3(BL31_BASE, (BL31_END - BL31_BASE),
68 BL_CODE_BASE, BL_CODE_END,
69 BL_RO_DATA_BASE, BL_RO_DATA_END,
Masahiro Yamada0fac5af2016-12-28 16:11:41 +090070 BL_COHERENT_RAM_BASE, BL_COHERENT_RAM_END);
Jens Wiklander52c798e2015-12-07 14:37:10 +010071}
72
Maxim Uvarova0b85c22020-12-14 10:17:44 +000073static void qemu_gpio_init(void)
74{
75#ifdef SECURE_GPIO_BASE
76 pl061_gpio_init();
77 pl061_gpio_register(SECURE_GPIO_BASE, 0);
78#endif
79}
80
Jens Wiklander52c798e2015-12-07 14:37:10 +010081void bl31_platform_setup(void)
82{
Hongbo Zhang32338ec2018-04-19 13:06:07 +080083 plat_qemu_gic_init();
Maxim Uvarova0b85c22020-12-14 10:17:44 +000084 qemu_gpio_init();
Jens Wiklander52c798e2015-12-07 14:37:10 +010085}
86
87unsigned int plat_get_syscnt_freq2(void)
88{
89 return SYS_COUNTER_FREQ_IN_TICKS;
90}
91
92/*******************************************************************************
93 * Return a pointer to the 'entry_point_info' structure of the next image
94 * for the security state specified. BL3-3 corresponds to the non-secure
95 * image type while BL3-2 corresponds to the secure image type. A NULL
96 * pointer is returned if the image does not exist.
97 ******************************************************************************/
98entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
99{
100 entry_point_info_t *next_image_info;
101
102 assert(sec_state_is_valid(type));
103 next_image_info = (type == NON_SECURE)
104 ? &bl33_image_ep_info : &bl32_image_ep_info;
105 /*
106 * None of the images on the ARM development platforms can have 0x0
107 * as the entrypoint
108 */
109 if (next_image_info->pc)
110 return next_image_info;
111 else
112 return NULL;
113}