Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 1 | /* |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
| 31 | #include <arch.h> |
| 32 | #include <arch_helpers.h> |
| 33 | #include <assert.h> |
| 34 | #include <bl31.h> |
| 35 | #include <bl_common.h> |
| 36 | #include <console.h> |
| 37 | #include <cortex_a57.h> |
| 38 | #include <cortex_a53.h> |
| 39 | #include <debug.h> |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 40 | #include <denver.h> |
Varun Wadekar | 7a269e2 | 2015-06-10 14:04:32 +0530 | [diff] [blame] | 41 | #include <errno.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 42 | #include <memctrl.h> |
| 43 | #include <mmio.h> |
| 44 | #include <platform.h> |
| 45 | #include <platform_def.h> |
| 46 | #include <stddef.h> |
Varun Wadekar | b41a414 | 2016-05-23 15:56:14 -0700 | [diff] [blame] | 47 | #include <string.h> |
Varun Wadekar | 0dc9181 | 2015-12-30 15:06:41 -0800 | [diff] [blame] | 48 | #include <tegra_def.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 49 | #include <tegra_private.h> |
| 50 | |
Varun Wadekar | b41a414 | 2016-05-23 15:56:14 -0700 | [diff] [blame] | 51 | extern void zeromem16(void *mem, unsigned int length); |
| 52 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 53 | /******************************************************************************* |
| 54 | * Declarations of linker defined symbols which will help us find the layout |
| 55 | * of trusted SRAM |
| 56 | ******************************************************************************/ |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 57 | extern unsigned long __TEXT_START__; |
| 58 | extern unsigned long __TEXT_END__; |
| 59 | extern unsigned long __RW_START__; |
| 60 | extern unsigned long __RW_END__; |
| 61 | extern unsigned long __RODATA_START__; |
| 62 | extern unsigned long __RODATA_END__; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 63 | extern unsigned long __BL31_END__; |
| 64 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 65 | extern uint64_t tegra_bl31_phys_base; |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 66 | extern uint64_t tegra_console_base; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * The next 3 constants identify the extents of the code, RO data region and the |
| 70 | * limit of the BL3-1 image. These addresses are used by the MMU setup code and |
| 71 | * therefore they must be page-aligned. It is the responsibility of the linker |
| 72 | * script to ensure that __RO_START__, __RO_END__ & __BL31_END__ linker symbols |
| 73 | * refer to page-aligned addresses. |
| 74 | */ |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 75 | #define BL31_RW_START (unsigned long)(&__RW_START__) |
| 76 | #define BL31_RW_END (unsigned long)(&__RW_END__) |
| 77 | #define BL31_RODATA_BASE (unsigned long)(&__RODATA_START__) |
| 78 | #define BL31_RODATA_END (unsigned long)(&__RODATA_END__) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 79 | #define BL31_END (unsigned long)(&__BL31_END__) |
| 80 | |
Varun Wadekar | 52a1598 | 2015-06-05 12:57:27 +0530 | [diff] [blame] | 81 | static entry_point_info_t bl33_image_ep_info, bl32_image_ep_info; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 82 | static plat_params_from_bl2_t plat_bl31_params_from_bl2 = { |
Varun Wadekar | c8bfe2e | 2015-07-31 10:03:01 +0530 | [diff] [blame] | 83 | .tzdram_size = (uint64_t)TZDRAM_SIZE |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | /******************************************************************************* |
| 87 | * This variable holds the non-secure image entry address |
| 88 | ******************************************************************************/ |
| 89 | extern uint64_t ns_image_entrypoint; |
| 90 | |
| 91 | /******************************************************************************* |
Varun Wadekar | 3f0a8ad | 2016-03-28 15:56:47 -0700 | [diff] [blame] | 92 | * The following platform setup functions are weakly defined. They |
| 93 | * provide typical implementations that will be overridden by a SoC. |
| 94 | ******************************************************************************/ |
| 95 | #pragma weak plat_early_platform_setup |
Varun Wadekar | d22d4ad | 2016-05-23 11:41:07 -0700 | [diff] [blame] | 96 | #pragma weak plat_get_bl31_params |
| 97 | #pragma weak plat_get_bl31_plat_params |
Varun Wadekar | 3f0a8ad | 2016-03-28 15:56:47 -0700 | [diff] [blame] | 98 | |
| 99 | void plat_early_platform_setup(void) |
| 100 | { |
| 101 | ; /* do nothing */ |
| 102 | } |
| 103 | |
Varun Wadekar | d22d4ad | 2016-05-23 11:41:07 -0700 | [diff] [blame] | 104 | bl31_params_t *plat_get_bl31_params(void) |
| 105 | { |
| 106 | return NULL; |
| 107 | } |
| 108 | |
| 109 | plat_params_from_bl2_t *plat_get_bl31_plat_params(void) |
| 110 | { |
| 111 | return NULL; |
| 112 | } |
| 113 | |
Varun Wadekar | 3f0a8ad | 2016-03-28 15:56:47 -0700 | [diff] [blame] | 114 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 115 | * Return a pointer to the 'entry_point_info' structure of the next image for |
| 116 | * security state specified. BL33 corresponds to the non-secure image type |
| 117 | * while BL32 corresponds to the secure image type. |
| 118 | ******************************************************************************/ |
| 119 | entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type) |
| 120 | { |
| 121 | if (type == NON_SECURE) |
| 122 | return &bl33_image_ep_info; |
| 123 | |
Varun Wadekar | 197a75f | 2016-06-06 10:46:28 -0700 | [diff] [blame] | 124 | /* return BL32 entry point info if it is valid */ |
| 125 | if (type == SECURE && bl32_image_ep_info.pc) |
Varun Wadekar | 52a1598 | 2015-06-05 12:57:27 +0530 | [diff] [blame] | 126 | return &bl32_image_ep_info; |
| 127 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 128 | return NULL; |
| 129 | } |
| 130 | |
| 131 | /******************************************************************************* |
| 132 | * Return a pointer to the 'plat_params_from_bl2_t' structure. The BL2 image |
| 133 | * passes this platform specific information. |
| 134 | ******************************************************************************/ |
| 135 | plat_params_from_bl2_t *bl31_get_plat_params(void) |
| 136 | { |
| 137 | return &plat_bl31_params_from_bl2; |
| 138 | } |
| 139 | |
| 140 | /******************************************************************************* |
| 141 | * Perform any BL31 specific platform actions. Populate the BL33 and BL32 image |
| 142 | * info. |
| 143 | ******************************************************************************/ |
| 144 | void bl31_early_platform_setup(bl31_params_t *from_bl2, |
| 145 | void *plat_params_from_bl2) |
| 146 | { |
| 147 | plat_params_from_bl2_t *plat_params = |
| 148 | (plat_params_from_bl2_t *)plat_params_from_bl2; |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 149 | #if DEBUG |
| 150 | int impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK; |
| 151 | #endif |
Varun Wadekar | b41a414 | 2016-05-23 15:56:14 -0700 | [diff] [blame] | 152 | image_info_t bl32_img_info = { {0} }; |
| 153 | uint64_t tzdram_start, tzdram_end, bl32_start, bl32_end; |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 154 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 155 | /* |
Varun Wadekar | d22d4ad | 2016-05-23 11:41:07 -0700 | [diff] [blame] | 156 | * For RESET_TO_BL31 systems, BL31 is the first bootloader to run so |
| 157 | * there's no argument to relay from a previous bootloader. Platforms |
| 158 | * might use custom ways to get arguments, so provide handlers which |
| 159 | * they can override. |
| 160 | */ |
| 161 | if (from_bl2 == NULL) |
| 162 | from_bl2 = plat_get_bl31_params(); |
| 163 | if (plat_params == NULL) |
| 164 | plat_params = plat_get_bl31_plat_params(); |
| 165 | |
| 166 | /* |
Varun Wadekar | 52a1598 | 2015-06-05 12:57:27 +0530 | [diff] [blame] | 167 | * Copy BL3-3, BL3-2 entry point information. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 168 | * They are stored in Secure RAM, in BL2's address space. |
| 169 | */ |
Varun Wadekar | d22d4ad | 2016-05-23 11:41:07 -0700 | [diff] [blame] | 170 | assert(from_bl2); |
Varun Wadekar | 6bb6246 | 2015-10-06 12:49:31 +0530 | [diff] [blame] | 171 | assert(from_bl2->bl33_ep_info); |
| 172 | bl33_image_ep_info = *from_bl2->bl33_ep_info; |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 173 | |
| 174 | if (from_bl2->bl32_ep_info) |
| 175 | bl32_image_ep_info = *from_bl2->bl32_ep_info; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 176 | |
| 177 | /* |
Varun Wadekar | 6bb6246 | 2015-10-06 12:49:31 +0530 | [diff] [blame] | 178 | * Parse platform specific parameters - TZDRAM aperture base and size |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 179 | */ |
Varun Wadekar | 6bb6246 | 2015-10-06 12:49:31 +0530 | [diff] [blame] | 180 | assert(plat_params); |
| 181 | plat_bl31_params_from_bl2.tzdram_base = plat_params->tzdram_base; |
| 182 | plat_bl31_params_from_bl2.tzdram_size = plat_params->tzdram_size; |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 183 | plat_bl31_params_from_bl2.uart_id = plat_params->uart_id; |
| 184 | |
| 185 | /* |
Varun Wadekar | 1ec441e | 2016-03-24 15:34:24 -0700 | [diff] [blame] | 186 | * It is very important that we run either from TZDRAM or TZSRAM base. |
| 187 | * Add an explicit check here. |
| 188 | */ |
| 189 | if ((plat_bl31_params_from_bl2.tzdram_base != BL31_BASE) && |
| 190 | (TEGRA_TZRAM_BASE != BL31_BASE)) |
| 191 | panic(); |
| 192 | |
| 193 | /* |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 194 | * Get the base address of the UART controller to be used for the |
| 195 | * console |
| 196 | */ |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 197 | tegra_console_base = plat_get_console_from_id(plat_params->uart_id); |
| 198 | |
Damon Duan | 777baa5 | 2016-11-07 19:37:50 +0800 | [diff] [blame] | 199 | if (tegra_console_base != (uint64_t)0) { |
| 200 | /* |
| 201 | * Configure the UART port to be used as the console |
| 202 | */ |
| 203 | console_init(tegra_console_base, TEGRA_BOOT_UART_CLK_IN_HZ, |
| 204 | TEGRA_CONSOLE_BAUDRATE); |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 205 | |
Damon Duan | 777baa5 | 2016-11-07 19:37:50 +0800 | [diff] [blame] | 206 | /* Initialise crash console */ |
| 207 | plat_crash_console_init(); |
| 208 | } |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 209 | |
Varun Wadekar | 5118b53 | 2016-06-04 22:08:50 -0700 | [diff] [blame] | 210 | /* |
| 211 | * Do initial security configuration to allow DRAM/device access. |
| 212 | */ |
| 213 | tegra_memctrl_tzdram_setup(plat_bl31_params_from_bl2.tzdram_base, |
| 214 | plat_bl31_params_from_bl2.tzdram_size); |
| 215 | |
Varun Wadekar | b41a414 | 2016-05-23 15:56:14 -0700 | [diff] [blame] | 216 | /* |
| 217 | * The previous bootloader might not have placed the BL32 image |
| 218 | * inside the TZDRAM. We check the BL32 image info to find out |
| 219 | * the base/PC values and relocate the image if necessary. |
| 220 | */ |
| 221 | if (from_bl2->bl32_image_info) { |
| 222 | |
| 223 | bl32_img_info = *from_bl2->bl32_image_info; |
| 224 | |
| 225 | /* Relocate BL32 if it resides outside of the TZDRAM */ |
| 226 | tzdram_start = plat_bl31_params_from_bl2.tzdram_base; |
| 227 | tzdram_end = plat_bl31_params_from_bl2.tzdram_base + |
| 228 | plat_bl31_params_from_bl2.tzdram_size; |
| 229 | bl32_start = bl32_img_info.image_base; |
| 230 | bl32_end = bl32_img_info.image_base + bl32_img_info.image_size; |
| 231 | |
| 232 | assert(tzdram_end > tzdram_start); |
| 233 | assert(bl32_end > bl32_start); |
| 234 | assert(bl32_image_ep_info.pc > tzdram_start); |
| 235 | assert(bl32_image_ep_info.pc < tzdram_end); |
| 236 | |
| 237 | /* relocate BL32 */ |
| 238 | if (bl32_start >= tzdram_end || bl32_end <= tzdram_start) { |
| 239 | |
| 240 | INFO("Relocate BL32 to TZDRAM\n"); |
| 241 | |
| 242 | memcpy16((void *)(uintptr_t)bl32_image_ep_info.pc, |
| 243 | (void *)(uintptr_t)bl32_start, |
| 244 | bl32_img_info.image_size); |
| 245 | |
| 246 | /* clean up non-secure intermediate buffer */ |
| 247 | zeromem16((void *)(uintptr_t)bl32_start, |
| 248 | bl32_img_info.image_size); |
| 249 | } |
| 250 | } |
| 251 | |
Varun Wadekar | 3f0a8ad | 2016-03-28 15:56:47 -0700 | [diff] [blame] | 252 | /* Early platform setup for Tegra SoCs */ |
| 253 | plat_early_platform_setup(); |
| 254 | |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 255 | INFO("BL3-1: Boot CPU: %s Processor [%lx]\n", (impl == DENVER_IMPL) ? |
| 256 | "Denver" : "ARM", read_mpidr()); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /******************************************************************************* |
| 260 | * Initialize the gic, configure the SCR. |
| 261 | ******************************************************************************/ |
| 262 | void bl31_platform_setup(void) |
| 263 | { |
| 264 | uint32_t tmp_reg; |
| 265 | |
Varun Wadekar | b7b4575 | 2015-12-28 14:55:41 -0800 | [diff] [blame] | 266 | /* Initialize the gic cpu and distributor interfaces */ |
| 267 | plat_gic_setup(); |
| 268 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 269 | /* |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 270 | * Initialize delay timer |
| 271 | */ |
| 272 | tegra_delay_timer_init(); |
| 273 | |
| 274 | /* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 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 Wadekar | 0dc9181 | 2015-12-30 15:06:41 -0800 | [diff] [blame] | 285 | * 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 Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 290 | /* Set the next EL to be AArch64 */ |
| 291 | tmp_reg = SCR_RES1_BITS | SCR_RW_BIT; |
| 292 | write_scr(tmp_reg); |
| 293 | |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 294 | INFO("BL3-1: Tegra platform setup complete\n"); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /******************************************************************************* |
Varun Wadekar | 1dcffa9 | 2016-01-08 17:48:42 -0800 | [diff] [blame] | 298 | * Perform any BL3-1 platform runtime setup prior to BL3-1 cold boot exit |
| 299 | ******************************************************************************/ |
| 300 | void bl31_plat_runtime_setup(void) |
| 301 | { |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 302 | ; /* do nothing */ |
Varun Wadekar | 1dcffa9 | 2016-01-08 17:48:42 -0800 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 306 | * Perform the very early platform specific architectural setup here. At the |
| 307 | * moment this only intializes the mmu in a quick and dirty way. |
| 308 | ******************************************************************************/ |
| 309 | void bl31_plat_arch_setup(void) |
| 310 | { |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 311 | unsigned long rw_start = BL31_RW_START; |
| 312 | unsigned long rw_size = BL31_RW_END - BL31_RW_START; |
| 313 | unsigned long rodata_start = BL31_RODATA_BASE; |
| 314 | unsigned long rodata_size = BL31_RODATA_END - BL31_RODATA_BASE; |
| 315 | unsigned long code_base = (unsigned long)(&__TEXT_START__); |
| 316 | unsigned long code_size = (unsigned long)(&__TEXT_END__) - code_base; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 317 | const mmap_region_t *plat_mmio_map = NULL; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 318 | #if USE_COHERENT_MEM |
Varun Wadekar | 207cc73 | 2015-07-08 12:57:50 +0530 | [diff] [blame] | 319 | unsigned long coh_start, coh_size; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 320 | #endif |
Varun Wadekar | d151363 | 2016-03-18 13:01:12 -0700 | [diff] [blame] | 321 | plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 322 | |
| 323 | /* add memory regions */ |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 324 | mmap_add_region(rw_start, rw_start, |
| 325 | rw_size, |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 326 | MT_MEMORY | MT_RW | MT_SECURE); |
Varun Wadekar | 3fb854f | 2017-02-28 08:23:59 -0800 | [diff] [blame] | 327 | mmap_add_region(rodata_start, rodata_start, |
| 328 | rodata_size, |
| 329 | MT_RO_DATA | MT_SECURE); |
| 330 | mmap_add_region(code_base, code_base, |
| 331 | code_size, |
| 332 | MT_CODE | MT_SECURE); |
Varun Wadekar | 207cc73 | 2015-07-08 12:57:50 +0530 | [diff] [blame] | 333 | |
Varun Wadekar | d151363 | 2016-03-18 13:01:12 -0700 | [diff] [blame] | 334 | /* map TZDRAM used by BL31 as coherent memory */ |
| 335 | if (TEGRA_TZRAM_BASE == tegra_bl31_phys_base) { |
| 336 | mmap_add_region(params_from_bl2->tzdram_base, |
| 337 | params_from_bl2->tzdram_base, |
| 338 | BL31_SIZE, |
| 339 | MT_DEVICE | MT_RW | MT_SECURE); |
| 340 | } |
| 341 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 342 | #if USE_COHERENT_MEM |
Masahiro Yamada | 0fac5af | 2016-12-28 16:11:41 +0900 | [diff] [blame] | 343 | coh_start = total_base + (BL_COHERENT_RAM_BASE - BL31_RO_BASE); |
| 344 | coh_size = BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE; |
Varun Wadekar | 207cc73 | 2015-07-08 12:57:50 +0530 | [diff] [blame] | 345 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 346 | mmap_add_region(coh_start, coh_start, |
| 347 | coh_size, |
| 348 | MT_DEVICE | MT_RW | MT_SECURE); |
| 349 | #endif |
| 350 | |
| 351 | /* add MMIO space */ |
| 352 | plat_mmio_map = plat_get_mmio_map(); |
| 353 | if (plat_mmio_map) |
| 354 | mmap_add(plat_mmio_map); |
| 355 | else |
| 356 | WARN("MMIO map not available\n"); |
| 357 | |
| 358 | /* set up translation tables */ |
| 359 | init_xlat_tables(); |
| 360 | |
| 361 | /* enable the MMU */ |
| 362 | enable_mmu_el3(0); |
Varun Wadekar | baf903e | 2015-09-22 15:00:06 +0530 | [diff] [blame] | 363 | |
| 364 | INFO("BL3-1: Tegra: MMU enabled\n"); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 365 | } |
Varun Wadekar | 7a269e2 | 2015-06-10 14:04:32 +0530 | [diff] [blame] | 366 | |
| 367 | /******************************************************************************* |
| 368 | * Check if the given NS DRAM range is valid |
| 369 | ******************************************************************************/ |
| 370 | int bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes) |
| 371 | { |
| 372 | uint64_t end = base + size_in_bytes - 1; |
| 373 | |
| 374 | /* |
| 375 | * Check if the NS DRAM address is valid |
| 376 | */ |
| 377 | if ((base < TEGRA_DRAM_BASE) || (end > TEGRA_DRAM_END) || |
| 378 | (base >= end)) { |
| 379 | ERROR("NS address is out-of-bounds!\n"); |
| 380 | return -EFAULT; |
| 381 | } |
| 382 | |
| 383 | /* |
| 384 | * TZDRAM aperture contains the BL31 and BL32 images, so we need |
| 385 | * to check if the NS DRAM range overlaps the TZDRAM aperture. |
| 386 | */ |
| 387 | if ((base < TZDRAM_END) && (end > tegra_bl31_phys_base)) { |
| 388 | ERROR("NS address overlaps TZDRAM!\n"); |
| 389 | return -ENOTSUP; |
| 390 | } |
| 391 | |
| 392 | /* valid NS address */ |
| 393 | return 0; |
| 394 | } |