blob: cd13defea117e556b7aed67281c4cbcf07fcef4a [file] [log] [blame]
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001/*
Chris Kay99b5b2e2024-03-08 16:08:31 +00002 * Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01005 */
6
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01007#include <assert.h>
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01008#include <stdint.h>
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <platform_def.h>
11
12#include <arch.h>
13#include <arch_helpers.h>
14#include <bl1/bl1.h>
15#include <bl2u/bl2u.h>
16#include <common/bl_common.h>
Chris Kay99b5b2e2024-03-08 16:08:31 +000017#include <common/build_message.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <common/debug.h>
19#include <drivers/auth/auth_mod.h>
20#include <drivers/console.h>
21#include <plat/common/platform.h>
Roberto Vargas64d4de02018-05-24 13:34:53 +010022
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010023/*******************************************************************************
24 * This function is responsible to:
25 * Load SCP_BL2U if platform has defined SCP_BL2U_BASE
26 * Perform platform setup.
27 * Go back to EL3.
28 ******************************************************************************/
29void bl2u_main(void)
30{
Chris Kay99b5b2e2024-03-08 16:08:31 +000031 NOTICE("BL2U: %s\n", build_version_string);
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010032 NOTICE("BL2U: %s\n", build_message);
33
34#if SCP_BL2U_BASE
35 int rc;
36 /* Load the subsequent bootloader images */
37 rc = bl2u_plat_handle_scp_bl2u();
John Powella5c66362020-03-20 14:21:05 -050038 if (rc != 0) {
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010039 ERROR("Failed to load SCP_BL2U (%i)\n", rc);
40 panic();
41 }
42#endif
43
44 /* Perform platform setup in BL2U after loading SCP_BL2U */
45 bl2u_platform_setup();
46
Antonio Nino Diaze3962d02017-02-16 16:17:19 +000047 console_flush();
48
Julius Werner8e0ef0f2019-07-09 14:02:43 -070049#ifndef __aarch64__
Yatharth Kochar18dfb302016-11-22 11:06:03 +000050 /*
51 * For AArch32 state BL1 and BL2U share the MMU setup.
52 * Given that BL2U does not map BL1 regions, MMU needs
53 * to be disabled in order to go back to BL1.
54 */
55 disable_mmu_icache_secure();
Julius Werner8e0ef0f2019-07-09 14:02:43 -070056#endif /* !__aarch64__ */
Yatharth Kochar18dfb302016-11-22 11:06:03 +000057
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010058 /*
59 * Indicate that BL2U is done and resume back to
60 * normal world via an SMC to BL1.
61 * x1 could be passed to Normal world,
62 * so DO NOT pass any secret information.
63 */
64 smc(FWU_SMC_SEC_IMAGE_DONE, 0, 0, 0, 0, 0, 0, 0);
65 wfi();
66}