Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 1 | /* |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +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 | 041f62a | 2014-07-14 16:58:03 +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/debug.h> |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 10 | |
| 11 | .globl asm_print_str |
| 12 | .globl asm_print_hex |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 13 | .globl asm_print_hex_bits |
Justin Chadwell | 7690382 | 2019-08-20 10:58:49 +0100 | [diff] [blame] | 14 | .globl asm_print_newline |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 15 | .globl asm_assert |
| 16 | .globl do_panic |
| 17 | |
| 18 | /* Since the max decimal input number is 65536 */ |
| 19 | #define MAX_DEC_DIVISOR 10000 |
| 20 | /* The offset to add to get ascii for numerals '0 - 9' */ |
| 21 | #define ASCII_OFFSET_NUM 0x30 |
| 22 | |
Antonio Nino Diaz | 7c65c1e | 2017-04-20 09:58:28 +0100 | [diff] [blame] | 23 | #if ENABLE_ASSERTIONS |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 24 | .section .rodata.assert_str, "aS" |
| 25 | assert_msg1: |
| 26 | .asciz "ASSERT: File " |
| 27 | assert_msg2: |
| 28 | .asciz " Line " |
| 29 | |
| 30 | /* |
| 31 | * This macro is intended to be used to print the |
| 32 | * line number in decimal. Used by asm_assert macro. |
| 33 | * The max number expected is 65536. |
| 34 | * In: x4 = the decimal to print. |
| 35 | * Clobber: x30, x0, x1, x2, x5, x6 |
| 36 | */ |
| 37 | .macro asm_print_line_dec |
| 38 | mov x6, #10 /* Divide by 10 after every loop iteration */ |
| 39 | mov x5, #MAX_DEC_DIVISOR |
Soby Mathew | 1218f11 | 2014-08-19 11:26:00 +0100 | [diff] [blame] | 40 | dec_print_loop: |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 41 | udiv x0, x4, x5 /* Get the quotient */ |
| 42 | msub x4, x0, x5, x4 /* Find the remainder */ |
| 43 | add x0, x0, #ASCII_OFFSET_NUM /* Convert to ascii */ |
| 44 | bl plat_crash_console_putc |
| 45 | udiv x5, x5, x6 /* Reduce divisor */ |
Soby Mathew | 1218f11 | 2014-08-19 11:26:00 +0100 | [diff] [blame] | 46 | cbnz x5, dec_print_loop |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 47 | .endm |
| 48 | |
| 49 | |
| 50 | /* --------------------------------------------------------------------------- |
| 51 | * Assertion support in assembly. |
| 52 | * The below function helps to support assertions in assembly where we do not |
| 53 | * have a C runtime stack. Arguments to the function are : |
| 54 | * x0 - File name |
| 55 | * x1 - Line no |
| 56 | * Clobber list : x30, x0, x1, x2, x3, x4, x5, x6. |
| 57 | * --------------------------------------------------------------------------- |
| 58 | */ |
| 59 | func asm_assert |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 60 | #if LOG_LEVEL >= LOG_LEVEL_INFO |
| 61 | /* |
| 62 | * Only print the output if LOG_LEVEL is higher or equal to |
| 63 | * LOG_LEVEL_INFO, which is the default value for builds with DEBUG=1. |
| 64 | */ |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 65 | mov x5, x0 |
| 66 | mov x6, x1 |
| 67 | /* Ensure the console is initialized */ |
| 68 | bl plat_crash_console_init |
| 69 | /* Check if the console is initialized */ |
| 70 | cbz x0, _assert_loop |
| 71 | /* The console is initialized */ |
| 72 | adr x4, assert_msg1 |
| 73 | bl asm_print_str |
| 74 | mov x4, x5 |
| 75 | bl asm_print_str |
| 76 | adr x4, assert_msg2 |
| 77 | bl asm_print_str |
| 78 | /* Check if line number higher than max permitted */ |
| 79 | tst x6, #~0xffff |
| 80 | b.ne _assert_loop |
| 81 | mov x4, x6 |
| 82 | asm_print_line_dec |
Antonio Nino Diaz | d3ec543 | 2017-02-17 17:11:27 +0000 | [diff] [blame] | 83 | bl plat_crash_console_flush |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 84 | _assert_loop: |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 85 | #endif /* LOG_LEVEL >= LOG_LEVEL_INFO */ |
Antonio Nino Diaz | e98fa3a | 2017-02-16 16:49:18 +0000 | [diff] [blame] | 86 | no_ret plat_panic_handler |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 87 | endfunc asm_assert |
Antonio Nino Diaz | 7c65c1e | 2017-04-20 09:58:28 +0100 | [diff] [blame] | 88 | #endif /* ENABLE_ASSERTIONS */ |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * This function prints a string from address in x4. |
| 92 | * In: x4 = pointer to string. |
| 93 | * Clobber: x30, x0, x1, x2, x3 |
| 94 | */ |
| 95 | func asm_print_str |
| 96 | mov x3, x30 |
| 97 | 1: |
| 98 | ldrb w0, [x4], #0x1 |
| 99 | cbz x0, 2f |
| 100 | bl plat_crash_console_putc |
| 101 | b 1b |
| 102 | 2: |
| 103 | ret x3 |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 104 | endfunc asm_print_str |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * This function prints a hexadecimal number in x4. |
| 108 | * In: x4 = the hexadecimal to print. |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 109 | * Clobber: x30, x0 - x3, x5 |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 110 | */ |
| 111 | func asm_print_hex |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 112 | mov x5, #64 /* No of bits to convert to ascii */ |
Alexei Fedorov | c4dfb3b | 2019-07-29 13:34:07 +0100 | [diff] [blame] | 113 | |
| 114 | /* Convert to ascii number of bits in x5 */ |
| 115 | asm_print_hex_bits: |
| 116 | mov x3, x30 |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 117 | 1: |
| 118 | sub x5, x5, #4 |
| 119 | lsrv x0, x4, x5 |
| 120 | and x0, x0, #0xf |
| 121 | cmp x0, #0xA |
| 122 | b.lo 2f |
| 123 | /* Add by 0x27 in addition to ASCII_OFFSET_NUM |
| 124 | * to get ascii for characters 'a - f'. |
| 125 | */ |
| 126 | add x0, x0, #0x27 |
| 127 | 2: |
| 128 | add x0, x0, #ASCII_OFFSET_NUM |
| 129 | bl plat_crash_console_putc |
| 130 | cbnz x5, 1b |
| 131 | ret x3 |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 132 | endfunc asm_print_hex |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 133 | |
Justin Chadwell | 7690382 | 2019-08-20 10:58:49 +0100 | [diff] [blame] | 134 | /* |
| 135 | * Helper function to print newline to console |
| 136 | * Clobber: x0 |
| 137 | */ |
| 138 | func asm_print_newline |
| 139 | mov x0, '\n' |
| 140 | b plat_crash_console_putc |
| 141 | endfunc asm_print_newline |
| 142 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 143 | /*********************************************************** |
| 144 | * The common implementation of do_panic for all BL stages |
| 145 | ***********************************************************/ |
| 146 | |
| 147 | .section .rodata.panic_str, "aS" |
| 148 | panic_msg: .asciz "PANIC at PC : 0x" |
| 149 | |
| 150 | /* --------------------------------------------------------------------------- |
| 151 | * do_panic assumes that it is invoked from a C Runtime Environment ie a |
| 152 | * valid stack exists. This call will not return. |
| 153 | * Clobber list : if CRASH_REPORTING is not enabled then x30, x0 - x6 |
| 154 | * --------------------------------------------------------------------------- |
| 155 | */ |
| 156 | |
| 157 | /* This is for the non el3 BL stages to compile through */ |
| 158 | .weak el3_panic |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 159 | .weak elx_panic |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 160 | |
| 161 | func do_panic |
| 162 | #if CRASH_REPORTING |
| 163 | str x0, [sp, #-0x10]! |
| 164 | mrs x0, currentel |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 165 | ubfx x0, x0, #MODE_EL_SHIFT, #MODE_EL_WIDTH |
| 166 | cmp x0, #MODE_EL3 |
| 167 | #if !HANDLE_EA_EL3_FIRST |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 168 | ldr x0, [sp], #0x10 |
| 169 | b.eq el3_panic |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 170 | #else |
| 171 | b.ne to_panic_common |
| 172 | |
| 173 | /* Check EL the exception taken from */ |
| 174 | mrs x0, spsr_el3 |
| 175 | ubfx x0, x0, #SPSR_EL_SHIFT, #SPSR_EL_WIDTH |
| 176 | cmp x0, #MODE_EL3 |
| 177 | b.ne elx_panic |
| 178 | ldr x0, [sp], #0x10 |
| 179 | b el3_panic |
| 180 | |
| 181 | to_panic_common: |
| 182 | ldr x0, [sp], #0x10 |
| 183 | #endif /* HANDLE_EA_EL3_FIRST */ |
| 184 | #endif /* CRASH_REPORTING */ |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 185 | |
| 186 | panic_common: |
| 187 | /* |
| 188 | * el3_panic will be redefined by the BL31 |
| 189 | * crash reporting mechanism (if enabled) |
| 190 | */ |
| 191 | el3_panic: |
| 192 | mov x6, x30 |
| 193 | bl plat_crash_console_init |
| 194 | /* Check if the console is initialized */ |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 195 | cbz x0, _panic_handler |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 196 | /* The console is initialized */ |
| 197 | adr x4, panic_msg |
| 198 | bl asm_print_str |
| 199 | mov x4, x6 |
| 200 | /* The panic location is lr -4 */ |
| 201 | sub x4, x4, #4 |
| 202 | bl asm_print_hex |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 203 | |
Antonio Nino Diaz | d3ec543 | 2017-02-17 17:11:27 +0000 | [diff] [blame] | 204 | bl plat_crash_console_flush |
| 205 | |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 206 | _panic_handler: |
| 207 | /* Pass to plat_panic_handler the address from where el3_panic was |
| 208 | * called, not the address of the call from el3_panic. */ |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 209 | mov x30, x6 |
| 210 | b plat_panic_handler |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 211 | endfunc do_panic |