Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 1 | /* |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 2 | * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 5 | */ |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 6 | |
| 7 | #include <plat_macros.S> |
| 8 | #include <platform_def.h> |
| 9 | |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 10 | #include <arch.h> |
| 11 | #include <asm_macros.S> |
| 12 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 13 | #include <lib/el3_runtime/cpu_data.h> |
| 14 | #include <lib/utils_def.h> |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 15 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 16 | .globl report_unhandled_exception |
| 17 | .globl report_unhandled_interrupt |
| 18 | .globl el3_panic |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 19 | |
Andrew Thoelke | 385f4d4 | 2014-06-03 11:50:53 +0100 | [diff] [blame] | 20 | #if CRASH_REPORTING |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 21 | |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 22 | /* ------------------------------------------------------ |
| 23 | * The below section deals with dumping the system state |
| 24 | * when an unhandled exception is taken in EL3. |
| 25 | * The layout and the names of the registers which will |
| 26 | * be dumped during a unhandled exception is given below. |
| 27 | * ------------------------------------------------------ |
| 28 | */ |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 29 | .section .rodata.crash_prints, "aS" |
| 30 | print_spacer: |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 31 | .asciz " = 0x" |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 32 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 33 | gp_regs: |
| 34 | .asciz "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7",\ |
| 35 | "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15",\ |
| 36 | "x16", "x17", "x18", "x19", "x20", "x21", "x22",\ |
| 37 | "x23", "x24", "x25", "x26", "x27", "x28", "x29", "" |
| 38 | el3_sys_regs: |
| 39 | .asciz "scr_el3", "sctlr_el3", "cptr_el3", "tcr_el3",\ |
| 40 | "daif", "mair_el3", "spsr_el3", "elr_el3", "ttbr0_el3",\ |
| 41 | "esr_el3", "far_el3", "" |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 42 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 43 | non_el3_sys_regs: |
| 44 | .asciz "spsr_el1", "elr_el1", "spsr_abt", "spsr_und",\ |
| 45 | "spsr_irq", "spsr_fiq", "sctlr_el1", "actlr_el1", "cpacr_el1",\ |
| 46 | "csselr_el1", "sp_el1", "esr_el1", "ttbr0_el1", "ttbr1_el1",\ |
| 47 | "mair_el1", "amair_el1", "tcr_el1", "tpidr_el1", "tpidr_el0",\ |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 48 | "tpidrro_el0", "par_el1", "mpidr_el1", "afsr0_el1", "afsr1_el1",\ |
| 49 | "contextidr_el1", "vbar_el1", "cntp_ctl_el0", "cntp_cval_el0",\ |
| 50 | "cntv_ctl_el0", "cntv_cval_el0", "cntkctl_el1", "sp_el0", "isr_el1", "" |
| 51 | |
| 52 | #if CTX_INCLUDE_AARCH32_REGS |
| 53 | aarch32_regs: |
| 54 | .asciz "dacr32_el2", "ifsr32_el2", "" |
| 55 | #endif /* CTX_INCLUDE_AARCH32_REGS */ |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 56 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 57 | panic_msg: |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 58 | .asciz "PANIC in EL3.\nx30" |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 59 | excpt_msg: |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 60 | .asciz "Unhandled Exception in EL3.\nx30" |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 61 | intr_excpt_msg: |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 62 | .asciz "Unhandled Interrupt Exception in EL3.\nx30" |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 63 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 64 | /* |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 65 | * Helper function to print from crash buf. |
| 66 | * The print loop is controlled by the buf size and |
| 67 | * ascii reg name list which is passed in x6. The |
| 68 | * function returns the crash buf address in x0. |
| 69 | * Clobbers : x0 - x7, sp |
| 70 | */ |
| 71 | func size_controlled_print |
| 72 | /* Save the lr */ |
| 73 | mov sp, x30 |
| 74 | /* load the crash buf address */ |
| 75 | mrs x7, tpidr_el3 |
| 76 | test_size_list: |
| 77 | /* Calculate x5 always as it will be clobbered by asm_print_hex */ |
| 78 | mrs x5, tpidr_el3 |
| 79 | add x5, x5, #CPU_DATA_CRASH_BUF_SIZE |
| 80 | /* Test whether we have reached end of crash buf */ |
| 81 | cmp x7, x5 |
| 82 | b.eq exit_size_print |
| 83 | ldrb w4, [x6] |
| 84 | /* Test whether we are at end of list */ |
| 85 | cbz w4, exit_size_print |
| 86 | mov x4, x6 |
| 87 | /* asm_print_str updates x4 to point to next entry in list */ |
| 88 | bl asm_print_str |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 89 | /* x0 = number of symbols printed + 1 */ |
| 90 | sub x0, x4, x6 |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 91 | /* update x6 with the updated list pointer */ |
| 92 | mov x6, x4 |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 93 | bl print_alignment |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 94 | ldr x4, [x7], #REGSZ |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 95 | bl asm_print_hex |
Justin Chadwell | 7690382 | 2019-08-20 10:58:49 +0100 | [diff] [blame] | 96 | bl asm_print_newline |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 97 | b test_size_list |
| 98 | exit_size_print: |
| 99 | mov x30, sp |
| 100 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 101 | endfunc size_controlled_print |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 102 | |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 103 | /* ----------------------------------------------------- |
| 104 | * This function calculates and prints required number |
| 105 | * of space characters followed by "= 0x", based on the |
| 106 | * length of ascii register name. |
| 107 | * x0: length of ascii register name + 1 |
| 108 | * ------------------------------------------------------ |
| 109 | */ |
| 110 | func print_alignment |
| 111 | /* The minimum ascii length is 3, e.g. for "x0" */ |
| 112 | adr x4, print_spacer - 3 |
| 113 | add x4, x4, x0 |
| 114 | b asm_print_str |
| 115 | endfunc print_alignment |
| 116 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 117 | /* |
| 118 | * Helper function to store x8 - x15 registers to |
| 119 | * the crash buf. The system registers values are |
| 120 | * copied to x8 to x15 by the caller which are then |
| 121 | * copied to the crash buf by this function. |
| 122 | * x0 points to the crash buf. It then calls |
| 123 | * size_controlled_print to print to console. |
| 124 | * Clobbers : x0 - x7, sp |
| 125 | */ |
| 126 | func str_in_crash_buf_print |
| 127 | /* restore the crash buf address in x0 */ |
| 128 | mrs x0, tpidr_el3 |
| 129 | stp x8, x9, [x0] |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 130 | stp x10, x11, [x0, #REGSZ * 2] |
| 131 | stp x12, x13, [x0, #REGSZ * 4] |
| 132 | stp x14, x15, [x0, #REGSZ * 6] |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 133 | b size_controlled_print |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 134 | endfunc str_in_crash_buf_print |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 135 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 136 | /* ------------------------------------------------------ |
| 137 | * This macro calculates the offset to crash buf from |
| 138 | * cpu_data and stores it in tpidr_el3. It also saves x0 |
| 139 | * and x1 in the crash buf by using sp as a temporary |
| 140 | * register. |
| 141 | * ------------------------------------------------------ |
| 142 | */ |
| 143 | .macro prepare_crash_buf_save_x0_x1 |
| 144 | /* we can corrupt this reg to free up x0 */ |
| 145 | mov sp, x0 |
| 146 | /* tpidr_el3 contains the address to cpu_data structure */ |
| 147 | mrs x0, tpidr_el3 |
| 148 | /* Calculate the Crash buffer offset in cpu_data */ |
| 149 | add x0, x0, #CPU_DATA_CRASH_BUF_OFFSET |
| 150 | /* Store crash buffer address in tpidr_el3 */ |
| 151 | msr tpidr_el3, x0 |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 152 | str x1, [x0, #REGSZ] |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 153 | mov x1, sp |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 154 | str x1, [x0] |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 155 | .endm |
| 156 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 157 | /* ----------------------------------------------------- |
| 158 | * This function allows to report a crash (if crash |
| 159 | * reporting is enabled) when an unhandled exception |
| 160 | * occurs. It prints the CPU state via the crash console |
| 161 | * making use of the crash buf. This function will |
| 162 | * not return. |
| 163 | * ----------------------------------------------------- |
| 164 | */ |
| 165 | func report_unhandled_exception |
| 166 | prepare_crash_buf_save_x0_x1 |
| 167 | adr x0, excpt_msg |
| 168 | mov sp, x0 |
| 169 | /* This call will not return */ |
| 170 | b do_crash_reporting |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 171 | endfunc report_unhandled_exception |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 172 | |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 173 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 174 | /* ----------------------------------------------------- |
| 175 | * This function allows to report a crash (if crash |
| 176 | * reporting is enabled) when an unhandled interrupt |
| 177 | * occurs. It prints the CPU state via the crash console |
| 178 | * making use of the crash buf. This function will |
| 179 | * not return. |
| 180 | * ----------------------------------------------------- |
| 181 | */ |
| 182 | func report_unhandled_interrupt |
| 183 | prepare_crash_buf_save_x0_x1 |
| 184 | adr x0, intr_excpt_msg |
| 185 | mov sp, x0 |
| 186 | /* This call will not return */ |
| 187 | b do_crash_reporting |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 188 | endfunc report_unhandled_interrupt |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 189 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 190 | /* ----------------------------------------------------- |
| 191 | * This function allows to report a crash (if crash |
| 192 | * reporting is enabled) when panic() is invoked from |
| 193 | * C Runtime. It prints the CPU state via the crash |
| 194 | * console making use of the crash buf. This function |
| 195 | * will not return. |
| 196 | * ----------------------------------------------------- |
| 197 | */ |
| 198 | func el3_panic |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 199 | msr spsel, #MODE_SP_ELX |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 200 | prepare_crash_buf_save_x0_x1 |
| 201 | adr x0, panic_msg |
| 202 | mov sp, x0 |
| 203 | /* This call will not return */ |
| 204 | b do_crash_reporting |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 205 | endfunc el3_panic |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 206 | |
| 207 | /* ------------------------------------------------------------ |
| 208 | * The common crash reporting functionality. It requires x0 |
| 209 | * and x1 has already been stored in crash buf, sp points to |
| 210 | * crash message and tpidr_el3 contains the crash buf address. |
| 211 | * The function does the following: |
| 212 | * - Retrieve the crash buffer from tpidr_el3 |
| 213 | * - Store x2 to x6 in the crash buffer |
| 214 | * - Initialise the crash console. |
| 215 | * - Print the crash message by using the address in sp. |
| 216 | * - Print x30 value to the crash console. |
| 217 | * - Print x0 - x7 from the crash buf to the crash console. |
| 218 | * - Print x8 - x29 (in groups of 8 registers) using the |
| 219 | * crash buf to the crash console. |
| 220 | * - Print el3 sys regs (in groups of 8 registers) using the |
| 221 | * crash buf to the crash console. |
| 222 | * - Print non el3 sys regs (in groups of 8 registers) using |
| 223 | * the crash buf to the crash console. |
| 224 | * ------------------------------------------------------------ |
| 225 | */ |
| 226 | func do_crash_reporting |
| 227 | /* Retrieve the crash buf from tpidr_el3 */ |
| 228 | mrs x0, tpidr_el3 |
| 229 | /* Store x2 - x6, x30 in the crash buffer */ |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 230 | stp x2, x3, [x0, #REGSZ * 2] |
| 231 | stp x4, x5, [x0, #REGSZ * 4] |
| 232 | stp x6, x30, [x0, #REGSZ * 6] |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 233 | /* Initialize the crash console */ |
| 234 | bl plat_crash_console_init |
| 235 | /* Verify the console is initialized */ |
| 236 | cbz x0, crash_panic |
| 237 | /* Print the crash message. sp points to the crash message */ |
| 238 | mov x4, sp |
| 239 | bl asm_print_str |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 240 | /* Print spaces to align "x30" string */ |
| 241 | mov x0, #4 |
| 242 | bl print_alignment |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 243 | /* load the crash buf address */ |
| 244 | mrs x0, tpidr_el3 |
| 245 | /* report x30 first from the crash buf */ |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 246 | ldr x4, [x0, #REGSZ * 7] |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 247 | bl asm_print_hex |
Justin Chadwell | 7690382 | 2019-08-20 10:58:49 +0100 | [diff] [blame] | 248 | bl asm_print_newline |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 249 | /* Load the crash buf address */ |
| 250 | mrs x0, tpidr_el3 |
| 251 | /* Now mov x7 into crash buf */ |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 252 | str x7, [x0, #REGSZ * 7] |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 253 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 254 | /* Report x0 - x29 values stored in crash buf*/ |
| 255 | /* Store the ascii list pointer in x6 */ |
| 256 | adr x6, gp_regs |
| 257 | /* Print x0 to x7 from the crash buf */ |
| 258 | bl size_controlled_print |
| 259 | /* Store x8 - x15 in crash buf and print */ |
| 260 | bl str_in_crash_buf_print |
| 261 | /* Load the crash buf address */ |
| 262 | mrs x0, tpidr_el3 |
| 263 | /* Store the rest of gp regs and print */ |
| 264 | stp x16, x17, [x0] |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 265 | stp x18, x19, [x0, #REGSZ * 2] |
| 266 | stp x20, x21, [x0, #REGSZ * 4] |
| 267 | stp x22, x23, [x0, #REGSZ * 6] |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 268 | bl size_controlled_print |
| 269 | /* Load the crash buf address */ |
| 270 | mrs x0, tpidr_el3 |
| 271 | stp x24, x25, [x0] |
Julius Werner | 02eb727 | 2017-12-12 14:23:26 -0800 | [diff] [blame] | 272 | stp x26, x27, [x0, #REGSZ * 2] |
| 273 | stp x28, x29, [x0, #REGSZ * 4] |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 274 | bl size_controlled_print |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 275 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 276 | /* Print the el3 sys registers */ |
| 277 | adr x6, el3_sys_regs |
| 278 | mrs x8, scr_el3 |
| 279 | mrs x9, sctlr_el3 |
| 280 | mrs x10, cptr_el3 |
| 281 | mrs x11, tcr_el3 |
| 282 | mrs x12, daif |
| 283 | mrs x13, mair_el3 |
| 284 | mrs x14, spsr_el3 |
| 285 | mrs x15, elr_el3 |
| 286 | bl str_in_crash_buf_print |
| 287 | mrs x8, ttbr0_el3 |
| 288 | mrs x9, esr_el3 |
| 289 | mrs x10, far_el3 |
| 290 | bl str_in_crash_buf_print |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 291 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 292 | /* Print the non el3 sys registers */ |
| 293 | adr x6, non_el3_sys_regs |
| 294 | mrs x8, spsr_el1 |
| 295 | mrs x9, elr_el1 |
| 296 | mrs x10, spsr_abt |
| 297 | mrs x11, spsr_und |
| 298 | mrs x12, spsr_irq |
| 299 | mrs x13, spsr_fiq |
| 300 | mrs x14, sctlr_el1 |
| 301 | mrs x15, actlr_el1 |
| 302 | bl str_in_crash_buf_print |
| 303 | mrs x8, cpacr_el1 |
| 304 | mrs x9, csselr_el1 |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 305 | mrs x10, sp_el1 |
| 306 | mrs x11, esr_el1 |
| 307 | mrs x12, ttbr0_el1 |
| 308 | mrs x13, ttbr1_el1 |
| 309 | mrs x14, mair_el1 |
| 310 | mrs x15, amair_el1 |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 311 | bl str_in_crash_buf_print |
| 312 | mrs x8, tcr_el1 |
| 313 | mrs x9, tpidr_el1 |
| 314 | mrs x10, tpidr_el0 |
| 315 | mrs x11, tpidrro_el0 |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 316 | mrs x12, par_el1 |
| 317 | mrs x13, mpidr_el1 |
| 318 | mrs x14, afsr0_el1 |
| 319 | mrs x15, afsr1_el1 |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 320 | bl str_in_crash_buf_print |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 321 | mrs x8, contextidr_el1 |
| 322 | mrs x9, vbar_el1 |
| 323 | mrs x10, cntp_ctl_el0 |
| 324 | mrs x11, cntp_cval_el0 |
| 325 | mrs x12, cntv_ctl_el0 |
| 326 | mrs x13, cntv_cval_el0 |
| 327 | mrs x14, cntkctl_el1 |
| 328 | mrs x15, sp_el0 |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 329 | bl str_in_crash_buf_print |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 330 | mrs x8, isr_el1 |
| 331 | bl str_in_crash_buf_print |
| 332 | |
| 333 | #if CTX_INCLUDE_AARCH32_REGS |
| 334 | /* Print the AArch32 registers */ |
| 335 | adr x6, aarch32_regs |
| 336 | mrs x8, dacr32_el2 |
| 337 | mrs x9, ifsr32_el2 |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 338 | bl str_in_crash_buf_print |
Imre Kis | b5b903c | 2019-07-22 11:56:45 +0200 | [diff] [blame] | 339 | #endif /* CTX_INCLUDE_AARCH32_REGS */ |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 340 | |
Soby Mathew | 38b4bc9 | 2014-08-14 13:36:41 +0100 | [diff] [blame] | 341 | /* Get the cpu specific registers to report */ |
| 342 | bl do_cpu_reg_dump |
| 343 | bl str_in_crash_buf_print |
Soby Mathew | 0da9593 | 2014-07-16 09:23:52 +0100 | [diff] [blame] | 344 | |
Gerald Lejeune | 2c7ed5b | 2015-11-26 15:47:53 +0100 | [diff] [blame] | 345 | /* Print some platform registers */ |
| 346 | plat_crash_print_regs |
Soby Mathew | 0da9593 | 2014-07-16 09:23:52 +0100 | [diff] [blame] | 347 | |
Antonio Nino Diaz | d3ec543 | 2017-02-17 17:11:27 +0000 | [diff] [blame] | 348 | bl plat_crash_console_flush |
| 349 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 350 | /* Done reporting */ |
Jeenu Viswambharan | 68aef10 | 2016-11-30 15:21:11 +0000 | [diff] [blame] | 351 | no_ret plat_panic_handler |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 352 | endfunc do_crash_reporting |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 353 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 354 | #else /* CRASH_REPORTING */ |
| 355 | func report_unhandled_exception |
| 356 | report_unhandled_interrupt: |
Jeenu Viswambharan | 68aef10 | 2016-11-30 15:21:11 +0000 | [diff] [blame] | 357 | no_ret plat_panic_handler |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 358 | endfunc report_unhandled_exception |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 359 | #endif /* CRASH_REPORTING */ |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 360 | |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 361 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 362 | func crash_panic |
Jeenu Viswambharan | 68aef10 | 2016-11-30 15:21:11 +0000 | [diff] [blame] | 363 | no_ret plat_panic_handler |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 364 | endfunc crash_panic |