blob: 5e31d39a2e2301e2082446aeba809e4d8def0385 [file] [log] [blame]
laurenw-arm7c7b1982020-10-21 13:34:40 -05001/*
2 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Gary Morrison3d7f6542021-01-27 13:08:47 -06007/* Use the xlat_tables_v2 data structures: */
8#define XLAT_TABLES_LIB_V2 1
9
laurenw-arm7c7b1982020-10-21 13:34:40 -050010#include <assert.h>
11
Gary Morrison3d7f6542021-01-27 13:08:47 -060012#include "../../../../lib/xlat_mpu/xlat_mpu.h"
laurenw-arm7c7b1982020-10-21 13:34:40 -050013#include <bl1/bl1.h>
14#include <common/tbbr/tbbr_img_def.h>
15#include <drivers/arm/sp805.h>
laurenw-arm56f1e3e2021-03-03 14:19:38 -060016#include <lib/fconf/fconf.h>
17#include <lib/fconf/fconf_dyn_cfg_getter.h>
laurenw-arm7c7b1982020-10-21 13:34:40 -050018
19#include "fvp_r_private.h"
20#include <plat/arm/common/arm_config.h>
21#include <plat/arm/common/arm_def.h>
22#include <plat/arm/common/plat_arm.h>
23#include <plat/common/platform.h>
Gary Morrison3d7f6542021-01-27 13:08:47 -060024#include <platform_def.h>
25
26#define MAP_BL1_TOTAL MAP_REGION_FLAT( \
27 bl1_tzram_layout.total_base, \
28 bl1_tzram_layout.total_size, \
29 MT_MEMORY | MT_RW | MT_SECURE)
30/*
31 * If SEPARATE_CODE_AND_RODATA=1 we define a region for each section
32 * otherwise one region is defined containing both
33 */
34#if SEPARATE_CODE_AND_RODATA
35#define MAP_BL1_RO MAP_REGION_FLAT( \
36 BL_CODE_BASE, \
37 BL1_CODE_END - BL_CODE_BASE, \
38 MT_CODE | MT_SECURE), \
39 MAP_REGION_FLAT( \
40 BL1_RO_DATA_BASE, \
41 BL1_RO_DATA_END \
42 - BL_RO_DATA_BASE, \
43 MT_RO_DATA | MT_SECURE)
44#else
45#define MAP_BL1_RO MAP_REGION_FLAT( \
46 BL_CODE_BASE, \
47 BL1_CODE_END - BL_CODE_BASE, \
48 MT_CODE | MT_SECURE)
49#endif
50
51/* Data structure which holds the extents of the trusted SRAM for BL1*/
52static meminfo_t bl1_tzram_layout;
53
54struct meminfo *bl1_plat_sec_mem_layout(void)
55{
56 return &bl1_tzram_layout;
57}
58
59void arm_bl1_early_platform_setup(void)
60{
61
62#if !ARM_DISABLE_TRUSTED_WDOG
63 /* Enable watchdog */
64 plat_arm_secure_wdt_start();
65#endif
66
67 /* Initialize the console to provide early debug support */
68 arm_console_boot_init();
69
70 /* Allow BL1 to see the whole Trusted RAM */
71 bl1_tzram_layout.total_base = ARM_BL_RAM_BASE;
72 bl1_tzram_layout.total_size = ARM_BL_RAM_SIZE;
73}
laurenw-arm7c7b1982020-10-21 13:34:40 -050074
laurenw-arm56f1e3e2021-03-03 14:19:38 -060075/* Boolean variable to hold condition whether firmware update needed or not */
76static bool is_fwu_needed;
77
laurenw-arm7c7b1982020-10-21 13:34:40 -050078/*******************************************************************************
79 * Perform any BL1 specific platform actions.
80 ******************************************************************************/
81void bl1_early_platform_setup(void)
82{
83 arm_bl1_early_platform_setup();
84
85 /* Initialize the platform config for future decision making */
86 fvp_config_setup();
87
88 /*
89 * Initialize Interconnect for this cluster during cold boot.
90 * No need for locks as no other CPU is active.
91 */
92 fvp_interconnect_init();
93 /*
94 * Enable coherency in Interconnect for the primary CPU's cluster.
95 */
96 fvp_interconnect_enable();
97}
98
Gary Morrison3d7f6542021-01-27 13:08:47 -060099void arm_bl1_plat_arch_setup(void)
100{
101 const mmap_region_t bl_regions[] = {
102 MAP_BL1_TOTAL,
103 MAP_BL1_RO,
104#if USE_ROMLIB
105 ARM_MAP_ROMLIB_CODE,
106 ARM_MAP_ROMLIB_DATA,
107#endif
108#if ARM_CRYPTOCELL_INTEG
109 ARM_MAP_BL_COHERENT_RAM,
110#endif
111 /* DRAM1_region: */
112 MAP_REGION_FLAT( \
113 PLAT_ARM_DRAM1_BASE, \
114 PLAT_ARM_DRAM1_SIZE, \
115 MT_MEMORY | MT_SECURE | MT_EXECUTE \
116 | MT_RW | MT_NON_CACHEABLE),
117 /* NULL terminator: */
118 {0}
119 };
120
121 setup_page_tables(bl_regions, plat_arm_get_mmap());
122 enable_mpu_el2(0);
123
124 arm_setup_romlib();
125}
126
laurenw-arm7c7b1982020-10-21 13:34:40 -0500127void plat_arm_secure_wdt_start(void)
128{
129 sp805_start(ARM_SP805_TWDG_BASE, ARM_TWDG_LOAD_VAL);
130}
131
132void plat_arm_secure_wdt_stop(void)
133{
134 sp805_stop(ARM_SP805_TWDG_BASE);
135}
136
laurenw-arm56f1e3e2021-03-03 14:19:38 -0600137/*
138 * Perform the platform specific architecture setup shared between
139 * ARM standard platforms.
140 */
141void arm_bl1_platform_setup(void)
142{
143 image_desc_t *desc;
144 uint32_t fw_config_max_size;
145
146 /* Initialise the IO layer and register platform IO devices */
147 plat_arm_io_setup();
148
149 /* Check if we need FWU before further processing */
150 is_fwu_needed = plat_arm_bl1_fwu_needed();
151 if (is_fwu_needed) {
152 ERROR("Skip platform setup as FWU detected\n");
153 return;
154 }
155
156 /* Set global DTB info for fixed fw_config information */
157 fw_config_max_size = ARM_FW_CONFIG_LIMIT - ARM_FW_CONFIG_BASE;
158 set_config_info(ARM_FW_CONFIG_BASE, fw_config_max_size, FW_CONFIG_ID);
159
160 desc = bl1_plat_get_image_desc(BL33_IMAGE_ID);
161 assert(desc != NULL);
162
163 /*
164 * Allow access to the System counter timer module and program
165 * counter frequency for non secure images during FWU
166 */
167#ifdef ARM_SYS_TIMCTL_BASE
168 arm_configure_sys_timer();
169#endif
170#if (ARM_ARCH_MAJOR > 7) || defined(ARMV7_SUPPORTS_GENERIC_TIMER)
171 write_cntfrq_el0(plat_get_syscnt_freq2());
172#endif
173}
174
laurenw-arm7c7b1982020-10-21 13:34:40 -0500175void bl1_platform_setup(void)
176{
177 arm_bl1_platform_setup();
178
179 /* Initialize System level generic or SP804 timer */
180 fvp_timer_init();
181}
182
183__dead2 void bl1_plat_fwu_done(void *client_cookie, void *reserved)
184{
185 /* Setup the watchdog to reset the system as soon as possible */
186 sp805_refresh(ARM_SP805_TWDG_BASE, 1U);
187
188 while (true) {
189 wfi();
190 }
191}
laurenw-arm56f1e3e2021-03-03 14:19:38 -0600192
193unsigned int bl1_plat_get_next_image_id(void)
194{
195 return is_fwu_needed ? NS_BL1U_IMAGE_ID : BL33_IMAGE_ID;
196}
197
198/*
199 * Returns BL33 image details.
200 */
201struct image_desc *bl1_plat_get_image_desc(unsigned int image_id)
202{
203 static image_desc_t bl33_img_desc = BL33_IMAGE_DESC;
204
205 return &bl33_img_desc;
206}
207
208/*
209 * This function populates the default arguments to BL33.
210 * The BL33 memory layout structure is allocated and the
211 * calculated layout is populated in arg1 to BL33.
212 */
213int bl1_plat_handle_post_image_load(unsigned int image_id)
214{
215 meminfo_t *bl33_secram_layout;
216 meminfo_t *bl1_secram_layout;
217 image_desc_t *image_desc;
218 entry_point_info_t *ep_info;
219
220 if (image_id != BL33_IMAGE_ID) {
221 return 0;
222 }
223 /* Get the image descriptor */
224 image_desc = bl1_plat_get_image_desc(BL33_IMAGE_ID);
225 assert(image_desc != NULL);
226
227 /* Get the entry point info */
228 ep_info = &image_desc->ep_info;
229
230 /* Find out how much free trusted ram remains after BL1 load */
231 bl1_secram_layout = bl1_plat_sec_mem_layout();
232
233 /*
234 * Create a new layout of memory for BL33 as seen by BL1 i.e.
235 * tell it the amount of total and free memory available.
236 * This layout is created at the first free address visible
237 * to BL33. BL33 will read the memory layout before using its
238 * memory for other purposes.
239 */
240 bl33_secram_layout = (meminfo_t *) bl1_secram_layout->total_base;
241
242 bl1_calc_bl2_mem_layout(bl1_secram_layout, bl33_secram_layout);
243
244 ep_info->args.arg1 = (uintptr_t)bl33_secram_layout;
245
246 VERBOSE("BL1: BL3 memory layout address = %p\n",
247 (void *) bl33_secram_layout);
248 return 0;
249}