blob: 7efd9f6da5302514bc0e8e9adc18564212a743ef [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Dan Handley2bd4ef22014-04-09 13:14:54 +010031#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010032#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010033#include <assert.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010034#include <bl_common.h>
Dan Handley714a0d22014-04-09 13:13:04 +010035#include <debug.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010036#include <platform.h>
Dan Handleyed6ff952014-05-14 17:44:19 +010037#include <platform_def.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010038#include <stdio.h>
Dan Handleybcd60ba2014-04-17 18:53:42 +010039#include "bl2_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010040
Vikram Kanigiria3a5e4a2014-05-15 18:27:15 +010041
42/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010043 * The only thing to do in BL2 is to load further images and pass control to
Sandrine Bailleux467d0572014-06-24 14:02:34 +010044 * BL3-1. The memory occupied by BL2 will be reclaimed by BL3-x stages. BL2 runs
45 * entirely in S-EL1.
Achin Gupta4f6ad662013-10-25 09:08:21 +010046 ******************************************************************************/
47void bl2_main(void)
48{
Dan Handleye2712bc2014-04-10 15:37:22 +010049 meminfo_t *bl2_tzram_layout;
Vikram Kanigirida567432014-04-15 18:08:08 +010050 bl31_params_t *bl2_to_bl31_params;
Vikram Kanigirida567432014-04-15 18:08:08 +010051 entry_point_info_t *bl31_ep_info;
Vikram Kanigirid8c9d262014-05-16 18:48:12 +010052 meminfo_t bl32_mem_info;
53 meminfo_t bl33_mem_info;
Vikram Kanigirida567432014-04-15 18:08:08 +010054 int e;
Achin Gupta4f6ad662013-10-25 09:08:21 +010055
56 /* Perform remaining generic architectural setup in S-El1 */
57 bl2_arch_setup();
58
59 /* Perform platform setup in BL1 */
60 bl2_platform_setup();
61
Jon Medhurstecf0a712014-02-17 12:18:24 +000062 printf("BL2 %s\n\r", build_message);
Achin Gupta4f6ad662013-10-25 09:08:21 +010063
64 /* Find out how much free trusted ram remains after BL2 load */
Sandrine Bailleuxee12f6f2013-11-28 14:55:58 +000065 bl2_tzram_layout = bl2_plat_sec_mem_layout();
Achin Gupta4f6ad662013-10-25 09:08:21 +010066
67 /*
Vikram Kanigirida567432014-04-15 18:08:08 +010068 * Get a pointer to the memory the platform has set aside to pass
69 * information to BL31.
70 */
71 bl2_to_bl31_params = bl2_plat_get_bl31_params();
Vikram Kanigirida567432014-04-15 18:08:08 +010072 bl31_ep_info = bl2_plat_get_bl31_ep_info();
73
Andrew Thoelkea55566d2014-05-28 22:22:55 +010074 /* Set the X0 parameter to bl31 */
75 bl31_ep_info->args.arg0 = (unsigned long)bl2_to_bl31_params;
76
Sandrine Bailleux467d0572014-06-24 14:02:34 +010077 /* Load the BL3-1 image */
Vikram Kanigirida567432014-04-15 18:08:08 +010078 e = load_image(bl2_tzram_layout,
79 BL31_IMAGE_NAME,
Vikram Kanigirida567432014-04-15 18:08:08 +010080 BL31_BASE,
81 bl2_to_bl31_params->bl31_image_info,
82 bl31_ep_info);
Achin Gupta4f6ad662013-10-25 09:08:21 +010083
84 /* Assert if it has not been possible to load BL31 */
Vikram Kanigirida567432014-04-15 18:08:08 +010085 if (e) {
Achin Guptae4d084e2014-02-19 17:18:23 +000086 ERROR("Failed to load BL3-1.\n");
87 panic();
88 }
89
Vikram Kanigirida567432014-04-15 18:08:08 +010090 bl2_plat_set_bl31_ep_info(bl2_to_bl31_params->bl31_image_info,
91 bl31_ep_info);
Achin Guptaa3050ed2014-02-19 17:52:35 +000092
Vikram Kanigirid8c9d262014-05-16 18:48:12 +010093 bl2_plat_get_bl33_meminfo(&bl33_mem_info);
Achin Gupta4f6ad662013-10-25 09:08:21 +010094
Achin Guptae4d084e2014-02-19 17:18:23 +000095 /* Load the BL33 image in non-secure memory provided by the platform */
Vikram Kanigirid8c9d262014-05-16 18:48:12 +010096 e = load_image(&bl33_mem_info,
Vikram Kanigirida567432014-04-15 18:08:08 +010097 BL33_IMAGE_NAME,
Vikram Kanigirida567432014-04-15 18:08:08 +010098 plat_get_ns_image_entrypoint(),
99 bl2_to_bl31_params->bl33_image_info,
100 bl2_to_bl31_params->bl33_ep_info);
101
Harry Liebel561cd332014-02-14 14:42:48 +0000102 /* Halt if failed to load normal world firmware. */
Vikram Kanigirida567432014-04-15 18:08:08 +0100103 if (e) {
Harry Liebel561cd332014-02-14 14:42:48 +0000104 ERROR("Failed to load BL3-3.\n");
105 panic();
106 }
Vikram Kanigirida567432014-04-15 18:08:08 +0100107 bl2_plat_set_bl33_ep_info(bl2_to_bl31_params->bl33_image_info,
108 bl2_to_bl31_params->bl33_ep_info);
Harry Liebel561cd332014-02-14 14:42:48 +0000109
Dan Handley21a30ab2014-04-15 11:38:38 +0100110
111#ifdef BL32_BASE
Achin Gupta4f6ad662013-10-25 09:08:21 +0100112 /*
Vikram Kanigiria3a5e4a2014-05-15 18:27:15 +0100113 * Load the BL32 image if there's one. It is upto to platform
114 * to specify where BL32 should be loaded if it exists. It
115 * could create space in the secure sram or point to a
Dan Handley21a30ab2014-04-15 11:38:38 +0100116 * completely different memory.
117 *
118 * If a platform does not want to attempt to load BL3-2 image
119 * it must leave BL32_BASE undefined
Vikram Kanigiria3a5e4a2014-05-15 18:27:15 +0100120 */
Vikram Kanigirid8c9d262014-05-16 18:48:12 +0100121 bl2_plat_get_bl32_meminfo(&bl32_mem_info);
Dan Handley21a30ab2014-04-15 11:38:38 +0100122 e = load_image(&bl32_mem_info,
123 BL32_IMAGE_NAME,
Dan Handley21a30ab2014-04-15 11:38:38 +0100124 BL32_BASE,
125 bl2_to_bl31_params->bl32_image_info,
126 bl2_to_bl31_params->bl32_ep_info);
Vikram Kanigiria3a5e4a2014-05-15 18:27:15 +0100127
Dan Handley21a30ab2014-04-15 11:38:38 +0100128 /* Issue a diagnostic if no Secure Payload could be loaded */
129 if (e) {
130 WARN("Failed to load BL3-2.\n");
131 } else {
132 bl2_plat_set_bl32_ep_info(
133 bl2_to_bl31_params->bl32_image_info,
134 bl2_to_bl31_params->bl32_ep_info);
Achin Guptaa3050ed2014-02-19 17:52:35 +0000135 }
Dan Handley21a30ab2014-04-15 11:38:38 +0100136#endif /* BL32_BASE */
Achin Guptaa3050ed2014-02-19 17:52:35 +0000137
Andrew Thoelkea55566d2014-05-28 22:22:55 +0100138 /* Flush the params to be passed to memory */
139 bl2_plat_flush_bl31_params();
140
Achin Gupta4f6ad662013-10-25 09:08:21 +0100141 /*
142 * Run BL31 via an SMC to BL1. Information on how to pass control to
Achin Guptae4d084e2014-02-19 17:18:23 +0000143 * the BL32 (if present) and BL33 software images will be passed to
144 * BL31 as an argument.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100145 */
Andrew Thoelkea55566d2014-05-28 22:22:55 +0100146 smc(RUN_IMAGE, (unsigned long)bl31_ep_info, 0, 0, 0, 0, 0, 0);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100147}