blob: 41d17455756e2191707ff8cac581a33c11e48c40 [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>
Juan Castilloa08a5e72015-05-19 11:54:12 +01008#include <auth_mod.h>
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01009#include <bl1.h>
Roberto Vargas05712702018-02-12 12:36:17 +000010#include <bl2.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010011#include <bl_common.h>
Antonio Nino Diaze3962d02017-02-16 16:17:19 +000012#include <console.h>
Dan Handley714a0d22014-04-09 13:13:04 +010013#include <debug.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010014#include <platform.h>
Dan Handleybcd60ba2014-04-17 18:53:42 +010015#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010016
Roberto Vargase0e99462017-10-30 14:43:43 +000017#ifdef AARCH32
18#define NEXT_IMAGE "BL32"
19#else
20#define NEXT_IMAGE "BL31"
21#endif
Vikram Kanigirida567432014-04-15 18:08:08 +010022
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010023/*******************************************************************************
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010024 * The only thing to do in BL2 is to load further images and pass control to
Yatharth Kochar51f76f62016-09-12 16:10:33 +010025 * next BL. The memory occupied by BL2 will be reclaimed by BL3x stages. BL2
26 * runs entirely in S-EL1.
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010027 ******************************************************************************/
28void bl2_main(void)
29{
Yatharth Kochar51f76f62016-09-12 16:10:33 +010030 entry_point_info_t *next_bl_ep_info;
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010031
Dan Handley91b624e2014-07-29 17:14:00 +010032 NOTICE("BL2: %s\n", version_string);
33 NOTICE("BL2: %s\n", build_message);
34
Sandrine Bailleuxf841ef02014-06-24 14:19:36 +010035 /* Perform remaining generic architectural setup in S-EL1 */
36 bl2_arch_setup();
37
Juan Castillo9246ab82015-01-28 16:46:57 +000038#if TRUSTED_BOARD_BOOT
39 /* Initialize authentication module */
Juan Castilloa08a5e72015-05-19 11:54:12 +010040 auth_mod_init();
Juan Castillo9246ab82015-01-28 16:46:57 +000041#endif /* TRUSTED_BOARD_BOOT */
42
Roberto Vargasbc1ae1f2017-09-26 12:53:01 +010043 /* initialize boot source */
44 bl2_plat_preload_setup();
45
Yatharth Kochar51f76f62016-09-12 16:10:33 +010046 /* Load the subsequent bootloader images. */
47 next_bl_ep_info = bl2_load_images();
Andrew Thoelkea55566d2014-05-28 22:22:55 +010048
Yatharth Kochardafb2472016-06-30 14:52:12 +010049#ifdef AARCH32
50 /*
51 * For AArch32 state BL1 and BL2 share the MMU setup.
52 * Given that BL2 does not map BL1 regions, MMU needs
53 * to be disabled in order to go back to BL1.
54 */
55 disable_mmu_icache_secure();
56#endif /* AARCH32 */
57
Roberto Vargase0e99462017-10-30 14:43:43 +000058
59#if !BL2_AT_EL3
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}