blob: dbe9453dbbbc889f69a9cd0cb4f122d4ffc44e4f [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Boyan Karatotevec7c29a2025-03-26 15:30:42 +00002 * Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Alexei Fedoroved108b52019-09-13 14:11:59 +01007#include <assert.h>
8
Achin Gupta4f6ad662013-10-25 09:08:21 +01009#include <arch_helpers.h>
Alexei Fedoroved108b52019-09-13 14:11:59 +010010#include <arch_features.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011#include <bl1/bl1.h>
12#include <bl2/bl2.h>
13#include <common/bl_common.h>
Chris Kay758ccb82024-03-08 16:08:31 +000014#include <common/build_message.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000015#include <common/debug.h>
16#include <drivers/auth/auth_mod.h>
Manish V Badarkhe0aa0b3a2021-12-16 10:41:47 +000017#include <drivers/auth/crypto_mod.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000018#include <drivers/console.h>
Manish V Badarkhe396b3392021-06-25 23:28:59 +010019#include <drivers/fwu/fwu.h>
thagon01-armed8f06d2023-07-12 10:43:58 -050020#include <lib/bootmarker_capture.h>
Alexei Fedoroved108b52019-09-13 14:11:59 +010021#include <lib/extensions/pauth.h>
thagon01-armed8f06d2023-07-12 10:43:58 -050022#include <lib/pmf/pmf.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000023#include <plat/common/platform.h>
24
Dan Handley5b827a82014-04-17 18:53:42 +010025#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010026
Julius Werner402b3cf2019-07-09 14:02:43 -070027#ifdef __aarch64__
Roberto Vargasb1d27b42017-10-30 14:43:43 +000028#define NEXT_IMAGE "BL31"
Julius Werner402b3cf2019-07-09 14:02:43 -070029#else
30#define NEXT_IMAGE "BL32"
Roberto Vargasb1d27b42017-10-30 14:43:43 +000031#endif
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010032
thagon01-armed8f06d2023-07-12 10:43:58 -050033#if ENABLE_RUNTIME_INSTRUMENTATION
34 PMF_REGISTER_SERVICE(bl_svc, PMF_RT_INSTR_SVC_ID,
35 BL_TOTAL_IDS, PMF_DUMP_ENABLE);
36#endif
37
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -060038#if RESET_TO_BL2
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010039/*******************************************************************************
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -060040 * Setup function for BL2 when RESET_TO_BL2=1
Antonio Nino Diazdcbfa112019-01-31 17:40:44 +000041 ******************************************************************************/
42void bl2_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
43 u_register_t arg3)
44{
Yann Gautierae770fe2024-01-16 19:39:31 +010045 /* Enable early console if EARLY_CONSOLE flag is enabled */
46 plat_setup_early_console();
47
Antonio Nino Diazdcbfa112019-01-31 17:40:44 +000048 /* Perform early platform-specific setup */
49 bl2_el3_early_platform_setup(arg0, arg1, arg2, arg3);
50
Antonio Nino Diazdcbfa112019-01-31 17:40:44 +000051 /* Perform late platform-specific setup */
52 bl2_el3_plat_arch_setup();
53}
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -060054#else /* RESET_TO_BL2 */
55
Zelalem Aweke6c09af92021-07-09 11:37:10 -050056/*******************************************************************************
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -060057 * Setup function for BL2 when RESET_TO_BL2=0
Zelalem Aweke6c09af92021-07-09 11:37:10 -050058 ******************************************************************************/
59void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
60 u_register_t arg3)
61{
Yann Gautierae770fe2024-01-16 19:39:31 +010062 /* Enable early console if EARLY_CONSOLE flag is enabled */
63 plat_setup_early_console();
64
Zelalem Aweke6c09af92021-07-09 11:37:10 -050065 /* Perform early platform-specific setup */
66 bl2_early_platform_setup2(arg0, arg1, arg2, arg3);
67
68 /* Perform late platform-specific setup */
69 bl2_plat_arch_setup();
Zelalem Aweke6c09af92021-07-09 11:37:10 -050070}
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -060071#endif /* RESET_TO_BL2 */
Antonio Nino Diazdcbfa112019-01-31 17:40:44 +000072
Antonio Nino Diaz9d93fc22019-01-31 10:48:47 +000073/*******************************************************************************
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010074 * The only thing to do in BL2 is to load further images and pass control to
Yatharth Kochar42019bf2016-09-12 16:10:33 +010075 * next BL. The memory occupied by BL2 will be reclaimed by BL3x stages. BL2
76 * runs entirely in S-EL1.
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010077 ******************************************************************************/
78void bl2_main(void)
79{
Yatharth Kochar42019bf2016-09-12 16:10:33 +010080 entry_point_info_t *next_bl_ep_info;
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010081
thagon01-armed8f06d2023-07-12 10:43:58 -050082#if ENABLE_RUNTIME_INSTRUMENTATION
83 PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_ENTRY, PMF_CACHE_MAINT);
84#endif
85
Chris Kay758ccb82024-03-08 16:08:31 +000086 NOTICE("BL2: %s\n", build_version_string);
Dan Handley6ad2e462014-07-29 17:14:00 +010087 NOTICE("BL2: %s\n", build_message);
88
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010089 /* Perform remaining generic architectural setup in S-EL1 */
90 bl2_arch_setup();
91
Manish V Badarkhe396b3392021-06-25 23:28:59 +010092#if PSA_FWU_SUPPORT
93 fwu_init();
94#endif /* PSA_FWU_SUPPORT */
95
Manish V Badarkhe0aa0b3a2021-12-16 10:41:47 +000096 crypto_mod_init();
97
Juan Castillodec840a2015-01-28 16:46:57 +000098 /* Initialize authentication module */
Juan Castillo1779ba62015-05-19 11:54:12 +010099 auth_mod_init();
Juan Castillodec840a2015-01-28 16:46:57 +0000100
Manish V Badarkhe47bf3ac2021-08-06 09:26:20 +0100101 /* Initialize the Measured Boot backend */
102 bl2_plat_mboot_init();
103
Alexei Fedorov3f498b02020-07-13 14:06:47 +0100104 /* Initialize boot source */
Roberto Vargas01f62b62017-09-26 12:53:01 +0100105 bl2_plat_preload_setup();
106
Yatharth Kochar42019bf2016-09-12 16:10:33 +0100107 /* Load the subsequent bootloader images. */
108 next_bl_ep_info = bl2_load_images();
Juan Castilloef538c62014-09-04 14:43:09 +0100109
Manish V Badarkhe47bf3ac2021-08-06 09:26:20 +0100110 /* Teardown the Measured Boot backend */
111 bl2_plat_mboot_finish();
Alexei Fedorov3f498b02020-07-13 14:06:47 +0100112
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600113#if !BL2_RUNS_AT_EL3
Julius Werner402b3cf2019-07-09 14:02:43 -0700114#ifndef __aarch64__
Yatharth Kochard48c12e2016-06-30 14:52:12 +0100115 /*
116 * For AArch32 state BL1 and BL2 share the MMU setup.
117 * Given that BL2 does not map BL1 regions, MMU needs
118 * to be disabled in order to go back to BL1.
119 */
120 disable_mmu_icache_secure();
Julius Werner402b3cf2019-07-09 14:02:43 -0700121#endif /* !__aarch64__ */
Yatharth Kochard48c12e2016-06-30 14:52:12 +0100122
Alexei Fedoroved108b52019-09-13 14:11:59 +0100123 /*
124 * Disable pointer authentication before running next boot image
125 */
Boyan Karatotev8d9f5f22025-04-02 11:16:18 +0100126 if (is_feat_pauth_supported()) {
127 pauth_disable_el1();
128 }
Alexei Fedoroved108b52019-09-13 14:11:59 +0100129
thagon01-armed8f06d2023-07-12 10:43:58 -0500130#if ENABLE_RUNTIME_INSTRUMENTATION
131 PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_EXIT, PMF_CACHE_MAINT);
132#endif
133
134 console_flush();
135
Sandrine Bailleux93d81d62014-06-24 14:19:36 +0100136 /*
Yatharth Kochar42019bf2016-09-12 16:10:33 +0100137 * Run next BL image via an SMC to BL1. Information on how to pass
138 * control to the BL32 (if present) and BL33 software images will
139 * be passed to next BL image as an argument.
Sandrine Bailleux93d81d62014-06-24 14:19:36 +0100140 */
Yatharth Kochar42019bf2016-09-12 16:10:33 +0100141 smc(BL1_SMC_RUN_IMAGE, (unsigned long)next_bl_ep_info, 0, 0, 0, 0, 0, 0);
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600142#else /* if BL2_RUNS_AT_EL3 */
143
Roberto Vargasb1d27b42017-10-30 14:43:43 +0000144 NOTICE("BL2: Booting " NEXT_IMAGE "\n");
145 print_entry_point_info(next_bl_ep_info);
thagon01-armed8f06d2023-07-12 10:43:58 -0500146#if ENABLE_RUNTIME_INSTRUMENTATION
147 PMF_CAPTURE_TIMESTAMP(bl_svc, BL2_EXIT, PMF_CACHE_MAINT);
148#endif
Roberto Vargasb1d27b42017-10-30 14:43:43 +0000149 console_flush();
150
Alexei Fedoroved108b52019-09-13 14:11:59 +0100151 /*
152 * Disable pointer authentication before running next boot image
153 */
Boyan Karatotev8d9f5f22025-04-02 11:16:18 +0100154 if (is_feat_pauth_supported()) {
155 pauth_disable_el3();
156 }
Alexei Fedoroved108b52019-09-13 14:11:59 +0100157
Roberto Vargasb1d27b42017-10-30 14:43:43 +0000158 bl2_run_next_image(next_bl_ep_info);
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600159#endif /* BL2_RUNS_AT_EL3 */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100160}