Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
johpow01 | fa59c6f | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 2 | * Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 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 | 864ca6f | 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 | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 10 | #include <cdefs.h> |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 11 | #include <stdbool.h> |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 12 | #include <stdint.h> |
Antonio Nino Diaz | 4b32e62 | 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 | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <arch.h> |
| 16 | |
Andrew Thoelke | 3f78dc3 | 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 | 30c231b | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 22 | #define _DEFINE_SYSREG_READ_FUNC(_name, _reg_name) \ |
Masahiro Yamada | 6292d77 | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 23 | static inline u_register_t read_ ## _name(void) \ |
Sandrine Bailleux | 30c231b | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 24 | { \ |
Masahiro Yamada | 6292d77 | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 25 | u_register_t v; \ |
Sandrine Bailleux | 30c231b | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 26 | __asm__ volatile ("mrs %0, " #_reg_name : "=r" (v)); \ |
| 27 | return v; \ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 28 | } |
| 29 | |
Sandrine Bailleux | 30c231b | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 30 | #define _DEFINE_SYSREG_WRITE_FUNC(_name, _reg_name) \ |
Masahiro Yamada | 6292d77 | 2018-02-02 21:19:17 +0900 | [diff] [blame] | 31 | static inline void write_ ## _name(u_register_t v) \ |
Sandrine Bailleux | 30c231b | 2015-01-07 16:36:11 +0000 | [diff] [blame] | 32 | { \ |
| 33 | __asm__ volatile ("msr " #_reg_name ", %0" : : "r" (v)); \ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 34 | } |
| 35 | |
Roberto Vargas | c51cdb7 | 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 | 3f78dc3 | 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 | 92712a5 | 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 | 3f78dc3 | 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 | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 67 | static inline void _op(void) \ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 68 | { \ |
| 69 | __asm__ (#_op); \ |
| 70 | } |
| 71 | |
Alexei Fedorov | b8f26e9 | 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 | 3f78dc3 | 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 | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 81 | static inline void _op ## _type(void) \ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 82 | { \ |
Andre Przywara | 5c29cba | 2020-10-16 18:19:03 +0100 | [diff] [blame] | 83 | __asm__ (#_op " " #_type : : : "memory"); \ |
Andrew Thoelke | 3f78dc3 | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 96 | |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 97 | #if ERRATA_A57_813419 || ERRATA_A76_1286807 |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 98 | /* |
| 99 | * Define function for TLBI instruction with type specifier that implements |
Soby Mathew | 16d006b | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 102 | */ |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 103 | #define DEFINE_TLBIOP_ERRATA_TYPE_FUNC(_type)\ |
Antonio Nino Diaz | 3f13c35 | 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 | 16d006b | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 115 | */ |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 116 | #define DEFINE_TLBIOP_ERRATA_TYPE_PARAM_FUNC(_type) \ |
Antonio Nino Diaz | 3f13c35 | 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 | f5fdfbc | 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 | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 137 | #if ERRATA_A57_813419 |
Andrew Thoelke | 3f78dc3 | 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 | 16d006b | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 153 | #else |
Soby Mathew | 16d006b | 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 | 3f78dc3 | 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 | 16d006b | 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 | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 163 | #if ERRATA_A57_813419 |
Antonio Nino Diaz | ac99803 | 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 | 16d006b | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 177 | #else |
Soby Mathew | 16d006b | 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 | ac99803 | 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 | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 184 | #endif |
Antonio Nino Diaz | ac99803 | 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 | 3f78dc3 | 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 | f5fdfbc | 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 | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 194 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, csw) |
Ambroise Vincent | f5fdfbc | 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 | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 199 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvac) |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 200 | #endif |
Andrew Thoelke | 3f78dc3 | 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 | f5fdfbc | 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 | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 206 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvau) |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 207 | #endif |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 208 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, zva) |
| 209 | |
Varun Wadekar | 97625e3 | 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 | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 217 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e1r) |
Jeenu Viswambharan | 1dc771b | 2017-10-19 09:15:15 +0100 | [diff] [blame] | 218 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e2r) |
Douglas Raillard | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 219 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e3r) |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 220 | |
Alexei Fedorov | b8f26e9 | 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 | e40306b | 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 | 019b4f8 | 2020-04-02 15:35:19 +0900 | [diff] [blame] | 229 | bool is_dcache_enabled(void); |
Antonio Nino Diaz | e40306b | 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 | 4613d5f | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 234 | void disable_mmu_el1(void); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 235 | void disable_mmu_el3(void); |
Antonio Nino Diaz | 4613d5f | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 236 | void disable_mmu_icache_el1(void); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 237 | void disable_mmu_icache_el3(void); |
Andrew Thoelke | 438c63a | 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 | c51cdb7 | 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 | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 246 | DEFINE_SYSREG_RW_FUNCS(par_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 247 | DEFINE_SYSREG_READ_FUNC(id_pfr1_el1) |
Tomas Pilar | 6fd816e | 2020-10-28 15:34:12 +0000 | [diff] [blame] | 248 | DEFINE_SYSREG_READ_FUNC(id_aa64isar0_el1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 249 | DEFINE_SYSREG_READ_FUNC(id_aa64isar1_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 250 | DEFINE_SYSREG_READ_FUNC(id_aa64pfr0_el1) |
Dimitris Papastamos | b091eb9 | 2019-02-27 11:46:48 +0000 | [diff] [blame] | 251 | DEFINE_SYSREG_READ_FUNC(id_aa64pfr1_el1) |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 252 | DEFINE_SYSREG_READ_FUNC(id_aa64dfr0_el1) |
Varun Wadekar | d1301a9 | 2019-01-23 09:41:28 -0800 | [diff] [blame] | 253 | DEFINE_SYSREG_READ_FUNC(id_afr0_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 254 | DEFINE_SYSREG_READ_FUNC(CurrentEl) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 255 | DEFINE_SYSREG_READ_FUNC(ctr_el0) |
Andrew Thoelke | 3f78dc3 | 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) |
Venkatesh Yadav Abbarapu | f80014d | 2020-11-27 02:58:24 -0700 | [diff] [blame] | 263 | DEFINE_SYSREG_RW_FUNCS(mdccsr_el0) |
| 264 | DEFINE_SYSREG_RW_FUNCS(dbgdtrrx_el0) |
| 265 | DEFINE_SYSREG_RW_FUNCS(dbgdtrtx_el0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 266 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 267 | DEFINE_SYSOP_FUNC(wfi) |
| 268 | DEFINE_SYSOP_FUNC(wfe) |
| 269 | DEFINE_SYSOP_FUNC(sev) |
| 270 | DEFINE_SYSOP_TYPE_FUNC(dsb, sy) |
Soby Mathew | ed99566 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 271 | DEFINE_SYSOP_TYPE_FUNC(dmb, sy) |
Juan Castillo | 2e86cb1 | 2016-01-13 15:01:09 +0000 | [diff] [blame] | 272 | DEFINE_SYSOP_TYPE_FUNC(dmb, st) |
| 273 | DEFINE_SYSOP_TYPE_FUNC(dmb, ld) |
Soby Mathew | ed99566 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 274 | DEFINE_SYSOP_TYPE_FUNC(dsb, ish) |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 275 | DEFINE_SYSOP_TYPE_FUNC(dsb, nsh) |
Antonio Nino Diaz | ac99803 | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 276 | DEFINE_SYSOP_TYPE_FUNC(dsb, ishst) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 277 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshld) |
| 278 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshst) |
| 279 | DEFINE_SYSOP_TYPE_FUNC(dmb, osh) |
| 280 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshld) |
| 281 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshst) |
| 282 | DEFINE_SYSOP_TYPE_FUNC(dmb, nsh) |
| 283 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishld) |
Jeenu Viswambharan | 6250507 | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 284 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishst) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 285 | DEFINE_SYSOP_TYPE_FUNC(dmb, ish) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 286 | DEFINE_SYSOP_FUNC(isb) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 287 | |
Antonio Nino Diaz | b4e3e4b | 2018-11-23 15:04:01 +0000 | [diff] [blame] | 288 | static inline void enable_irq(void) |
| 289 | { |
| 290 | /* |
| 291 | * The compiler memory barrier will prevent the compiler from |
| 292 | * scheduling non-volatile memory access after the write to the |
| 293 | * register. |
| 294 | * |
| 295 | * This could happen if some initialization code issues non-volatile |
| 296 | * accesses to an area used by an interrupt handler, in the assumption |
| 297 | * that it is safe as the interrupts are disabled at the time it does |
| 298 | * that (according to program order). However, non-volatile accesses |
| 299 | * are not necessarily in program order relatively with volatile inline |
| 300 | * assembly statements (and volatile accesses). |
| 301 | */ |
| 302 | COMPILER_BARRIER(); |
| 303 | write_daifclr(DAIF_IRQ_BIT); |
| 304 | isb(); |
| 305 | } |
| 306 | |
| 307 | static inline void enable_fiq(void) |
| 308 | { |
| 309 | COMPILER_BARRIER(); |
| 310 | write_daifclr(DAIF_FIQ_BIT); |
| 311 | isb(); |
| 312 | } |
| 313 | |
| 314 | static inline void enable_serror(void) |
| 315 | { |
| 316 | COMPILER_BARRIER(); |
| 317 | write_daifclr(DAIF_ABT_BIT); |
| 318 | isb(); |
| 319 | } |
| 320 | |
| 321 | static inline void enable_debug_exceptions(void) |
| 322 | { |
| 323 | COMPILER_BARRIER(); |
| 324 | write_daifclr(DAIF_DBG_BIT); |
| 325 | isb(); |
| 326 | } |
| 327 | |
| 328 | static inline void disable_irq(void) |
| 329 | { |
| 330 | COMPILER_BARRIER(); |
| 331 | write_daifset(DAIF_IRQ_BIT); |
| 332 | isb(); |
| 333 | } |
| 334 | |
| 335 | static inline void disable_fiq(void) |
| 336 | { |
| 337 | COMPILER_BARRIER(); |
| 338 | write_daifset(DAIF_FIQ_BIT); |
| 339 | isb(); |
| 340 | } |
| 341 | |
| 342 | static inline void disable_serror(void) |
| 343 | { |
| 344 | COMPILER_BARRIER(); |
| 345 | write_daifset(DAIF_ABT_BIT); |
| 346 | isb(); |
| 347 | } |
| 348 | |
| 349 | static inline void disable_debug_exceptions(void) |
| 350 | { |
| 351 | COMPILER_BARRIER(); |
| 352 | write_daifset(DAIF_DBG_BIT); |
| 353 | isb(); |
| 354 | } |
| 355 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 356 | void __dead2 smc(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3, |
| 357 | uint64_t x4, uint64_t x5, uint64_t x6, uint64_t x7); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 358 | |
| 359 | /******************************************************************************* |
| 360 | * System register accessor prototypes |
| 361 | ******************************************************************************/ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 362 | DEFINE_SYSREG_READ_FUNC(midr_el1) |
| 363 | DEFINE_SYSREG_READ_FUNC(mpidr_el1) |
Antonio Nino Diaz | d1beee2 | 2016-12-13 15:28:54 +0000 | [diff] [blame] | 364 | DEFINE_SYSREG_READ_FUNC(id_aa64mmfr0_el1) |
johpow01 | 3e24c16 | 2020-04-22 14:05:13 -0500 | [diff] [blame] | 365 | DEFINE_SYSREG_READ_FUNC(id_aa64mmfr1_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 366 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 367 | DEFINE_SYSREG_RW_FUNCS(scr_el3) |
| 368 | DEFINE_SYSREG_RW_FUNCS(hcr_el2) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 369 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 370 | DEFINE_SYSREG_RW_FUNCS(vbar_el1) |
| 371 | DEFINE_SYSREG_RW_FUNCS(vbar_el2) |
| 372 | DEFINE_SYSREG_RW_FUNCS(vbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 373 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 374 | DEFINE_SYSREG_RW_FUNCS(sctlr_el1) |
| 375 | DEFINE_SYSREG_RW_FUNCS(sctlr_el2) |
| 376 | DEFINE_SYSREG_RW_FUNCS(sctlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 377 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 378 | DEFINE_SYSREG_RW_FUNCS(actlr_el1) |
| 379 | DEFINE_SYSREG_RW_FUNCS(actlr_el2) |
| 380 | DEFINE_SYSREG_RW_FUNCS(actlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 381 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 382 | DEFINE_SYSREG_RW_FUNCS(esr_el1) |
| 383 | DEFINE_SYSREG_RW_FUNCS(esr_el2) |
| 384 | DEFINE_SYSREG_RW_FUNCS(esr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 385 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 386 | DEFINE_SYSREG_RW_FUNCS(afsr0_el1) |
| 387 | DEFINE_SYSREG_RW_FUNCS(afsr0_el2) |
| 388 | DEFINE_SYSREG_RW_FUNCS(afsr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 389 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 390 | DEFINE_SYSREG_RW_FUNCS(afsr1_el1) |
| 391 | DEFINE_SYSREG_RW_FUNCS(afsr1_el2) |
| 392 | DEFINE_SYSREG_RW_FUNCS(afsr1_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 393 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 394 | DEFINE_SYSREG_RW_FUNCS(far_el1) |
| 395 | DEFINE_SYSREG_RW_FUNCS(far_el2) |
| 396 | DEFINE_SYSREG_RW_FUNCS(far_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 397 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 398 | DEFINE_SYSREG_RW_FUNCS(mair_el1) |
| 399 | DEFINE_SYSREG_RW_FUNCS(mair_el2) |
| 400 | DEFINE_SYSREG_RW_FUNCS(mair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 401 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 402 | DEFINE_SYSREG_RW_FUNCS(amair_el1) |
| 403 | DEFINE_SYSREG_RW_FUNCS(amair_el2) |
| 404 | DEFINE_SYSREG_RW_FUNCS(amair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 405 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 406 | DEFINE_SYSREG_READ_FUNC(rvbar_el1) |
| 407 | DEFINE_SYSREG_READ_FUNC(rvbar_el2) |
| 408 | DEFINE_SYSREG_READ_FUNC(rvbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 409 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 410 | DEFINE_SYSREG_RW_FUNCS(rmr_el1) |
| 411 | DEFINE_SYSREG_RW_FUNCS(rmr_el2) |
| 412 | DEFINE_SYSREG_RW_FUNCS(rmr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 413 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 414 | DEFINE_SYSREG_RW_FUNCS(tcr_el1) |
| 415 | DEFINE_SYSREG_RW_FUNCS(tcr_el2) |
| 416 | DEFINE_SYSREG_RW_FUNCS(tcr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 417 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 418 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el1) |
| 419 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el2) |
| 420 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 421 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 422 | DEFINE_SYSREG_RW_FUNCS(ttbr1_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 423 | |
Sandrine Bailleux | 8b0eafe | 2015-11-25 17:00:44 +0000 | [diff] [blame] | 424 | DEFINE_SYSREG_RW_FUNCS(vttbr_el2) |
| 425 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 426 | DEFINE_SYSREG_RW_FUNCS(cptr_el2) |
| 427 | DEFINE_SYSREG_RW_FUNCS(cptr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 428 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 429 | DEFINE_SYSREG_RW_FUNCS(cpacr_el1) |
| 430 | DEFINE_SYSREG_RW_FUNCS(cntfrq_el0) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 431 | DEFINE_SYSREG_RW_FUNCS(cnthp_ctl_el2) |
| 432 | DEFINE_SYSREG_RW_FUNCS(cnthp_tval_el2) |
| 433 | DEFINE_SYSREG_RW_FUNCS(cnthp_cval_el2) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 434 | DEFINE_SYSREG_RW_FUNCS(cntps_ctl_el1) |
| 435 | DEFINE_SYSREG_RW_FUNCS(cntps_tval_el1) |
| 436 | DEFINE_SYSREG_RW_FUNCS(cntps_cval_el1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 437 | DEFINE_SYSREG_RW_FUNCS(cntp_ctl_el0) |
| 438 | DEFINE_SYSREG_RW_FUNCS(cntp_tval_el0) |
| 439 | DEFINE_SYSREG_RW_FUNCS(cntp_cval_el0) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 440 | DEFINE_SYSREG_READ_FUNC(cntpct_el0) |
| 441 | DEFINE_SYSREG_RW_FUNCS(cnthctl_el2) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 442 | |
Antonio Nino Diaz | dc4ed3d | 2018-11-23 13:54:00 +0000 | [diff] [blame] | 443 | #define get_cntp_ctl_enable(x) (((x) >> CNTP_CTL_ENABLE_SHIFT) & \ |
| 444 | CNTP_CTL_ENABLE_MASK) |
| 445 | #define get_cntp_ctl_imask(x) (((x) >> CNTP_CTL_IMASK_SHIFT) & \ |
| 446 | CNTP_CTL_IMASK_MASK) |
| 447 | #define get_cntp_ctl_istatus(x) (((x) >> CNTP_CTL_ISTATUS_SHIFT) & \ |
| 448 | CNTP_CTL_ISTATUS_MASK) |
| 449 | |
| 450 | #define set_cntp_ctl_enable(x) ((x) |= (U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 451 | #define set_cntp_ctl_imask(x) ((x) |= (U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 452 | |
| 453 | #define clr_cntp_ctl_enable(x) ((x) &= ~(U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 454 | #define clr_cntp_ctl_imask(x) ((x) &= ~(U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 455 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 456 | DEFINE_SYSREG_RW_FUNCS(tpidr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 457 | |
Soby Mathew | feddfcf | 2014-08-29 14:41:58 +0100 | [diff] [blame] | 458 | DEFINE_SYSREG_RW_FUNCS(cntvoff_el2) |
| 459 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 460 | DEFINE_SYSREG_RW_FUNCS(vpidr_el2) |
| 461 | DEFINE_SYSREG_RW_FUNCS(vmpidr_el2) |
| 462 | |
Soby Mathew | 26fb90e | 2015-01-06 21:36:55 +0000 | [diff] [blame] | 463 | DEFINE_SYSREG_READ_FUNC(isr_el1) |
| 464 | |
David Cunado | 5f55e28 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 465 | DEFINE_SYSREG_RW_FUNCS(mdcr_el2) |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 466 | DEFINE_SYSREG_RW_FUNCS(mdcr_el3) |
David Cunado | c14b08e | 2016-11-25 00:21:59 +0000 | [diff] [blame] | 467 | DEFINE_SYSREG_RW_FUNCS(hstr_el2) |
David Cunado | 4168f2f | 2017-10-02 17:41:39 +0100 | [diff] [blame] | 468 | DEFINE_SYSREG_RW_FUNCS(pmcr_el0) |
David Cunado | 5f55e28 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 469 | |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 470 | /* GICv3 System Registers */ |
| 471 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 472 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el1, ICC_SRE_EL1) |
| 473 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el2, ICC_SRE_EL2) |
| 474 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el3, ICC_SRE_EL3) |
| 475 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_pmr_el1, ICC_PMR_EL1) |
Jeenu Viswambharan | b1e957e | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 476 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_rpr_el1, ICC_RPR_EL1) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 477 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el3, ICC_IGRPEN1_EL3) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 478 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el1, ICC_IGRPEN1_EL1) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 479 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen0_el1, ICC_IGRPEN0_EL1) |
| 480 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir0_el1, ICC_HPPIR0_EL1) |
| 481 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir1_el1, ICC_HPPIR1_EL1) |
| 482 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar0_el1, ICC_IAR0_EL1) |
| 483 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar1_el1, ICC_IAR1_EL1) |
| 484 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir0_el1, ICC_EOIR0_EL1) |
| 485 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir1_el1, ICC_EOIR1_EL1) |
Jeenu Viswambharan | ab14e9b | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 486 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_sgi0r_el1, ICC_SGI0R_EL1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 487 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sgi1r, ICC_SGI1R) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 488 | |
Alexei Fedorov | 7e6306b | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 489 | DEFINE_RENAME_SYSREG_READ_FUNC(amcfgr_el0, AMCFGR_EL0) |
| 490 | DEFINE_RENAME_SYSREG_READ_FUNC(amcgcr_el0, AMCGCR_EL0) |
johpow01 | fa59c6f | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 491 | DEFINE_RENAME_SYSREG_READ_FUNC(amcg1idr_el0, AMCG1IDR_EL0) |
| 492 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcr_el0, AMCR_EL0) |
Dimitris Papastamos | e08005a | 2017-10-12 13:02:29 +0100 | [diff] [blame] | 493 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr0_el0, AMCNTENCLR0_EL0) |
| 494 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset0_el0, AMCNTENSET0_EL0) |
| 495 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr1_el0, AMCNTENCLR1_EL0) |
| 496 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset1_el0, AMCNTENSET1_EL0) |
| 497 | |
Jeenu Viswambharan | 2da918c | 2018-07-31 16:13:33 +0100 | [diff] [blame] | 498 | DEFINE_RENAME_SYSREG_READ_FUNC(mpamidr_el1, MPAMIDR_EL1) |
| 499 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam3_el3, MPAM3_EL3) |
| 500 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam2_el2, MPAM2_EL2) |
| 501 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpamhcr_el2, MPAMHCR_EL2) |
| 502 | |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 503 | DEFINE_RENAME_SYSREG_RW_FUNCS(pmblimitr_el1, PMBLIMITR_EL1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 504 | |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 505 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el3, ZCR_EL3) |
| 506 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el2, ZCR_EL2) |
| 507 | |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 508 | DEFINE_RENAME_SYSREG_READ_FUNC(erridr_el1, ERRIDR_EL1) |
| 509 | DEFINE_RENAME_SYSREG_WRITE_FUNC(errselr_el1, ERRSELR_EL1) |
| 510 | |
| 511 | DEFINE_RENAME_SYSREG_READ_FUNC(erxfr_el1, ERXFR_EL1) |
| 512 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxctlr_el1, ERXCTLR_EL1) |
| 513 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxstatus_el1, ERXSTATUS_EL1) |
| 514 | DEFINE_RENAME_SYSREG_READ_FUNC(erxaddr_el1, ERXADDR_EL1) |
| 515 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc0_el1, ERXMISC0_EL1) |
| 516 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc1_el1, ERXMISC1_EL1) |
| 517 | |
Antonio Nino Diaz | c326c34 | 2019-01-11 11:20:10 +0000 | [diff] [blame] | 518 | /* Armv8.2 Registers */ |
| 519 | DEFINE_RENAME_SYSREG_READ_FUNC(id_aa64mmfr2_el1, ID_AA64MMFR2_EL1) |
| 520 | |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 521 | /* Armv8.3 Pointer Authentication Registers */ |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 522 | DEFINE_RENAME_SYSREG_RW_FUNCS(apiakeyhi_el1, APIAKeyHi_EL1) |
| 523 | DEFINE_RENAME_SYSREG_RW_FUNCS(apiakeylo_el1, APIAKeyLo_EL1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 524 | |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 525 | /* Armv8.5 MTE Registers */ |
| 526 | DEFINE_RENAME_SYSREG_RW_FUNCS(tfsre0_el1, TFSRE0_EL1) |
| 527 | DEFINE_RENAME_SYSREG_RW_FUNCS(tfsr_el1, TFSR_EL1) |
| 528 | DEFINE_RENAME_SYSREG_RW_FUNCS(rgsr_el1, RGSR_EL1) |
| 529 | DEFINE_RENAME_SYSREG_RW_FUNCS(gcr_el1, GCR_EL1) |
| 530 | |
Tomas Pilar | 6fd816e | 2020-10-28 15:34:12 +0000 | [diff] [blame] | 531 | /* Armv8.5 FEAT_RNG Registers */ |
| 532 | DEFINE_SYSREG_READ_FUNC(rndr) |
| 533 | DEFINE_SYSREG_READ_FUNC(rndrrs) |
| 534 | |
Madhukar Pappireddy | 90d6532 | 2019-10-30 14:24:39 -0500 | [diff] [blame] | 535 | /* DynamIQ Shared Unit power management */ |
| 536 | DEFINE_RENAME_SYSREG_RW_FUNCS(clusterpwrdn_el1, CLUSTERPWRDN_EL1) |
| 537 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 538 | #define IS_IN_EL(x) \ |
| 539 | (GET_EL(read_CurrentEl()) == MODE_EL##x) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 540 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 541 | #define IS_IN_EL1() IS_IN_EL(1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 542 | #define IS_IN_EL2() IS_IN_EL(2) |
Douglas Raillard | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 543 | #define IS_IN_EL3() IS_IN_EL(3) |
| 544 | |
| 545 | static inline unsigned int get_current_el(void) |
| 546 | { |
| 547 | return GET_EL(read_CurrentEl()); |
| 548 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 549 | |
Masahiro Yamada | 8a6e961 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 550 | static inline unsigned int get_current_el_maybe_constant(void) |
| 551 | { |
| 552 | #if defined(IMAGE_AT_EL1) |
| 553 | return 1; |
| 554 | #elif defined(IMAGE_AT_EL2) |
| 555 | return 2; /* no use-case in TF-A */ |
| 556 | #elif defined(IMAGE_AT_EL3) |
| 557 | return 3; |
| 558 | #else |
| 559 | /* |
| 560 | * If we do not know which exception level this is being built for |
| 561 | * (e.g. built for library), fall back to run-time detection. |
| 562 | */ |
| 563 | return get_current_el(); |
| 564 | #endif |
| 565 | } |
| 566 | |
Jeenu Viswambharan | 2a9b882 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 567 | /* |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 568 | * Check if an EL is implemented from AA64PFR0 register fields. |
Jeenu Viswambharan | 2a9b882 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 569 | */ |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 570 | static inline uint64_t el_implemented(unsigned int el) |
| 571 | { |
| 572 | if (el > 3U) { |
| 573 | return EL_IMPL_NONE; |
| 574 | } else { |
| 575 | unsigned int shift = ID_AA64PFR0_EL1_SHIFT * el; |
| 576 | |
| 577 | return (read_id_aa64pfr0_el1() >> shift) & ID_AA64PFR0_ELX_MASK; |
| 578 | } |
| 579 | } |
| 580 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 581 | /* Previously defined accesor functions with incomplete register names */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 582 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 583 | #define read_current_el() read_CurrentEl() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 584 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 585 | #define dsb() dsbsy() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 586 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 587 | #define read_midr() read_midr_el1() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 588 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 589 | #define read_mpidr() read_mpidr_el1() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 590 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 591 | #define read_scr() read_scr_el3() |
| 592 | #define write_scr(_v) write_scr_el3(_v) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 593 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 594 | #define read_hcr() read_hcr_el2() |
| 595 | #define write_hcr(_v) write_hcr_el2(_v) |
Sandrine Bailleux | 25232af | 2014-05-09 11:23:11 +0100 | [diff] [blame] | 596 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 597 | #define read_cpacr() read_cpacr_el1() |
| 598 | #define write_cpacr(_v) write_cpacr_el1(_v) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 599 | |
Madhukar Pappireddy | 90d6532 | 2019-10-30 14:24:39 -0500 | [diff] [blame] | 600 | #define read_clusterpwrdn() read_clusterpwrdn_el1() |
| 601 | #define write_clusterpwrdn(_v) write_clusterpwrdn_el1(_v) |
| 602 | |
Manish V Badarkhe | bde5c95 | 2020-07-14 14:43:12 +0100 | [diff] [blame] | 603 | #if ERRATA_SPECULATIVE_AT |
| 604 | /* |
| 605 | * Assuming SCTLR.M bit is already enabled |
| 606 | * 1. Enable page table walk by clearing TCR_EL1.EPDx bits |
| 607 | * 2. Execute AT instruction for lower EL1/0 |
| 608 | * 3. Disable page table walk by setting TCR_EL1.EPDx bits |
| 609 | */ |
| 610 | #define AT(_at_inst, _va) \ |
| 611 | { \ |
| 612 | assert((read_sctlr_el1() & SCTLR_M_BIT) != 0ULL); \ |
| 613 | write_tcr_el1(read_tcr_el1() & ~(TCR_EPD0_BIT | TCR_EPD1_BIT)); \ |
| 614 | isb(); \ |
| 615 | _at_inst(_va); \ |
| 616 | write_tcr_el1(read_tcr_el1() | (TCR_EPD0_BIT | TCR_EPD1_BIT)); \ |
| 617 | isb(); \ |
| 618 | } |
| 619 | #else |
| 620 | #define AT(_at_inst, _va) _at_inst(_va); |
| 621 | #endif |
| 622 | |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 623 | #endif /* ARCH_HELPERS_H */ |