blob: 019088dc128f2279e8ef655798cd748cdc932e11 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Roberto Vargas05712702018-02-12 12:36:17 +00002 * Copyright (c) 2013-2018, 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
Achin Gupta4f6ad662013-10-25 09:08:21 +01007#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <bl1/bl1.h>
9#include <bl2/bl2.h>
10#include <common/bl_common.h>
11#include <common/debug.h>
12#include <drivers/auth/auth_mod.h>
13#include <drivers/console.h>
14#include <plat/common/platform.h>
15
Dan Handleybcd60ba2014-04-17 18:53:42 +010016#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010017
Roberto Vargase0e99462017-10-30 14:43:43 +000018#ifdef AARCH32
19#define NEXT_IMAGE "BL32"
20#else
21#define NEXT_IMAGE "BL31"
22#endif
Vikram Kanigirida567432014-04-15 18:08:08 +010023
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010024/*******************************************************************************
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010025 * The only thing to do in BL2 is to load further images and pass control to
Yatharth Kochar51f76f62016-09-12 16:10:33 +010026 * next BL. The memory occupied by BL2 will be reclaimed by BL3x stages. BL2
27 * runs entirely in S-EL1.
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010028 ******************************************************************************/
29void bl2_main(void)
30{
Yatharth Kochar51f76f62016-09-12 16:10:33 +010031 entry_point_info_t *next_bl_ep_info;
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010032
Dan Handley91b624e2014-07-29 17:14:00 +010033 NOTICE("BL2: %s\n", version_string);
34 NOTICE("BL2: %s\n", build_message);
35
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010036 /* Perform remaining generic architectural setup in S-EL1 */
37 bl2_arch_setup();
38
Juan Castillo9246ab82015-01-28 16:46:57 +000039#if TRUSTED_BOARD_BOOT
40 /* Initialize authentication module */
Juan Castilloa08a5e72015-05-19 11:54:12 +010041 auth_mod_init();
Juan Castillo9246ab82015-01-28 16:46:57 +000042#endif /* TRUSTED_BOARD_BOOT */
43
Roberto Vargasbc1ae1f2017-09-26 12:53:01 +010044 /* initialize boot source */
45 bl2_plat_preload_setup();
46
Yatharth Kochar51f76f62016-09-12 16:10:33 +010047 /* Load the subsequent bootloader images. */
48 next_bl_ep_info = bl2_load_images();
Andrew Thoelkea55566d2014-05-28 22:22:55 +010049
Yann Gautier60e5c2f2018-04-26 19:07:17 +020050#if !BL2_AT_EL3
Yatharth Kochardafb2472016-06-30 14:52:12 +010051#ifdef AARCH32
52 /*
53 * For AArch32 state BL1 and BL2 share the MMU setup.
54 * Given that BL2 does not map BL1 regions, MMU needs
55 * to be disabled in order to go back to BL1.
56 */
57 disable_mmu_icache_secure();
58#endif /* AARCH32 */
59
Antonio Nino Diaze3962d02017-02-16 16:17:19 +000060 console_flush();
61
Achin Gupta4f6ad662013-10-25 09:08:21 +010062 /*
Yatharth Kochar51f76f62016-09-12 16:10:33 +010063 * Run next BL image via an SMC to BL1. Information on how to pass
64 * control to the BL32 (if present) and BL33 software images will
65 * be passed to next BL image as an argument.
Achin Gupta4f6ad662013-10-25 09:08:21 +010066 */
Yatharth Kochar51f76f62016-09-12 16:10:33 +010067 smc(BL1_SMC_RUN_IMAGE, (unsigned long)next_bl_ep_info, 0, 0, 0, 0, 0, 0);
Roberto Vargase0e99462017-10-30 14:43:43 +000068#else
69 NOTICE("BL2: Booting " NEXT_IMAGE "\n");
70 print_entry_point_info(next_bl_ep_info);
71 console_flush();
72
73 bl2_run_next_image(next_bl_ep_info);
74#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +010075}