Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 2 | * Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 9 | #include <arch_helpers.h> |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 10 | #include <arch_features.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <bl1/bl1.h> |
| 12 | #include <bl2/bl2.h> |
| 13 | #include <common/bl_common.h> |
| 14 | #include <common/debug.h> |
| 15 | #include <drivers/auth/auth_mod.h> |
Manish V Badarkhe | 92de80a | 2021-12-16 10:41:47 +0000 | [diff] [blame] | 16 | #include <drivers/auth/crypto_mod.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 17 | #include <drivers/console.h> |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 18 | #include <drivers/fwu/fwu.h> |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 19 | #include <lib/bootmarker_capture.h> |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 20 | #include <lib/extensions/pauth.h> |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 21 | #include <lib/pmf/pmf.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 22 | #include <plat/common/platform.h> |
| 23 | |
Dan Handley | bcd60ba | 2014-04-17 18:53:42 +0100 | [diff] [blame] | 24 | #include "bl2_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 25 | |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 26 | #ifdef __aarch64__ |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 27 | #define NEXT_IMAGE "BL31" |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 28 | #else |
| 29 | #define NEXT_IMAGE "BL32" |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 30 | #endif |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 31 | |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 32 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 33 | PMF_REGISTER_SERVICE(bl_svc, PMF_RT_INSTR_SVC_ID, |
| 34 | BL_TOTAL_IDS, PMF_DUMP_ENABLE); |
| 35 | #endif |
| 36 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 37 | #if RESET_TO_BL2 |
Sandrine Bailleux | f841ef0 | 2014-06-24 14:19:36 +0100 | [diff] [blame] | 38 | /******************************************************************************* |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 39 | * Setup function for BL2 when RESET_TO_BL2=1 |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 40 | ******************************************************************************/ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 41 | void bl2_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2, |
| 42 | u_register_t arg3) |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 43 | { |
| 44 | /* Perform early platform-specific setup */ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 45 | bl2_el3_early_platform_setup(arg0, arg1, arg2, arg3); |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 46 | |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 47 | /* Perform late platform-specific setup */ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 48 | bl2_el3_plat_arch_setup(); |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 49 | |
| 50 | #if CTX_INCLUDE_PAUTH_REGS |
| 51 | /* |
| 52 | * Assert that the ARMv8.3-PAuth registers are present or an access |
| 53 | * fault will be triggered when they are being saved or restored. |
| 54 | */ |
| 55 | assert(is_armv8_3_pauth_present()); |
| 56 | #endif /* CTX_INCLUDE_PAUTH_REGS */ |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 57 | } |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 58 | #else /* RESET_TO_BL2 */ |
| 59 | |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 60 | /******************************************************************************* |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 61 | * Setup function for BL2 when RESET_TO_BL2=0 |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 62 | ******************************************************************************/ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 63 | void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2, |
| 64 | u_register_t arg3) |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 65 | { |
| 66 | /* Perform early platform-specific setup */ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 67 | bl2_early_platform_setup2(arg0, arg1, arg2, arg3); |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 68 | |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 69 | /* Perform late platform-specific setup */ |
Zelalem Aweke | 688fbf7 | 2021-07-09 11:37:10 -0500 | [diff] [blame] | 70 | bl2_plat_arch_setup(); |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 71 | |
| 72 | #if CTX_INCLUDE_PAUTH_REGS |
| 73 | /* |
| 74 | * Assert that the ARMv8.3-PAuth registers are present or an access |
| 75 | * fault will be triggered when they are being saved or restored. |
| 76 | */ |
| 77 | assert(is_armv8_3_pauth_present()); |
| 78 | #endif /* CTX_INCLUDE_PAUTH_REGS */ |
Antonio Nino Diaz | 4f29fb7 | 2019-01-31 17:40:44 +0000 | [diff] [blame] | 79 | } |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 80 | #endif /* RESET_TO_BL2 */ |
Antonio Nino Diaz | 6e4b083 | 2019-01-31 10:48:47 +0000 | [diff] [blame] | 81 | |
| 82 | /******************************************************************************* |
Sandrine Bailleux | f841ef0 | 2014-06-24 14:19:36 +0100 | [diff] [blame] | 83 | * The only thing to do in BL2 is to load further images and pass control to |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 84 | * next BL. The memory occupied by BL2 will be reclaimed by BL3x stages. BL2 |
| 85 | * runs entirely in S-EL1. |
Sandrine Bailleux | f841ef0 | 2014-06-24 14:19:36 +0100 | [diff] [blame] | 86 | ******************************************************************************/ |
| 87 | void bl2_main(void) |
| 88 | { |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 89 | entry_point_info_t *next_bl_ep_info; |
Sandrine Bailleux | f841ef0 | 2014-06-24 14:19:36 +0100 | [diff] [blame] | 90 | |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 91 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 92 | PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_ENTRY, PMF_CACHE_MAINT); |
| 93 | #endif |
| 94 | |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 95 | NOTICE("BL2: %s\n", version_string); |
| 96 | NOTICE("BL2: %s\n", build_message); |
| 97 | |
Sandrine Bailleux | f841ef0 | 2014-06-24 14:19:36 +0100 | [diff] [blame] | 98 | /* Perform remaining generic architectural setup in S-EL1 */ |
| 99 | bl2_arch_setup(); |
| 100 | |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 101 | #if PSA_FWU_SUPPORT |
| 102 | fwu_init(); |
| 103 | #endif /* PSA_FWU_SUPPORT */ |
| 104 | |
Manish V Badarkhe | 92de80a | 2021-12-16 10:41:47 +0000 | [diff] [blame] | 105 | crypto_mod_init(); |
| 106 | |
Juan Castillo | 9246ab8 | 2015-01-28 16:46:57 +0000 | [diff] [blame] | 107 | /* Initialize authentication module */ |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 108 | auth_mod_init(); |
Juan Castillo | 9246ab8 | 2015-01-28 16:46:57 +0000 | [diff] [blame] | 109 | |
Manish V Badarkhe | 5797b80 | 2021-08-06 09:26:20 +0100 | [diff] [blame] | 110 | /* Initialize the Measured Boot backend */ |
| 111 | bl2_plat_mboot_init(); |
| 112 | |
Alexei Fedorov | 71707b1 | 2020-07-13 14:06:47 +0100 | [diff] [blame] | 113 | /* Initialize boot source */ |
Roberto Vargas | bc1ae1f | 2017-09-26 12:53:01 +0100 | [diff] [blame] | 114 | bl2_plat_preload_setup(); |
| 115 | |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 116 | /* Load the subsequent bootloader images. */ |
| 117 | next_bl_ep_info = bl2_load_images(); |
Andrew Thoelke | a55566d | 2014-05-28 22:22:55 +0100 | [diff] [blame] | 118 | |
Manish V Badarkhe | 5797b80 | 2021-08-06 09:26:20 +0100 | [diff] [blame] | 119 | /* Teardown the Measured Boot backend */ |
| 120 | bl2_plat_mboot_finish(); |
Alexei Fedorov | 71707b1 | 2020-07-13 14:06:47 +0100 | [diff] [blame] | 121 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 122 | #if !BL2_RUNS_AT_EL3 |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 123 | #ifndef __aarch64__ |
Yatharth Kochar | dafb247 | 2016-06-30 14:52:12 +0100 | [diff] [blame] | 124 | /* |
| 125 | * For AArch32 state BL1 and BL2 share the MMU setup. |
| 126 | * Given that BL2 does not map BL1 regions, MMU needs |
| 127 | * to be disabled in order to go back to BL1. |
| 128 | */ |
| 129 | disable_mmu_icache_secure(); |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 130 | #endif /* !__aarch64__ */ |
Yatharth Kochar | dafb247 | 2016-06-30 14:52:12 +0100 | [diff] [blame] | 131 | |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 132 | #if ENABLE_PAUTH |
| 133 | /* |
| 134 | * Disable pointer authentication before running next boot image |
| 135 | */ |
| 136 | pauth_disable_el1(); |
| 137 | #endif /* ENABLE_PAUTH */ |
| 138 | |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 139 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 140 | PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_EXIT, PMF_CACHE_MAINT); |
| 141 | #endif |
| 142 | |
| 143 | console_flush(); |
| 144 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 145 | /* |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 146 | * Run next BL image via an SMC to BL1. Information on how to pass |
| 147 | * control to the BL32 (if present) and BL33 software images will |
| 148 | * be passed to next BL image as an argument. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 149 | */ |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 150 | smc(BL1_SMC_RUN_IMAGE, (unsigned long)next_bl_ep_info, 0, 0, 0, 0, 0, 0); |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 151 | #else /* if BL2_RUNS_AT_EL3 */ |
| 152 | |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 153 | NOTICE("BL2: Booting " NEXT_IMAGE "\n"); |
| 154 | print_entry_point_info(next_bl_ep_info); |
thagon01-arm | 6805e8d | 2023-07-12 10:43:58 -0500 | [diff] [blame] | 155 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 156 | PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_EXIT, PMF_CACHE_MAINT); |
| 157 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 158 | console_flush(); |
| 159 | |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 160 | #if ENABLE_PAUTH |
| 161 | /* |
| 162 | * Disable pointer authentication before running next boot image |
| 163 | */ |
| 164 | pauth_disable_el3(); |
| 165 | #endif /* ENABLE_PAUTH */ |
| 166 | |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 167 | bl2_run_next_image(next_bl_ep_info); |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 168 | #endif /* BL2_RUNS_AT_EL3 */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 169 | } |