blob: 6a3eae0ddf05b341a76c8b1d8b10b420d1467e3f [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Madhukar Pappireddyfc9b4112019-12-23 14:49:52 -06002 * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
Varun Wadekar6e6ce612018-06-20 13:43:43 -07003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05304 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05306 */
7
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <assert.h>
9#include <errno.h>
Scott Brandene5dcf982020-08-25 13:49:32 -070010#include <inttypes.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <stddef.h>
12#include <string.h>
13
14#include <platform_def.h>
15
Varun Wadekarb316e242015-05-19 16:48:04 +053016#include <arch.h>
17#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <bl31/bl31.h>
19#include <common/bl_common.h>
20#include <common/debug.h>
Isla Mitchelle3631462017-07-14 10:46:32 +010021#include <cortex_a57.h>
Varun Wadekarbaf903e2015-09-22 15:00:06 +053022#include <denver.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023#include <drivers/console.h>
24#include <lib/mmio.h>
25#include <lib/utils.h>
26#include <lib/utils_def.h>
27#include <plat/common/platform.h>
28
Varun Wadekarb316e242015-05-19 16:48:04 +053029#include <memctrl.h>
Varun Wadekar4967c3d2017-07-21 13:34:16 -070030#include <profiler.h>
Varun Wadekar82b0b182019-09-26 08:26:41 -070031#include <smmu.h>
Varun Wadekar0dc91812015-12-30 15:06:41 -080032#include <tegra_def.h>
Harvey Hsieh9e083c72017-04-10 16:20:32 +080033#include <tegra_platform.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053034#include <tegra_private.h>
35
Arve Hjønnevåg8f539492018-02-21 17:36:44 -080036/* length of Trusty's input parameters (in bytes) */
37#define TRUSTY_PARAMS_LEN_BYTES (4096*2)
38
Varun Wadekarb316e242015-05-19 16:48:04 +053039/*******************************************************************************
40 * Declarations of linker defined symbols which will help us find the layout
41 * of trusted SRAM
42 ******************************************************************************/
Varun Wadekarfda095f2019-01-02 10:48:18 -080043IMPORT_SYM(uint64_t, __RW_START__, BL31_RW_START);
Madhukar Pappireddyfc9b4112019-12-23 14:49:52 -060044
Varun Wadekarb316e242015-05-19 16:48:04 +053045extern uint64_t tegra_bl31_phys_base;
46
Varun Wadekar52a15982015-06-05 12:57:27 +053047static entry_point_info_t bl33_image_ep_info, bl32_image_ep_info;
Varun Wadekarb316e242015-05-19 16:48:04 +053048static plat_params_from_bl2_t plat_bl31_params_from_bl2 = {
Varun Wadekarfda095f2019-01-02 10:48:18 -080049 .tzdram_size = TZDRAM_SIZE
Varun Wadekarb316e242015-05-19 16:48:04 +053050};
Varun Wadekar1c4d5e42019-12-17 21:23:24 -080051#ifdef SPD_trusty
52static aapcs64_params_t bl32_args;
53#endif
Varun Wadekarb316e242015-05-19 16:48:04 +053054
55/*******************************************************************************
56 * This variable holds the non-secure image entry address
57 ******************************************************************************/
58extern uint64_t ns_image_entrypoint;
59
60/*******************************************************************************
61 * Return a pointer to the 'entry_point_info' structure of the next image for
62 * security state specified. BL33 corresponds to the non-secure image type
63 * while BL32 corresponds to the secure image type.
64 ******************************************************************************/
65entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
66{
Varun Wadekarfda095f2019-01-02 10:48:18 -080067 entry_point_info_t *ep = NULL;
Varun Wadekarb316e242015-05-19 16:48:04 +053068
Varun Wadekar197a75f2016-06-06 10:46:28 -070069 /* return BL32 entry point info if it is valid */
Varun Wadekarfda095f2019-01-02 10:48:18 -080070 if (type == NON_SECURE) {
71 ep = &bl33_image_ep_info;
72 } else if ((type == SECURE) && (bl32_image_ep_info.pc != 0U)) {
73 ep = &bl32_image_ep_info;
74 }
Varun Wadekar52a15982015-06-05 12:57:27 +053075
Varun Wadekarfda095f2019-01-02 10:48:18 -080076 return ep;
Varun Wadekarb316e242015-05-19 16:48:04 +053077}
78
79/*******************************************************************************
80 * Return a pointer to the 'plat_params_from_bl2_t' structure. The BL2 image
81 * passes this platform specific information.
82 ******************************************************************************/
83plat_params_from_bl2_t *bl31_get_plat_params(void)
84{
85 return &plat_bl31_params_from_bl2;
86}
87
88/*******************************************************************************
89 * Perform any BL31 specific platform actions. Populate the BL33 and BL32 image
90 * info.
91 ******************************************************************************/
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +010092void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
93 u_register_t arg2, u_register_t arg3)
Varun Wadekarb316e242015-05-19 16:48:04 +053094{
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +010095 struct tegra_bl31_params *arg_from_bl2 = (struct tegra_bl31_params *) arg0;
96 plat_params_from_bl2_t *plat_params = (plat_params_from_bl2_t *)arg1;
Varun Wadekar4967c3d2017-07-21 13:34:16 -070097 int32_t ret;
Varun Wadekarbaf903e2015-09-22 15:00:06 +053098
Varun Wadekarb316e242015-05-19 16:48:04 +053099 /*
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700100 * For RESET_TO_BL31 systems, BL31 is the first bootloader to run so
101 * there's no argument to relay from a previous bootloader. Platforms
Varun Wadekar7cf57d72018-05-17 09:36:38 -0700102 * might use custom ways to get arguments.
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700103 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800104 if (arg_from_bl2 == NULL) {
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100105 arg_from_bl2 = plat_get_bl31_params();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800106 }
107 if (plat_params == NULL) {
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700108 plat_params = plat_get_bl31_plat_params();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800109 }
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700110
111 /*
Varun Wadekar52a15982015-06-05 12:57:27 +0530112 * Copy BL3-3, BL3-2 entry point information.
Varun Wadekarb316e242015-05-19 16:48:04 +0530113 * They are stored in Secure RAM, in BL2's address space.
114 */
Anthony Zhou4408e882017-07-07 14:29:51 +0800115 assert(arg_from_bl2 != NULL);
116 assert(arg_from_bl2->bl33_ep_info != NULL);
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100117 bl33_image_ep_info = *arg_from_bl2->bl33_ep_info;
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530118
Varun Wadekarfda095f2019-01-02 10:48:18 -0800119 if (arg_from_bl2->bl32_ep_info != NULL) {
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100120 bl32_image_ep_info = *arg_from_bl2->bl32_ep_info;
Varun Wadekar1c4d5e42019-12-17 21:23:24 -0800121#ifdef SPD_trusty
122 /* save BL32 boot parameters */
123 memcpy(&bl32_args, &arg_from_bl2->bl32_ep_info->args, sizeof(bl32_args));
124#endif
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800125 }
Varun Wadekarb316e242015-05-19 16:48:04 +0530126
127 /*
Varun Wadekarf07d6de2018-02-27 14:33:57 -0800128 * Parse platform specific parameters
Varun Wadekarb316e242015-05-19 16:48:04 +0530129 */
Anthony Zhou4408e882017-07-07 14:29:51 +0800130 assert(plat_params != NULL);
Varun Wadekar6bb62462015-10-06 12:49:31 +0530131 plat_bl31_params_from_bl2.tzdram_base = plat_params->tzdram_base;
132 plat_bl31_params_from_bl2.tzdram_size = plat_params->tzdram_size;
Varun Wadekard2014c62015-10-29 10:37:28 +0530133 plat_bl31_params_from_bl2.uart_id = plat_params->uart_id;
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800134 plat_bl31_params_from_bl2.l2_ecc_parity_prot_dis = plat_params->l2_ecc_parity_prot_dis;
Varun Wadekarf07d6de2018-02-27 14:33:57 -0800135 plat_bl31_params_from_bl2.sc7entry_fw_size = plat_params->sc7entry_fw_size;
136 plat_bl31_params_from_bl2.sc7entry_fw_base = plat_params->sc7entry_fw_base;
Varun Wadekard2014c62015-10-29 10:37:28 +0530137
138 /*
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700139 * It is very important that we run either from TZDRAM or TZSRAM base.
140 * Add an explicit check here.
141 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800142 if ((plat_bl31_params_from_bl2.tzdram_base != (uint64_t)BL31_BASE) &&
143 (TEGRA_TZRAM_BASE != BL31_BASE)) {
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700144 panic();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800145 }
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700146
147 /*
Varun Wadekar9d15f7e2019-08-21 14:01:31 -0700148 * Enable console for the platform
Harvey Hsieh9e083c72017-04-10 16:20:32 +0800149 */
Varun Wadekar9d15f7e2019-08-21 14:01:31 -0700150 plat_enable_console(plat_params->uart_id);
Varun Wadekard2014c62015-10-29 10:37:28 +0530151
Varun Wadekar5118b532016-06-04 22:08:50 -0700152 /*
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700153 * The previous bootloader passes the base address of the shared memory
154 * location to store the boot profiler logs. Sanity check the
Andreas Färberd829cd42019-06-17 00:06:43 +0200155 * address and initialise the profiler library, if it looks ok.
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700156 */
Varun Wadekar6e6ce612018-06-20 13:43:43 -0700157 ret = bl31_check_ns_address(plat_params->boot_profiler_shmem_base,
158 PROFILER_SIZE_BYTES);
159 if (ret == (int32_t)0) {
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700160
Varun Wadekar6e6ce612018-06-20 13:43:43 -0700161 /* store the membase for the profiler lib */
162 plat_bl31_params_from_bl2.boot_profiler_shmem_base =
163 plat_params->boot_profiler_shmem_base;
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700164
Varun Wadekar6e6ce612018-06-20 13:43:43 -0700165 /* initialise the profiler library */
166 boot_profiler_init(plat_params->boot_profiler_shmem_base,
167 TEGRA_TMRUS_BASE);
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700168 }
169
170 /*
171 * Add timestamp for platform early setup entry.
172 */
173 boot_profiler_add_record("[TF] early setup entry");
174
175 /*
Steven Kao27e64312016-10-21 14:16:59 +0800176 * Initialize delay timer
177 */
178 tegra_delay_timer_init();
179
Varun Wadekardbe67c72017-09-20 15:09:38 -0700180 /* Early platform setup for Tegra SoCs */
181 plat_early_platform_setup();
182
Steven Kao27e64312016-10-21 14:16:59 +0800183 /*
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700184 * Add timestamp for platform early setup exit.
185 */
186 boot_profiler_add_record("[TF] early setup exit");
187
Sandrine Bailleuxfff61b62018-06-21 11:41:43 +0200188 INFO("BL3-1: Boot CPU: %s Processor [%lx]\n",
189 (((read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK)
190 == DENVER_IMPL) ? "Denver" : "ARM", read_mpidr());
Varun Wadekarb316e242015-05-19 16:48:04 +0530191}
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800192
193#ifdef SPD_trusty
194void plat_trusty_set_boot_args(aapcs64_params_t *args)
195{
Varun Wadekar1c4d5e42019-12-17 21:23:24 -0800196 /*
197 * arg0 = TZDRAM aperture available for BL32
198 * arg1 = BL32 boot params
199 * arg2 = EKS Blob Length
200 * arg3 = Boot Profiler Carveout Base
201 */
202 args->arg0 = bl32_args.arg0;
203 args->arg1 = bl32_args.arg2;
Varun Wadekarc2099802018-12-28 13:50:20 -0800204
205 /* update EKS size */
Varun Wadekar1c4d5e42019-12-17 21:23:24 -0800206 args->arg2 = bl32_args.arg4;
Varun Wadekar7a1ba292019-01-02 16:30:01 -0800207
208 /* Profiler Carveout Base */
Varun Wadekar1c4d5e42019-12-17 21:23:24 -0800209 args->arg3 = bl32_args.arg5;
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800210}
211#endif
Varun Wadekarb316e242015-05-19 16:48:04 +0530212
213/*******************************************************************************
214 * Initialize the gic, configure the SCR.
215 ******************************************************************************/
216void bl31_platform_setup(void)
217{
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700218 /*
219 * Add timestamp for platform setup entry.
220 */
221 boot_profiler_add_record("[TF] plat setup entry");
222
Varun Wadekarb7b45752015-12-28 14:55:41 -0800223 /* Initialize the gic cpu and distributor interfaces */
224 plat_gic_setup();
225
Varun Wadekarb316e242015-05-19 16:48:04 +0530226 /*
227 * Setup secondary CPU POR infrastructure.
228 */
229 plat_secondary_setup();
230
231 /*
232 * Initial Memory Controller configuration.
233 */
234 tegra_memctrl_setup();
235
236 /*
Dilan Lee1f66f3d2017-10-27 09:51:09 +0800237 * Late setup handler to allow platforms to performs additional
238 * functionality.
239 * This handler gets called with MMU enabled.
240 */
241 plat_late_platform_setup();
242
243 /*
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700244 * Add timestamp for platform setup exit.
245 */
246 boot_profiler_add_record("[TF] plat setup exit");
247
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530248 INFO("BL3-1: Tegra platform setup complete\n");
Varun Wadekarb316e242015-05-19 16:48:04 +0530249}
250
251/*******************************************************************************
Varun Wadekar1dcffa92016-01-08 17:48:42 -0800252 * Perform any BL3-1 platform runtime setup prior to BL3-1 cold boot exit
253 ******************************************************************************/
254void bl31_plat_runtime_setup(void)
255{
Varun Wadekarc92050b2017-03-29 14:57:29 -0700256 /*
Kalyani Chidambaram Vaidyanathane7558562020-06-15 16:48:53 -0700257 * Platform specific runtime setup
Varun Wadekar82b0b182019-09-26 08:26:41 -0700258 */
Kalyani Chidambaram Vaidyanathane7558562020-06-15 16:48:53 -0700259 plat_runtime_setup();
Varun Wadekar82b0b182019-09-26 08:26:41 -0700260
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700261 /*
262 * Add final timestamp before exiting BL31.
263 */
264 boot_profiler_add_record("[TF] bl31 exit");
265 boot_profiler_deinit();
Varun Wadekar1dcffa92016-01-08 17:48:42 -0800266}
267
268/*******************************************************************************
Varun Wadekarb316e242015-05-19 16:48:04 +0530269 * Perform the very early platform specific architectural setup here. At the
270 * moment this only intializes the mmu in a quick and dirty way.
271 ******************************************************************************/
272void bl31_plat_arch_setup(void)
273{
Varun Wadekarfda095f2019-01-02 10:48:18 -0800274 uint64_t rw_start = BL31_RW_START;
Kalyani Chidambaram425155a2018-12-19 11:06:14 -0800275 uint64_t rw_size = BL_END - BL31_RW_START;
276 uint64_t rodata_start = BL_RO_DATA_BASE;
277 uint64_t rodata_size = BL_RO_DATA_END - BL_RO_DATA_BASE;
278 uint64_t code_base = BL_CODE_BASE;
279 uint64_t code_size = BL_CODE_END - BL_CODE_BASE;
Varun Wadekarb316e242015-05-19 16:48:04 +0530280 const mmap_region_t *plat_mmio_map = NULL;
Varun Wadekarfda095f2019-01-02 10:48:18 -0800281 const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Varun Wadekarb316e242015-05-19 16:48:04 +0530282
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700283 /*
284 * Add timestamp for arch setup entry.
285 */
286 boot_profiler_add_record("[TF] arch setup entry");
287
Varun Wadekar922550a2018-01-23 14:38:51 -0800288 /* add MMIO space */
289 plat_mmio_map = plat_get_mmio_map();
290 if (plat_mmio_map != NULL) {
291 mmap_add(plat_mmio_map);
292 } else {
293 WARN("MMIO map not available\n");
294 }
295
Varun Wadekarb316e242015-05-19 16:48:04 +0530296 /* add memory regions */
Varun Wadekar3fb854f2017-02-28 08:23:59 -0800297 mmap_add_region(rw_start, rw_start,
298 rw_size,
Varun Wadekarb316e242015-05-19 16:48:04 +0530299 MT_MEMORY | MT_RW | MT_SECURE);
Varun Wadekar3fb854f2017-02-28 08:23:59 -0800300 mmap_add_region(rodata_start, rodata_start,
301 rodata_size,
302 MT_RO_DATA | MT_SECURE);
303 mmap_add_region(code_base, code_base,
304 code_size,
305 MT_CODE | MT_SECURE);
Varun Wadekar207cc732015-07-08 12:57:50 +0530306
Varun Wadekar922550a2018-01-23 14:38:51 -0800307 /* map TZDRAM used by BL31 as coherent memory */
308 if (TEGRA_TZRAM_BASE == tegra_bl31_phys_base) {
309 mmap_add_region(params_from_bl2->tzdram_base,
310 params_from_bl2->tzdram_base,
311 BL31_SIZE,
312 MT_DEVICE | MT_RW | MT_SECURE);
Varun Wadekarfda095f2019-01-02 10:48:18 -0800313 }
Varun Wadekarb316e242015-05-19 16:48:04 +0530314
315 /* set up translation tables */
316 init_xlat_tables();
317
318 /* enable the MMU */
319 enable_mmu_el3(0);
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530320
Varun Wadekar4967c3d2017-07-21 13:34:16 -0700321 /*
322 * Add timestamp for arch setup exit.
323 */
324 boot_profiler_add_record("[TF] arch setup exit");
325
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530326 INFO("BL3-1: Tegra: MMU enabled\n");
Varun Wadekarb316e242015-05-19 16:48:04 +0530327}
Varun Wadekar7a269e22015-06-10 14:04:32 +0530328
329/*******************************************************************************
330 * Check if the given NS DRAM range is valid
331 ******************************************************************************/
Varun Wadekarfda095f2019-01-02 10:48:18 -0800332int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes)
Varun Wadekar7a269e22015-06-10 14:04:32 +0530333{
Varun Wadekarc74343c2017-07-20 09:43:28 -0700334 uint64_t end = base + size_in_bytes - U(1);
Varun Wadekar7a269e22015-06-10 14:04:32 +0530335
336 /*
Varun Wadekar11f5db52020-06-02 21:16:00 -0700337 * Sanity check the input values
338 */
339 if ((base == 0U) || (size_in_bytes == 0U)) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700340 ERROR("NS address 0x%" PRIx64 " (%" PRId64 " bytes) is invalid\n",
Varun Wadekar11f5db52020-06-02 21:16:00 -0700341 base, size_in_bytes);
342 return -EINVAL;
343 }
344
345 /*
Varun Wadekar7a269e22015-06-10 14:04:32 +0530346 * Check if the NS DRAM address is valid
347 */
Varun Wadekarc74343c2017-07-20 09:43:28 -0700348 if ((base < TEGRA_DRAM_BASE) || (base >= TEGRA_DRAM_END) ||
349 (end > TEGRA_DRAM_END)) {
350
Scott Brandene5dcf982020-08-25 13:49:32 -0700351 ERROR("NS address 0x%" PRIx64 " is out-of-bounds!\n", base);
Varun Wadekar11f5db52020-06-02 21:16:00 -0700352 return -EFAULT;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530353 }
354
355 /*
356 * TZDRAM aperture contains the BL31 and BL32 images, so we need
357 * to check if the NS DRAM range overlaps the TZDRAM aperture.
358 */
Varun Wadekarc74343c2017-07-20 09:43:28 -0700359 if ((base < (uint64_t)TZDRAM_END) && (end > tegra_bl31_phys_base)) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700360 ERROR("NS address 0x%" PRIx64 " overlaps TZDRAM!\n", base);
Varun Wadekar11f5db52020-06-02 21:16:00 -0700361 return -ENOTSUP;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530362 }
363
364 /* valid NS address */
Varun Wadekar11f5db52020-06-02 21:16:00 -0700365 return 0;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530366}