blob: b3adc251414f79544338d729b25a109053e8cd6f [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
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
39void 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 ******************************************************************************/
48void bl1_main(void)
49{
James Morrissey40a6f642014-02-10 14:24:36 +000050#if DEBUG
Achin Gupta4f6ad662013-10-25 09:08:21 +010051 unsigned long sctlr_el3 = read_sctlr();
James Morrissey40a6f642014-02-10 14:24:36 +000052#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +010053 unsigned long bl2_base;
54 unsigned int load_type = TOP_LOAD, spsr;
Sandrine Bailleuxee12f6f2013-11-28 14:55:58 +000055 meminfo *bl1_tzram_layout;
56 meminfo *bl2_tzram_layout = 0x0;
Achin Gupta4f6ad662013-10-25 09:08:21 +010057
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 */
Sandrine Bailleuxee12f6f2013-11-28 14:55:58 +000079 bl1_tzram_layout = bl1_plat_sec_mem_layout();
80 bl2_base = load_image(bl1_tzram_layout,
Achin Gupta4f6ad662013-10-25 09:08:21 +010081 (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 */
Sandrine Bailleuxee12f6f2013-11-28 14:55:58 +000091 bl2_tzram_layout = (meminfo *) bl1_tzram_layout->free_base;
92 init_bl2_mem_layout(bl1_tzram_layout,
Achin Gupta4f6ad662013-10-25 09:08:21 +010093 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
Achin Guptae4d084e2014-02-19 17:18:23 +0000107 run_image(bl2_base,
108 spsr,
109 SECURE,
110 (void *) bl2_tzram_layout,
111 NULL);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100112 }
113
114 /*
115 * TODO: print failure to load BL2 but also add a tzwdog timer
116 * which will reset the system eventually.
117 */
118 printf("Failed to load boot loader stage 2 (BL2) firmware.\n\r");
119 return;
120}
121
122/*******************************************************************************
123 * Temporary function to print the fact that BL2 has done its job and BL31 is
124 * about to be loaded. This is needed as long as printfs cannot be used
125 ******************************************************************************/
126void display_boot_progress(unsigned long entrypoint,
127 unsigned long spsr,
128 unsigned long mem_layout,
129 unsigned long ns_image_info)
130{
131 printf("Booting trusted firmware boot loader stage 3\n\r");
132#if DEBUG
133 printf("BL31 address = 0x%llx \n\r", (unsigned long long) entrypoint);
134 printf("BL31 cpsr = 0x%llx \n\r", (unsigned long long)spsr);
135 printf("BL31 memory layout address = 0x%llx \n\r", (unsigned long long)mem_layout);
136 printf("BL31 non-trusted image info address = 0x%llx\n\r", (unsigned long long)ns_image_info);
137#endif
138 return;
139}