xref: /rk3399_ARM-atf/bl1/bl1_main.c (revision 40a6f64795847f2b96ec24e9b11cb7002f0b48bf)
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 <stdio.h>
32 #include <string.h>
33 #include <assert.h>
34 #include <arch_helpers.h>
35 #include <platform.h>
36 #include <semihosting.h>
37 #include <bl1.h>
38 
39 void bl1_arch_next_el_setup(void);
40 
41 /*******************************************************************************
42  * Function to perform late architectural and platform specific initialization.
43  * It also locates and loads the BL2 raw binary image in the trusted DRAM. Only
44  * called by the primary cpu after a cold boot.
45  * TODO: Add support for alternative image load mechanism e.g using virtio/elf
46  * loader etc.
47   ******************************************************************************/
48 void bl1_main(void)
49 {
50 #if DEBUG
51 	unsigned long sctlr_el3 = read_sctlr();
52 #endif
53 	unsigned long bl2_base;
54 	unsigned int load_type = TOP_LOAD, spsr;
55 	meminfo *bl1_tzram_layout;
56 	meminfo *bl2_tzram_layout = 0x0;
57 
58 	/*
59 	 * Ensure that MMU/Caches and coherency are turned on
60 	 */
61 	assert(sctlr_el3 | SCTLR_M_BIT);
62 	assert(sctlr_el3 | SCTLR_C_BIT);
63 	assert(sctlr_el3 | SCTLR_I_BIT);
64 
65 	/* Perform remaining generic architectural setup from EL3 */
66 	bl1_arch_setup();
67 
68 	/* Perform platform setup in BL1. */
69 	bl1_platform_setup();
70 
71 	/* Announce our arrival */
72 	printf(FIRMWARE_WELCOME_STR);
73 	printf("Built : %s, %s\n\r", __TIME__, __DATE__);
74 
75 	/*
76 	 * Find out how much free trusted ram remains after BL1 load
77 	 * & load the BL2 image at its top
78 	 */
79 	bl1_tzram_layout = bl1_plat_sec_mem_layout();
80 	bl2_base = load_image(bl1_tzram_layout,
81 			      (const char *) BL2_IMAGE_NAME,
82 			      load_type, BL2_BASE);
83 
84 	/*
85 	 * Create a new layout of memory for BL2 as seen by BL1 i.e.
86 	 * tell it the amount of total and free memory available.
87 	 * This layout is created at the first free address visible
88 	 * to BL2. BL2 will read the memory layout before using its
89 	 * memory for other purposes.
90 	 */
91 	bl2_tzram_layout = (meminfo *) bl1_tzram_layout->free_base;
92 	init_bl2_mem_layout(bl1_tzram_layout,
93 			    bl2_tzram_layout,
94 			    load_type,
95 			    bl2_base);
96 
97 	if (bl2_base) {
98 		bl1_arch_next_el_setup();
99 		spsr = make_spsr(MODE_EL1, MODE_SP_ELX, MODE_RW_64);
100 		printf("Booting trusted firmware boot loader stage 2\n\r");
101 #if DEBUG
102 		printf("BL2 address = 0x%llx \n\r", (unsigned long long) bl2_base);
103 		printf("BL2 cpsr = 0x%x \n\r", spsr);
104 		printf("BL2 memory layout address = 0x%llx \n\r",
105 		       (unsigned long long) bl2_tzram_layout);
106 #endif
107 		run_image(bl2_base, spsr, SECURE, bl2_tzram_layout, 0);
108 	}
109 
110 	/*
111 	 * TODO: print failure to load BL2 but also add a tzwdog timer
112 	 * which will reset the system eventually.
113 	 */
114 	printf("Failed to load boot loader stage 2 (BL2) firmware.\n\r");
115 	return;
116 }
117 
118 /*******************************************************************************
119  * Temporary function to print the fact that BL2 has done its job and BL31 is
120  * about to be loaded. This is needed as long as printfs cannot be used
121  ******************************************************************************/
122 void display_boot_progress(unsigned long entrypoint,
123 			   unsigned long spsr,
124 			   unsigned long mem_layout,
125 			   unsigned long ns_image_info)
126 {
127 	printf("Booting trusted firmware boot loader stage 3\n\r");
128 #if DEBUG
129 	printf("BL31 address = 0x%llx \n\r", (unsigned long long) entrypoint);
130 	printf("BL31 cpsr = 0x%llx \n\r", (unsigned long long)spsr);
131 	printf("BL31 memory layout address = 0x%llx \n\r", (unsigned long long)mem_layout);
132 	printf("BL31 non-trusted image info address = 0x%llx\n\r", (unsigned long long)ns_image_info);
133 #endif
134 	return;
135 }
136