blob: 419927d8eb2d43b4121c4d4348478f0bd185acea [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Antonio Nino Diaz4ef91f12017-02-20 14:22:22 +00002 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Sandrine Bailleuxc10bd2c2013-11-12 16:41:16 +00007#include <arch.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01008#include <bl_common.h>
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +01009#include <el3_common_macros.S>
dp-arm3cac7862016-09-19 11:18:44 +010010#include <pmf_asm_macros.S>
11#include <runtime_instr.h>
Antonio Nino Diaz4ef91f12017-02-20 14:22:22 +000012#include <xlat_tables_defs.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010013
14 .globl bl31_entrypoint
Soby Mathewd0194872016-04-29 19:01:30 +010015 .globl bl31_warm_entrypoint
Achin Gupta4f6ad662013-10-25 09:08:21 +010016
Achin Gupta4f6ad662013-10-25 09:08:21 +010017 /* -----------------------------------------------------
18 * bl31_entrypoint() is the cold boot entrypoint,
19 * executed only by the primary cpu.
20 * -----------------------------------------------------
21 */
22
Andrew Thoelke38bde412014-03-18 13:46:55 +000023func bl31_entrypoint
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010024#if !RESET_TO_BL31
Vikram Kanigirida567432014-04-15 18:08:08 +010025 /* ---------------------------------------------------------------
26 * Preceding bootloader has populated x0 with a pointer to a
27 * 'bl31_params' structure & x1 with a pointer to platform
28 * specific structure
29 * ---------------------------------------------------------------
Sandrine Bailleuxc10bd2c2013-11-12 16:41:16 +000030 */
Vikram Kanigiria3a5e4a2014-05-15 18:27:15 +010031 mov x20, x0
32 mov x21, x1
Sandrine Bailleuxc10bd2c2013-11-12 16:41:16 +000033
Harry Liebel4f603682014-01-14 18:11:48 +000034 /* ---------------------------------------------------------------------
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010035 * For !RESET_TO_BL31 systems, only the primary CPU ever reaches
36 * bl31_entrypoint() during the cold boot flow, so the cold/warm boot
37 * and primary/secondary CPU logic should not be executed in this case.
Harry Liebel4f603682014-01-14 18:11:48 +000038 *
David Cunadofee86532017-04-13 22:38:29 +010039 * Also, assume that the previous bootloader has already initialised the
40 * SCTLR_EL3, including the endianness, and has initialised the memory.
Harry Liebel4f603682014-01-14 18:11:48 +000041 * ---------------------------------------------------------------------
42 */
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010043 el3_entrypoint_common \
David Cunadofee86532017-04-13 22:38:29 +010044 _init_sctlr=0 \
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010045 _warm_boot_mailbox=0 \
46 _secondary_cold_boot=0 \
47 _init_memory=0 \
48 _init_c_runtime=1 \
49 _exception_vectors=runtime_exceptions
Sandrine Bailleux65f546a2013-11-28 09:43:06 +000050
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010051 /* ---------------------------------------------------------------------
52 * Relay the previous bootloader's arguments to the platform layer
53 * ---------------------------------------------------------------------
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000054 */
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010055 mov x0, x20
56 mov x1, x21
57#else
Sandrine Bailleux449dbd52015-06-02 17:19:43 +010058 /* ---------------------------------------------------------------------
59 * For RESET_TO_BL31 systems which have a programmable reset address,
60 * bl31_entrypoint() is executed only on the cold boot path so we can
61 * skip the warm boot mailbox mechanism.
62 * ---------------------------------------------------------------------
63 */
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010064 el3_entrypoint_common \
David Cunadofee86532017-04-13 22:38:29 +010065 _init_sctlr=1 \
Sandrine Bailleux449dbd52015-06-02 17:19:43 +010066 _warm_boot_mailbox=!PROGRAMMABLE_RESET_ADDRESS \
Sandrine Bailleuxb21b02f2015-10-30 15:05:17 +000067 _secondary_cold_boot=!COLD_BOOT_SINGLE_CPU \
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010068 _init_memory=1 \
69 _init_c_runtime=1 \
70 _exception_vectors=runtime_exceptions
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000071
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010072 /* ---------------------------------------------------------------------
Juan Castillo7d199412015-12-14 09:35:25 +000073 * For RESET_TO_BL31 systems, BL31 is the first bootloader to run so
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010074 * there's no argument to relay from a previous bootloader. Zero the
75 * arguments passed to the platform layer to reflect that.
76 * ---------------------------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +010077 */
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010078 mov x0, 0
79 mov x1, 0
80#endif /* RESET_TO_BL31 */
Achin Gupta4f6ad662013-10-25 09:08:21 +010081
82 /* ---------------------------------------------
83 * Perform platform specific early arch. setup
84 * ---------------------------------------------
85 */
Achin Gupta4f6ad662013-10-25 09:08:21 +010086 bl bl31_early_platform_setup
87 bl bl31_plat_arch_setup
88
89 /* ---------------------------------------------
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000090 * Jump to main function.
Achin Guptab739f222014-01-18 16:50:09 +000091 * ---------------------------------------------
92 */
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000093 bl bl31_main
Achin Guptab739f222014-01-18 16:50:09 +000094
Achin Guptae9c4a642015-09-11 16:03:13 +010095 /* -------------------------------------------------------------
96 * Clean the .data & .bss sections to main memory. This ensures
97 * that any global data which was initialised by the primary CPU
98 * is visible to secondary CPUs before they enable their data
99 * caches and participate in coherency.
100 * -------------------------------------------------------------
101 */
102 adr x0, __DATA_START__
103 adr x1, __DATA_END__
104 sub x1, x1, x0
105 bl clean_dcache_range
106
107 adr x0, __BSS_START__
108 adr x1, __BSS_END__
109 sub x1, x1, x0
110 bl clean_dcache_range
111
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000112 b el3_exit
Kévin Petita877c252015-03-24 14:03:57 +0000113endfunc bl31_entrypoint
Soby Mathewd0194872016-04-29 19:01:30 +0100114
115 /* --------------------------------------------------------------------
116 * This CPU has been physically powered up. It is either resuming from
117 * suspend or has simply been turned on. In both cases, call the BL31
118 * warmboot entrypoint
119 * --------------------------------------------------------------------
120 */
121func bl31_warm_entrypoint
dp-arm3cac7862016-09-19 11:18:44 +0100122#if ENABLE_RUNTIME_INSTRUMENTATION
123
124 /*
125 * This timestamp update happens with cache off. The next
126 * timestamp collection will need to do cache maintenance prior
127 * to timestamp update.
128 */
129 pmf_calc_timestamp_addr rt_instr_svc RT_INSTR_EXIT_HW_LOW_PWR
130 mrs x1, cntpct_el0
131 str x1, [x0]
132#endif
133
Soby Mathewd0194872016-04-29 19:01:30 +0100134 /*
135 * On the warm boot path, most of the EL3 initialisations performed by
136 * 'el3_entrypoint_common' must be skipped:
137 *
138 * - Only when the platform bypasses the BL1/BL31 entrypoint by
David Cunadofee86532017-04-13 22:38:29 +0100139 * programming the reset address do we need to initialise SCTLR_EL3.
Soby Mathewd0194872016-04-29 19:01:30 +0100140 * In other cases, we assume this has been taken care by the
141 * entrypoint code.
142 *
143 * - No need to determine the type of boot, we know it is a warm boot.
144 *
145 * - Do not try to distinguish between primary and secondary CPUs, this
146 * notion only exists for a cold boot.
147 *
148 * - No need to initialise the memory or the C runtime environment,
149 * it has been done once and for all on the cold boot path.
150 */
151 el3_entrypoint_common \
David Cunadofee86532017-04-13 22:38:29 +0100152 _init_sctlr=PROGRAMMABLE_RESET_ADDRESS \
Soby Mathewd0194872016-04-29 19:01:30 +0100153 _warm_boot_mailbox=0 \
154 _secondary_cold_boot=0 \
155 _init_memory=0 \
156 _init_c_runtime=0 \
157 _exception_vectors=runtime_exceptions
158
Jeenu Viswambharan46144962017-01-05 10:37:21 +0000159 /*
160 * We're about to enable MMU and participate in PSCI state coordination.
161 *
162 * The PSCI implementation invokes platform routines that enable CPUs to
163 * participate in coherency. On a system where CPUs are not
Soby Mathew043fe9c2017-04-10 22:35:42 +0100164 * cache-coherent without appropriate platform specific programming,
165 * having caches enabled until such time might lead to coherency issues
166 * (resulting from stale data getting speculatively fetched, among
167 * others). Therefore we keep data caches disabled even after enabling
168 * the MMU for such platforms.
Jeenu Viswambharan46144962017-01-05 10:37:21 +0000169 *
Soby Mathew043fe9c2017-04-10 22:35:42 +0100170 * On systems with hardware-assisted coherency, or on single cluster
171 * platforms, such platform specific programming is not required to
172 * enter coherency (as CPUs already are); and there's no reason to have
173 * caches disabled either.
Soby Mathewd0194872016-04-29 19:01:30 +0100174 */
175 mov x0, #DISABLE_DCACHE
176 bl bl31_plat_enable_mmu
177
Soby Mathew043fe9c2017-04-10 22:35:42 +0100178#if HW_ASSISTED_COHERENCY || WARMBOOT_ENABLE_DCACHE_EARLY
179 mrs x0, sctlr_el3
180 orr x0, x0, #SCTLR_C_BIT
181 msr sctlr_el3, x0
182 isb
183#endif
184
Soby Mathewd0194872016-04-29 19:01:30 +0100185 bl psci_warmboot_entrypoint
186
dp-arm3cac7862016-09-19 11:18:44 +0100187#if ENABLE_RUNTIME_INSTRUMENTATION
188 pmf_calc_timestamp_addr rt_instr_svc RT_INSTR_EXIT_PSCI
189 mov x19, x0
190
191 /*
192 * Invalidate before updating timestamp to ensure previous timestamp
193 * updates on the same cache line with caches disabled are properly
194 * seen by the same core. Without the cache invalidate, the core might
195 * write into a stale cache line.
196 */
197 mov x1, #PMF_TS_SIZE
198 mov x20, x30
199 bl inv_dcache_range
200 mov x30, x20
201
202 mrs x0, cntpct_el0
203 str x0, [x19]
204#endif
Soby Mathewd0194872016-04-29 19:01:30 +0100205 b el3_exit
206endfunc bl31_warm_entrypoint