blob: 90fe39bc2f0bd4f659bc03e7622bd5bd4baf2128 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Manish V Badarkhe99575e42021-06-25 23:28:59 +01002 * Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Alexei Fedorovf41355c2019-09-13 14:11:59 +01007#include <assert.h>
8
Achin Gupta4f6ad662013-10-25 09:08:21 +01009#include <arch_helpers.h>
Alexei Fedorovf41355c2019-09-13 14:11:59 +010010#include <arch_features.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#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>
16#include <drivers/console.h>
Manish V Badarkhe99575e42021-06-25 23:28:59 +010017#include <drivers/fwu/fwu.h>
Alexei Fedorovf41355c2019-09-13 14:11:59 +010018#include <lib/extensions/pauth.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000019#include <plat/common/platform.h>
20
Dan Handleybcd60ba2014-04-17 18:53:42 +010021#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010022
Julius Werner8e0ef0f2019-07-09 14:02:43 -070023#ifdef __aarch64__
Roberto Vargase0e99462017-10-30 14:43:43 +000024#define NEXT_IMAGE "BL31"
Julius Werner8e0ef0f2019-07-09 14:02:43 -070025#else
26#define NEXT_IMAGE "BL32"
Roberto Vargase0e99462017-10-30 14:43:43 +000027#endif
Vikram Kanigirida567432014-04-15 18:08:08 +010028
Zelalem Aweke688fbf72021-07-09 11:37:10 -050029#if BL2_AT_EL3
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010030/*******************************************************************************
Zelalem Aweke688fbf72021-07-09 11:37:10 -050031 * Setup function for BL2 when BL2_AT_EL3=1
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000032 ******************************************************************************/
Zelalem Aweke688fbf72021-07-09 11:37:10 -050033void bl2_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
34 u_register_t arg3)
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000035{
36 /* Perform early platform-specific setup */
Zelalem Aweke688fbf72021-07-09 11:37:10 -050037 bl2_el3_early_platform_setup(arg0, arg1, arg2, arg3);
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000038
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000039 /* Perform late platform-specific setup */
Zelalem Aweke688fbf72021-07-09 11:37:10 -050040 bl2_el3_plat_arch_setup();
Alexei Fedorovf41355c2019-09-13 14:11:59 +010041
42#if CTX_INCLUDE_PAUTH_REGS
43 /*
44 * Assert that the ARMv8.3-PAuth registers are present or an access
45 * fault will be triggered when they are being saved or restored.
46 */
47 assert(is_armv8_3_pauth_present());
48#endif /* CTX_INCLUDE_PAUTH_REGS */
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000049}
Zelalem Aweke688fbf72021-07-09 11:37:10 -050050#else /* BL2_AT_EL3 */
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000051/*******************************************************************************
Zelalem Aweke688fbf72021-07-09 11:37:10 -050052 * Setup function for BL2 when BL2_AT_EL3=0
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000053 ******************************************************************************/
Zelalem Aweke688fbf72021-07-09 11:37:10 -050054void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
55 u_register_t arg3)
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000056{
57 /* Perform early platform-specific setup */
Zelalem Aweke688fbf72021-07-09 11:37:10 -050058 bl2_early_platform_setup2(arg0, arg1, arg2, arg3);
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000059
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000060 /* Perform late platform-specific setup */
Zelalem Aweke688fbf72021-07-09 11:37:10 -050061 bl2_plat_arch_setup();
Alexei Fedorovf41355c2019-09-13 14:11:59 +010062
63#if CTX_INCLUDE_PAUTH_REGS
64 /*
65 * Assert that the ARMv8.3-PAuth registers are present or an access
66 * fault will be triggered when they are being saved or restored.
67 */
68 assert(is_armv8_3_pauth_present());
69#endif /* CTX_INCLUDE_PAUTH_REGS */
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000070}
71#endif /* BL2_AT_EL3 */
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000072
73/*******************************************************************************
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010074 * The only thing to do in BL2 is to load further images and pass control to
Yatharth Kochar51f76f62016-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 Bailleuxf841ef02014-06-24 14:19:36 +010077 ******************************************************************************/
78void bl2_main(void)
79{
Yatharth Kochar51f76f62016-09-12 16:10:33 +010080 entry_point_info_t *next_bl_ep_info;
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010081
Dan Handley91b624e2014-07-29 17:14:00 +010082 NOTICE("BL2: %s\n", version_string);
83 NOTICE("BL2: %s\n", build_message);
84
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010085 /* Perform remaining generic architectural setup in S-EL1 */
86 bl2_arch_setup();
87
Manish V Badarkhe99575e42021-06-25 23:28:59 +010088#if PSA_FWU_SUPPORT
89 fwu_init();
90#endif /* PSA_FWU_SUPPORT */
91
Juan Castillo9246ab82015-01-28 16:46:57 +000092#if TRUSTED_BOARD_BOOT
93 /* Initialize authentication module */
Juan Castilloa08a5e72015-05-19 11:54:12 +010094 auth_mod_init();
Juan Castillo9246ab82015-01-28 16:46:57 +000095#endif /* TRUSTED_BOARD_BOOT */
96
Manish V Badarkhe5797b802021-08-06 09:26:20 +010097 /* Initialize the Measured Boot backend */
98 bl2_plat_mboot_init();
99
Alexei Fedorov71707b12020-07-13 14:06:47 +0100100 /* Initialize boot source */
Roberto Vargasbc1ae1f2017-09-26 12:53:01 +0100101 bl2_plat_preload_setup();
102
Yatharth Kochar51f76f62016-09-12 16:10:33 +0100103 /* Load the subsequent bootloader images. */
104 next_bl_ep_info = bl2_load_images();
Andrew Thoelkea55566d2014-05-28 22:22:55 +0100105
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100106 /* Teardown the Measured Boot backend */
107 bl2_plat_mboot_finish();
Alexei Fedorov71707b12020-07-13 14:06:47 +0100108
Zelalem Aweke688fbf72021-07-09 11:37:10 -0500109#if !BL2_AT_EL3 && !ENABLE_RME
Julius Werner8e0ef0f2019-07-09 14:02:43 -0700110#ifndef __aarch64__
Yatharth Kochardafb2472016-06-30 14:52:12 +0100111 /*
112 * For AArch32 state BL1 and BL2 share the MMU setup.
113 * Given that BL2 does not map BL1 regions, MMU needs
114 * to be disabled in order to go back to BL1.
115 */
116 disable_mmu_icache_secure();
Julius Werner8e0ef0f2019-07-09 14:02:43 -0700117#endif /* !__aarch64__ */
Yatharth Kochardafb2472016-06-30 14:52:12 +0100118
Antonio Nino Diaze3962d02017-02-16 16:17:19 +0000119 console_flush();
120
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100121#if ENABLE_PAUTH
122 /*
123 * Disable pointer authentication before running next boot image
124 */
125 pauth_disable_el1();
126#endif /* ENABLE_PAUTH */
127
Achin Gupta4f6ad662013-10-25 09:08:21 +0100128 /*
Yatharth Kochar51f76f62016-09-12 16:10:33 +0100129 * Run next BL image via an SMC to BL1. Information on how to pass
130 * control to the BL32 (if present) and BL33 software images will
131 * be passed to next BL image as an argument.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100132 */
Yatharth Kochar51f76f62016-09-12 16:10:33 +0100133 smc(BL1_SMC_RUN_IMAGE, (unsigned long)next_bl_ep_info, 0, 0, 0, 0, 0, 0);
Zelalem Aweke688fbf72021-07-09 11:37:10 -0500134#else /* if BL2_AT_EL3 || ENABLE_RME */
Roberto Vargase0e99462017-10-30 14:43:43 +0000135 NOTICE("BL2: Booting " NEXT_IMAGE "\n");
136 print_entry_point_info(next_bl_ep_info);
137 console_flush();
138
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100139#if ENABLE_PAUTH
140 /*
141 * Disable pointer authentication before running next boot image
142 */
143 pauth_disable_el3();
144#endif /* ENABLE_PAUTH */
145
Roberto Vargase0e99462017-10-30 14:43:43 +0000146 bl2_run_next_image(next_bl_ep_info);
Zelalem Aweke688fbf72021-07-09 11:37:10 -0500147#endif /* BL2_AT_EL3 && ENABLE_RME */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100148}