Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Alexei Fedorov | 68c7608 | 2020-02-06 17:11:03 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | 82cb2c1 | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | a0fee74 | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 7 | #ifndef ARCH_HELPERS_H |
| 8 | #define ARCH_HELPERS_H |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 9 | |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 10 | #include <cdefs.h> |
Antonio Nino Diaz | a0fee74 | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 11 | #include <stdbool.h> |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 12 | #include <stdint.h> |
Antonio Nino Diaz | 93c78ed | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 13 | #include <string.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 14 | |
Antonio Nino Diaz | 09d40e0 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <arch.h> |
| 16 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 17 | /********************************************************************** |
| 18 | * Macros which create inline functions to read or write CPU system |
| 19 | * registers |
| 20 | *********************************************************************/ |
| 21 | |
Sandrine Bailleux | 36e2fd0 | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 22 | #define _DEFINE_SYSREG_READ_FUNC(_name, _reg_name) \ |
Masahiro Yamada | 8f4dbaa | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 23 | static inline u_register_t read_ ## _name(void) \ |
Sandrine Bailleux | 36e2fd0 | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 24 | { \ |
Masahiro Yamada | 8f4dbaa | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 25 | u_register_t v; \ |
Sandrine Bailleux | 36e2fd0 | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 26 | __asm__ volatile ("mrs %0, " #_reg_name : "=r" (v)); \ |
| 27 | return v; \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 28 | } |
| 29 | |
Sandrine Bailleux | 36e2fd0 | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 30 | #define _DEFINE_SYSREG_WRITE_FUNC(_name, _reg_name) \ |
Masahiro Yamada | 8f4dbaa | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 31 | static inline void write_ ## _name(u_register_t v) \ |
Sandrine Bailleux | 36e2fd0 | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 32 | { \ |
| 33 | __asm__ volatile ("msr " #_reg_name ", %0" : : "r" (v)); \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 34 | } |
| 35 | |
Roberto Vargas | e0f34ea | 2017-09-18 09:53:25 +0100 | [diff] [blame] | 36 | #define SYSREG_WRITE_CONST(reg_name, v) \ |
| 37 | __asm__ volatile ("msr " #reg_name ", %0" : : "i" (v)) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 38 | |
| 39 | /* Define read function for system register */ |
| 40 | #define DEFINE_SYSREG_READ_FUNC(_name) \ |
| 41 | _DEFINE_SYSREG_READ_FUNC(_name, _name) |
| 42 | |
| 43 | /* Define read & write function for system register */ |
| 44 | #define DEFINE_SYSREG_RW_FUNCS(_name) \ |
| 45 | _DEFINE_SYSREG_READ_FUNC(_name, _name) \ |
| 46 | _DEFINE_SYSREG_WRITE_FUNC(_name, _name) |
| 47 | |
| 48 | /* Define read & write function for renamed system register */ |
| 49 | #define DEFINE_RENAME_SYSREG_RW_FUNCS(_name, _reg_name) \ |
| 50 | _DEFINE_SYSREG_READ_FUNC(_name, _reg_name) \ |
| 51 | _DEFINE_SYSREG_WRITE_FUNC(_name, _reg_name) |
| 52 | |
Achin Gupta | df37373 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 53 | /* Define read function for renamed system register */ |
| 54 | #define DEFINE_RENAME_SYSREG_READ_FUNC(_name, _reg_name) \ |
| 55 | _DEFINE_SYSREG_READ_FUNC(_name, _reg_name) |
| 56 | |
| 57 | /* Define write function for renamed system register */ |
| 58 | #define DEFINE_RENAME_SYSREG_WRITE_FUNC(_name, _reg_name) \ |
| 59 | _DEFINE_SYSREG_WRITE_FUNC(_name, _reg_name) |
| 60 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 61 | /********************************************************************** |
| 62 | * Macros to create inline functions for system instructions |
| 63 | *********************************************************************/ |
| 64 | |
| 65 | /* Define function for simple system instruction */ |
| 66 | #define DEFINE_SYSOP_FUNC(_op) \ |
Juan Castillo | 4f2104f | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 67 | static inline void _op(void) \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 68 | { \ |
| 69 | __asm__ (#_op); \ |
| 70 | } |
| 71 | |
Alexei Fedorov | 68c7608 | 2020-02-06 17:11:03 +0000 | [diff] [blame] | 72 | /* Define function for system instruction with register parameter */ |
| 73 | #define DEFINE_SYSOP_PARAM_FUNC(_op) \ |
| 74 | static inline void _op(uint64_t v) \ |
| 75 | { \ |
| 76 | __asm__ (#_op " %0" : : "r" (v)); \ |
| 77 | } |
| 78 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 79 | /* Define function for system instruction with type specifier */ |
| 80 | #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ |
Juan Castillo | 4f2104f | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 81 | static inline void _op ## _type(void) \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 82 | { \ |
Andre Przywara | 2be491b | 2020-10-16 18:19:03 +0100 | [diff] [blame] | 83 | __asm__ (#_op " " #_type : : : "memory"); \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /* Define function for system instruction with register parameter */ |
| 87 | #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ |
| 88 | static inline void _op ## _type(uint64_t v) \ |
| 89 | { \ |
| 90 | __asm__ (#_op " " #_type ", %0" : : "r" (v)); \ |
| 91 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 92 | |
| 93 | /******************************************************************************* |
| 94 | * TLB maintenance accessor prototypes |
| 95 | ******************************************************************************/ |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 96 | |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 97 | #if ERRATA_A57_813419 || ERRATA_A76_1286807 |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 98 | /* |
| 99 | * Define function for TLBI instruction with type specifier that implements |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 100 | * the workaround for errata 813419 of Cortex-A57 or errata 1286807 of |
| 101 | * Cortex-A76. |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 102 | */ |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 103 | #define DEFINE_TLBIOP_ERRATA_TYPE_FUNC(_type)\ |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 104 | static inline void tlbi ## _type(void) \ |
| 105 | { \ |
| 106 | __asm__("tlbi " #_type "\n" \ |
| 107 | "dsb ish\n" \ |
| 108 | "tlbi " #_type); \ |
| 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Define function for TLBI instruction with register parameter that implements |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 113 | * the workaround for errata 813419 of Cortex-A57 or errata 1286807 of |
| 114 | * Cortex-A76. |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 115 | */ |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 116 | #define DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(_type) \ |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 117 | static inline void tlbi ## _type(uint64_t v) \ |
| 118 | { \ |
| 119 | __asm__("tlbi " #_type ", %0\n" \ |
| 120 | "dsb ish\n" \ |
| 121 | "tlbi " #_type ", %0" : : "r" (v)); \ |
| 122 | } |
| 123 | #endif /* ERRATA_A57_813419 */ |
| 124 | |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 125 | #if ERRATA_A53_819472 || ERRATA_A53_824069 || ERRATA_A53_827319 |
| 126 | /* |
| 127 | * Define function for DC instruction with register parameter that enables |
| 128 | * the workaround for errata 819472, 824069 and 827319 of Cortex-A53. |
| 129 | */ |
| 130 | #define DEFINE_DCOP_ERRATA_A53_TYPE_PARAM_FUNC(_name, _type) \ |
| 131 | static inline void dc ## _name(uint64_t v) \ |
| 132 | { \ |
| 133 | __asm__("dc " #_type ", %0" : : "r" (v)); \ |
| 134 | } |
| 135 | #endif /* ERRATA_A53_819472 || ERRATA_A53_824069 || ERRATA_A53_827319 */ |
| 136 | |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 137 | #if ERRATA_A57_813419 |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 138 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1) |
| 139 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1is) |
| 140 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2) |
| 141 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2is) |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 142 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle3) |
| 143 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle3is) |
| 144 | DEFINE_SYSOP_TYPE_FUNC(tlbi, vmalle1) |
| 145 | #elif ERRATA_A76_1286807 |
| 146 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle1) |
| 147 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle1is) |
| 148 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle2) |
| 149 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle2is) |
| 150 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle3) |
| 151 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(alle3is) |
| 152 | DEFINE_TLBIOP_ERRATA_TYPE_FUNC(vmalle1) |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 153 | #else |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 154 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1) |
| 155 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1is) |
| 156 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2) |
| 157 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2is) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 158 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle3) |
| 159 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle3is) |
| 160 | DEFINE_SYSOP_TYPE_FUNC(tlbi, vmalle1) |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 161 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 162 | |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 163 | #if ERRATA_A57_813419 |
Antonio Nino Diaz | 0b64f4e | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 164 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaae1is) |
| 165 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaale1is) |
| 166 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vae2is) |
| 167 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vale2is) |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 168 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vae3is) |
| 169 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vale3is) |
| 170 | #elif ERRATA_A76_1286807 |
| 171 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vaae1is) |
| 172 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vaale1is) |
| 173 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vae2is) |
| 174 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vale2is) |
| 175 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vae3is) |
| 176 | DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(vale3is) |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 177 | #else |
Soby Mathew | f85edce | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 178 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaae1is) |
| 179 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaale1is) |
| 180 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vae2is) |
| 181 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vale2is) |
Antonio Nino Diaz | 0b64f4e | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 182 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vae3is) |
| 183 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vale3is) |
Antonio Nino Diaz | ccbec91 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 184 | #endif |
Antonio Nino Diaz | 0b64f4e | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 185 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 186 | /******************************************************************************* |
| 187 | * Cache maintenance accessor prototypes |
| 188 | ******************************************************************************/ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 189 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, isw) |
| 190 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cisw) |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 191 | #if ERRATA_A53_827319 |
| 192 | DEFINE_DCOP_ERRATA_A53_TYPE_PARAM_FUNC(csw, cisw) |
| 193 | #else |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 194 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, csw) |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 195 | #endif |
| 196 | #if ERRATA_A53_819472 || ERRATA_A53_824069 || ERRATA_A53_827319 |
| 197 | DEFINE_DCOP_ERRATA_A53_TYPE_PARAM_FUNC(cvac, civac) |
| 198 | #else |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 199 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvac) |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 200 | #endif |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 201 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, ivac) |
| 202 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, civac) |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 203 | #if ERRATA_A53_819472 || ERRATA_A53_824069 || ERRATA_A53_827319 |
| 204 | DEFINE_DCOP_ERRATA_A53_TYPE_PARAM_FUNC(cvau, civac) |
| 205 | #else |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 206 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvau) |
Ambroise Vincent | bd39370 | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 207 | #endif |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 208 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, zva) |
| 209 | |
Varun Wadekar | 6e159e7 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 210 | /******************************************************************************* |
| 211 | * Address translation accessor prototypes |
| 212 | ******************************************************************************/ |
| 213 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e1r) |
| 214 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e1w) |
| 215 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e0r) |
| 216 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e0w) |
Douglas Raillard | 0c62883 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 217 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e1r) |
Jeenu Viswambharan | 781f4aa | 2017-10-19 09:15:15 +0100 | [diff] [blame] | 218 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e2r) |
Douglas Raillard | 0c62883 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 219 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e3r) |
Varun Wadekar | 6e159e7 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 220 | |
Alexei Fedorov | 68c7608 | 2020-02-06 17:11:03 +0000 | [diff] [blame] | 221 | /******************************************************************************* |
| 222 | * Strip Pointer Authentication Code |
| 223 | ******************************************************************************/ |
| 224 | DEFINE_SYSOP_PARAM_FUNC(xpaci) |
| 225 | |
Antonio Nino Diaz | c8d64c5 | 2017-01-13 15:03:07 +0000 | [diff] [blame] | 226 | void flush_dcache_range(uintptr_t addr, size_t size); |
| 227 | void clean_dcache_range(uintptr_t addr, size_t size); |
| 228 | void inv_dcache_range(uintptr_t addr, size_t size); |
Masahiro Yamada | 1150416 | 2020-04-02 15:35:19 +0900 | [diff] [blame] | 229 | bool is_dcache_enabled(void); |
Antonio Nino Diaz | c8d64c5 | 2017-01-13 15:03:07 +0000 | [diff] [blame] | 230 | |
| 231 | void dcsw_op_louis(u_register_t op_type); |
| 232 | void dcsw_op_all(u_register_t op_type); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 233 | |
Antonio Nino Diaz | ec0c8fd | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 234 | void disable_mmu_el1(void); |
Dan Handley | c6bc071 | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 235 | void disable_mmu_el3(void); |
Antonio Nino Diaz | ec0c8fd | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 236 | void disable_mmu_icache_el1(void); |
Dan Handley | c6bc071 | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 237 | void disable_mmu_icache_el3(void); |
Andrew Thoelke | 2f5dcfe | 2014-04-28 12:06:18 +0100 | [diff] [blame] | 238 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 239 | /******************************************************************************* |
| 240 | * Misc. accessor prototypes |
| 241 | ******************************************************************************/ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 242 | |
Roberto Vargas | e0f34ea | 2017-09-18 09:53:25 +0100 | [diff] [blame] | 243 | #define write_daifclr(val) SYSREG_WRITE_CONST(daifclr, val) |
| 244 | #define write_daifset(val) SYSREG_WRITE_CONST(daifset, val) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 245 | |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 246 | DEFINE_SYSREG_RW_FUNCS(par_el1) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 247 | DEFINE_SYSREG_READ_FUNC(id_pfr1_el1) |
Tomas Pilar | 7c802c7 | 2020-10-28 15:34:12 +0000 | [diff] [blame^] | 248 | DEFINE_SYSREG_READ_FUNC(id_aa64isar0_el1) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 249 | DEFINE_SYSREG_READ_FUNC(id_aa64isar1_el1) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 250 | DEFINE_SYSREG_READ_FUNC(id_aa64pfr0_el1) |
Dimitris Papastamos | 6ecfda5 | 2019-02-27 11:46:48 +0000 | [diff] [blame] | 251 | DEFINE_SYSREG_READ_FUNC(id_aa64pfr1_el1) |
dp-arm | d832aee | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 252 | DEFINE_SYSREG_READ_FUNC(id_aa64dfr0_el1) |
Varun Wadekar | e4e97f1 | 2019-01-23 09:41:28 -0800 | [diff] [blame] | 253 | DEFINE_SYSREG_READ_FUNC(id_afr0_el1) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 254 | DEFINE_SYSREG_READ_FUNC(CurrentEl) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 255 | DEFINE_SYSREG_READ_FUNC(ctr_el0) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 256 | DEFINE_SYSREG_RW_FUNCS(daif) |
| 257 | DEFINE_SYSREG_RW_FUNCS(spsr_el1) |
| 258 | DEFINE_SYSREG_RW_FUNCS(spsr_el2) |
| 259 | DEFINE_SYSREG_RW_FUNCS(spsr_el3) |
| 260 | DEFINE_SYSREG_RW_FUNCS(elr_el1) |
| 261 | DEFINE_SYSREG_RW_FUNCS(elr_el2) |
| 262 | DEFINE_SYSREG_RW_FUNCS(elr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 263 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 264 | DEFINE_SYSOP_FUNC(wfi) |
| 265 | DEFINE_SYSOP_FUNC(wfe) |
| 266 | DEFINE_SYSOP_FUNC(sev) |
| 267 | DEFINE_SYSOP_TYPE_FUNC(dsb, sy) |
Soby Mathew | 5b1cd43 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 268 | DEFINE_SYSOP_TYPE_FUNC(dmb, sy) |
Juan Castillo | 74eb26e | 2016-01-13 15:01:09 +0000 | [diff] [blame] | 269 | DEFINE_SYSOP_TYPE_FUNC(dmb, st) |
| 270 | DEFINE_SYSOP_TYPE_FUNC(dmb, ld) |
Soby Mathew | 5b1cd43 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 271 | DEFINE_SYSOP_TYPE_FUNC(dsb, ish) |
Dimitris Papastamos | 281a08c | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 272 | DEFINE_SYSOP_TYPE_FUNC(dsb, nsh) |
Antonio Nino Diaz | 0b64f4e | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 273 | DEFINE_SYSOP_TYPE_FUNC(dsb, ishst) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 274 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshld) |
| 275 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshst) |
| 276 | DEFINE_SYSOP_TYPE_FUNC(dmb, osh) |
| 277 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshld) |
| 278 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshst) |
| 279 | DEFINE_SYSOP_TYPE_FUNC(dmb, nsh) |
| 280 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishld) |
Jeenu Viswambharan | d55a445 | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 281 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishst) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 282 | DEFINE_SYSOP_TYPE_FUNC(dmb, ish) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 283 | DEFINE_SYSOP_FUNC(isb) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 284 | |
Antonio Nino Diaz | b4474fa | 2018-11-23 15:04:01 +0000 | [diff] [blame] | 285 | static inline void enable_irq(void) |
| 286 | { |
| 287 | /* |
| 288 | * The compiler memory barrier will prevent the compiler from |
| 289 | * scheduling non-volatile memory access after the write to the |
| 290 | * register. |
| 291 | * |
| 292 | * This could happen if some initialization code issues non-volatile |
| 293 | * accesses to an area used by an interrupt handler, in the assumption |
| 294 | * that it is safe as the interrupts are disabled at the time it does |
| 295 | * that (according to program order). However, non-volatile accesses |
| 296 | * are not necessarily in program order relatively with volatile inline |
| 297 | * assembly statements (and volatile accesses). |
| 298 | */ |
| 299 | COMPILER_BARRIER(); |
| 300 | write_daifclr(DAIF_IRQ_BIT); |
| 301 | isb(); |
| 302 | } |
| 303 | |
| 304 | static inline void enable_fiq(void) |
| 305 | { |
| 306 | COMPILER_BARRIER(); |
| 307 | write_daifclr(DAIF_FIQ_BIT); |
| 308 | isb(); |
| 309 | } |
| 310 | |
| 311 | static inline void enable_serror(void) |
| 312 | { |
| 313 | COMPILER_BARRIER(); |
| 314 | write_daifclr(DAIF_ABT_BIT); |
| 315 | isb(); |
| 316 | } |
| 317 | |
| 318 | static inline void enable_debug_exceptions(void) |
| 319 | { |
| 320 | COMPILER_BARRIER(); |
| 321 | write_daifclr(DAIF_DBG_BIT); |
| 322 | isb(); |
| 323 | } |
| 324 | |
| 325 | static inline void disable_irq(void) |
| 326 | { |
| 327 | COMPILER_BARRIER(); |
| 328 | write_daifset(DAIF_IRQ_BIT); |
| 329 | isb(); |
| 330 | } |
| 331 | |
| 332 | static inline void disable_fiq(void) |
| 333 | { |
| 334 | COMPILER_BARRIER(); |
| 335 | write_daifset(DAIF_FIQ_BIT); |
| 336 | isb(); |
| 337 | } |
| 338 | |
| 339 | static inline void disable_serror(void) |
| 340 | { |
| 341 | COMPILER_BARRIER(); |
| 342 | write_daifset(DAIF_ABT_BIT); |
| 343 | isb(); |
| 344 | } |
| 345 | |
| 346 | static inline void disable_debug_exceptions(void) |
| 347 | { |
| 348 | COMPILER_BARRIER(); |
| 349 | write_daifset(DAIF_DBG_BIT); |
| 350 | isb(); |
| 351 | } |
| 352 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 353 | void __dead2 smc(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3, |
| 354 | uint64_t x4, uint64_t x5, uint64_t x6, uint64_t x7); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 355 | |
| 356 | /******************************************************************************* |
| 357 | * System register accessor prototypes |
| 358 | ******************************************************************************/ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 359 | DEFINE_SYSREG_READ_FUNC(midr_el1) |
| 360 | DEFINE_SYSREG_READ_FUNC(mpidr_el1) |
Antonio Nino Diaz | 0029624 | 2016-12-13 15:28:54 +0000 | [diff] [blame] | 361 | DEFINE_SYSREG_READ_FUNC(id_aa64mmfr0_el1) |
johpow01 | 6cac724 | 2020-04-22 14:05:13 -0500 | [diff] [blame] | 362 | DEFINE_SYSREG_READ_FUNC(id_aa64mmfr1_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 363 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 364 | DEFINE_SYSREG_RW_FUNCS(scr_el3) |
| 365 | DEFINE_SYSREG_RW_FUNCS(hcr_el2) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 366 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 367 | DEFINE_SYSREG_RW_FUNCS(vbar_el1) |
| 368 | DEFINE_SYSREG_RW_FUNCS(vbar_el2) |
| 369 | DEFINE_SYSREG_RW_FUNCS(vbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 370 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 371 | DEFINE_SYSREG_RW_FUNCS(sctlr_el1) |
| 372 | DEFINE_SYSREG_RW_FUNCS(sctlr_el2) |
| 373 | DEFINE_SYSREG_RW_FUNCS(sctlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 374 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 375 | DEFINE_SYSREG_RW_FUNCS(actlr_el1) |
| 376 | DEFINE_SYSREG_RW_FUNCS(actlr_el2) |
| 377 | DEFINE_SYSREG_RW_FUNCS(actlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 378 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 379 | DEFINE_SYSREG_RW_FUNCS(esr_el1) |
| 380 | DEFINE_SYSREG_RW_FUNCS(esr_el2) |
| 381 | DEFINE_SYSREG_RW_FUNCS(esr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 382 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 383 | DEFINE_SYSREG_RW_FUNCS(afsr0_el1) |
| 384 | DEFINE_SYSREG_RW_FUNCS(afsr0_el2) |
| 385 | DEFINE_SYSREG_RW_FUNCS(afsr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 386 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 387 | DEFINE_SYSREG_RW_FUNCS(afsr1_el1) |
| 388 | DEFINE_SYSREG_RW_FUNCS(afsr1_el2) |
| 389 | DEFINE_SYSREG_RW_FUNCS(afsr1_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 390 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 391 | DEFINE_SYSREG_RW_FUNCS(far_el1) |
| 392 | DEFINE_SYSREG_RW_FUNCS(far_el2) |
| 393 | DEFINE_SYSREG_RW_FUNCS(far_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 394 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 395 | DEFINE_SYSREG_RW_FUNCS(mair_el1) |
| 396 | DEFINE_SYSREG_RW_FUNCS(mair_el2) |
| 397 | DEFINE_SYSREG_RW_FUNCS(mair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 398 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 399 | DEFINE_SYSREG_RW_FUNCS(amair_el1) |
| 400 | DEFINE_SYSREG_RW_FUNCS(amair_el2) |
| 401 | DEFINE_SYSREG_RW_FUNCS(amair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 402 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 403 | DEFINE_SYSREG_READ_FUNC(rvbar_el1) |
| 404 | DEFINE_SYSREG_READ_FUNC(rvbar_el2) |
| 405 | DEFINE_SYSREG_READ_FUNC(rvbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 406 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 407 | DEFINE_SYSREG_RW_FUNCS(rmr_el1) |
| 408 | DEFINE_SYSREG_RW_FUNCS(rmr_el2) |
| 409 | DEFINE_SYSREG_RW_FUNCS(rmr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 410 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 411 | DEFINE_SYSREG_RW_FUNCS(tcr_el1) |
| 412 | DEFINE_SYSREG_RW_FUNCS(tcr_el2) |
| 413 | DEFINE_SYSREG_RW_FUNCS(tcr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 414 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 415 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el1) |
| 416 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el2) |
| 417 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 418 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 419 | DEFINE_SYSREG_RW_FUNCS(ttbr1_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 420 | |
Sandrine Bailleux | 85d80e5 | 2015-11-25 17:00:44 +0000 | [diff] [blame] | 421 | DEFINE_SYSREG_RW_FUNCS(vttbr_el2) |
| 422 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 423 | DEFINE_SYSREG_RW_FUNCS(cptr_el2) |
| 424 | DEFINE_SYSREG_RW_FUNCS(cptr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 425 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 426 | DEFINE_SYSREG_RW_FUNCS(cpacr_el1) |
| 427 | DEFINE_SYSREG_RW_FUNCS(cntfrq_el0) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 428 | DEFINE_SYSREG_RW_FUNCS(cnthp_ctl_el2) |
| 429 | DEFINE_SYSREG_RW_FUNCS(cnthp_tval_el2) |
| 430 | DEFINE_SYSREG_RW_FUNCS(cnthp_cval_el2) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 431 | DEFINE_SYSREG_RW_FUNCS(cntps_ctl_el1) |
| 432 | DEFINE_SYSREG_RW_FUNCS(cntps_tval_el1) |
| 433 | DEFINE_SYSREG_RW_FUNCS(cntps_cval_el1) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 434 | DEFINE_SYSREG_RW_FUNCS(cntp_ctl_el0) |
| 435 | DEFINE_SYSREG_RW_FUNCS(cntp_tval_el0) |
| 436 | DEFINE_SYSREG_RW_FUNCS(cntp_cval_el0) |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 437 | DEFINE_SYSREG_READ_FUNC(cntpct_el0) |
| 438 | DEFINE_SYSREG_RW_FUNCS(cnthctl_el2) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 439 | |
Antonio Nino Diaz | 5e96139 | 2018-11-23 13:54:00 +0000 | [diff] [blame] | 440 | #define get_cntp_ctl_enable(x) (((x) >> CNTP_CTL_ENABLE_SHIFT) & \ |
| 441 | CNTP_CTL_ENABLE_MASK) |
| 442 | #define get_cntp_ctl_imask(x) (((x) >> CNTP_CTL_IMASK_SHIFT) & \ |
| 443 | CNTP_CTL_IMASK_MASK) |
| 444 | #define get_cntp_ctl_istatus(x) (((x) >> CNTP_CTL_ISTATUS_SHIFT) & \ |
| 445 | CNTP_CTL_ISTATUS_MASK) |
| 446 | |
| 447 | #define set_cntp_ctl_enable(x) ((x) |= (U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 448 | #define set_cntp_ctl_imask(x) ((x) |= (U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 449 | |
| 450 | #define clr_cntp_ctl_enable(x) ((x) &= ~(U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 451 | #define clr_cntp_ctl_imask(x) ((x) &= ~(U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 452 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 453 | DEFINE_SYSREG_RW_FUNCS(tpidr_el3) |
Soby Mathew | a43d431 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 454 | |
Soby Mathew | 14c0526 | 2014-08-29 14:41:58 +0100 | [diff] [blame] | 455 | DEFINE_SYSREG_RW_FUNCS(cntvoff_el2) |
| 456 | |
Andrew Thoelke | 167a935 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 457 | DEFINE_SYSREG_RW_FUNCS(vpidr_el2) |
| 458 | DEFINE_SYSREG_RW_FUNCS(vmpidr_el2) |
| 459 | |
Soby Mathew | 22f0897 | 2015-01-06 21:36:55 +0000 | [diff] [blame] | 460 | DEFINE_SYSREG_READ_FUNC(isr_el1) |
| 461 | |
David Cunado | 495f3d3 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 462 | DEFINE_SYSREG_RW_FUNCS(mdcr_el2) |
Dimitris Papastamos | 281a08c | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 463 | DEFINE_SYSREG_RW_FUNCS(mdcr_el3) |
David Cunado | 939f66d | 2016-11-25 00:21:59 +0000 | [diff] [blame] | 464 | DEFINE_SYSREG_RW_FUNCS(hstr_el2) |
David Cunado | 3e61b2b | 2017-10-02 17:41:39 +0100 | [diff] [blame] | 465 | DEFINE_SYSREG_RW_FUNCS(pmcr_el0) |
David Cunado | 495f3d3 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 466 | |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 467 | /* GICv3 System Registers */ |
| 468 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 469 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el1, ICC_SRE_EL1) |
| 470 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el2, ICC_SRE_EL2) |
| 471 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el3, ICC_SRE_EL3) |
| 472 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_pmr_el1, ICC_PMR_EL1) |
Jeenu Viswambharan | eb68ea9 | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 473 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_rpr_el1, ICC_RPR_EL1) |
Achin Gupta | df37373 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 474 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el3, ICC_IGRPEN1_EL3) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 475 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el1, ICC_IGRPEN1_EL1) |
Achin Gupta | df37373 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 476 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen0_el1, ICC_IGRPEN0_EL1) |
| 477 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir0_el1, ICC_HPPIR0_EL1) |
| 478 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir1_el1, ICC_HPPIR1_EL1) |
| 479 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar0_el1, ICC_IAR0_EL1) |
| 480 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar1_el1, ICC_IAR1_EL1) |
| 481 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir0_el1, ICC_EOIR0_EL1) |
| 482 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir1_el1, ICC_EOIR1_EL1) |
Jeenu Viswambharan | 8db978b | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 483 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_sgi0r_el1, ICC_SGI0R_EL1) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 484 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sgi1r, ICC_SGI1R) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 485 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 486 | DEFINE_RENAME_SYSREG_READ_FUNC(amcfgr_el0, AMCFGR_EL0) |
| 487 | DEFINE_RENAME_SYSREG_READ_FUNC(amcgcr_el0, AMCGCR_EL0) |
Dimitris Papastamos | 380559c | 2017-10-12 13:02:29 +0100 | [diff] [blame] | 488 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr0_el0, AMCNTENCLR0_EL0) |
| 489 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset0_el0, AMCNTENSET0_EL0) |
| 490 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr1_el0, AMCNTENCLR1_EL0) |
| 491 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset1_el0, AMCNTENSET1_EL0) |
| 492 | |
Jeenu Viswambharan | 5f83591 | 2018-07-31 16:13:33 +0100 | [diff] [blame] | 493 | DEFINE_RENAME_SYSREG_READ_FUNC(mpamidr_el1, MPAMIDR_EL1) |
| 494 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam3_el3, MPAM3_EL3) |
| 495 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam2_el2, MPAM2_EL2) |
| 496 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpamhcr_el2, MPAMHCR_EL2) |
| 497 | |
Dimitris Papastamos | 281a08c | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 498 | DEFINE_RENAME_SYSREG_RW_FUNCS(pmblimitr_el1, PMBLIMITR_EL1) |
Soby Mathew | a43d431 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 499 | |
David Cunado | 1a85337 | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 500 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el3, ZCR_EL3) |
| 501 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el2, ZCR_EL2) |
| 502 | |
Jeenu Viswambharan | 30d81c3 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 503 | DEFINE_RENAME_SYSREG_READ_FUNC(erridr_el1, ERRIDR_EL1) |
| 504 | DEFINE_RENAME_SYSREG_WRITE_FUNC(errselr_el1, ERRSELR_EL1) |
| 505 | |
| 506 | DEFINE_RENAME_SYSREG_READ_FUNC(erxfr_el1, ERXFR_EL1) |
| 507 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxctlr_el1, ERXCTLR_EL1) |
| 508 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxstatus_el1, ERXSTATUS_EL1) |
| 509 | DEFINE_RENAME_SYSREG_READ_FUNC(erxaddr_el1, ERXADDR_EL1) |
| 510 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc0_el1, ERXMISC0_EL1) |
| 511 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc1_el1, ERXMISC1_EL1) |
| 512 | |
Antonio Nino Diaz | 2559b2c | 2019-01-11 11:20:10 +0000 | [diff] [blame] | 513 | /* Armv8.2 Registers */ |
| 514 | DEFINE_RENAME_SYSREG_READ_FUNC(id_aa64mmfr2_el1, ID_AA64MMFR2_EL1) |
| 515 | |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 516 | /* Armv8.3 Pointer Authentication Registers */ |
Antonio Nino Diaz | b86048c | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 517 | DEFINE_RENAME_SYSREG_RW_FUNCS(apiakeyhi_el1, APIAKeyHi_EL1) |
| 518 | DEFINE_RENAME_SYSREG_RW_FUNCS(apiakeylo_el1, APIAKeyLo_EL1) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 519 | |
Justin Chadwell | 9dd9438 | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 520 | /* Armv8.5 MTE Registers */ |
| 521 | DEFINE_RENAME_SYSREG_RW_FUNCS(tfsre0_el1, TFSRE0_EL1) |
| 522 | DEFINE_RENAME_SYSREG_RW_FUNCS(tfsr_el1, TFSR_EL1) |
| 523 | DEFINE_RENAME_SYSREG_RW_FUNCS(rgsr_el1, RGSR_EL1) |
| 524 | DEFINE_RENAME_SYSREG_RW_FUNCS(gcr_el1, GCR_EL1) |
| 525 | |
Tomas Pilar | 7c802c7 | 2020-10-28 15:34:12 +0000 | [diff] [blame^] | 526 | /* Armv8.5 FEAT_RNG Registers */ |
| 527 | DEFINE_SYSREG_READ_FUNC(rndr) |
| 528 | DEFINE_SYSREG_READ_FUNC(rndrrs) |
| 529 | |
Madhukar Pappireddy | 9cf7f35 | 2019-10-30 14:24:39 -0500 | [diff] [blame] | 530 | /* DynamIQ Shared Unit power management */ |
| 531 | DEFINE_RENAME_SYSREG_RW_FUNCS(clusterpwrdn_el1, CLUSTERPWRDN_EL1) |
| 532 | |
Sandrine Bailleux | b3254e8 | 2014-05-09 11:23:11 +0100 | [diff] [blame] | 533 | #define IS_IN_EL(x) \ |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 534 | (GET_EL(read_CurrentEl()) == MODE_EL##x) |
Sandrine Bailleux | b3254e8 | 2014-05-09 11:23:11 +0100 | [diff] [blame] | 535 | |
| 536 | #define IS_IN_EL1() IS_IN_EL(1) |
Antonio Nino Diaz | 932b3ae | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 537 | #define IS_IN_EL2() IS_IN_EL(2) |
Douglas Raillard | 0c62883 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 538 | #define IS_IN_EL3() IS_IN_EL(3) |
| 539 | |
| 540 | static inline unsigned int get_current_el(void) |
| 541 | { |
| 542 | return GET_EL(read_CurrentEl()); |
| 543 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 544 | |
Masahiro Yamada | fd092be | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 545 | static inline unsigned int get_current_el_maybe_constant(void) |
| 546 | { |
| 547 | #if defined(IMAGE_AT_EL1) |
| 548 | return 1; |
| 549 | #elif defined(IMAGE_AT_EL2) |
| 550 | return 2; /* no use-case in TF-A */ |
| 551 | #elif defined(IMAGE_AT_EL3) |
| 552 | return 3; |
| 553 | #else |
| 554 | /* |
| 555 | * If we do not know which exception level this is being built for |
| 556 | * (e.g. built for library), fall back to run-time detection. |
| 557 | */ |
| 558 | return get_current_el(); |
| 559 | #endif |
| 560 | } |
| 561 | |
Jeenu Viswambharan | f4c8aa9 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 562 | /* |
Antonio Nino Diaz | a0fee74 | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 563 | * Check if an EL is implemented from AA64PFR0 register fields. |
Jeenu Viswambharan | f4c8aa9 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 564 | */ |
Antonio Nino Diaz | a0fee74 | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 565 | static inline uint64_t el_implemented(unsigned int el) |
| 566 | { |
| 567 | if (el > 3U) { |
| 568 | return EL_IMPL_NONE; |
| 569 | } else { |
| 570 | unsigned int shift = ID_AA64PFR0_EL1_SHIFT * el; |
| 571 | |
| 572 | return (read_id_aa64pfr0_el1() >> shift) & ID_AA64PFR0_ELX_MASK; |
| 573 | } |
| 574 | } |
| 575 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 576 | /* Previously defined accesor functions with incomplete register names */ |
| 577 | |
| 578 | #define read_current_el() read_CurrentEl() |
| 579 | |
| 580 | #define dsb() dsbsy() |
| 581 | |
| 582 | #define read_midr() read_midr_el1() |
| 583 | |
| 584 | #define read_mpidr() read_mpidr_el1() |
| 585 | |
| 586 | #define read_scr() read_scr_el3() |
| 587 | #define write_scr(_v) write_scr_el3(_v) |
| 588 | |
| 589 | #define read_hcr() read_hcr_el2() |
| 590 | #define write_hcr(_v) write_hcr_el2(_v) |
| 591 | |
Andrew Thoelke | 5c3272a | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 592 | #define read_cpacr() read_cpacr_el1() |
| 593 | #define write_cpacr(_v) write_cpacr_el1(_v) |
Soby Mathew | a43d431 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 594 | |
Madhukar Pappireddy | 9cf7f35 | 2019-10-30 14:24:39 -0500 | [diff] [blame] | 595 | #define read_clusterpwrdn() read_clusterpwrdn_el1() |
| 596 | #define write_clusterpwrdn(_v) write_clusterpwrdn_el1(_v) |
| 597 | |
Manish V Badarkhe | 86ba585 | 2020-07-14 14:43:12 +0100 | [diff] [blame] | 598 | #if ERRATA_SPECULATIVE_AT |
| 599 | /* |
| 600 | * Assuming SCTLR.M bit is already enabled |
| 601 | * 1. Enable page table walk by clearing TCR_EL1.EPDx bits |
| 602 | * 2. Execute AT instruction for lower EL1/0 |
| 603 | * 3. Disable page table walk by setting TCR_EL1.EPDx bits |
| 604 | */ |
| 605 | #define AT(_at_inst, _va) \ |
| 606 | { \ |
| 607 | assert((read_sctlr_el1() & SCTLR_M_BIT) != 0ULL); \ |
| 608 | write_tcr_el1(read_tcr_el1() & ~(TCR_EPD0_BIT | TCR_EPD1_BIT)); \ |
| 609 | isb(); \ |
| 610 | _at_inst(_va); \ |
| 611 | write_tcr_el1(read_tcr_el1() | (TCR_EPD0_BIT | TCR_EPD1_BIT)); \ |
| 612 | isb(); \ |
| 613 | } |
| 614 | #else |
| 615 | #define AT(_at_inst, _va) _at_inst(_va); |
| 616 | #endif |
| 617 | |
Antonio Nino Diaz | a0fee74 | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 618 | #endif /* ARCH_HELPERS_H */ |