blob: 019088dc128f2279e8ef655798cd748cdc932e11 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Roberto Vargas7fabe1a2018-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-arm82cb2c12017-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 Diaz09d40e02018-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 Handley5b827a82014-04-17 18:53:42 +010016#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010017
Roberto Vargasb1d27b42017-10-30 14:43:43 +000018#ifdef AARCH32
19#define NEXT_IMAGE "BL32"
20#else
21#define NEXT_IMAGE "BL31"
22#endif
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010023
24/*******************************************************************************
25 * The only thing to do in BL2 is to load further images and pass control to
Yatharth Kochar42019bf2016-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 Bailleux93d81d62014-06-24 14:19:36 +010028 ******************************************************************************/
29void bl2_main(void)
30{
Yatharth Kochar42019bf2016-09-12 16:10:33 +010031 entry_point_info_t *next_bl_ep_info;
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010032
Dan Handley6ad2e462014-07-29 17:14:00 +010033 NOTICE("BL2: %s\n", version_string);
34 NOTICE("BL2: %s\n", build_message);
35
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010036 /* Perform remaining generic architectural setup in S-EL1 */
37 bl2_arch_setup();
38
Juan Castillodec840a2015-01-28 16:46:57 +000039#if TRUSTED_BOARD_BOOT
40 /* Initialize authentication module */
Juan Castillo1779ba62015-05-19 11:54:12 +010041 auth_mod_init();
Juan Castillodec840a2015-01-28 16:46:57 +000042#endif /* TRUSTED_BOARD_BOOT */
43
Roberto Vargas01f62b62017-09-26 12:53:01 +010044 /* initialize boot source */
45 bl2_plat_preload_setup();
46
Yatharth Kochar42019bf2016-09-12 16:10:33 +010047 /* Load the subsequent bootloader images. */
48 next_bl_ep_info = bl2_load_images();
Juan Castilloef538c62014-09-04 14:43:09 +010049
Yann Gautier01a1f7c2018-04-26 19:07:17 +020050#if !BL2_AT_EL3
Yatharth Kochard48c12e2016-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 Diaz0b326282017-02-16 16:17:19 +000060 console_flush();
61
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010062 /*
Yatharth Kochar42019bf2016-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.
Sandrine Bailleux93d81d62014-06-24 14:19:36 +010066 */
Yatharth Kochar42019bf2016-09-12 16:10:33 +010067 smc(BL1_SMC_RUN_IMAGE, (unsigned long)next_bl_ep_info, 0, 0, 0, 0, 0, 0);
Roberto Vargasb1d27b42017-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}