Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, 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 | |
| 72 | /* Define function for system instruction with type specifier */ |
| 73 | #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ |
Juan Castillo | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 74 | static inline void _op ## _type(void) \ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 75 | { \ |
| 76 | __asm__ (#_op " " #_type); \ |
| 77 | } |
| 78 | |
| 79 | /* Define function for system instruction with register parameter */ |
| 80 | #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ |
| 81 | static inline void _op ## _type(uint64_t v) \ |
| 82 | { \ |
| 83 | __asm__ (#_op " " #_type ", %0" : : "r" (v)); \ |
| 84 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 85 | |
| 86 | /******************************************************************************* |
| 87 | * TLB maintenance accessor prototypes |
| 88 | ******************************************************************************/ |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 89 | |
| 90 | #if ERRATA_A57_813419 |
| 91 | /* |
| 92 | * Define function for TLBI instruction with type specifier that implements |
| 93 | * the workaround for errata 813419 of Cortex-A57. |
| 94 | */ |
| 95 | #define DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_FUNC(_type)\ |
| 96 | static inline void tlbi ## _type(void) \ |
| 97 | { \ |
| 98 | __asm__("tlbi " #_type "\n" \ |
| 99 | "dsb ish\n" \ |
| 100 | "tlbi " #_type); \ |
| 101 | } |
| 102 | |
| 103 | /* |
| 104 | * Define function for TLBI instruction with register parameter that implements |
| 105 | * the workaround for errata 813419 of Cortex-A57. |
| 106 | */ |
| 107 | #define DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_PARAM_FUNC(_type) \ |
| 108 | static inline void tlbi ## _type(uint64_t v) \ |
| 109 | { \ |
| 110 | __asm__("tlbi " #_type ", %0\n" \ |
| 111 | "dsb ish\n" \ |
| 112 | "tlbi " #_type ", %0" : : "r" (v)); \ |
| 113 | } |
| 114 | #endif /* ERRATA_A57_813419 */ |
| 115 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 116 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1) |
| 117 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle1is) |
| 118 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2) |
| 119 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle2is) |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 120 | #if ERRATA_A57_813419 |
| 121 | DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_FUNC(alle3) |
| 122 | DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_FUNC(alle3is) |
| 123 | #else |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 124 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle3) |
| 125 | DEFINE_SYSOP_TYPE_FUNC(tlbi, alle3is) |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 126 | #endif |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 127 | DEFINE_SYSOP_TYPE_FUNC(tlbi, vmalle1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 128 | |
Antonio Nino Diaz | ac99803 | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 129 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaae1is) |
| 130 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vaale1is) |
| 131 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vae2is) |
| 132 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vale2is) |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 133 | #if ERRATA_A57_813419 |
| 134 | DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_PARAM_FUNC(vae3is) |
| 135 | DEFINE_TLBIOP_ERRATA_A57_813419_TYPE_PARAM_FUNC(vale3is) |
| 136 | #else |
Antonio Nino Diaz | ac99803 | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 137 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vae3is) |
| 138 | DEFINE_SYSOP_TYPE_PARAM_FUNC(tlbi, vale3is) |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 139 | #endif |
Antonio Nino Diaz | ac99803 | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 140 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 141 | /******************************************************************************* |
| 142 | * Cache maintenance accessor prototypes |
| 143 | ******************************************************************************/ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 144 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, isw) |
| 145 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cisw) |
| 146 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, csw) |
| 147 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvac) |
| 148 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, ivac) |
| 149 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, civac) |
| 150 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, cvau) |
| 151 | DEFINE_SYSOP_TYPE_PARAM_FUNC(dc, zva) |
| 152 | |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 153 | /******************************************************************************* |
| 154 | * Address translation accessor prototypes |
| 155 | ******************************************************************************/ |
| 156 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e1r) |
| 157 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e1w) |
| 158 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e0r) |
| 159 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s12e0w) |
Douglas Raillard | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 160 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e1r) |
Jeenu Viswambharan | 1dc771b | 2017-10-19 09:15:15 +0100 | [diff] [blame] | 161 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e2r) |
Douglas Raillard | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 162 | DEFINE_SYSOP_TYPE_PARAM_FUNC(at, s1e3r) |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 163 | |
Antonio Nino Diaz | e40306b | 2017-01-13 15:03:07 +0000 | [diff] [blame] | 164 | void flush_dcache_range(uintptr_t addr, size_t size); |
| 165 | void clean_dcache_range(uintptr_t addr, size_t size); |
| 166 | void inv_dcache_range(uintptr_t addr, size_t size); |
| 167 | |
| 168 | void dcsw_op_louis(u_register_t op_type); |
| 169 | void dcsw_op_all(u_register_t op_type); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 170 | |
Antonio Nino Diaz | 4613d5f | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 171 | void disable_mmu_el1(void); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 172 | void disable_mmu_el3(void); |
Antonio Nino Diaz | 4613d5f | 2017-10-05 15:19:42 +0100 | [diff] [blame] | 173 | void disable_mmu_icache_el1(void); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 174 | void disable_mmu_icache_el3(void); |
Andrew Thoelke | 438c63a | 2014-04-28 12:06:18 +0100 | [diff] [blame] | 175 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 176 | /******************************************************************************* |
| 177 | * Misc. accessor prototypes |
| 178 | ******************************************************************************/ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 179 | |
Roberto Vargas | c51cdb7 | 2017-09-18 09:53:25 +0100 | [diff] [blame] | 180 | #define write_daifclr(val) SYSREG_WRITE_CONST(daifclr, val) |
| 181 | #define write_daifset(val) SYSREG_WRITE_CONST(daifset, val) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 182 | |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 183 | DEFINE_SYSREG_RW_FUNCS(par_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 184 | DEFINE_SYSREG_READ_FUNC(id_pfr1_el1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 185 | DEFINE_SYSREG_READ_FUNC(id_aa64isar1_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 186 | DEFINE_SYSREG_READ_FUNC(id_aa64pfr0_el1) |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 187 | DEFINE_SYSREG_READ_FUNC(id_aa64dfr0_el1) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 188 | DEFINE_SYSREG_READ_FUNC(CurrentEl) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 189 | DEFINE_SYSREG_READ_FUNC(ctr_el0) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 190 | DEFINE_SYSREG_RW_FUNCS(daif) |
| 191 | DEFINE_SYSREG_RW_FUNCS(spsr_el1) |
| 192 | DEFINE_SYSREG_RW_FUNCS(spsr_el2) |
| 193 | DEFINE_SYSREG_RW_FUNCS(spsr_el3) |
| 194 | DEFINE_SYSREG_RW_FUNCS(elr_el1) |
| 195 | DEFINE_SYSREG_RW_FUNCS(elr_el2) |
| 196 | DEFINE_SYSREG_RW_FUNCS(elr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 197 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 198 | DEFINE_SYSOP_FUNC(wfi) |
| 199 | DEFINE_SYSOP_FUNC(wfe) |
| 200 | DEFINE_SYSOP_FUNC(sev) |
| 201 | DEFINE_SYSOP_TYPE_FUNC(dsb, sy) |
Soby Mathew | ed99566 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 202 | DEFINE_SYSOP_TYPE_FUNC(dmb, sy) |
Juan Castillo | 2e86cb1 | 2016-01-13 15:01:09 +0000 | [diff] [blame] | 203 | DEFINE_SYSOP_TYPE_FUNC(dmb, st) |
| 204 | DEFINE_SYSOP_TYPE_FUNC(dmb, ld) |
Soby Mathew | ed99566 | 2014-12-30 16:11:42 +0000 | [diff] [blame] | 205 | DEFINE_SYSOP_TYPE_FUNC(dsb, ish) |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 206 | DEFINE_SYSOP_TYPE_FUNC(dsb, nsh) |
Antonio Nino Diaz | ac99803 | 2017-02-27 17:23:54 +0000 | [diff] [blame] | 207 | DEFINE_SYSOP_TYPE_FUNC(dsb, ishst) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 208 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshld) |
| 209 | DEFINE_SYSOP_TYPE_FUNC(dmb, oshst) |
| 210 | DEFINE_SYSOP_TYPE_FUNC(dmb, osh) |
| 211 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshld) |
| 212 | DEFINE_SYSOP_TYPE_FUNC(dmb, nshst) |
| 213 | DEFINE_SYSOP_TYPE_FUNC(dmb, nsh) |
| 214 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishld) |
Jeenu Viswambharan | 6250507 | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 215 | DEFINE_SYSOP_TYPE_FUNC(dmb, ishst) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 216 | DEFINE_SYSOP_TYPE_FUNC(dmb, ish) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 217 | DEFINE_SYSOP_FUNC(isb) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 218 | |
Antonio Nino Diaz | b4e3e4b | 2018-11-23 15:04:01 +0000 | [diff] [blame] | 219 | static inline void enable_irq(void) |
| 220 | { |
| 221 | /* |
| 222 | * The compiler memory barrier will prevent the compiler from |
| 223 | * scheduling non-volatile memory access after the write to the |
| 224 | * register. |
| 225 | * |
| 226 | * This could happen if some initialization code issues non-volatile |
| 227 | * accesses to an area used by an interrupt handler, in the assumption |
| 228 | * that it is safe as the interrupts are disabled at the time it does |
| 229 | * that (according to program order). However, non-volatile accesses |
| 230 | * are not necessarily in program order relatively with volatile inline |
| 231 | * assembly statements (and volatile accesses). |
| 232 | */ |
| 233 | COMPILER_BARRIER(); |
| 234 | write_daifclr(DAIF_IRQ_BIT); |
| 235 | isb(); |
| 236 | } |
| 237 | |
| 238 | static inline void enable_fiq(void) |
| 239 | { |
| 240 | COMPILER_BARRIER(); |
| 241 | write_daifclr(DAIF_FIQ_BIT); |
| 242 | isb(); |
| 243 | } |
| 244 | |
| 245 | static inline void enable_serror(void) |
| 246 | { |
| 247 | COMPILER_BARRIER(); |
| 248 | write_daifclr(DAIF_ABT_BIT); |
| 249 | isb(); |
| 250 | } |
| 251 | |
| 252 | static inline void enable_debug_exceptions(void) |
| 253 | { |
| 254 | COMPILER_BARRIER(); |
| 255 | write_daifclr(DAIF_DBG_BIT); |
| 256 | isb(); |
| 257 | } |
| 258 | |
| 259 | static inline void disable_irq(void) |
| 260 | { |
| 261 | COMPILER_BARRIER(); |
| 262 | write_daifset(DAIF_IRQ_BIT); |
| 263 | isb(); |
| 264 | } |
| 265 | |
| 266 | static inline void disable_fiq(void) |
| 267 | { |
| 268 | COMPILER_BARRIER(); |
| 269 | write_daifset(DAIF_FIQ_BIT); |
| 270 | isb(); |
| 271 | } |
| 272 | |
| 273 | static inline void disable_serror(void) |
| 274 | { |
| 275 | COMPILER_BARRIER(); |
| 276 | write_daifset(DAIF_ABT_BIT); |
| 277 | isb(); |
| 278 | } |
| 279 | |
| 280 | static inline void disable_debug_exceptions(void) |
| 281 | { |
| 282 | COMPILER_BARRIER(); |
| 283 | write_daifset(DAIF_DBG_BIT); |
| 284 | isb(); |
| 285 | } |
| 286 | |
Antonio Nino Diaz | 13344de | 2018-11-23 13:54:41 +0000 | [diff] [blame] | 287 | #if !ERROR_DEPRECATED |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 288 | uint32_t get_afflvl_shift(uint32_t); |
| 289 | uint32_t mpidr_mask_lower_afflvls(uint64_t, uint32_t); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 290 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 291 | void __dead2 eret(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3, |
| 292 | uint64_t x4, uint64_t x5, uint64_t x6, uint64_t x7); |
Antonio Nino Diaz | 13344de | 2018-11-23 13:54:41 +0000 | [diff] [blame] | 293 | #endif |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 294 | void __dead2 smc(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3, |
| 295 | uint64_t x4, uint64_t x5, uint64_t x6, uint64_t x7); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 296 | |
| 297 | /******************************************************************************* |
| 298 | * System register accessor prototypes |
| 299 | ******************************************************************************/ |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 300 | DEFINE_SYSREG_READ_FUNC(midr_el1) |
| 301 | DEFINE_SYSREG_READ_FUNC(mpidr_el1) |
Antonio Nino Diaz | d1beee2 | 2016-12-13 15:28:54 +0000 | [diff] [blame] | 302 | DEFINE_SYSREG_READ_FUNC(id_aa64mmfr0_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 303 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 304 | DEFINE_SYSREG_RW_FUNCS(scr_el3) |
| 305 | DEFINE_SYSREG_RW_FUNCS(hcr_el2) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 306 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 307 | DEFINE_SYSREG_RW_FUNCS(vbar_el1) |
| 308 | DEFINE_SYSREG_RW_FUNCS(vbar_el2) |
| 309 | DEFINE_SYSREG_RW_FUNCS(vbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 310 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 311 | DEFINE_SYSREG_RW_FUNCS(sctlr_el1) |
| 312 | DEFINE_SYSREG_RW_FUNCS(sctlr_el2) |
| 313 | DEFINE_SYSREG_RW_FUNCS(sctlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 314 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 315 | DEFINE_SYSREG_RW_FUNCS(actlr_el1) |
| 316 | DEFINE_SYSREG_RW_FUNCS(actlr_el2) |
| 317 | DEFINE_SYSREG_RW_FUNCS(actlr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 318 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 319 | DEFINE_SYSREG_RW_FUNCS(esr_el1) |
| 320 | DEFINE_SYSREG_RW_FUNCS(esr_el2) |
| 321 | DEFINE_SYSREG_RW_FUNCS(esr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 322 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 323 | DEFINE_SYSREG_RW_FUNCS(afsr0_el1) |
| 324 | DEFINE_SYSREG_RW_FUNCS(afsr0_el2) |
| 325 | DEFINE_SYSREG_RW_FUNCS(afsr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 326 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 327 | DEFINE_SYSREG_RW_FUNCS(afsr1_el1) |
| 328 | DEFINE_SYSREG_RW_FUNCS(afsr1_el2) |
| 329 | DEFINE_SYSREG_RW_FUNCS(afsr1_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 330 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 331 | DEFINE_SYSREG_RW_FUNCS(far_el1) |
| 332 | DEFINE_SYSREG_RW_FUNCS(far_el2) |
| 333 | DEFINE_SYSREG_RW_FUNCS(far_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 334 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 335 | DEFINE_SYSREG_RW_FUNCS(mair_el1) |
| 336 | DEFINE_SYSREG_RW_FUNCS(mair_el2) |
| 337 | DEFINE_SYSREG_RW_FUNCS(mair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 338 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 339 | DEFINE_SYSREG_RW_FUNCS(amair_el1) |
| 340 | DEFINE_SYSREG_RW_FUNCS(amair_el2) |
| 341 | DEFINE_SYSREG_RW_FUNCS(amair_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 342 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 343 | DEFINE_SYSREG_READ_FUNC(rvbar_el1) |
| 344 | DEFINE_SYSREG_READ_FUNC(rvbar_el2) |
| 345 | DEFINE_SYSREG_READ_FUNC(rvbar_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 346 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 347 | DEFINE_SYSREG_RW_FUNCS(rmr_el1) |
| 348 | DEFINE_SYSREG_RW_FUNCS(rmr_el2) |
| 349 | DEFINE_SYSREG_RW_FUNCS(rmr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 350 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 351 | DEFINE_SYSREG_RW_FUNCS(tcr_el1) |
| 352 | DEFINE_SYSREG_RW_FUNCS(tcr_el2) |
| 353 | DEFINE_SYSREG_RW_FUNCS(tcr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 354 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 355 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el1) |
| 356 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el2) |
| 357 | DEFINE_SYSREG_RW_FUNCS(ttbr0_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 358 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 359 | DEFINE_SYSREG_RW_FUNCS(ttbr1_el1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 360 | |
Sandrine Bailleux | 8b0eafe | 2015-11-25 17:00:44 +0000 | [diff] [blame] | 361 | DEFINE_SYSREG_RW_FUNCS(vttbr_el2) |
| 362 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 363 | DEFINE_SYSREG_RW_FUNCS(cptr_el2) |
| 364 | DEFINE_SYSREG_RW_FUNCS(cptr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 365 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 366 | DEFINE_SYSREG_RW_FUNCS(cpacr_el1) |
| 367 | DEFINE_SYSREG_RW_FUNCS(cntfrq_el0) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 368 | DEFINE_SYSREG_RW_FUNCS(cnthp_ctl_el2) |
| 369 | DEFINE_SYSREG_RW_FUNCS(cnthp_tval_el2) |
| 370 | DEFINE_SYSREG_RW_FUNCS(cnthp_cval_el2) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 371 | DEFINE_SYSREG_RW_FUNCS(cntps_ctl_el1) |
| 372 | DEFINE_SYSREG_RW_FUNCS(cntps_tval_el1) |
| 373 | DEFINE_SYSREG_RW_FUNCS(cntps_cval_el1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 374 | DEFINE_SYSREG_RW_FUNCS(cntp_ctl_el0) |
| 375 | DEFINE_SYSREG_RW_FUNCS(cntp_tval_el0) |
| 376 | DEFINE_SYSREG_RW_FUNCS(cntp_cval_el0) |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 377 | DEFINE_SYSREG_READ_FUNC(cntpct_el0) |
| 378 | DEFINE_SYSREG_RW_FUNCS(cnthctl_el2) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 379 | |
Antonio Nino Diaz | dc4ed3d | 2018-11-23 13:54:00 +0000 | [diff] [blame] | 380 | #define get_cntp_ctl_enable(x) (((x) >> CNTP_CTL_ENABLE_SHIFT) & \ |
| 381 | CNTP_CTL_ENABLE_MASK) |
| 382 | #define get_cntp_ctl_imask(x) (((x) >> CNTP_CTL_IMASK_SHIFT) & \ |
| 383 | CNTP_CTL_IMASK_MASK) |
| 384 | #define get_cntp_ctl_istatus(x) (((x) >> CNTP_CTL_ISTATUS_SHIFT) & \ |
| 385 | CNTP_CTL_ISTATUS_MASK) |
| 386 | |
| 387 | #define set_cntp_ctl_enable(x) ((x) |= (U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 388 | #define set_cntp_ctl_imask(x) ((x) |= (U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 389 | |
| 390 | #define clr_cntp_ctl_enable(x) ((x) &= ~(U(1) << CNTP_CTL_ENABLE_SHIFT)) |
| 391 | #define clr_cntp_ctl_imask(x) ((x) &= ~(U(1) << CNTP_CTL_IMASK_SHIFT)) |
| 392 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 393 | DEFINE_SYSREG_RW_FUNCS(tpidr_el3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 394 | |
Soby Mathew | feddfcf | 2014-08-29 14:41:58 +0100 | [diff] [blame] | 395 | DEFINE_SYSREG_RW_FUNCS(cntvoff_el2) |
| 396 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 397 | DEFINE_SYSREG_RW_FUNCS(vpidr_el2) |
| 398 | DEFINE_SYSREG_RW_FUNCS(vmpidr_el2) |
| 399 | |
Soby Mathew | 26fb90e | 2015-01-06 21:36:55 +0000 | [diff] [blame] | 400 | DEFINE_SYSREG_READ_FUNC(isr_el1) |
| 401 | |
David Cunado | 5f55e28 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 402 | DEFINE_SYSREG_RW_FUNCS(mdcr_el2) |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 403 | DEFINE_SYSREG_RW_FUNCS(mdcr_el3) |
David Cunado | c14b08e | 2016-11-25 00:21:59 +0000 | [diff] [blame] | 404 | DEFINE_SYSREG_RW_FUNCS(hstr_el2) |
David Cunado | 4168f2f | 2017-10-02 17:41:39 +0100 | [diff] [blame] | 405 | DEFINE_SYSREG_RW_FUNCS(pmcr_el0) |
David Cunado | 5f55e28 | 2016-10-31 17:37:34 +0000 | [diff] [blame] | 406 | |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 407 | /* GICv3 System Registers */ |
| 408 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 409 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el1, ICC_SRE_EL1) |
| 410 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el2, ICC_SRE_EL2) |
| 411 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sre_el3, ICC_SRE_EL3) |
| 412 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_pmr_el1, ICC_PMR_EL1) |
Jeenu Viswambharan | b1e957e | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 413 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_rpr_el1, ICC_RPR_EL1) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 414 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el3, ICC_IGRPEN1_EL3) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 415 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen1_el1, ICC_IGRPEN1_EL1) |
Achin Gupta | 92712a5 | 2015-09-03 14:18:02 +0100 | [diff] [blame] | 416 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_igrpen0_el1, ICC_IGRPEN0_EL1) |
| 417 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir0_el1, ICC_HPPIR0_EL1) |
| 418 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_hppir1_el1, ICC_HPPIR1_EL1) |
| 419 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar0_el1, ICC_IAR0_EL1) |
| 420 | DEFINE_RENAME_SYSREG_READ_FUNC(icc_iar1_el1, ICC_IAR1_EL1) |
| 421 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir0_el1, ICC_EOIR0_EL1) |
| 422 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_eoir1_el1, ICC_EOIR1_EL1) |
Jeenu Viswambharan | ab14e9b | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 423 | DEFINE_RENAME_SYSREG_WRITE_FUNC(icc_sgi0r_el1, ICC_SGI0R_EL1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 424 | DEFINE_RENAME_SYSREG_RW_FUNCS(icc_sgi1r, ICC_SGI1R) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 425 | |
Dimitris Papastamos | 525c37a | 2017-11-13 09:49:45 +0000 | [diff] [blame] | 426 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcgcr_el0, AMCGCR_EL0) |
Dimitris Papastamos | e08005a | 2017-10-12 13:02:29 +0100 | [diff] [blame] | 427 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr0_el0, AMCNTENCLR0_EL0) |
| 428 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset0_el0, AMCNTENSET0_EL0) |
| 429 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenclr1_el0, AMCNTENCLR1_EL0) |
| 430 | DEFINE_RENAME_SYSREG_RW_FUNCS(amcntenset1_el0, AMCNTENSET1_EL0) |
| 431 | |
Jeenu Viswambharan | 2da918c | 2018-07-31 16:13:33 +0100 | [diff] [blame] | 432 | DEFINE_RENAME_SYSREG_READ_FUNC(mpamidr_el1, MPAMIDR_EL1) |
| 433 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam3_el3, MPAM3_EL3) |
| 434 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpam2_el2, MPAM2_EL2) |
| 435 | DEFINE_RENAME_SYSREG_RW_FUNCS(mpamhcr_el2, MPAMHCR_EL2) |
| 436 | |
Dimitris Papastamos | 5bdbb47 | 2017-10-13 12:06:06 +0100 | [diff] [blame] | 437 | DEFINE_RENAME_SYSREG_RW_FUNCS(pmblimitr_el1, PMBLIMITR_EL1) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 438 | |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 439 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el3, ZCR_EL3) |
| 440 | DEFINE_RENAME_SYSREG_WRITE_FUNC(zcr_el2, ZCR_EL2) |
| 441 | |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 442 | DEFINE_RENAME_SYSREG_READ_FUNC(erridr_el1, ERRIDR_EL1) |
| 443 | DEFINE_RENAME_SYSREG_WRITE_FUNC(errselr_el1, ERRSELR_EL1) |
| 444 | |
| 445 | DEFINE_RENAME_SYSREG_READ_FUNC(erxfr_el1, ERXFR_EL1) |
| 446 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxctlr_el1, ERXCTLR_EL1) |
| 447 | DEFINE_RENAME_SYSREG_RW_FUNCS(erxstatus_el1, ERXSTATUS_EL1) |
| 448 | DEFINE_RENAME_SYSREG_READ_FUNC(erxaddr_el1, ERXADDR_EL1) |
| 449 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc0_el1, ERXMISC0_EL1) |
| 450 | DEFINE_RENAME_SYSREG_READ_FUNC(erxmisc1_el1, ERXMISC1_EL1) |
| 451 | |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 452 | /* Armv8.3 Pointer Authentication Registers */ |
| 453 | DEFINE_RENAME_SYSREG_RW_FUNCS(apgakeylo_el1, APGAKeyLo_EL1) |
| 454 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 455 | #define IS_IN_EL(x) \ |
| 456 | (GET_EL(read_CurrentEl()) == MODE_EL##x) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 457 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 458 | #define IS_IN_EL1() IS_IN_EL(1) |
Antonio Nino Diaz | 8257f5b | 2018-11-22 15:53:17 +0000 | [diff] [blame] | 459 | #define IS_IN_EL2() IS_IN_EL(2) |
Douglas Raillard | 7741463 | 2018-08-21 12:54:45 +0100 | [diff] [blame] | 460 | #define IS_IN_EL3() IS_IN_EL(3) |
| 461 | |
| 462 | static inline unsigned int get_current_el(void) |
| 463 | { |
| 464 | return GET_EL(read_CurrentEl()); |
| 465 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 466 | |
Jeenu Viswambharan | 2a9b882 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 467 | /* |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 468 | * Check if an EL is implemented from AA64PFR0 register fields. |
Jeenu Viswambharan | 2a9b882 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 469 | */ |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 470 | static inline uint64_t el_implemented(unsigned int el) |
| 471 | { |
| 472 | if (el > 3U) { |
| 473 | return EL_IMPL_NONE; |
| 474 | } else { |
| 475 | unsigned int shift = ID_AA64PFR0_EL1_SHIFT * el; |
| 476 | |
| 477 | return (read_id_aa64pfr0_el1() >> shift) & ID_AA64PFR0_ELX_MASK; |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | #if !ERROR_DEPRECATED |
| 482 | #define EL_IMPLEMENTED(_el) el_implemented(_el) |
| 483 | #endif |
Jeenu Viswambharan | 2a9b882 | 2017-02-21 14:40:44 +0000 | [diff] [blame] | 484 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 485 | /* Previously defined accesor functions with incomplete register names */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 486 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 487 | #define read_current_el() read_CurrentEl() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 488 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 489 | #define dsb() dsbsy() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 490 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 491 | #define read_midr() read_midr_el1() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 492 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 493 | #define read_mpidr() read_mpidr_el1() |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 494 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 495 | #define read_scr() read_scr_el3() |
| 496 | #define write_scr(_v) write_scr_el3(_v) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 497 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 498 | #define read_hcr() read_hcr_el2() |
| 499 | #define write_hcr(_v) write_hcr_el2(_v) |
Sandrine Bailleux | 25232af | 2014-05-09 11:23:11 +0100 | [diff] [blame] | 500 | |
Andrew Thoelke | 3f78dc3 | 2014-06-02 15:44:43 +0100 | [diff] [blame] | 501 | #define read_cpacr() read_cpacr_el1() |
| 502 | #define write_cpacr(_v) write_cpacr_el1(_v) |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 503 | |
Antonio Nino Diaz | 864ca6f | 2018-10-31 15:25:35 +0000 | [diff] [blame] | 504 | #endif /* ARCH_HELPERS_H */ |