Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 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 | |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 31 | #include <arch.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 32 | #include <bl_common.h> |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 33 | #include <el3_common_macros.S> |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 34 | #include <pmf_asm_macros.S> |
| 35 | #include <runtime_instr.h> |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 36 | #include <xlat_tables.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 37 | |
| 38 | .globl bl31_entrypoint |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 39 | .globl bl31_warm_entrypoint |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 40 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 41 | /* ----------------------------------------------------- |
| 42 | * bl31_entrypoint() is the cold boot entrypoint, |
| 43 | * executed only by the primary cpu. |
| 44 | * ----------------------------------------------------- |
| 45 | */ |
| 46 | |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 47 | func bl31_entrypoint |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 48 | #if !RESET_TO_BL31 |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 49 | /* --------------------------------------------------------------- |
| 50 | * Preceding bootloader has populated x0 with a pointer to a |
| 51 | * 'bl31_params' structure & x1 with a pointer to platform |
| 52 | * specific structure |
| 53 | * --------------------------------------------------------------- |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 54 | */ |
Vikram Kanigiri | a3a5e4a | 2014-05-15 18:27:15 +0100 | [diff] [blame] | 55 | mov x20, x0 |
| 56 | mov x21, x1 |
Sandrine Bailleux | c10bd2c | 2013-11-12 16:41:16 +0000 | [diff] [blame] | 57 | |
Harry Liebel | 4f60368 | 2014-01-14 18:11:48 +0000 | [diff] [blame] | 58 | /* --------------------------------------------------------------------- |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 59 | * For !RESET_TO_BL31 systems, only the primary CPU ever reaches |
| 60 | * bl31_entrypoint() during the cold boot flow, so the cold/warm boot |
| 61 | * and primary/secondary CPU logic should not be executed in this case. |
Harry Liebel | 4f60368 | 2014-01-14 18:11:48 +0000 | [diff] [blame] | 62 | * |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 63 | * Also, assume that the previous bootloader has already set up the CPU |
| 64 | * endianness and has initialised the memory. |
Harry Liebel | 4f60368 | 2014-01-14 18:11:48 +0000 | [diff] [blame] | 65 | * --------------------------------------------------------------------- |
| 66 | */ |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 67 | el3_entrypoint_common \ |
| 68 | _set_endian=0 \ |
| 69 | _warm_boot_mailbox=0 \ |
| 70 | _secondary_cold_boot=0 \ |
| 71 | _init_memory=0 \ |
| 72 | _init_c_runtime=1 \ |
| 73 | _exception_vectors=runtime_exceptions |
Sandrine Bailleux | 65f546a | 2013-11-28 09:43:06 +0000 | [diff] [blame] | 74 | |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 75 | /* --------------------------------------------------------------------- |
| 76 | * Relay the previous bootloader's arguments to the platform layer |
| 77 | * --------------------------------------------------------------------- |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 78 | */ |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 79 | mov x0, x20 |
| 80 | mov x1, x21 |
| 81 | #else |
Sandrine Bailleux | 449dbd5 | 2015-06-02 17:19:43 +0100 | [diff] [blame] | 82 | /* --------------------------------------------------------------------- |
| 83 | * For RESET_TO_BL31 systems which have a programmable reset address, |
| 84 | * bl31_entrypoint() is executed only on the cold boot path so we can |
| 85 | * skip the warm boot mailbox mechanism. |
| 86 | * --------------------------------------------------------------------- |
| 87 | */ |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 88 | el3_entrypoint_common \ |
| 89 | _set_endian=1 \ |
Sandrine Bailleux | 449dbd5 | 2015-06-02 17:19:43 +0100 | [diff] [blame] | 90 | _warm_boot_mailbox=!PROGRAMMABLE_RESET_ADDRESS \ |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 91 | _secondary_cold_boot=!COLD_BOOT_SINGLE_CPU \ |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 92 | _init_memory=1 \ |
| 93 | _init_c_runtime=1 \ |
| 94 | _exception_vectors=runtime_exceptions |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 95 | |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 96 | /* --------------------------------------------------------------------- |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 97 | * For RESET_TO_BL31 systems, BL31 is the first bootloader to run so |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 98 | * there's no argument to relay from a previous bootloader. Zero the |
| 99 | * arguments passed to the platform layer to reflect that. |
| 100 | * --------------------------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 101 | */ |
Sandrine Bailleux | acde8b0 | 2015-05-19 11:54:45 +0100 | [diff] [blame] | 102 | mov x0, 0 |
| 103 | mov x1, 0 |
| 104 | #endif /* RESET_TO_BL31 */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 105 | |
| 106 | /* --------------------------------------------- |
| 107 | * Perform platform specific early arch. setup |
| 108 | * --------------------------------------------- |
| 109 | */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 110 | bl bl31_early_platform_setup |
| 111 | bl bl31_plat_arch_setup |
| 112 | |
| 113 | /* --------------------------------------------- |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 114 | * Jump to main function. |
Achin Gupta | b739f22 | 2014-01-18 16:50:09 +0000 | [diff] [blame] | 115 | * --------------------------------------------- |
| 116 | */ |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 117 | bl bl31_main |
Achin Gupta | b739f22 | 2014-01-18 16:50:09 +0000 | [diff] [blame] | 118 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 119 | /* ------------------------------------------------------------- |
| 120 | * Clean the .data & .bss sections to main memory. This ensures |
| 121 | * that any global data which was initialised by the primary CPU |
| 122 | * is visible to secondary CPUs before they enable their data |
| 123 | * caches and participate in coherency. |
| 124 | * ------------------------------------------------------------- |
| 125 | */ |
| 126 | adr x0, __DATA_START__ |
| 127 | adr x1, __DATA_END__ |
| 128 | sub x1, x1, x0 |
| 129 | bl clean_dcache_range |
| 130 | |
| 131 | adr x0, __BSS_START__ |
| 132 | adr x1, __BSS_END__ |
| 133 | sub x1, x1, x0 |
| 134 | bl clean_dcache_range |
| 135 | |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 136 | b el3_exit |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 137 | endfunc bl31_entrypoint |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 138 | |
| 139 | /* -------------------------------------------------------------------- |
| 140 | * This CPU has been physically powered up. It is either resuming from |
| 141 | * suspend or has simply been turned on. In both cases, call the BL31 |
| 142 | * warmboot entrypoint |
| 143 | * -------------------------------------------------------------------- |
| 144 | */ |
| 145 | func bl31_warm_entrypoint |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 146 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 147 | |
| 148 | /* |
| 149 | * This timestamp update happens with cache off. The next |
| 150 | * timestamp collection will need to do cache maintenance prior |
| 151 | * to timestamp update. |
| 152 | */ |
| 153 | pmf_calc_timestamp_addr rt_instr_svc RT_INSTR_EXIT_HW_LOW_PWR |
| 154 | mrs x1, cntpct_el0 |
| 155 | str x1, [x0] |
| 156 | #endif |
| 157 | |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 158 | /* |
| 159 | * On the warm boot path, most of the EL3 initialisations performed by |
| 160 | * 'el3_entrypoint_common' must be skipped: |
| 161 | * |
| 162 | * - Only when the platform bypasses the BL1/BL31 entrypoint by |
| 163 | * programming the reset address do we need to set the CPU endianness. |
| 164 | * In other cases, we assume this has been taken care by the |
| 165 | * entrypoint code. |
| 166 | * |
| 167 | * - No need to determine the type of boot, we know it is a warm boot. |
| 168 | * |
| 169 | * - Do not try to distinguish between primary and secondary CPUs, this |
| 170 | * notion only exists for a cold boot. |
| 171 | * |
| 172 | * - No need to initialise the memory or the C runtime environment, |
| 173 | * it has been done once and for all on the cold boot path. |
| 174 | */ |
| 175 | el3_entrypoint_common \ |
| 176 | _set_endian=PROGRAMMABLE_RESET_ADDRESS \ |
| 177 | _warm_boot_mailbox=0 \ |
| 178 | _secondary_cold_boot=0 \ |
| 179 | _init_memory=0 \ |
| 180 | _init_c_runtime=0 \ |
| 181 | _exception_vectors=runtime_exceptions |
| 182 | |
| 183 | /* -------------------------------------------- |
| 184 | * Enable the MMU with the DCache disabled. It |
| 185 | * is safe to use stacks allocated in normal |
| 186 | * memory as a result. All memory accesses are |
| 187 | * marked nGnRnE when the MMU is disabled. So |
| 188 | * all the stack writes will make it to memory. |
| 189 | * All memory accesses are marked Non-cacheable |
| 190 | * when the MMU is enabled but D$ is disabled. |
| 191 | * So used stack memory is guaranteed to be |
| 192 | * visible immediately after the MMU is enabled |
| 193 | * Enabling the DCache at the same time as the |
| 194 | * MMU can lead to speculatively fetched and |
| 195 | * possibly stale stack memory being read from |
| 196 | * other caches. This can lead to coherency |
| 197 | * issues. |
| 198 | * -------------------------------------------- |
| 199 | */ |
| 200 | mov x0, #DISABLE_DCACHE |
| 201 | bl bl31_plat_enable_mmu |
| 202 | |
| 203 | bl psci_warmboot_entrypoint |
| 204 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 205 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 206 | pmf_calc_timestamp_addr rt_instr_svc RT_INSTR_EXIT_PSCI |
| 207 | mov x19, x0 |
| 208 | |
| 209 | /* |
| 210 | * Invalidate before updating timestamp to ensure previous timestamp |
| 211 | * updates on the same cache line with caches disabled are properly |
| 212 | * seen by the same core. Without the cache invalidate, the core might |
| 213 | * write into a stale cache line. |
| 214 | */ |
| 215 | mov x1, #PMF_TS_SIZE |
| 216 | mov x20, x30 |
| 217 | bl inv_dcache_range |
| 218 | mov x30, x20 |
| 219 | |
| 220 | mrs x0, cntpct_el0 |
| 221 | str x0, [x19] |
| 222 | #endif |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 223 | b el3_exit |
| 224 | endfunc bl31_warm_entrypoint |