Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | 0d78607 | 2016-03-24 16:56:29 +0000 | [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 | */ |
Dan Handley | ea59668 | 2015-04-01 17:34:24 +0100 | [diff] [blame] | 30 | #ifndef __ASM_MACROS_S__ |
| 31 | #define __ASM_MACROS_S__ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <arch.h> |
Soby Mathew | b9ff2fd | 2016-07-08 15:26:35 +0100 | [diff] [blame] | 34 | #include <asm_macros_common.S> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 35 | |
| 36 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 37 | .macro func_prologue |
| 38 | stp x29, x30, [sp, #-0x10]! |
| 39 | mov x29,sp |
| 40 | .endm |
| 41 | |
| 42 | .macro func_epilogue |
| 43 | ldp x29, x30, [sp], #0x10 |
| 44 | .endm |
| 45 | |
| 46 | |
| 47 | .macro dcache_line_size reg, tmp |
Achin Gupta | 07f4e07 | 2014-02-02 12:02:23 +0000 | [diff] [blame] | 48 | mrs \tmp, ctr_el0 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 49 | ubfx \tmp, \tmp, #16, #4 |
Achin Gupta | 07f4e07 | 2014-02-02 12:02:23 +0000 | [diff] [blame] | 50 | mov \reg, #4 |
| 51 | lsl \reg, \reg, \tmp |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 52 | .endm |
| 53 | |
| 54 | |
| 55 | .macro icache_line_size reg, tmp |
Achin Gupta | 07f4e07 | 2014-02-02 12:02:23 +0000 | [diff] [blame] | 56 | mrs \tmp, ctr_el0 |
| 57 | and \tmp, \tmp, #0xf |
| 58 | mov \reg, #4 |
| 59 | lsl \reg, \reg, \tmp |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 60 | .endm |
| 61 | |
| 62 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 63 | .macro smc_check label |
Andrew Thoelke | f977ed8 | 2014-04-28 12:32:02 +0100 | [diff] [blame] | 64 | mrs x0, esr_el3 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 65 | ubfx x0, x0, #ESR_EC_SHIFT, #ESR_EC_LENGTH |
| 66 | cmp x0, #EC_AARCH64_SMC |
| 67 | b.ne $label |
| 68 | .endm |
| 69 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 70 | /* |
| 71 | * Declare the exception vector table, enforcing it is aligned on a |
| 72 | * 2KB boundary, as required by the ARMv8 architecture. |
Sandrine Bailleux | 618ba99 | 2016-05-24 16:22:59 +0100 | [diff] [blame] | 73 | * Use zero bytes as the fill value to be stored in the padding bytes |
| 74 | * so that it inserts illegal AArch64 instructions. This increases |
| 75 | * security, robustness and potentially facilitates debugging. |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 76 | */ |
| 77 | .macro vector_base label |
| 78 | .section .vectors, "ax" |
Sandrine Bailleux | 618ba99 | 2016-05-24 16:22:59 +0100 | [diff] [blame] | 79 | .align 11, 0 |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 80 | \label: |
| 81 | .endm |
| 82 | |
| 83 | /* |
| 84 | * Create an entry in the exception vector table, enforcing it is |
| 85 | * aligned on a 128-byte boundary, as required by the ARMv8 architecture. |
Sandrine Bailleux | 618ba99 | 2016-05-24 16:22:59 +0100 | [diff] [blame] | 86 | * Use zero bytes as the fill value to be stored in the padding bytes |
| 87 | * so that it inserts illegal AArch64 instructions. This increases |
| 88 | * security, robustness and potentially facilitates debugging. |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 89 | */ |
| 90 | .macro vector_entry label |
| 91 | .section .vectors, "ax" |
Sandrine Bailleux | 618ba99 | 2016-05-24 16:22:59 +0100 | [diff] [blame] | 92 | .align 7, 0 |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 93 | \label: |
| 94 | .endm |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 95 | |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 96 | /* |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 97 | * This macro verifies that the given vector doesn't exceed the |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 98 | * architectural limit of 32 instructions. This is meant to be placed |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 99 | * immediately after the last instruction in the vector. It takes the |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 100 | * vector entry as the parameter |
| 101 | */ |
| 102 | .macro check_vector_size since |
| 103 | .if (. - \since) > (32 * 4) |
| 104 | .error "Vector exceeds 32 instructions" |
| 105 | .endif |
| 106 | .endm |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 107 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 108 | #if ENABLE_PLAT_COMPAT |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 109 | /* |
| 110 | * This macro calculates the base address of an MP stack using the |
| 111 | * platform_get_core_pos() index, the name of the stack storage and |
| 112 | * the size of each stack |
| 113 | * In: X0 = MPIDR of CPU whose stack is wanted |
| 114 | * Out: X0 = physical address of stack base |
| 115 | * Clobber: X30, X1, X2 |
| 116 | */ |
| 117 | .macro get_mp_stack _name, _size |
| 118 | bl platform_get_core_pos |
| 119 | ldr x2, =(\_name + \_size) |
| 120 | mov x1, #\_size |
| 121 | madd x0, x0, x1, x2 |
| 122 | .endm |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 123 | #endif |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 124 | |
| 125 | /* |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 126 | * This macro calculates the base address of the current CPU's MP stack |
| 127 | * using the plat_my_core_pos() index, the name of the stack storage |
| 128 | * and the size of each stack |
| 129 | * Out: X0 = physical address of stack base |
| 130 | * Clobber: X30, X1, X2 |
| 131 | */ |
| 132 | .macro get_my_mp_stack _name, _size |
| 133 | bl plat_my_core_pos |
| 134 | ldr x2, =(\_name + \_size) |
| 135 | mov x1, #\_size |
| 136 | madd x0, x0, x1, x2 |
| 137 | .endm |
| 138 | |
| 139 | /* |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 140 | * This macro calculates the base address of a UP stack using the |
| 141 | * name of the stack storage and the size of the stack |
| 142 | * Out: X0 = physical address of stack base |
| 143 | */ |
| 144 | .macro get_up_stack _name, _size |
| 145 | ldr x0, =(\_name + \_size) |
| 146 | .endm |
Soby Mathew | 066f713 | 2014-07-14 16:57:23 +0100 | [diff] [blame] | 147 | |
| 148 | /* |
| 149 | * Helper macro to generate the best mov/movk combinations according |
| 150 | * the value to be moved. The 16 bits from '_shift' are tested and |
| 151 | * if not zero, they are moved into '_reg' without affecting |
| 152 | * other bits. |
| 153 | */ |
| 154 | .macro _mov_imm16 _reg, _val, _shift |
| 155 | .if (\_val >> \_shift) & 0xffff |
| 156 | .if (\_val & (1 << \_shift - 1)) |
| 157 | movk \_reg, (\_val >> \_shift) & 0xffff, LSL \_shift |
| 158 | .else |
| 159 | mov \_reg, \_val & (0xffff << \_shift) |
| 160 | .endif |
| 161 | .endif |
| 162 | .endm |
| 163 | |
| 164 | /* |
| 165 | * Helper macro to load arbitrary values into 32 or 64-bit registers |
| 166 | * which generates the best mov/movk combinations. Many base addresses |
| 167 | * are 64KB aligned the macro will eliminate updating bits 15:0 in |
| 168 | * that case |
| 169 | */ |
| 170 | .macro mov_imm _reg, _val |
| 171 | .if (\_val) == 0 |
| 172 | mov \_reg, #0 |
| 173 | .else |
| 174 | _mov_imm16 \_reg, (\_val), 0 |
| 175 | _mov_imm16 \_reg, (\_val), 16 |
| 176 | _mov_imm16 \_reg, (\_val), 32 |
| 177 | _mov_imm16 \_reg, (\_val), 48 |
| 178 | .endif |
| 179 | .endm |
Dan Handley | ea59668 | 2015-04-01 17:34:24 +0100 | [diff] [blame] | 180 | |
| 181 | #endif /* __ASM_MACROS_S__ */ |