xref: /rk3399_ARM-atf/bl31/bl31_main.c (revision 7f36660559a7d4786e9a30de6c5af74338ed9469)
14f6ad66aSAchin Gupta /*
2e83b0cadSDan Handley  * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
34f6ad66aSAchin Gupta  *
44f6ad66aSAchin Gupta  * Redistribution and use in source and binary forms, with or without
54f6ad66aSAchin Gupta  * modification, are permitted provided that the following conditions are met:
64f6ad66aSAchin Gupta  *
74f6ad66aSAchin Gupta  * Redistributions of source code must retain the above copyright notice, this
84f6ad66aSAchin Gupta  * list of conditions and the following disclaimer.
94f6ad66aSAchin Gupta  *
104f6ad66aSAchin Gupta  * Redistributions in binary form must reproduce the above copyright notice,
114f6ad66aSAchin Gupta  * this list of conditions and the following disclaimer in the documentation
124f6ad66aSAchin Gupta  * and/or other materials provided with the distribution.
134f6ad66aSAchin Gupta  *
144f6ad66aSAchin Gupta  * Neither the name of ARM nor the names of its contributors may be used
154f6ad66aSAchin Gupta  * to endorse or promote products derived from this software without specific
164f6ad66aSAchin Gupta  * prior written permission.
174f6ad66aSAchin Gupta  *
184f6ad66aSAchin Gupta  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
194f6ad66aSAchin Gupta  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
204f6ad66aSAchin Gupta  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
214f6ad66aSAchin Gupta  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
224f6ad66aSAchin Gupta  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
234f6ad66aSAchin Gupta  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
244f6ad66aSAchin Gupta  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
254f6ad66aSAchin Gupta  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
264f6ad66aSAchin Gupta  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
274f6ad66aSAchin Gupta  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
284f6ad66aSAchin Gupta  * POSSIBILITY OF SUCH DAMAGE.
294f6ad66aSAchin Gupta  */
304f6ad66aSAchin Gupta 
314f6ad66aSAchin Gupta #include <stdio.h>
324f6ad66aSAchin Gupta #include <string.h>
334f6ad66aSAchin Gupta #include <assert.h>
344f6ad66aSAchin Gupta #include <arch_helpers.h>
354f6ad66aSAchin Gupta #include <console.h>
364f6ad66aSAchin Gupta #include <platform.h>
374f6ad66aSAchin Gupta #include <semihosting.h>
384f6ad66aSAchin Gupta #include <bl_common.h>
394f6ad66aSAchin Gupta #include <bl31.h>
404f6ad66aSAchin Gupta #include <runtime_svc.h>
417aea9087SAchin Gupta #include <context_mgmt.h>
427aea9087SAchin Gupta 
43*7f366605SJeenu Viswambharan 
44*7f366605SJeenu Viswambharan /*******************************************************************************
45*7f366605SJeenu Viswambharan  * This function pointer is used to initialise the BL32 image. It's initialized
46*7f366605SJeenu Viswambharan  * by SPD calling bl31_register_bl32_init after setting up all things necessary
47*7f366605SJeenu Viswambharan  * for SP execution. In cases where both SPD and SP are absent, or when SPD
48*7f366605SJeenu Viswambharan  * finds it impossible to execute SP, this pointer is left as NULL
49*7f366605SJeenu Viswambharan  ******************************************************************************/
50*7f366605SJeenu Viswambharan static int32_t (*bl32_init)(meminfo *);
51*7f366605SJeenu Viswambharan 
527aea9087SAchin Gupta /*******************************************************************************
5335ca3511SAchin Gupta  * Variable to indicate whether next image to execute after BL31 is BL33
5435ca3511SAchin Gupta  * (non-secure & default) or BL32 (secure).
5535ca3511SAchin Gupta  ******************************************************************************/
5635ca3511SAchin Gupta static uint32_t next_image_type = NON_SECURE;
5735ca3511SAchin Gupta 
5835ca3511SAchin Gupta /*******************************************************************************
597aea9087SAchin Gupta  * Simple function to initialise all BL31 helper libraries.
607aea9087SAchin Gupta  ******************************************************************************/
617aea9087SAchin Gupta void bl31_lib_init()
627aea9087SAchin Gupta {
637aea9087SAchin Gupta 	cm_init();
647aea9087SAchin Gupta }
654f6ad66aSAchin Gupta 
664f6ad66aSAchin Gupta /*******************************************************************************
674f6ad66aSAchin Gupta  * BL31 is responsible for setting up the runtime services for the primary cpu
6835ca3511SAchin Gupta  * before passing control to the bootloader or an Operating System. This
6935ca3511SAchin Gupta  * function calls runtime_svc_init() which initializes all registered runtime
7035ca3511SAchin Gupta  * services. The run time services would setup enough context for the core to
7135ca3511SAchin Gupta  * swtich to the next exception level. When this function returns, the core will
7235ca3511SAchin Gupta  * switch to the programmed exception level via. an ERET.
734f6ad66aSAchin Gupta  ******************************************************************************/
744f6ad66aSAchin Gupta void bl31_main(void)
754f6ad66aSAchin Gupta {
7635ca3511SAchin Gupta #if DEBUG
7735ca3511SAchin Gupta 	unsigned long mpidr = read_mpidr();
7835ca3511SAchin Gupta #endif
794f6ad66aSAchin Gupta 
804f6ad66aSAchin Gupta 	/* Perform remaining generic architectural setup from EL3 */
814f6ad66aSAchin Gupta 	bl31_arch_setup();
824f6ad66aSAchin Gupta 
834f6ad66aSAchin Gupta 	/* Perform platform setup in BL1 */
844f6ad66aSAchin Gupta 	bl31_platform_setup();
854f6ad66aSAchin Gupta 
864f6ad66aSAchin Gupta #if defined (__GNUC__)
874f6ad66aSAchin Gupta 	printf("BL31 Built : %s, %s\n\r", __TIME__, __DATE__);
884f6ad66aSAchin Gupta #endif
897aea9087SAchin Gupta 	/* Initialise helper libraries */
907aea9087SAchin Gupta 	bl31_lib_init();
914f6ad66aSAchin Gupta 
924f6ad66aSAchin Gupta 	/* Initialize the runtime services e.g. psci */
937421b465SAchin Gupta 	runtime_svc_init();
944f6ad66aSAchin Gupta 
954f6ad66aSAchin Gupta 	/* Clean caches before re-entering normal world */
964f6ad66aSAchin Gupta 	dcsw_op_all(DCCSW);
974f6ad66aSAchin Gupta 
98caa84939SJeenu Viswambharan 	/*
9935ca3511SAchin Gupta 	 * Use the more complex exception vectors now that context
10035ca3511SAchin Gupta 	 * management is setup. SP_EL3 should point to a 'cpu_context'
10135ca3511SAchin Gupta 	 * structure which has an exception stack allocated.  The PSCI
10235ca3511SAchin Gupta 	 * service should have set the context.
10335ca3511SAchin Gupta 	 */
10435ca3511SAchin Gupta 	assert(cm_get_context(mpidr, NON_SECURE));
10535ca3511SAchin Gupta 	cm_set_next_eret_context(NON_SECURE);
10635ca3511SAchin Gupta 	write_vbar_el3((uint64_t) runtime_exceptions);
10735ca3511SAchin Gupta 
10835ca3511SAchin Gupta 	/*
109*7f366605SJeenu Viswambharan 	 * All the cold boot actions on the primary cpu are done. We now need to
110*7f366605SJeenu Viswambharan 	 * decide which is the next image (BL32 or BL33) and how to execute it.
111*7f366605SJeenu Viswambharan 	 * If the SPD runtime service is present, it would want to pass control
112*7f366605SJeenu Viswambharan 	 * to BL32 first in S-EL1. In that case, SPD would have registered a
113*7f366605SJeenu Viswambharan 	 * function to intialize bl32 where it takes responsibility of entering
114*7f366605SJeenu Viswambharan 	 * S-EL1 and returning control back to bl31_main. Once this is done we
115*7f366605SJeenu Viswambharan 	 * can prepare entry into BL33 as normal.
11635ca3511SAchin Gupta 	 */
11735ca3511SAchin Gupta 
118*7f366605SJeenu Viswambharan 	/*
119*7f366605SJeenu Viswambharan 	 * If SPD had registerd an init hook, invoke it. Pass it the information
120*7f366605SJeenu Viswambharan 	 * about memory extents
121*7f366605SJeenu Viswambharan 	 */
12235ca3511SAchin Gupta 	if (bl32_init)
123*7f366605SJeenu Viswambharan 		(*bl32_init)(bl31_plat_get_bl32_mem_layout());
12435ca3511SAchin Gupta 
12535ca3511SAchin Gupta 	/*
12635ca3511SAchin Gupta 	 * We are ready to enter the next EL. Prepare entry into the image
12735ca3511SAchin Gupta 	 * corresponding to the desired security state after the next ERET.
12835ca3511SAchin Gupta 	 */
12935ca3511SAchin Gupta 	bl31_prepare_next_image_entry();
13035ca3511SAchin Gupta }
13135ca3511SAchin Gupta 
13235ca3511SAchin Gupta /*******************************************************************************
13335ca3511SAchin Gupta  * Accessor functions to help runtime services decide which image should be
13435ca3511SAchin Gupta  * executed after BL31. This is BL33 or the non-secure bootloader image by
13535ca3511SAchin Gupta  * default but the Secure payload dispatcher could override this by requesting
13635ca3511SAchin Gupta  * an entry into BL32 (Secure payload) first. If it does so then it should use
13735ca3511SAchin Gupta  * the same API to program an entry into BL33 once BL32 initialisation is
13835ca3511SAchin Gupta  * complete.
13935ca3511SAchin Gupta  ******************************************************************************/
14035ca3511SAchin Gupta void bl31_set_next_image_type(uint32_t security_state)
14135ca3511SAchin Gupta {
14235ca3511SAchin Gupta 	assert(security_state == NON_SECURE || security_state == SECURE);
14335ca3511SAchin Gupta 	next_image_type = security_state;
14435ca3511SAchin Gupta }
14535ca3511SAchin Gupta 
14635ca3511SAchin Gupta uint32_t bl31_get_next_image_type(void)
14735ca3511SAchin Gupta {
14835ca3511SAchin Gupta 	return next_image_type;
14935ca3511SAchin Gupta }
15035ca3511SAchin Gupta 
15135ca3511SAchin Gupta /*******************************************************************************
15235ca3511SAchin Gupta  * This function programs EL3 registers and performs other setup to enable entry
15335ca3511SAchin Gupta  * into the next image after BL31 at the next ERET.
15435ca3511SAchin Gupta  ******************************************************************************/
15535ca3511SAchin Gupta void bl31_prepare_next_image_entry()
15635ca3511SAchin Gupta {
15735ca3511SAchin Gupta 	el_change_info *next_image_info;
15835ca3511SAchin Gupta 	uint32_t scr, image_type;
15935ca3511SAchin Gupta 
16035ca3511SAchin Gupta 	/* Determine which image to execute next */
16135ca3511SAchin Gupta 	image_type = bl31_get_next_image_type();
16235ca3511SAchin Gupta 
16335ca3511SAchin Gupta 	/*
164caa84939SJeenu Viswambharan 	 * Setup minimal architectural state of the next highest EL to
165caa84939SJeenu Viswambharan 	 * allow execution in it immediately upon entering it.
166caa84939SJeenu Viswambharan 	 */
16735ca3511SAchin Gupta 	bl31_next_el_arch_setup(image_type);
1684f6ad66aSAchin Gupta 
169caa84939SJeenu Viswambharan 	/* Program EL3 registers to enable entry into the next EL */
17035ca3511SAchin Gupta 	next_image_info = bl31_get_next_image_info(image_type);
17135ca3511SAchin Gupta 	assert(next_image_info);
17235ca3511SAchin Gupta 
173caa84939SJeenu Viswambharan 	scr = read_scr();
17435ca3511SAchin Gupta 	if (image_type == NON_SECURE)
175caa84939SJeenu Viswambharan 		scr |= SCR_NS_BIT;
176caa84939SJeenu Viswambharan 
177caa84939SJeenu Viswambharan 	/*
178caa84939SJeenu Viswambharan 	 * Tell the context mgmt. library to ensure that SP_EL3 points to
179caa84939SJeenu Viswambharan 	 * the right context to exit from EL3 correctly.
180caa84939SJeenu Viswambharan 	 */
181caa84939SJeenu Viswambharan 	cm_set_el3_eret_context(next_image_info->security_state,
182caa84939SJeenu Viswambharan 			next_image_info->entrypoint,
183caa84939SJeenu Viswambharan 			next_image_info->spsr,
184caa84939SJeenu Viswambharan 			scr);
185caa84939SJeenu Viswambharan 
186caa84939SJeenu Viswambharan 	/* Finally set the next context */
187caa84939SJeenu Viswambharan 	cm_set_next_eret_context(next_image_info->security_state);
1884f6ad66aSAchin Gupta }
189*7f366605SJeenu Viswambharan 
190*7f366605SJeenu Viswambharan /*******************************************************************************
191*7f366605SJeenu Viswambharan  * This function initializes the pointer to BL32 init function. This is expected
192*7f366605SJeenu Viswambharan  * to be called by the SPD after it finishes all its initialization
193*7f366605SJeenu Viswambharan  ******************************************************************************/
194*7f366605SJeenu Viswambharan void bl31_register_bl32_init(int32_t (*func)(meminfo *))
195*7f366605SJeenu Viswambharan {
196*7f366605SJeenu Viswambharan 	bl32_init = func;
197*7f366605SJeenu Viswambharan }
198