Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 1 | /* |
Roberto Vargas | 2ca18d9 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <string.h> |
| 9 | |
| 10 | #include <platform_def.h> |
| 11 | |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 12 | #include <arch_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 13 | #include <common/bl_common.h> |
| 14 | #include <drivers/generic_delay_timer.h> |
| 15 | #include <plat/common/platform.h> |
| 16 | |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 17 | #include <plat_arm.h> |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 18 | |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 19 | /* Weak definitions may be overridden in specific ARM standard platform */ |
| 20 | #pragma weak bl2u_platform_setup |
| 21 | #pragma weak bl2u_early_platform_setup |
| 22 | #pragma weak bl2u_plat_arch_setup |
| 23 | |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 24 | #define MAP_BL2U_TOTAL MAP_REGION_FLAT( \ |
| 25 | BL2U_BASE, \ |
| 26 | BL2U_LIMIT - BL2U_BASE, \ |
| 27 | MT_MEMORY | MT_RW | MT_SECURE) |
| 28 | |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 29 | /* |
| 30 | * Perform ARM standard platform setup for BL2U |
| 31 | */ |
| 32 | void arm_bl2u_platform_setup(void) |
| 33 | { |
| 34 | /* Initialize the secure environment */ |
| 35 | plat_arm_security_setup(); |
| 36 | } |
| 37 | |
| 38 | void bl2u_platform_setup(void) |
| 39 | { |
| 40 | arm_bl2u_platform_setup(); |
| 41 | } |
| 42 | |
Sandrine Bailleux | b3b6e22 | 2018-07-11 12:44:22 +0200 | [diff] [blame] | 43 | void arm_bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info) |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 44 | { |
| 45 | /* Initialize the console to provide early debug support */ |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 46 | arm_console_boot_init(); |
| 47 | |
Soby Mathew | db14130 | 2018-03-06 15:22:55 +0000 | [diff] [blame] | 48 | generic_delay_timer_init(); |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | /******************************************************************************* |
| 52 | * BL1 can pass platform dependent information to BL2U in x1. |
| 53 | * In case of ARM CSS platforms x1 contains SCP_BL2U image info. |
| 54 | * In case of ARM FVP platforms x1 is not used. |
| 55 | * In both cases, x0 contains the extents of the memory available to BL2U |
| 56 | ******************************************************************************/ |
Sandrine Bailleux | b3b6e22 | 2018-07-11 12:44:22 +0200 | [diff] [blame] | 57 | void bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info) |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 58 | { |
| 59 | arm_bl2u_early_platform_setup(mem_layout, plat_info); |
| 60 | } |
| 61 | |
| 62 | /******************************************************************************* |
| 63 | * Perform the very early platform specific architectural setup here. At the |
| 64 | * moment this is only initializes the mmu in a quick and dirty way. |
| 65 | * The memory that is used by BL2U is only mapped. |
| 66 | ******************************************************************************/ |
| 67 | void arm_bl2u_plat_arch_setup(void) |
| 68 | { |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 69 | |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 70 | #if USE_COHERENT_MEM |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 71 | /* Ensure ARM platforms dont use coherent memory in BL2U */ |
| 72 | assert((BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE) == 0U); |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 73 | #endif |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 74 | |
| 75 | const mmap_region_t bl_regions[] = { |
| 76 | MAP_BL2U_TOTAL, |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 77 | ARM_MAP_BL_RO, |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 78 | #if USE_ROMLIB |
| 79 | ARM_MAP_ROMLIB_CODE, |
| 80 | ARM_MAP_ROMLIB_DATA, |
| 81 | #endif |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 82 | {0} |
| 83 | }; |
| 84 | |
Roberto Vargas | 344ff02 | 2018-10-19 16:44:18 +0100 | [diff] [blame] | 85 | setup_page_tables(bl_regions, plat_arm_get_mmap()); |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 86 | |
Yatharth Kochar | 18dfb30 | 2016-11-22 11:06:03 +0000 | [diff] [blame] | 87 | #ifdef AARCH32 |
Antonio Nino Diaz | 533d3a8 | 2018-08-07 16:35:19 +0100 | [diff] [blame] | 88 | enable_mmu_svc_mon(0); |
Yatharth Kochar | 18dfb30 | 2016-11-22 11:06:03 +0000 | [diff] [blame] | 89 | #else |
Sandrine Bailleux | 4a1267a | 2016-05-18 16:11:47 +0100 | [diff] [blame] | 90 | enable_mmu_el1(0); |
Yatharth Kochar | 18dfb30 | 2016-11-22 11:06:03 +0000 | [diff] [blame] | 91 | #endif |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 92 | arm_setup_romlib(); |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | void bl2u_plat_arch_setup(void) |
| 96 | { |
| 97 | arm_bl2u_plat_arch_setup(); |
| 98 | } |