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