blob: 26256c2cbf79bca3d29b47775ce3f4f4e9bf9326 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Joel Hutton5cc3bc82018-03-21 11:40:57 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05305 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
8#include <errno.h>
9#include <stddef.h>
10#include <string.h>
11
12#include <platform_def.h>
13
Varun Wadekarb316e242015-05-19 16:48:04 +053014#include <arch.h>
15#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#include <bl31/bl31.h>
17#include <common/bl_common.h>
18#include <common/debug.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053019#include <cortex_a53.h>
Isla Mitchelle3631462017-07-14 10:46:32 +010020#include <cortex_a57.h>
Varun Wadekarbaf903e2015-09-22 15:00:06 +053021#include <denver.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000022#include <drivers/console.h>
23#include <lib/mmio.h>
24#include <lib/utils.h>
25#include <lib/utils_def.h>
26#include <plat/common/platform.h>
27
Varun Wadekarb316e242015-05-19 16:48:04 +053028#include <memctrl.h>
Varun Wadekar0dc91812015-12-30 15:06:41 -080029#include <tegra_def.h>
Harvey Hsieh9e083c72017-04-10 16:20:32 +080030#include <tegra_platform.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053031#include <tegra_private.h>
32
Arve Hjønnevåg8f539492018-02-21 17:36:44 -080033/* length of Trusty's input parameters (in bytes) */
34#define TRUSTY_PARAMS_LEN_BYTES (4096*2)
35
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010036extern void memcpy16(void *dest, const void *src, unsigned int length);
Varun Wadekarb41a4142016-05-23 15:56:14 -070037
Varun Wadekarb316e242015-05-19 16:48:04 +053038/*******************************************************************************
39 * Declarations of linker defined symbols which will help us find the layout
40 * of trusted SRAM
41 ******************************************************************************/
Joel Hutton5cc3bc82018-03-21 11:40:57 +000042
Varun Wadekarfda095f2019-01-02 10:48:18 -080043IMPORT_SYM(uint64_t, __RW_START__, BL31_RW_START);
44IMPORT_SYM(uint64_t, __RW_END__, BL31_RW_END);
45IMPORT_SYM(uint64_t, __RODATA_START__, BL31_RODATA_BASE);
46IMPORT_SYM(uint64_t, __RODATA_END__, BL31_RODATA_END);
47IMPORT_SYM(uint64_t, __TEXT_START__, TEXT_START);
48IMPORT_SYM(uint64_t, __TEXT_END__, TEXT_END);
Varun Wadekarb316e242015-05-19 16:48:04 +053049
Varun Wadekarb316e242015-05-19 16:48:04 +053050extern uint64_t tegra_bl31_phys_base;
Varun Wadekard2014c62015-10-29 10:37:28 +053051extern uint64_t tegra_console_base;
Varun Wadekarb316e242015-05-19 16:48:04 +053052
Varun Wadekar52a15982015-06-05 12:57:27 +053053static entry_point_info_t bl33_image_ep_info, bl32_image_ep_info;
Varun Wadekarb316e242015-05-19 16:48:04 +053054static plat_params_from_bl2_t plat_bl31_params_from_bl2 = {
Varun Wadekarfda095f2019-01-02 10:48:18 -080055 .tzdram_size = TZDRAM_SIZE
Varun Wadekarb316e242015-05-19 16:48:04 +053056};
Arve Hjønnevåg8f539492018-02-21 17:36:44 -080057static unsigned long bl32_mem_size;
58static unsigned long bl32_boot_params;
Varun Wadekarb316e242015-05-19 16:48:04 +053059
60/*******************************************************************************
61 * This variable holds the non-secure image entry address
62 ******************************************************************************/
63extern uint64_t ns_image_entrypoint;
64
65/*******************************************************************************
Varun Wadekar3f0a8ad2016-03-28 15:56:47 -070066 * The following platform setup functions are weakly defined. They
67 * provide typical implementations that will be overridden by a SoC.
68 ******************************************************************************/
69#pragma weak plat_early_platform_setup
Varun Wadekard22d4ad2016-05-23 11:41:07 -070070#pragma weak plat_get_bl31_params
71#pragma weak plat_get_bl31_plat_params
Varun Wadekar3f0a8ad2016-03-28 15:56:47 -070072
73void plat_early_platform_setup(void)
74{
75 ; /* do nothing */
76}
77
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +010078struct tegra_bl31_params *plat_get_bl31_params(void)
Varun Wadekard22d4ad2016-05-23 11:41:07 -070079{
80 return NULL;
81}
82
83plat_params_from_bl2_t *plat_get_bl31_plat_params(void)
84{
85 return NULL;
86}
87
Varun Wadekar3f0a8ad2016-03-28 15:56:47 -070088/*******************************************************************************
Varun Wadekarb316e242015-05-19 16:48:04 +053089 * Return a pointer to the 'entry_point_info' structure of the next image for
90 * security state specified. BL33 corresponds to the non-secure image type
91 * while BL32 corresponds to the secure image type.
92 ******************************************************************************/
93entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
94{
Varun Wadekarfda095f2019-01-02 10:48:18 -080095 entry_point_info_t *ep = NULL;
Varun Wadekarb316e242015-05-19 16:48:04 +053096
Varun Wadekar197a75f2016-06-06 10:46:28 -070097 /* return BL32 entry point info if it is valid */
Varun Wadekarfda095f2019-01-02 10:48:18 -080098 if (type == NON_SECURE) {
99 ep = &bl33_image_ep_info;
100 } else if ((type == SECURE) && (bl32_image_ep_info.pc != 0U)) {
101 ep = &bl32_image_ep_info;
102 }
Varun Wadekar52a15982015-06-05 12:57:27 +0530103
Varun Wadekarfda095f2019-01-02 10:48:18 -0800104 return ep;
Varun Wadekarb316e242015-05-19 16:48:04 +0530105}
106
107/*******************************************************************************
108 * Return a pointer to the 'plat_params_from_bl2_t' structure. The BL2 image
109 * passes this platform specific information.
110 ******************************************************************************/
111plat_params_from_bl2_t *bl31_get_plat_params(void)
112{
113 return &plat_bl31_params_from_bl2;
114}
115
116/*******************************************************************************
117 * Perform any BL31 specific platform actions. Populate the BL33 and BL32 image
118 * info.
119 ******************************************************************************/
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100120void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
121 u_register_t arg2, u_register_t arg3)
Varun Wadekarb316e242015-05-19 16:48:04 +0530122{
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100123 struct tegra_bl31_params *arg_from_bl2 = (struct tegra_bl31_params *) arg0;
124 plat_params_from_bl2_t *plat_params = (plat_params_from_bl2_t *)arg1;
Varun Wadekarb41a4142016-05-23 15:56:14 -0700125 image_info_t bl32_img_info = { {0} };
126 uint64_t tzdram_start, tzdram_end, bl32_start, bl32_end;
Harvey Hsieh9e083c72017-04-10 16:20:32 +0800127 uint32_t console_clock;
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530128
Varun Wadekarb316e242015-05-19 16:48:04 +0530129 /*
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700130 * For RESET_TO_BL31 systems, BL31 is the first bootloader to run so
131 * there's no argument to relay from a previous bootloader. Platforms
132 * might use custom ways to get arguments, so provide handlers which
133 * they can override.
134 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800135 if (arg_from_bl2 == NULL) {
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100136 arg_from_bl2 = plat_get_bl31_params();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800137 }
138 if (plat_params == NULL) {
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700139 plat_params = plat_get_bl31_plat_params();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800140 }
Varun Wadekard22d4ad2016-05-23 11:41:07 -0700141
142 /*
Varun Wadekar52a15982015-06-05 12:57:27 +0530143 * Copy BL3-3, BL3-2 entry point information.
Varun Wadekarb316e242015-05-19 16:48:04 +0530144 * They are stored in Secure RAM, in BL2's address space.
145 */
Anthony Zhou4408e882017-07-07 14:29:51 +0800146 assert(arg_from_bl2 != NULL);
147 assert(arg_from_bl2->bl33_ep_info != NULL);
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100148 bl33_image_ep_info = *arg_from_bl2->bl33_ep_info;
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530149
Varun Wadekarfda095f2019-01-02 10:48:18 -0800150 if (arg_from_bl2->bl32_ep_info != NULL) {
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100151 bl32_image_ep_info = *arg_from_bl2->bl32_ep_info;
152 bl32_mem_size = arg_from_bl2->bl32_ep_info->args.arg0;
153 bl32_boot_params = arg_from_bl2->bl32_ep_info->args.arg2;
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800154 }
Varun Wadekarb316e242015-05-19 16:48:04 +0530155
156 /*
Varun Wadekar6bb62462015-10-06 12:49:31 +0530157 * Parse platform specific parameters - TZDRAM aperture base and size
Varun Wadekarb316e242015-05-19 16:48:04 +0530158 */
Anthony Zhou4408e882017-07-07 14:29:51 +0800159 assert(plat_params != NULL);
Varun Wadekar6bb62462015-10-06 12:49:31 +0530160 plat_bl31_params_from_bl2.tzdram_base = plat_params->tzdram_base;
161 plat_bl31_params_from_bl2.tzdram_size = plat_params->tzdram_size;
Varun Wadekard2014c62015-10-29 10:37:28 +0530162 plat_bl31_params_from_bl2.uart_id = plat_params->uart_id;
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800163 plat_bl31_params_from_bl2.l2_ecc_parity_prot_dis = plat_params->l2_ecc_parity_prot_dis;
Varun Wadekard2014c62015-10-29 10:37:28 +0530164
165 /*
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700166 * It is very important that we run either from TZDRAM or TZSRAM base.
167 * Add an explicit check here.
168 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800169 if ((plat_bl31_params_from_bl2.tzdram_base != (uint64_t)BL31_BASE) &&
170 (TEGRA_TZRAM_BASE != BL31_BASE)) {
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700171 panic();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800172 }
Varun Wadekar1ec441e2016-03-24 15:34:24 -0700173
174 /*
Harvey Hsieh9e083c72017-04-10 16:20:32 +0800175 * Reference clock used by the FPGAs is a lot slower.
176 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800177 if (tegra_platform_is_fpga()) {
Harvey Hsieh9e083c72017-04-10 16:20:32 +0800178 console_clock = TEGRA_BOOT_UART_CLK_13_MHZ;
179 } else {
180 console_clock = TEGRA_BOOT_UART_CLK_408_MHZ;
181 }
182
183 /*
Varun Wadekard2014c62015-10-29 10:37:28 +0530184 * Get the base address of the UART controller to be used for the
185 * console
186 */
Varun Wadekard2014c62015-10-29 10:37:28 +0530187 tegra_console_base = plat_get_console_from_id(plat_params->uart_id);
188
Varun Wadekarfda095f2019-01-02 10:48:18 -0800189 if (tegra_console_base != 0U) {
Damon Duan777baa52016-11-07 19:37:50 +0800190 /*
191 * Configure the UART port to be used as the console
192 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800193 (void)console_init(tegra_console_base, console_clock,
Harvey Hsieh9e083c72017-04-10 16:20:32 +0800194 TEGRA_CONSOLE_BAUDRATE);
Damon Duan777baa52016-11-07 19:37:50 +0800195 }
Varun Wadekard2014c62015-10-29 10:37:28 +0530196
Varun Wadekar5118b532016-06-04 22:08:50 -0700197 /*
Steven Kao27e64312016-10-21 14:16:59 +0800198 * Initialize delay timer
199 */
200 tegra_delay_timer_init();
201
202 /*
Varun Wadekar5118b532016-06-04 22:08:50 -0700203 * Do initial security configuration to allow DRAM/device access.
204 */
205 tegra_memctrl_tzdram_setup(plat_bl31_params_from_bl2.tzdram_base,
Varun Wadekarfda095f2019-01-02 10:48:18 -0800206 (uint32_t)plat_bl31_params_from_bl2.tzdram_size);
Varun Wadekar5118b532016-06-04 22:08:50 -0700207
Varun Wadekarb41a4142016-05-23 15:56:14 -0700208 /*
209 * The previous bootloader might not have placed the BL32 image
210 * inside the TZDRAM. We check the BL32 image info to find out
211 * the base/PC values and relocate the image if necessary.
212 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800213 if (arg_from_bl2->bl32_image_info != NULL) {
Varun Wadekarb41a4142016-05-23 15:56:14 -0700214
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100215 bl32_img_info = *arg_from_bl2->bl32_image_info;
Varun Wadekarb41a4142016-05-23 15:56:14 -0700216
217 /* Relocate BL32 if it resides outside of the TZDRAM */
218 tzdram_start = plat_bl31_params_from_bl2.tzdram_base;
219 tzdram_end = plat_bl31_params_from_bl2.tzdram_base +
220 plat_bl31_params_from_bl2.tzdram_size;
221 bl32_start = bl32_img_info.image_base;
222 bl32_end = bl32_img_info.image_base + bl32_img_info.image_size;
223
224 assert(tzdram_end > tzdram_start);
225 assert(bl32_end > bl32_start);
226 assert(bl32_image_ep_info.pc > tzdram_start);
227 assert(bl32_image_ep_info.pc < tzdram_end);
228
229 /* relocate BL32 */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800230 if ((bl32_start >= tzdram_end) || (bl32_end <= tzdram_start)) {
Varun Wadekarb41a4142016-05-23 15:56:14 -0700231
232 INFO("Relocate BL32 to TZDRAM\n");
233
Varun Wadekarfda095f2019-01-02 10:48:18 -0800234 (void)memcpy16((void *)(uintptr_t)bl32_image_ep_info.pc,
Varun Wadekarb41a4142016-05-23 15:56:14 -0700235 (void *)(uintptr_t)bl32_start,
236 bl32_img_info.image_size);
237
238 /* clean up non-secure intermediate buffer */
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +0100239 zeromem((void *)(uintptr_t)bl32_start,
Varun Wadekarb41a4142016-05-23 15:56:14 -0700240 bl32_img_info.image_size);
241 }
242 }
243
Varun Wadekar3f0a8ad2016-03-28 15:56:47 -0700244 /* Early platform setup for Tegra SoCs */
245 plat_early_platform_setup();
246
Sandrine Bailleuxfff61b62018-06-21 11:41:43 +0200247 INFO("BL3-1: Boot CPU: %s Processor [%lx]\n",
248 (((read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK)
249 == DENVER_IMPL) ? "Denver" : "ARM", read_mpidr());
Varun Wadekarb316e242015-05-19 16:48:04 +0530250}
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800251
252#ifdef SPD_trusty
253void plat_trusty_set_boot_args(aapcs64_params_t *args)
254{
255 args->arg0 = bl32_mem_size;
256 args->arg1 = bl32_boot_params;
257 args->arg2 = TRUSTY_PARAMS_LEN_BYTES;
Varun Wadekarc2099802018-12-28 13:50:20 -0800258
259 /* update EKS size */
260 if (args->arg4 != 0U) {
261 args->arg2 = args->arg4;
262 }
Arve Hjønnevåg8f539492018-02-21 17:36:44 -0800263}
264#endif
Varun Wadekarb316e242015-05-19 16:48:04 +0530265
266/*******************************************************************************
267 * Initialize the gic, configure the SCR.
268 ******************************************************************************/
269void bl31_platform_setup(void)
270{
Varun Wadekarb7b45752015-12-28 14:55:41 -0800271 /* Initialize the gic cpu and distributor interfaces */
272 plat_gic_setup();
273
Varun Wadekarb316e242015-05-19 16:48:04 +0530274 /*
275 * Setup secondary CPU POR infrastructure.
276 */
277 plat_secondary_setup();
278
279 /*
280 * Initial Memory Controller configuration.
281 */
282 tegra_memctrl_setup();
283
284 /*
Varun Wadekar0dc91812015-12-30 15:06:41 -0800285 * Set up the TZRAM memory aperture to allow only secure world
286 * access
287 */
288 tegra_memctrl_tzram_setup(TEGRA_TZRAM_BASE, TEGRA_TZRAM_SIZE);
289
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530290 INFO("BL3-1: Tegra platform setup complete\n");
Varun Wadekarb316e242015-05-19 16:48:04 +0530291}
292
293/*******************************************************************************
Varun Wadekar1dcffa92016-01-08 17:48:42 -0800294 * Perform any BL3-1 platform runtime setup prior to BL3-1 cold boot exit
295 ******************************************************************************/
296void bl31_plat_runtime_setup(void)
297{
Varun Wadekarc92050b2017-03-29 14:57:29 -0700298 /*
299 * During boot, USB3 and flash media (SDMMC/SATA) devices need
300 * access to IRAM. Because these clients connect to the MC and
301 * do not have a direct path to the IRAM, the MC implements AHB
302 * redirection during boot to allow path to IRAM. In this mode
303 * accesses to a programmed memory address aperture are directed
304 * to the AHB bus, allowing access to the IRAM. This mode must be
305 * disabled before we jump to the non-secure world.
306 */
307 tegra_memctrl_disable_ahb_redirection();
Varun Wadekar1dcffa92016-01-08 17:48:42 -0800308}
309
310/*******************************************************************************
Varun Wadekarb316e242015-05-19 16:48:04 +0530311 * Perform the very early platform specific architectural setup here. At the
312 * moment this only intializes the mmu in a quick and dirty way.
313 ******************************************************************************/
314void bl31_plat_arch_setup(void)
315{
Varun Wadekarfda095f2019-01-02 10:48:18 -0800316 uint64_t rw_start = BL31_RW_START;
317 uint64_t rw_size = BL31_RW_END - BL31_RW_START;
318 uint64_t rodata_start = BL31_RODATA_BASE;
319 uint64_t rodata_size = BL31_RODATA_END - BL31_RODATA_BASE;
320 uint64_t code_base = TEXT_START;
321 uint64_t code_size = TEXT_END - TEXT_START;
Varun Wadekarb316e242015-05-19 16:48:04 +0530322 const mmap_region_t *plat_mmio_map = NULL;
Varun Wadekarb316e242015-05-19 16:48:04 +0530323#if USE_COHERENT_MEM
Varun Wadekarfda095f2019-01-02 10:48:18 -0800324 uint32_t coh_start, coh_size;
Varun Wadekarb316e242015-05-19 16:48:04 +0530325#endif
Varun Wadekarfda095f2019-01-02 10:48:18 -0800326 const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Varun Wadekarb316e242015-05-19 16:48:04 +0530327
328 /* add memory regions */
Varun Wadekar3fb854f2017-02-28 08:23:59 -0800329 mmap_add_region(rw_start, rw_start,
330 rw_size,
Varun Wadekarb316e242015-05-19 16:48:04 +0530331 MT_MEMORY | MT_RW | MT_SECURE);
Varun Wadekar3fb854f2017-02-28 08:23:59 -0800332 mmap_add_region(rodata_start, rodata_start,
333 rodata_size,
334 MT_RO_DATA | MT_SECURE);
335 mmap_add_region(code_base, code_base,
336 code_size,
337 MT_CODE | MT_SECURE);
Varun Wadekar207cc732015-07-08 12:57:50 +0530338
Varun Wadekard1513632016-03-18 13:01:12 -0700339 /* map TZDRAM used by BL31 as coherent memory */
340 if (TEGRA_TZRAM_BASE == tegra_bl31_phys_base) {
341 mmap_add_region(params_from_bl2->tzdram_base,
342 params_from_bl2->tzdram_base,
343 BL31_SIZE,
344 MT_DEVICE | MT_RW | MT_SECURE);
345 }
346
Varun Wadekarb316e242015-05-19 16:48:04 +0530347#if USE_COHERENT_MEM
Masahiro Yamada0fac5af2016-12-28 16:11:41 +0900348 coh_start = total_base + (BL_COHERENT_RAM_BASE - BL31_RO_BASE);
349 coh_size = BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE;
Varun Wadekar207cc732015-07-08 12:57:50 +0530350
Varun Wadekarb316e242015-05-19 16:48:04 +0530351 mmap_add_region(coh_start, coh_start,
352 coh_size,
Varun Wadekarfda095f2019-01-02 10:48:18 -0800353 (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE);
Varun Wadekarb316e242015-05-19 16:48:04 +0530354#endif
355
Steven Kao4d160ac2016-12-23 16:05:13 +0800356 /* map on-chip free running uS timer */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800357 mmap_add_region(page_align(TEGRA_TMRUS_BASE, 0),
358 page_align(TEGRA_TMRUS_BASE, 0),
359 TEGRA_TMRUS_SIZE,
360 (uint8_t)MT_DEVICE | (uint8_t)MT_RO | (uint8_t)MT_SECURE);
Steven Kao4d160ac2016-12-23 16:05:13 +0800361
Varun Wadekarb316e242015-05-19 16:48:04 +0530362 /* add MMIO space */
363 plat_mmio_map = plat_get_mmio_map();
Varun Wadekarfda095f2019-01-02 10:48:18 -0800364 if (plat_mmio_map != NULL) {
Varun Wadekarb316e242015-05-19 16:48:04 +0530365 mmap_add(plat_mmio_map);
Varun Wadekarfda095f2019-01-02 10:48:18 -0800366 } else {
Varun Wadekarb316e242015-05-19 16:48:04 +0530367 WARN("MMIO map not available\n");
Varun Wadekarfda095f2019-01-02 10:48:18 -0800368 }
Varun Wadekarb316e242015-05-19 16:48:04 +0530369
370 /* set up translation tables */
371 init_xlat_tables();
372
373 /* enable the MMU */
374 enable_mmu_el3(0);
Varun Wadekarbaf903e2015-09-22 15:00:06 +0530375
376 INFO("BL3-1: Tegra: MMU enabled\n");
Varun Wadekarb316e242015-05-19 16:48:04 +0530377}
Varun Wadekar7a269e22015-06-10 14:04:32 +0530378
379/*******************************************************************************
380 * Check if the given NS DRAM range is valid
381 ******************************************************************************/
Varun Wadekarfda095f2019-01-02 10:48:18 -0800382int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes)
Varun Wadekar7a269e22015-06-10 14:04:32 +0530383{
Varun Wadekar55902982017-01-25 13:35:27 -0800384 uint64_t end = base + size_in_bytes;
Varun Wadekarfda095f2019-01-02 10:48:18 -0800385 int32_t ret = 0;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530386
387 /*
388 * Check if the NS DRAM address is valid
389 */
Varun Wadekar55902982017-01-25 13:35:27 -0800390 if ((base < TEGRA_DRAM_BASE) || (end > TEGRA_DRAM_END)) {
Varun Wadekar7a269e22015-06-10 14:04:32 +0530391 ERROR("NS address is out-of-bounds!\n");
Varun Wadekarfda095f2019-01-02 10:48:18 -0800392 ret = -EFAULT;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530393 }
394
395 /*
396 * TZDRAM aperture contains the BL31 and BL32 images, so we need
397 * to check if the NS DRAM range overlaps the TZDRAM aperture.
398 */
399 if ((base < TZDRAM_END) && (end > tegra_bl31_phys_base)) {
400 ERROR("NS address overlaps TZDRAM!\n");
Varun Wadekarfda095f2019-01-02 10:48:18 -0800401 ret = -ENOTSUP;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530402 }
403
404 /* valid NS address */
Varun Wadekarfda095f2019-01-02 10:48:18 -0800405 return ret;
Varun Wadekar7a269e22015-06-10 14:04:32 +0530406}