xref: /rk3399_ARM-atf/bl2/bl2_main.c (revision 886dfdf21a6d0a522d6b16600c75b0593beeb294)
1 /*
2  * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
3  *
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 
31 #include <arch.h>
32 #include <arch_helpers.h>
33 #include <assert.h>
34 #include <bl_common.h>
35 #include <debug.h>
36 #include <platform.h>
37 #include <platform_def.h>
38 #include <stdio.h>
39 #include "bl2_private.h"
40 
41 
42 /*******************************************************************************
43  * The only thing to do in BL2 is to load further images and pass control to
44  * BL31. The memory occupied by BL2 will be reclaimed by BL3_x stages. BL2 runs
45  * entirely in S-EL1. Since arm standard c libraries are not PIC, printf et al
46  * are not available. We rely on assertions to signal error conditions
47  ******************************************************************************/
48 void bl2_main(void)
49 {
50 	meminfo_t *bl2_tzram_layout;
51 	bl31_params_t *bl2_to_bl31_params;
52 	unsigned int bl2_load, bl31_load;
53 	entry_point_info_t *bl31_ep_info;
54 	meminfo_t bl32_mem_info;
55 	meminfo_t bl33_mem_info;
56 	int e;
57 
58 	/* Perform remaining generic architectural setup in S-El1 */
59 	bl2_arch_setup();
60 
61 	/* Perform platform setup in BL1 */
62 	bl2_platform_setup();
63 
64 	printf("BL2 %s\n\r", build_message);
65 
66 	/* Find out how much free trusted ram remains after BL2 load */
67 	bl2_tzram_layout = bl2_plat_sec_mem_layout();
68 
69 	/*
70 	 * Get a pointer to the memory the platform has set aside to pass
71 	 * information to BL31.
72 	 */
73 	bl2_to_bl31_params = bl2_plat_get_bl31_params();
74 	bl31_ep_info = bl2_plat_get_bl31_ep_info();
75 
76 	/* Set the X0 parameter to bl31 */
77 	bl31_ep_info->args.arg0 = (unsigned long)bl2_to_bl31_params;
78 
79 	/*
80 	 * Load BL31. BL1 tells BL2 whether it has been TOP or BOTTOM loaded.
81 	 * To avoid fragmentation of trusted SRAM memory, BL31 is always
82 	 * loaded opposite to BL2. This allows BL31 to reclaim BL2 memory
83 	 * while maintaining its free space in one contiguous chunk.
84 	 */
85 	bl2_load = bl2_tzram_layout->attr & LOAD_MASK;
86 	assert((bl2_load == TOP_LOAD) || (bl2_load == BOT_LOAD));
87 	bl31_load = (bl2_load == TOP_LOAD) ? BOT_LOAD : TOP_LOAD;
88 	e = load_image(bl2_tzram_layout,
89 			BL31_IMAGE_NAME,
90 			bl31_load,
91 			BL31_BASE,
92 			bl2_to_bl31_params->bl31_image_info,
93 			bl31_ep_info);
94 
95 	/* Assert if it has not been possible to load BL31 */
96 	if (e) {
97 		ERROR("Failed to load BL3-1.\n");
98 		panic();
99 	}
100 
101 	bl2_plat_set_bl31_ep_info(bl2_to_bl31_params->bl31_image_info,
102 				bl31_ep_info);
103 
104 	bl2_plat_get_bl33_meminfo(&bl33_mem_info);
105 
106 	/* Load the BL33 image in non-secure memory provided by the platform */
107 	e = load_image(&bl33_mem_info,
108 			BL33_IMAGE_NAME,
109 			BOT_LOAD,
110 			plat_get_ns_image_entrypoint(),
111 			bl2_to_bl31_params->bl33_image_info,
112 			bl2_to_bl31_params->bl33_ep_info);
113 
114 	/* Halt if failed to load normal world firmware. */
115 	if (e) {
116 		ERROR("Failed to load BL3-3.\n");
117 		panic();
118 	}
119 	bl2_plat_set_bl33_ep_info(bl2_to_bl31_params->bl33_image_info,
120 				bl2_to_bl31_params->bl33_ep_info);
121 
122 
123 #ifdef BL32_BASE
124 	/*
125 	 * Load the BL32 image if there's one. It is upto to platform
126 	 * to specify where BL32 should be loaded if it exists. It
127 	 * could create space in the secure sram or point to a
128 	 * completely different memory.
129 	 *
130 	 * If a platform does not want to attempt to load BL3-2 image
131 	 * it must leave BL32_BASE undefined
132 	 */
133 	bl2_plat_get_bl32_meminfo(&bl32_mem_info);
134 	e = load_image(&bl32_mem_info,
135 		       BL32_IMAGE_NAME,
136 		       bl32_mem_info.attr & LOAD_MASK,
137 		       BL32_BASE,
138 		       bl2_to_bl31_params->bl32_image_info,
139 		       bl2_to_bl31_params->bl32_ep_info);
140 
141 	/* Issue a diagnostic if no Secure Payload could be loaded */
142 	if (e) {
143 		WARN("Failed to load BL3-2.\n");
144 	} else {
145 		bl2_plat_set_bl32_ep_info(
146 			bl2_to_bl31_params->bl32_image_info,
147 			bl2_to_bl31_params->bl32_ep_info);
148 	}
149 #endif /* BL32_BASE */
150 
151 	/* Flush the params to be passed to memory */
152 	bl2_plat_flush_bl31_params();
153 
154 	/*
155 	 * Run BL31 via an SMC to BL1. Information on how to pass control to
156 	 * the BL32 (if present) and BL33 software images will be passed to
157 	 * BL31 as an argument.
158 	 */
159 	smc(RUN_IMAGE, (unsigned long)bl31_ep_info, 0, 0, 0, 0, 0, 0);
160 }
161