Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 1 | /* |
Dimitris Papastamos | aa11c39 | 2017-06-19 14:15:31 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
| 8 | #include <asm_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <common/bl_common.h> |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 10 | #include <cortex_a53.h> |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 11 | #include <cortex_a57.h> |
Sandrine Bailleux | 29a7a03 | 2015-11-18 11:59:35 +0000 | [diff] [blame] | 12 | #include <cortex_a72.h> |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 13 | #include <cpu_macros.S> |
| 14 | #include <css_def.h> |
Dan Handley | 7bef800 | 2015-03-19 19:22:44 +0000 | [diff] [blame] | 15 | #include <v2m_def.h> |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 16 | #include "../juno_def.h" |
| 17 | |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 18 | |
Dan Handley | 7bef800 | 2015-03-19 19:22:44 +0000 | [diff] [blame] | 19 | .globl plat_reset_handler |
David Wang | 323ebe8 | 2015-10-22 13:30:50 +0800 | [diff] [blame] | 20 | .globl plat_arm_calc_core_pos |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 21 | #if JUNO_AARCH32_EL3_RUNTIME |
| 22 | .globl plat_get_my_entrypoint |
| 23 | .globl juno_reset_to_aarch32_state |
| 24 | #endif |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 25 | |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 26 | #define JUNO_REVISION(rev) REV_JUNO_R##rev |
| 27 | #define JUNO_HANDLER(rev) plat_reset_handler_juno_r##rev |
| 28 | #define JUMP_TO_HANDLER_IF_JUNO_R(revision) \ |
| 29 | jump_to_handler JUNO_REVISION(revision), JUNO_HANDLER(revision) |
| 30 | |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 31 | /* -------------------------------------------------------------------- |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 32 | * Helper macro to jump to the given handler if the board revision |
| 33 | * matches. |
| 34 | * Expects the Juno board revision in x0. |
| 35 | * -------------------------------------------------------------------- |
| 36 | */ |
| 37 | .macro jump_to_handler _revision, _handler |
| 38 | cmp x0, #\_revision |
| 39 | b.eq \_handler |
| 40 | .endm |
| 41 | |
| 42 | /* -------------------------------------------------------------------- |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 43 | * Platform reset handler for Juno R0. |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 44 | * |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 45 | * Juno R0 has the following topology: |
| 46 | * - Quad core Cortex-A53 processor cluster; |
| 47 | * - Dual core Cortex-A57 processor cluster. |
| 48 | * |
| 49 | * This handler does the following: |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 50 | * - Implement workaround for defect id 831273 by enabling an event |
| 51 | * stream every 65536 cycles. |
| 52 | * - Set the L2 Data RAM latency to 2 (i.e. 3 cycles) for Cortex-A57 |
| 53 | * - Set the L2 Tag RAM latency to 2 (i.e. 3 cycles) for Cortex-A57 |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 54 | * -------------------------------------------------------------------- |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 55 | */ |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 56 | func JUNO_HANDLER(0) |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 57 | /* -------------------------------------------------------------------- |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 58 | * Enable the event stream every 65536 cycles |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 59 | * -------------------------------------------------------------------- |
| 60 | */ |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 61 | mov x0, #(0xf << EVNTI_SHIFT) |
| 62 | orr x0, x0, #EVNTEN_BIT |
| 63 | msr CNTKCTL_EL1, x0 |
| 64 | |
| 65 | /* -------------------------------------------------------------------- |
| 66 | * Nothing else to do on Cortex-A53. |
| 67 | * -------------------------------------------------------------------- |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 68 | */ |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 69 | jump_if_cpu_midr CORTEX_A53_MIDR, 1f |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 70 | |
| 71 | /* -------------------------------------------------------------------- |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 72 | * Cortex-A57 specific settings |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 73 | * -------------------------------------------------------------------- |
| 74 | */ |
Varun Wadekar | 1384a16 | 2017-06-05 14:54:46 -0700 | [diff] [blame] | 75 | mov x0, #((CORTEX_A57_L2_DATA_RAM_LATENCY_3_CYCLES << CORTEX_A57_L2CTLR_DATA_RAM_LATENCY_SHIFT) | \ |
| 76 | (CORTEX_A57_L2_TAG_RAM_LATENCY_3_CYCLES << CORTEX_A57_L2CTLR_TAG_RAM_LATENCY_SHIFT)) |
| 77 | msr CORTEX_A57_L2CTLR_EL1, x0 |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 78 | 1: |
| 79 | isb |
| 80 | ret |
| 81 | endfunc JUNO_HANDLER(0) |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 82 | |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 83 | /* -------------------------------------------------------------------- |
| 84 | * Platform reset handler for Juno R1. |
| 85 | * |
| 86 | * Juno R1 has the following topology: |
| 87 | * - Quad core Cortex-A53 processor cluster; |
| 88 | * - Dual core Cortex-A57 processor cluster. |
| 89 | * |
| 90 | * This handler does the following: |
| 91 | * - Set the L2 Data RAM latency to 2 (i.e. 3 cycles) for Cortex-A57 |
| 92 | * |
| 93 | * Note that: |
| 94 | * - The default value for the L2 Tag RAM latency for Cortex-A57 is |
| 95 | * suitable. |
| 96 | * - Defect #831273 doesn't affect Juno R1. |
| 97 | * -------------------------------------------------------------------- |
| 98 | */ |
| 99 | func JUNO_HANDLER(1) |
| 100 | /* -------------------------------------------------------------------- |
| 101 | * Nothing to do on Cortex-A53. |
| 102 | * -------------------------------------------------------------------- |
| 103 | */ |
| 104 | jump_if_cpu_midr CORTEX_A57_MIDR, A57 |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 105 | ret |
| 106 | |
| 107 | A57: |
| 108 | /* -------------------------------------------------------------------- |
| 109 | * Cortex-A57 specific settings |
| 110 | * -------------------------------------------------------------------- |
| 111 | */ |
Varun Wadekar | 1384a16 | 2017-06-05 14:54:46 -0700 | [diff] [blame] | 112 | mov x0, #(CORTEX_A57_L2_DATA_RAM_LATENCY_3_CYCLES << CORTEX_A57_L2CTLR_DATA_RAM_LATENCY_SHIFT) |
| 113 | msr CORTEX_A57_L2CTLR_EL1, x0 |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 114 | isb |
| 115 | ret |
| 116 | endfunc JUNO_HANDLER(1) |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 117 | |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 118 | /* -------------------------------------------------------------------- |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 119 | * Platform reset handler for Juno R2. |
| 120 | * |
| 121 | * Juno R2 has the following topology: |
| 122 | * - Quad core Cortex-A53 processor cluster; |
| 123 | * - Dual core Cortex-A72 processor cluster. |
| 124 | * |
Sandrine Bailleux | 29a7a03 | 2015-11-18 11:59:35 +0000 | [diff] [blame] | 125 | * This handler does the following: |
| 126 | * - Set the L2 Data RAM latency to 2 (i.e. 3 cycles) for Cortex-A72 |
| 127 | * - Set the L2 Tag RAM latency to 1 (i.e. 2 cycles) for Cortex-A72 |
| 128 | * |
| 129 | * Note that: |
| 130 | * - Defect #831273 doesn't affect Juno R2. |
Sandrine Bailleux | fd8f898 | 2015-02-04 14:06:10 +0000 | [diff] [blame] | 131 | * -------------------------------------------------------------------- |
Yatharth Kochar | 36433d1 | 2014-11-20 18:09:41 +0000 | [diff] [blame] | 132 | */ |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 133 | func JUNO_HANDLER(2) |
Sandrine Bailleux | 29a7a03 | 2015-11-18 11:59:35 +0000 | [diff] [blame] | 134 | /* -------------------------------------------------------------------- |
| 135 | * Nothing to do on Cortex-A53. |
| 136 | * -------------------------------------------------------------------- |
| 137 | */ |
| 138 | jump_if_cpu_midr CORTEX_A72_MIDR, A72 |
| 139 | ret |
| 140 | |
| 141 | A72: |
| 142 | /* -------------------------------------------------------------------- |
| 143 | * Cortex-A72 specific settings |
| 144 | * -------------------------------------------------------------------- |
| 145 | */ |
Varun Wadekar | 1384a16 | 2017-06-05 14:54:46 -0700 | [diff] [blame] | 146 | mov x0, #((CORTEX_A72_L2_DATA_RAM_LATENCY_3_CYCLES << CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT) | \ |
| 147 | (CORTEX_A72_L2_TAG_RAM_LATENCY_2_CYCLES << CORTEX_A72_L2CTLR_TAG_RAM_LATENCY_SHIFT)) |
| 148 | msr CORTEX_A57_L2CTLR_EL1, x0 |
Sandrine Bailleux | 29a7a03 | 2015-11-18 11:59:35 +0000 | [diff] [blame] | 149 | isb |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 150 | ret |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 151 | endfunc JUNO_HANDLER(2) |
| 152 | |
| 153 | /* -------------------------------------------------------------------- |
| 154 | * void plat_reset_handler(void); |
| 155 | * |
| 156 | * Determine the Juno board revision and call the appropriate reset |
| 157 | * handler. |
| 158 | * -------------------------------------------------------------------- |
| 159 | */ |
| 160 | func plat_reset_handler |
| 161 | /* Read the V2M SYS_ID register */ |
| 162 | mov_imm x0, (V2M_SYSREGS_BASE + V2M_SYS_ID) |
| 163 | ldr w1, [x0] |
| 164 | /* Extract board revision from the SYS_ID */ |
| 165 | ubfx x0, x1, #V2M_SYS_ID_REV_SHIFT, #4 |
| 166 | |
| 167 | JUMP_TO_HANDLER_IF_JUNO_R(0) |
| 168 | JUMP_TO_HANDLER_IF_JUNO_R(1) |
| 169 | JUMP_TO_HANDLER_IF_JUNO_R(2) |
| 170 | |
| 171 | /* Board revision is not supported */ |
Jeenu Viswambharan | 68aef10 | 2016-11-30 15:21:11 +0000 | [diff] [blame] | 172 | no_ret plat_panic_handler |
Sandrine Bailleux | 9d548a2 | 2015-11-18 11:10:30 +0000 | [diff] [blame] | 173 | |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 174 | endfunc plat_reset_handler |
David Wang | 323ebe8 | 2015-10-22 13:30:50 +0800 | [diff] [blame] | 175 | |
| 176 | /* ----------------------------------------------------- |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 177 | * void juno_do_reset_to_aarch32_state(void); |
| 178 | * |
| 179 | * Request warm reset to AArch32 mode. |
| 180 | * ----------------------------------------------------- |
| 181 | */ |
| 182 | func juno_do_reset_to_aarch32_state |
| 183 | mov x0, #RMR_EL3_RR_BIT |
| 184 | dsb sy |
| 185 | msr rmr_el3, x0 |
| 186 | isb |
| 187 | wfi |
Roberto Vargas | 9c685a8 | 2017-09-01 15:08:47 +0100 | [diff] [blame] | 188 | b plat_panic_handler |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 189 | endfunc juno_do_reset_to_aarch32_state |
| 190 | |
| 191 | /* ----------------------------------------------------- |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 192 | * unsigned int plat_arm_calc_core_pos(u_register_t mpidr) |
David Wang | 323ebe8 | 2015-10-22 13:30:50 +0800 | [diff] [blame] | 193 | * Helper function to calculate the core position. |
| 194 | * ----------------------------------------------------- |
| 195 | */ |
| 196 | func plat_arm_calc_core_pos |
| 197 | b css_calc_core_pos_swap_cluster |
| 198 | endfunc plat_arm_calc_core_pos |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 199 | |
| 200 | #if JUNO_AARCH32_EL3_RUNTIME |
| 201 | /* --------------------------------------------------------------------- |
| 202 | * uintptr_t plat_get_my_entrypoint (void); |
| 203 | * |
| 204 | * Main job of this routine is to distinguish between a cold and a warm |
| 205 | * boot. On JUNO platform, this distinction is based on the contents of |
| 206 | * the Trusted Mailbox. It is initialised to zero by the SCP before the |
| 207 | * AP cores are released from reset. Therefore, a zero mailbox means |
| 208 | * it's a cold reset. If it is a warm boot then a request to reset to |
| 209 | * AArch32 state is issued. This is the only way to reset to AArch32 |
| 210 | * in EL3 on Juno. A trampoline located at the high vector address |
| 211 | * has already been prepared by BL1. |
| 212 | * |
| 213 | * This functions returns the contents of the mailbox, i.e.: |
| 214 | * - 0 for a cold boot; |
| 215 | * - request warm reset in AArch32 state for warm boot case; |
| 216 | * --------------------------------------------------------------------- |
| 217 | */ |
| 218 | func plat_get_my_entrypoint |
| 219 | mov_imm x0, PLAT_ARM_TRUSTED_MAILBOX_BASE |
| 220 | ldr x0, [x0] |
| 221 | cbz x0, return |
| 222 | b juno_do_reset_to_aarch32_state |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 223 | return: |
| 224 | ret |
| 225 | endfunc plat_get_my_entrypoint |
| 226 | |
| 227 | /* |
| 228 | * Emit a "movw r0, #imm16" which moves the lower |
| 229 | * 16 bits of `_val` into r0. |
| 230 | */ |
| 231 | .macro emit_movw _reg_d, _val |
| 232 | mov_imm \_reg_d, (0xe3000000 | \ |
| 233 | ((\_val & 0xfff) | \ |
| 234 | ((\_val & 0xf000) << 4))) |
| 235 | .endm |
| 236 | |
| 237 | /* |
| 238 | * Emit a "movt r0, #imm16" which moves the upper |
| 239 | * 16 bits of `_val` into r0. |
| 240 | */ |
| 241 | .macro emit_movt _reg_d, _val |
| 242 | mov_imm \_reg_d, (0xe3400000 | \ |
| 243 | (((\_val & 0x0fff0000) >> 16) | \ |
| 244 | ((\_val & 0xf0000000) >> 12))) |
| 245 | .endm |
| 246 | |
| 247 | /* |
| 248 | * This function writes the trampoline code at HI-VEC (0xFFFF0000) |
| 249 | * address which loads r0 with the entrypoint address for |
| 250 | * BL32 (a.k.a SP_MIN) when EL3 is in AArch32 mode. A warm reset |
| 251 | * to AArch32 mode is then requested by writing into RMR_EL3. |
| 252 | */ |
| 253 | func juno_reset_to_aarch32_state |
Dimitris Papastamos | aa11c39 | 2017-06-19 14:15:31 +0100 | [diff] [blame] | 254 | /* |
| 255 | * Invalidate all caches before the warm reset to AArch32 state. |
| 256 | * This is required on the Juno AArch32 boot flow because the L2 |
| 257 | * unified cache may contain code and data from when the processor |
| 258 | * was still executing in AArch64 state. This code only runs on |
| 259 | * the primary core, all other cores are powered down. |
| 260 | */ |
| 261 | mov x0, #DCISW |
| 262 | bl dcsw_op_all |
| 263 | |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 264 | emit_movw w0, BL32_BASE |
| 265 | emit_movt w1, BL32_BASE |
| 266 | /* opcode "bx r0" to branch using r0 in AArch32 mode */ |
| 267 | mov_imm w2, 0xe12fff10 |
| 268 | |
| 269 | /* Write the above opcodes at HI-VECTOR location */ |
| 270 | mov_imm x3, HI_VECTOR_BASE |
| 271 | str w0, [x3], #4 |
| 272 | str w1, [x3], #4 |
| 273 | str w2, [x3] |
| 274 | |
Roberto Vargas | 9c685a8 | 2017-09-01 15:08:47 +0100 | [diff] [blame] | 275 | b juno_do_reset_to_aarch32_state |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 276 | endfunc juno_reset_to_aarch32_state |
| 277 | |
| 278 | #endif /* JUNO_AARCH32_EL3_RUNTIME */ |