Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-License-Identifier: BSD-3-Clause |
| 3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | */ |
| 5 | |
| 6 | #ifndef ARCH_H |
| 7 | #define ARCH_H |
| 8 | |
| 9 | #include <utils_def.h> |
| 10 | |
| 11 | /* Cache line size */ |
| 12 | #define CACHE_WRITEBACK_GRANULE UL(64) |
| 13 | |
| 14 | /* Timer interrupt IDs defined by the Server Base System Architecture */ |
| 15 | #define EL1_VIRT_TIMER_PPI UL(27) |
| 16 | #define EL1_PHYS_TIMER_PPI UL(30) |
| 17 | |
| 18 | /* Counter-timer Physical Offset register */ |
| 19 | #define CNTPOFF_EL2 S3_4_C14_C0_6 |
| 20 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 21 | /* Interrupt Controller registers */ |
| 22 | #define ICC_HPPIR1_EL1 S3_0_C12_C12_2 |
| 23 | #define ICC_SRE_EL2 S3_4_C12_C9_5 |
| 24 | |
| 25 | /* Interrupt Controller Control Register */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 26 | #define ICC_CTLR_EL1 S3_0_C12_C12_4 |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 27 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 28 | #define ICC_CTLR_EL1_EXT_RANGE_BIT (UL(1) << 19) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 29 | |
| 30 | /* Virtual GIC registers */ |
| 31 | #define ICH_AP0R0_EL2 S3_4_C12_C8_0 |
| 32 | #define ICH_AP0R1_EL2 S3_4_C12_C8_1 |
| 33 | #define ICH_AP0R2_EL2 S3_4_C12_C8_2 |
| 34 | #define ICH_AP0R3_EL2 S3_4_C12_C8_3 |
| 35 | #define ICH_AP1R0_EL2 S3_4_C12_C9_0 |
| 36 | #define ICH_AP1R1_EL2 S3_4_C12_C9_1 |
| 37 | #define ICH_AP1R2_EL2 S3_4_C12_C9_2 |
| 38 | #define ICH_AP1R3_EL2 S3_4_C12_C9_3 |
| 39 | |
| 40 | #define ICH_LR0_EL2 S3_4_C12_C12_0 |
| 41 | #define ICH_LR1_EL2 S3_4_C12_C12_1 |
| 42 | #define ICH_LR2_EL2 S3_4_C12_C12_2 |
| 43 | #define ICH_LR3_EL2 S3_4_C12_C12_3 |
| 44 | #define ICH_LR4_EL2 S3_4_C12_C12_4 |
| 45 | #define ICH_LR5_EL2 S3_4_C12_C12_5 |
| 46 | #define ICH_LR6_EL2 S3_4_C12_C12_6 |
| 47 | #define ICH_LR7_EL2 S3_4_C12_C12_7 |
| 48 | #define ICH_LR8_EL2 S3_4_C12_C13_0 |
| 49 | #define ICH_LR9_EL2 S3_4_C12_C13_1 |
| 50 | #define ICH_LR10_EL2 S3_4_C12_C13_2 |
| 51 | #define ICH_LR11_EL2 S3_4_C12_C13_3 |
| 52 | #define ICH_LR12_EL2 S3_4_C12_C13_4 |
| 53 | #define ICH_LR13_EL2 S3_4_C12_C13_5 |
| 54 | #define ICH_LR14_EL2 S3_4_C12_C13_6 |
| 55 | #define ICH_LR15_EL2 S3_4_C12_C13_7 |
| 56 | |
| 57 | #define ICH_HCR_EL2 S3_4_C12_C11_0 |
| 58 | #define ICH_VTR_EL2 S3_4_C12_C11_1 |
| 59 | #define ICH_MISR_EL2 S3_4_C12_C11_2 |
| 60 | #define ICH_VMCR_EL2 S3_4_C12_C11_7 |
| 61 | |
| 62 | /* RNDR definition */ |
| 63 | #define RNDR S3_3_C2_C4_0 |
| 64 | |
Shruti Gupta | 5732bfe | 2024-01-17 13:21:06 +0000 | [diff] [blame] | 65 | /* Data Independent Timing Registers */ |
| 66 | #define DIT S3_3_C4_C2_5 |
| 67 | #define DIT_BIT (UL(1) << 24) |
| 68 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 69 | /* SCTLR2_EL12 register */ |
| 70 | #define SCTLR2_EL12 S3_5_C1_C0_3 |
| 71 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 72 | /* CLIDR definitions */ |
| 73 | #define LOC_SHIFT U(24) |
| 74 | #define CTYPE_SHIFT(n) U(3 * ((n) - 1)) |
| 75 | #define CLIDR_FIELD_WIDTH U(3) |
| 76 | |
| 77 | /* CSSELR definitions */ |
| 78 | #define LEVEL_SHIFT U(1) |
| 79 | |
| 80 | /* Data cache set/way op type defines */ |
| 81 | #define DCISW U(0x0) |
| 82 | #define DCCISW U(0x1) |
| 83 | #define DCCSW U(0x2) |
| 84 | |
| 85 | #define TCR_EL2_T0SZ_SHIFT UL(0) |
| 86 | #define TCR_EL2_T0SZ_WIDTH UL(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 87 | |
| 88 | #define TCR_EL2_T1SZ_SHIFT UL(16) |
| 89 | #define TCR_EL2_T1SZ_WIDTH UL(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 90 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 91 | #define TCR_EL2_EPD0_BIT (UL(1) << 7) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 92 | |
| 93 | #define TCR_EL2_IRGN0_SHIFT UL(8) |
| 94 | #define TCR_EL2_IRGN0_WIDTH UL(2) |
| 95 | #define TCR_EL2_IRGN0_WBWA INPLACE(TCR_EL2_IRGN0, UL(1)) |
| 96 | |
| 97 | #define TCR_EL2_ORGN0_SHIFT UL(10) |
| 98 | #define TCR_EL2_ORGN0_WIDTH UL(2) |
| 99 | #define TCR_EL2_ORGN0_WBWA INPLACE(TCR_EL2_ORGN0, UL(1)) |
| 100 | |
| 101 | #define TCR_EL2_IRGN1_SHIFT UL(24) |
| 102 | #define TCR_EL2_IRGN1_WIDTH UL(2) |
| 103 | #define TCR_EL2_IRGN1_WBWA INPLACE(TCR_EL2_IRGN1, UL(1)) |
| 104 | |
| 105 | #define TCR_EL2_ORGN1_SHIFT UL(26) |
| 106 | #define TCR_EL2_ORGN1_WIDTH UL(2) |
| 107 | #define TCR_EL2_ORGN1_WBWA INPLACE(TCR_EL2_ORGN1, UL(1)) |
| 108 | |
| 109 | #define TCR_EL2_SH0_SHIFT UL(12) |
| 110 | #define TCR_EL2_SH0_WIDTH UL(2) |
| 111 | #define TCR_EL2_SH0_IS INPLACE(TCR_EL2_SH0, UL(3)) |
| 112 | |
| 113 | #define TCR_EL2_SH1_SHIFT UL(28) |
| 114 | #define TCR_EL2_SH1_WIDTH UL(2) |
| 115 | #define TCR_EL2_SH1_IS INPLACE(TCR_EL2_SH1, UL(3)) |
| 116 | |
| 117 | #define TCR_EL2_TG0_SHIFT UL(14) |
| 118 | #define TCR_EL2_TG0_WIDTH UL(2) |
| 119 | #define TCR_EL2_TG0_4K INPLACE(TCR_EL2_TG0, UL(0)) |
| 120 | |
| 121 | #define TCR_EL2_TG1_SHIFT UL(30) |
| 122 | #define TCR_EL2_TG1_WIDTH UL(2) |
Javier Almansa Sobrino | 7019490 | 2023-02-28 10:27:02 +0000 | [diff] [blame] | 123 | #define TCR_EL2_TG1_4K INPLACE(TCR_EL2_TG1, UL(2)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 124 | |
| 125 | #define TCR_EL2_IPS_SHIFT UL(32) |
| 126 | #define TCR_EL2_IPS_WIDTH UL(3) |
| 127 | #define TCR_PS_BITS_4GB INPLACE(TCR_EL2_IPS, UL(0)) |
| 128 | #define TCR_PS_BITS_64GB INPLACE(TCR_EL2_IPS, UL(1)) |
| 129 | #define TCR_PS_BITS_1TB INPLACE(TCR_EL2_IPS, UL(2)) |
| 130 | #define TCR_PS_BITS_4TB INPLACE(TCR_EL2_IPS, UL(3)) |
| 131 | #define TCR_PS_BITS_16TB INPLACE(TCR_EL2_IPS, UL(4)) |
| 132 | #define TCR_PS_BITS_256TB INPLACE(TCR_EL2_IPS, UL(5)) |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 133 | #define TCR_PS_BITS_4PB INPLACE(TCR_EL2_IPS, UL(6)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 134 | |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 135 | #define TCR_EL2_DS_SHIFT UL(59) |
| 136 | #define TCR_EL2_DS_WIDTH UL(1) |
| 137 | #define TCR_EL2_DS_LPA2_EN INPLACE(TCR_EL2_DS, UL(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 138 | |
Mate Toth-Pal | 9d59575 | 2024-12-10 13:22:47 +0100 | [diff] [blame^] | 139 | #define TCR_EL2_A1 (UL(1) << 22) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 140 | #define TCR_EL2_AS (UL(1) << 36) |
| 141 | #define TCR_EL2_HPD0 (UL(1) << 41) |
| 142 | #define TCR_EL2_HPD1 (UL(1) << 42) |
| 143 | #define TCR_EL2_E0PD1 (UL(1) << 56) /* TODO: ARMv8.5-E0PD, otherwise RES0 */ |
| 144 | |
| 145 | #define TCR_TxSZ_MIN UL(16) |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 146 | #define TCR_TxSZ_MIN_LPA2 UL(12) |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame] | 147 | #define TCR_TxSZ_MAX UL(48) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 148 | |
| 149 | /* HCR definitions */ |
| 150 | #define HCR_FWB (UL(1) << 46) |
| 151 | #define HCR_TEA (UL(1) << 37) |
| 152 | #define HCR_API (UL(1) << 41) |
| 153 | #define HCR_APK (UL(1) << 40) |
| 154 | #define HCR_TERR (UL(1) << 36) |
| 155 | #define HCR_TLOR (UL(1) << 35) |
| 156 | #define HCR_E2H (UL(1) << 34) |
| 157 | #define HCR_RW (UL(1) << 31) |
AlexeiFedorov | 862f96c | 2024-03-01 16:26:48 +0000 | [diff] [blame] | 158 | #define HCR_TDZ (UL(1) << 28) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 159 | #define HCR_TGE (UL(1) << 27) |
| 160 | #define HCR_TSW (UL(1) << 22) |
| 161 | #define HCR_TACR (UL(1) << 21) |
| 162 | #define HCR_TIDCP (UL(1) << 20) |
| 163 | #define HCR_TSC (UL(1) << 19) |
| 164 | #define HCR_TID3 (UL(1) << 18) |
| 165 | #define HCR_TWE (UL(1) << 14) |
| 166 | #define HCR_TWI (UL(1) << 13) |
| 167 | #define HCR_VSE (UL(1) << 8) |
| 168 | |
| 169 | #define HCR_BSU_SHIFT 10 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 170 | #define HCR_BSU_WIDTH U(2) |
| 171 | #define HCR_BSU_IS INPLACE(HCR_BSU, UL(1)) /* Barriers are promoted to IS */ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 172 | |
| 173 | #define HCR_FB (UL(1) << 9) |
| 174 | #define HCR_VI (UL(1) << 7) |
| 175 | #define HCR_AMO (UL(1) << 5) |
| 176 | #define HCR_IMO (UL(1) << 4) |
| 177 | #define HCR_FMO (UL(1) << 3) |
| 178 | #define HCR_PTW (UL(1) << 2) |
| 179 | #define HCR_SWIO (UL(1) << 1) |
| 180 | #define HCR_VM (UL(1) << 0) |
| 181 | |
Arunachalam Ganapathy | 591354a | 2023-11-16 10:49:09 +0000 | [diff] [blame] | 182 | #define HCR_REALM_FLAGS (HCR_FWB | HCR_E2H | HCR_RW | HCR_TSC | \ |
Sona Mathew | c744b93 | 2024-07-16 11:29:25 -0500 | [diff] [blame] | 183 | HCR_AMO | HCR_BSU_IS | HCR_IMO | HCR_FMO | \ |
| 184 | HCR_PTW | HCR_SWIO | HCR_VM | HCR_TID3 | \ |
| 185 | HCR_TEA | HCR_API | HCR_APK) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 186 | |
| 187 | #define HCR_EL2_INIT (HCR_TGE | HCR_E2H | HCR_TEA) |
| 188 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 189 | /* HCRX_EL2 Register */ |
| 190 | #define HCRX_EL2 S3_4_C1_C2_2 |
| 191 | |
| 192 | /* HCRX_EL2 definitions */ |
| 193 | #define HCRX_SCTLR2EN (UL(1) << 15) |
| 194 | |
| 195 | #define HCRX_INIT (UL(0)) |
| 196 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 197 | #define MAIR_ELx_ATTR0_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 198 | #define MAIR_ELx_ATTR0_WIDTH U(8) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 199 | |
| 200 | /******************************************************************************* |
| 201 | * Definitions of MAIR encodings for device and normal memory |
| 202 | ******************************************************************************/ |
| 203 | /* |
| 204 | * MAIR encodings for device memory attributes. |
| 205 | */ |
| 206 | #define MAIR_DEV_NGNRNE UL(0x0) /* Device nGnRnE */ |
| 207 | #define MAIR_DEV_NGNRNE_IDX 0x1 |
| 208 | |
| 209 | #define MAIR_DEV_NGNRE UL(0x4) |
| 210 | |
| 211 | #define MAIR_NIOWBNTRW 0xff |
| 212 | #define MAIR_NIOWBNTRW_IDX 0x0 |
| 213 | |
| 214 | /* |
| 215 | * MAIR encodings for normal memory attributes. |
| 216 | * |
| 217 | * Cache Policy |
| 218 | * WT: Write Through |
| 219 | * WB: Write Back |
| 220 | * NC: Non-Cacheable |
| 221 | * |
| 222 | * Transient Hint |
| 223 | * NTR: Non-Transient |
| 224 | * TR: Transient |
| 225 | * |
| 226 | * Allocation Policy |
| 227 | * RA: Read Allocate |
| 228 | * WA: Write Allocate |
| 229 | * RWA: Read and Write Allocate |
| 230 | * NA: No Allocation |
| 231 | */ |
| 232 | #define MAIR_NORM_WT_TR_WA UL(0x1) |
| 233 | #define MAIR_NORM_WT_TR_RA UL(0x2) |
| 234 | #define MAIR_NORM_WT_TR_RWA UL(0x3) |
| 235 | #define MAIR_NORM_NC UL(0x4) |
| 236 | #define MAIR_NORM_WB_TR_WA UL(0x5) |
| 237 | #define MAIR_NORM_WB_TR_RA UL(0x6) |
| 238 | #define MAIR_NORM_WB_TR_RWA UL(0x7) |
| 239 | #define MAIR_NORM_WT_NTR_NA UL(0x8) |
| 240 | #define MAIR_NORM_WT_NTR_WA UL(0x9) |
| 241 | #define MAIR_NORM_WT_NTR_RA UL(0xa) |
| 242 | #define MAIR_NORM_WT_NTR_RWA UL(0xb) |
| 243 | #define MAIR_NORM_WB_NTR_NA UL(0xc) |
| 244 | #define MAIR_NORM_WB_NTR_WA UL(0xd) |
| 245 | #define MAIR_NORM_WB_NTR_RA UL(0xe) |
| 246 | #define MAIR_NORM_WB_NTR_RWA UL(0xf) |
| 247 | |
| 248 | #define MAIR_NORM_OUTER_SHIFT U(4) |
| 249 | |
| 250 | #define MAKE_MAIR_NORMAL_MEMORY(inner, outer) \ |
| 251 | ((inner) | ((outer) << MAIR_NORM_OUTER_SHIFT)) |
| 252 | |
| 253 | #define MAKE_MAIR_NORMAL_MEMORY_IO(_mair) \ |
| 254 | MAKE_MAIR_NORMAL_MEMORY(_mair, _mair) |
| 255 | |
| 256 | /* |
| 257 | * TTBR Definitions |
| 258 | */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 259 | #define TTBR_CNP_BIT UL(1) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 260 | |
| 261 | #define TTBRx_EL2_CnP_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 262 | #define TTBRx_EL2_CnP_WIDTH U(1) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 263 | |
| 264 | #define TTBRx_EL2_BADDR_SHIFT 1 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 265 | #define TTBRx_EL2_BADDR_WIDTH U(47) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 266 | |
Javier Almansa Sobrino | f6fff69 | 2024-02-02 17:13:57 +0000 | [diff] [blame] | 267 | #define TTBRx_EL2_BADDR_MSB_LPA2_SHIFT 2 |
| 268 | #define TTBRx_EL2_BADDR_MSB_LPA2_WIDTH U(4) |
| 269 | #define EL2_BADDR_MSB_LPA2_SHIFT 48 |
| 270 | #define EL2_BADDR_MSB_LPA2_WIDTH TTBRx_EL2_BADDR_MSB_LPA2_WIDTH |
| 271 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 272 | #define TTBRx_EL2_ASID_SHIFT 48 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 273 | #define TTBRx_EL2_ASID_WIDTH U(16) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 274 | |
| 275 | /* |
| 276 | * VTTBR Definitions |
| 277 | */ |
| 278 | #define VTTBR_EL2_VMID_SHIFT 48 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 279 | #define VTTBR_EL2_VMID_WIDTH U(16) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 280 | |
| 281 | /* |
| 282 | * ESR Definitions |
| 283 | */ |
| 284 | #define ESR_EL2_EC_SHIFT 26 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 285 | #define ESR_EL2_EC_WIDTH U(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 286 | |
| 287 | #define ESR_EL2_IL_SHIFT 25 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 288 | #define ESR_EL2_IL_WIDTH U(1) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 289 | |
| 290 | #define ESR_EL2_ISS_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 291 | #define ESR_EL2_ISS_WIDTH U(25) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 292 | |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 293 | #define ESR_EL2_EC_UNKNOWN INPLACE(ESR_EL2_EC, UL(0)) |
| 294 | #define ESR_EL2_EC_WFX INPLACE(ESR_EL2_EC, UL(1)) |
| 295 | #define ESR_EL2_EC_FPU INPLACE(ESR_EL2_EC, UL(7)) |
| 296 | #define ESR_EL2_EC_SVC INPLACE(ESR_EL2_EC, UL(21)) |
| 297 | #define ESR_EL2_EC_HVC INPLACE(ESR_EL2_EC, UL(22)) |
| 298 | #define ESR_EL2_EC_SMC INPLACE(ESR_EL2_EC, UL(23)) |
| 299 | #define ESR_EL2_EC_SYSREG INPLACE(ESR_EL2_EC, UL(24)) |
| 300 | #define ESR_EL2_EC_SVE INPLACE(ESR_EL2_EC, UL(25)) |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 301 | #define ESR_EL2_EC_SME INPLACE(ESR_EL2_EC, UL(29)) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 302 | #define ESR_EL2_EC_INST_ABORT INPLACE(ESR_EL2_EC, UL(32)) |
| 303 | #define ESR_EL2_EC_INST_ABORT_SEL INPLACE(ESR_EL2_EC, UL(33)) |
| 304 | #define ESR_EL2_EC_DATA_ABORT INPLACE(ESR_EL2_EC, UL(36)) |
| 305 | #define ESR_EL2_EC_DATA_ABORT_SEL INPLACE(ESR_EL2_EC, UL(37)) |
| 306 | #define ESR_EL2_EC_SERROR INPLACE(ESR_EL2_EC, UL(47)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 307 | |
| 308 | /* Data/Instruction Abort ESR fields */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 309 | #define ESR_EL2_ABORT_ISV_BIT (UL(1) << 24) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 310 | |
| 311 | #define ESR_EL2_ABORT_SAS_SHIFT 22 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 312 | #define ESR_EL2_ABORT_SAS_WIDTH U(2) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 313 | |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 314 | #define ESR_EL2_ABORT_SAS_BYTE_VAL 0U |
| 315 | #define ESR_EL2_ABORT_SAS_HWORD_VAL 1U |
| 316 | #define ESR_EL2_ABORT_SAS_WORD_VAL 2U |
| 317 | #define ESR_EL2_ABORT_SAS_DWORD_VAL 3U |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 318 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 319 | #define ESR_EL2_ABORT_SSE_BIT (UL(1) << 21) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 320 | |
| 321 | #define ESR_EL2_ABORT_SRT_SHIFT 16 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 322 | #define ESR_EL2_ABORT_SRT_WIDTH U(5) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 323 | |
| 324 | #define ESR_EL2_ABORT_SET_SHIFT 11 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 325 | #define ESR_EL2_ABORT_SET_WIDTH U(2) |
| 326 | #define ESR_EL2_ABORT_SET_UER INPLACE(ESR_EL2_ABORT_SET, UL(0)) |
| 327 | #define ESR_EL2_ABORT_SET_UC INPLACE(ESR_EL2_ABORT_SET, UL(2)) |
| 328 | #define ESR_EL2_ABORT_SET_UEO INPLACE(ESR_EL2_ABORT_SET, UL(3)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 329 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 330 | #define ESR_EL2_ABORT_SF_BIT (UL(1) << 15) |
| 331 | #define ESR_EL2_ABORT_FNV_BIT (UL(1) << 10) |
| 332 | #define ESR_EL2_ABORT_EA_BIT (UL(1) << 9) |
| 333 | #define ESR_EL2_ABORT_S1PTW_BIT (UL(1) << 7) |
| 334 | #define ESR_EL2_ABORT_WNR_BIT (UL(1) << 6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 335 | #define ESR_EL2_ABORT_FSC_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 336 | #define ESR_EL2_ABORT_FSC_WIDTH U(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 337 | |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 338 | #define ESR_EL2_ABORT_FSC_TRANSLATION_FAULT UL(0x04) |
| 339 | #define ESR_EL2_ABORT_FSC_PERMISSION_FAULT UL(0x0c) |
| 340 | #define ESR_EL2_ABORT_FSC_TRANSLATION_FAULT_L0 UL(0x04) |
| 341 | #define ESR_EL2_ABORT_FSC_SEA UL(0x10) |
| 342 | #define ESR_EL2_ABORT_FSC_SEA_TTW_START UL(0x13) |
| 343 | #define ESR_EL2_ABORT_FSC_SEA_TTW_END UL(0x17) |
| 344 | #define ESR_EL2_ABORT_FSC_GPF UL(0x28) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 345 | #define ESR_EL2_ABORT_FSC_LEVEL_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 346 | #define ESR_EL2_ABORT_FSC_LEVEL_WIDTH U(2) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 347 | |
| 348 | /* The ESR fields that are reported to the host on Instr./Data Synchronous Abort */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 349 | #define ESR_NONEMULATED_ABORT_MASK ( \ |
| 350 | MASK(ESR_EL2_EC) | \ |
| 351 | MASK(ESR_EL2_ABORT_SET) | \ |
| 352 | ESR_EL2_ABORT_FNV_BIT | \ |
| 353 | ESR_EL2_ABORT_EA_BIT | \ |
| 354 | MASK(ESR_EL2_ABORT_FSC)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 355 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 356 | #define ESR_EMULATED_ABORT_MASK ( \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 357 | ESR_NONEMULATED_ABORT_MASK | \ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 358 | ESR_EL2_ABORT_ISV_BIT | \ |
| 359 | MASK(ESR_EL2_ABORT_SAS) | \ |
| 360 | ESR_EL2_ABORT_SF_BIT | \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 361 | ESR_EL2_ABORT_WNR_BIT) |
| 362 | |
| 363 | #define ESR_EL2_SERROR_DFSC_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 364 | #define ESR_EL2_SERROR_DFSC_WIDTH U(6) |
| 365 | #define ESR_EL2_SERROR_DFSC_UNCAT INPLACE(ESR_EL2_SERROR_DFSC, UL(0)) |
Raghu Krishnamurthy | 79530bd | 2025-01-17 16:04:33 -0800 | [diff] [blame] | 366 | #define ESR_EL2_SERROR_DFSC_ASYNC INPLACE(ESR_EL2_SERROR_DFSC, UL(0x11)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 367 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 368 | #define ESR_EL2_SERROR_EA_BIT (UL(1) << 9) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 369 | |
| 370 | #define ESR_EL2_SERROR_AET_SHIFT 10 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 371 | #define ESR_EL2_SERROR_AET_WIDTH U(3) |
| 372 | #define ESR_EL2_SERROR_AET_UC INPLACE(ESR_EL2_SERROR_AET, UL(0)) |
| 373 | #define ESR_EL2_SERROR_AET_UEU INPLACE(ESR_EL2_SERROR_AET, UL(1)) |
| 374 | #define ESR_EL2_SERROR_AET_UEO INPLACE(ESR_EL2_SERROR_AET, UL(2)) |
| 375 | #define ESR_EL2_SERROR_AET_UER INPLACE(ESR_EL2_SERROR_AET, UL(3)) |
| 376 | #define ESR_EL2_SERROR_AET_CE INPLACE(ESR_EL2_SERROR_AET, UL(6)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 377 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 378 | #define ESR_EL2_SERROR_IESB_BIT (UL(1) << 13) |
| 379 | #define ESR_EL2_SERROR_IDS_BIT (UL(1) << 24) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 380 | |
| 381 | /* The ESR fields that are reported to the host on SError */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 382 | #define ESR_SERROR_MASK ( \ |
| 383 | ESR_EL2_SERROR_IDS_BIT | \ |
| 384 | MASK(ESR_EL2_SERROR_AET) | \ |
| 385 | ESR_EL2_SERROR_EA_BIT | \ |
| 386 | MASK(ESR_EL2_SERROR_DFSC)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 387 | |
| 388 | #define ESR_EL2_SYSREG_TRAP_OP0_SHIFT 20 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 389 | #define ESR_EL2_SYSREG_TRAP_OP0_WIDTH U(2) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 390 | |
| 391 | #define ESR_EL2_SYSREG_TRAP_OP2_SHIFT 17 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 392 | #define ESR_EL2_SYSREG_TRAP_OP2_WIDTH U(3) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 393 | |
| 394 | #define ESR_EL2_SYSREG_TRAP_OP1_SHIFT 14 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 395 | #define ESR_EL2_SYSREG_TRAP_OP1_WIDTH U(3) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 396 | |
| 397 | #define ESR_EL2_SYSREG_TRAP_CRN_SHIFT 10 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 398 | #define ESR_EL2_SYSREG_TRAP_CRN_WIDTH U(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 399 | |
| 400 | #define ESR_EL2_SYSREG_TRAP_RT_SHIFT 5 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 401 | #define ESR_EL2_SYSREG_TRAP_RT_WIDTH U(5) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 402 | |
| 403 | #define ESR_EL2_SYSREG_TRAP_CRM_SHIFT 1 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 404 | #define ESR_EL2_SYSREG_TRAP_CRM_WIDTH U(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 405 | |
| 406 | /* WFx ESR fields */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 407 | #define ESR_EL2_WFx_TI_BIT (UL(1) << 0) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 408 | |
| 409 | /* xVC ESR fields */ |
| 410 | #define ESR_EL2_xVC_IMM_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 411 | #define ESR_EL2_xVC_IMM_WIDTH U(16) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 412 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 413 | /* ID_AA64DFR0_EL1 definitions */ |
| 414 | #define ID_AA64DFR0_EL1_HPMN0_SHIFT UL(60) |
| 415 | #define ID_AA64DFR0_EL1_HPMN0_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 416 | |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 417 | #define ID_AA64DFR0_EL1_ExtTrcBuff_SHIFT UL(56) |
| 418 | #define ID_AA64DFR0_EL1_ExtTrcBuff_WIDTH UL(4) |
| 419 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 420 | #define ID_AA64DFR0_EL1_BRBE_SHIFT UL(52) |
| 421 | #define ID_AA64DFR0_EL1_BRBE_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 422 | |
| 423 | #define ID_AA64DFR0_EL1_MTPMU_SHIFT UL(48) |
| 424 | #define ID_AA64DFR0_EL1_MTPMU_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 425 | |
| 426 | #define ID_AA64DFR0_EL1_TraceBuffer_SHIFT UL(44) |
| 427 | #define ID_AA64DFR0_EL1_TraceBuffer_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 428 | |
| 429 | #define ID_AA64DFR0_EL1_TraceFilt_SHIFT UL(40) |
| 430 | #define ID_AA64DFR0_EL1_TraceFilt_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 431 | |
| 432 | #define ID_AA64DFR0_EL1_DoubleLock_SHIFT UL(36) |
| 433 | #define ID_AA64DFR0_EL1_DoubleLock_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 434 | |
| 435 | #define ID_AA64DFR0_EL1_PMSVer_SHIFT UL(32) |
| 436 | #define ID_AA64DFR0_EL1_PMSVer_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 437 | |
| 438 | #define ID_AA64DFR0_EL1_CTX_CMPS_SHIFT UL(28) |
| 439 | #define ID_AA64DFR0_EL1_CTX_CMPS_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 440 | |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 441 | #define ID_AA64DFR0_EL1_SEBEP_SHIFT UL(24) |
| 442 | #define ID_AA64DFR0_EL1_SEBEP_WIDTH UL(4) |
| 443 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 444 | #define ID_AA64DFR0_EL1_WRPs_SHIFT UL(20) |
| 445 | #define ID_AA64DFR0_EL1_WRPs_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 446 | |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 447 | #define ID_AA64DFR0_EL1_PMSS_SHIFT UL(16) |
| 448 | #define ID_AA64DFR0_EL1_PMSS_WIDTH UL(4) |
| 449 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 450 | #define ID_AA64DFR0_EL1_BRPs_SHIFT UL(12) |
| 451 | #define ID_AA64DFR0_EL1_BRPs_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 452 | |
| 453 | #define ID_AA64DFR0_EL1_PMUVer_SHIFT UL(8) |
| 454 | #define ID_AA64DFR0_EL1_PMUVer_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 455 | |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 456 | /* Performance Monitors Extension version */ |
| 457 | #define ID_AA64DFR0_EL1_PMUv3p7 UL(7) |
| 458 | #define ID_AA64DFR0_EL1_PMUv3p8 UL(8) |
| 459 | #define ID_AA64DFR0_EL1_PMUv3p9 UL(9) |
| 460 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 461 | #define ID_AA64DFR0_EL1_TraceVer_SHIFT UL(4) |
| 462 | #define ID_AA64DFR0_EL1_TraceVer_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 463 | |
| 464 | #define ID_AA64DFR0_EL1_DebugVer_SHIFT UL(0) |
| 465 | #define ID_AA64DFR0_EL1_DebugVer_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 466 | |
| 467 | /* Debug architecture version */ |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 468 | #define ID_AA64DFR0_EL1_Debugv8 UL(6) |
AlexeiFedorov | a2ef91d | 2024-08-08 13:49:20 +0100 | [diff] [blame] | 469 | #define ID_AA64DFR0_EL1_Debugv8p1 UL(7) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 470 | #define ID_AA64DFR0_EL1_Debugv8p2 UL(8) |
| 471 | #define ID_AA64DFR0_EL1_Debugv8p4 UL(9) |
| 472 | #define ID_AA64DFR0_EL1_Debugv8p8 UL(10) |
AlexeiFedorov | a2ef91d | 2024-08-08 13:49:20 +0100 | [diff] [blame] | 473 | #define ID_AA64DFR0_EL1_Debugv8p9 UL(11) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 474 | |
| 475 | /* ID_AA64DFR1_EL1 definitions */ |
| 476 | #define ID_AA64DFR1_EL1_EBEP_SHIFT UL(48) |
| 477 | #define ID_AA64DFR1_EL1_EBEP_WIDTH UL(4) |
| 478 | |
| 479 | #define ID_AA64DFR1_EL1_ICNTR_SHIFT UL(36) |
| 480 | #define ID_AA64DFR1_EL1_ICNTR_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 481 | |
AlexeiFedorov | a2ef91d | 2024-08-08 13:49:20 +0100 | [diff] [blame] | 482 | #define ID_AA64DFR1_EL1_WRPs_SHIFT UL(16) |
| 483 | #define ID_AA64DFR1_EL1_WRPs_WIDTH UL(8) |
| 484 | |
| 485 | #define ID_AA64DFR1_EL1_BRPs_SHIFT UL(8) |
| 486 | #define ID_AA64DFR1_EL1_BRPs_WIDTH UL(8) |
| 487 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 488 | /* ID_AA64PFR0_EL1 definitions */ |
| 489 | #define ID_AA64PFR0_EL1_SVE_SHIFT UL(32) |
| 490 | #define ID_AA64PFR0_EL1_SVE_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 491 | |
Javier Almansa Sobrino | 7b08744 | 2025-01-16 18:18:08 +0000 | [diff] [blame] | 492 | #define ID_AA64PFR0_EL1_MPAM_SHIFT UL(40) |
| 493 | #define ID_AA64PFR0_EL1_MPAM_WIDTH UL(4) |
| 494 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 495 | #define ID_AA64PFR0_EL1_AMU_SHIFT UL(44) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 496 | #define ID_AA64PFR0_EL1_AMU_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 497 | |
Arunachalam Ganapathy | a27de37 | 2023-03-06 11:13:49 +0000 | [diff] [blame] | 498 | /* ID_AA64PFR1_EL1 definitions */ |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 499 | #define ID_AA64PFR1_EL1_SSBS_SHIFT UL(4) |
| 500 | #define ID_AA64PFR1_EL1_SSBS_WIDTH UL(4) |
| 501 | #define ID_AA64PFR1_EL1_SSBS_NOT_IMPLEMENTED UL(0) |
| 502 | #define ID_AA64PFR1_EL1_FEAT_SSBS UL(1) |
| 503 | #define ID_AA64PFR1_EL1_FEAT_SSBS2 UL(2) |
| 504 | |
| 505 | #define ID_AA64PFR1_EL1_MTE_SHIFT UL(8) |
| 506 | #define ID_AA64PFR1_EL1_MTE_WIDTH UL(4) |
| 507 | #define ID_AA64PFR1_EL1_MTE_NOT_IMPLEMENTED UL(0) |
| 508 | #define ID_AA64PFR1_EL1_MTE1 UL(1) |
| 509 | #define ID_AA64PFR1_EL1_MTE2 UL(2) |
| 510 | #define ID_AA64PFR1_EL1_MTE3 UL(3) |
Arunachalam Ganapathy | a27de37 | 2023-03-06 11:13:49 +0000 | [diff] [blame] | 511 | |
Javier Almansa Sobrino | 7b08744 | 2025-01-16 18:18:08 +0000 | [diff] [blame] | 512 | #define ID_AA64PFR1_EL1_MPAM_F_SHIFT UL(16) |
| 513 | #define ID_AA64PFR1_EL1_MPAM_F_WIDTH UL(4) |
| 514 | |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 515 | #define ID_AA64PFR1_EL1_SME_SHIFT UL(24) |
| 516 | #define ID_AA64PFR1_EL1_SME_WIDTH UL(4) |
| 517 | #define ID_AA64PFR1_EL1_SME_NOT_IMPLEMENTED UL(0) |
| 518 | #define ID_AA64PFR1_EL1_SME_IMPLEMENTED UL(1) |
| 519 | #define ID_AA64PFR1_EL1_SME2_IMPLEMENTED UL(2) |
| 520 | |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 521 | #define ID_AA64PFR1_EL1_NMI_SHIFT UL(36) |
| 522 | #define ID_AA64PFR1_EL1_NMI_WIDTH UL(4) |
| 523 | |
| 524 | #define ID_AA64PFR1_EL1_GCS_SHIFT UL(44) |
| 525 | #define ID_AA64PFR1_EL1_GCS_WIDTH UL(4) |
| 526 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 527 | #define ID_AA64PFR1_EL1_DF2_SHIFT UL(56) |
| 528 | #define ID_AA64PFR1_EL1_DF2_WIDTH UL(4) |
| 529 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 530 | /* ID_AA64MMFR0_EL1 definitions */ |
| 531 | #define ID_AA64MMFR0_EL1_PARANGE_SHIFT U(0) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 532 | #define ID_AA64MMFR0_EL1_PARANGE_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 533 | |
Soby Mathew | 1eccd46 | 2024-10-21 13:36:34 +0100 | [diff] [blame] | 534 | /* Defines for PA width corresponding to PARange [0:3] in id_aa64mmfr0_el1 */ |
| 535 | #define PARANGE_WIDTH_32BITS U(32) /* PARange - 0x0 */ |
| 536 | #define PARANGE_WIDTH_36BITS U(36) /* PARange - 0x1 */ |
| 537 | #define PARANGE_WIDTH_40BITS U(40) /* PARange - 0x2 */ |
| 538 | #define PARANGE_WIDTH_42BITS U(42) /* PARange - 0x3 */ |
| 539 | #define PARANGE_WIDTH_44BITS U(44) /* PARange - 0x4 */ |
| 540 | #define PARANGE_WIDTH_48BITS U(48) /* PARange - 0x5 */ |
| 541 | #define PARANGE_WIDTH_52BITS U(52) /* PARange - 0x6 */ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 542 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 543 | #define ID_AA64MMFR0_EL1_ECV_SHIFT UL(60) |
| 544 | #define ID_AA64MMFR0_EL1_ECV_WIDTH UL(4) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 545 | #define ID_AA64MMFR0_EL1_ECV_NOT_SUPPORTED UL(0x0) |
| 546 | #define ID_AA64MMFR0_EL1_ECV_SUPPORTED UL(0x1) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 547 | #define ID_AA64MMFR0_EL1_ECV_SELF_SYNCH ULL(0x2) |
| 548 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 549 | #define ID_AA64MMFR0_EL1_FGT_SHIFT UL(56) |
| 550 | #define ID_AA64MMFR0_EL1_FGT_WIDTH UL(4) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 551 | #define ID_AA64MMFR0_EL1_FGT_NOT_SUPPORTED UL(0x0) |
| 552 | #define ID_AA64MMFR0_EL1_FGT_SUPPORTED UL(0x1) |
| 553 | #define ID_AA64MMFR0_EL1_FGT2_SUPPORTED UL(0x2) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 554 | |
| 555 | #define ID_AA64MMFR0_EL1_TGRAN4_2_SHIFT U(40) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 556 | #define ID_AA64MMFR0_EL1_TGRAN4_2_WIDTH U(4) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 557 | #define ID_AA64MMFR0_EL1_TGRAN4_2_TGRAN4 UL(0x0) |
| 558 | #define ID_AA64MMFR0_EL1_TGRAN4_2_NOT_SUPPORTED UL(0x1) |
| 559 | #define ID_AA64MMFR0_EL1_TGRAN4_2_SUPPORTED UL(0x2) |
| 560 | #define ID_AA64MMFR0_EL1_TGRAN4_2_LPA2 UL(0x3) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 561 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 562 | #define ID_AA64MMFR0_EL1_TGRAN16_2_SHIFT UL(32) |
| 563 | #define ID_AA64MMFR0_EL1_TGRAN16_2_WIDTH UL(4) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 564 | #define ID_AA64MMFR0_EL1_TGRAN16_2_TGRAN16 UL(0x0) |
| 565 | #define ID_AA64MMFR0_EL1_TGRAN16_2_NOT_SUPPORTED UL(0x1) |
| 566 | #define ID_AA64MMFR0_EL1_TGRAN16_2_SUPPORTED UL(0x2) |
| 567 | #define ID_AA64MMFR0_EL1_TGRAN16_2_LPA2 UL(0x3) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 568 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 569 | #define ID_AA64MMFR0_EL1_TGRAN4_SHIFT UL(28) |
| 570 | #define ID_AA64MMFR0_EL1_TGRAN4_WIDTH UL(4) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 571 | #define ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED UL(0x0) |
| 572 | #define ID_AA64MMFR0_EL1_TGRAN4_LPA2 UL(0x1) |
| 573 | #define ID_AA64MMFR0_EL1_TGRAN4_NOT_SUPPORTED UL(0xf) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 574 | |
| 575 | #define ID_AA64MMFR0_EL1_TGRAN64_SHIFT UL(24) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 576 | #define ID_AA64MMFR0_EL1_TGRAN64_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 577 | #define ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED UL(0x0) |
| 578 | #define ID_AA64MMFR0_EL1_TGRAN64_NOT_SUPPORTED UL(0xf) |
| 579 | |
| 580 | #define ID_AA64MMFR0_EL1_TGRAN16_SHIFT UL(20) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 581 | #define ID_AA64MMFR0_EL1_TGRAN16_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 582 | #define ID_AA64MMFR0_EL1_TGRAN16_NOT_SUPPORTED UL(0x0) |
| 583 | #define ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED UL(0x1) |
| 584 | #define ID_AA64MMFR0_EL1_TGRAN16_LPA2 UL(0x2) |
| 585 | |
| 586 | /* RNDR definitions */ |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 587 | #define ID_AA64ISAR0_EL1_RNDR_SHIFT UL(60) |
| 588 | #define ID_AA64ISAR0_EL1_RNDR_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 589 | |
| 590 | /* ID_AA64MMFR1_EL1 definitions */ |
| 591 | #define ID_AA64MMFR1_EL1_VMIDBits_SHIFT UL(4) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 592 | #define ID_AA64MMFR1_EL1_VMIDBits_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 593 | #define ID_AA64MMFR1_EL1_VMIDBits_8 UL(0) |
| 594 | #define ID_AA64MMFR1_EL1_VMIDBits_16 UL(2) |
| 595 | |
Arunachalam Ganapathy | f649121 | 2023-02-23 16:04:34 +0000 | [diff] [blame] | 596 | /* SVE Feature ID register 0 */ |
| 597 | #define ID_AA64ZFR0_EL1 S3_0_C0_C4_4 |
| 598 | |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 599 | /* SME Feature ID register 0 */ |
| 600 | #define ID_AA64SMFR0_EL1 S3_0_C0_C4_5 |
| 601 | |
AlexeiFedorov | be9209c | 2024-02-27 15:16:00 +0000 | [diff] [blame] | 602 | /* PAR_EL1 definitions */ |
| 603 | #define PAR_EL1_F_BIT (UL(1) << 0) |
| 604 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 605 | /* HPFAR_EL2 definitions */ |
| 606 | #define HPFAR_EL2_FIPA_SHIFT 4 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 607 | #define HPFAR_EL2_FIPA_WIDTH U(40) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 608 | #define HPFAR_EL2_FIPA_OFFSET 8 |
| 609 | |
| 610 | /* SPSR definitions */ |
| 611 | #define SPSR_EL2_MODE_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 612 | #define SPSR_EL2_MODE_WIDTH U(4) |
| 613 | #define SPSR_EL2_MODE_EL0t INPLACE(SPSR_EL2_MODE, UL(0)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 614 | |
| 615 | #define SPSR_EL2_MODE_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 616 | #define SPSR_EL2_MODE_WIDTH U(4) |
| 617 | #define SPSR_EL2_MODE_EL1h INPLACE(SPSR_EL2_MODE, UL(5)) |
| 618 | #define SPSR_EL2_MODE_EL1t INPLACE(SPSR_EL2_MODE, UL(4)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 619 | |
| 620 | /* FIXME: DAIF definitions are redundant here. Might need unification. */ |
| 621 | #define SPSR_EL2_nRW_SHIFT 4 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 622 | #define SPSR_EL2_nRW_WIDTH U(1) |
| 623 | #define SPSR_EL2_nRW_AARCH64 INPLACE(SPSR_EL2_nRW, UL(0)) |
| 624 | #define SPSR_EL2_nRW_AARCH32 INPLACE(SPSR_EL2_nRW, UL(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 625 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 626 | #define SPSR_EL2_DAIF_SHIFT 6 |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 627 | #define SPSR_EL2_DAIF_WIDTH U(4) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 628 | #define SPSR_EL2_AIF_SHIFT U(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 629 | |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 630 | #define SPSR_EL2_BTYPE_SHIFT U(10) |
| 631 | #define SPSR_EL2_BTYPE_WIDTH U(2) |
| 632 | |
| 633 | #define SPSR_EL2_NZCV_BITS_SHIFT U(28) |
| 634 | #define SPSR_EL2_NZCV_BITS_WIDTH U(4) |
| 635 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 636 | #define DAIF_FIQ_BIT (UL(1) << 0) |
| 637 | #define DAIF_IRQ_BIT (UL(1) << 1) |
| 638 | #define DAIF_ABT_BIT (UL(1) << 2) |
| 639 | #define DAIF_DBG_BIT (UL(1) << 3) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 640 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 641 | #define SPSR_EL2_F_BIT (UL(1) << 6) |
| 642 | #define SPSR_EL2_I_BIT (UL(1) << 7) |
| 643 | #define SPSR_EL2_A_BIT (UL(1) << 8) |
| 644 | #define SPSR_EL2_D_BIT (UL(1) << 9) |
| 645 | #define SPSR_EL2_SSBS_BIT (UL(1) << 12) |
| 646 | #define SPSR_EL2_ALLINT_BIT (UL(1) << 13) |
| 647 | #define SPSR_EL2_IL_BIT (UL(1) << 20) |
| 648 | #define SPSR_EL2_SS_BIT (UL(1) << 21) |
| 649 | #define SPSR_EL2_PAN_BIT (UL(1) << 22) |
| 650 | #define SPSR_EL2_UAO_BIT (UL(1) << 23) |
| 651 | #define SPSR_EL2_DIT_BIT (UL(1) << 24) |
| 652 | #define SPSR_EL2_TCO_BIT (UL(1) << 25) |
| 653 | #define SPSR_EL2_V_BIT (UL(1) << 28) |
| 654 | #define SPSR_EL2_C_BIT (UL(1) << 29) |
| 655 | #define SPSR_EL2_Z_BIT (UL(1) << 30) |
| 656 | #define SPSR_EL2_N_BIT (UL(1) << 31) |
| 657 | #define SPSR_EL2_PM_BIT (UL(1) << 32) |
| 658 | #define SPSR_EL2_PPEND_BIT (UL(1) << 33) |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 659 | #define SPSR_EL2_EXLOCK_BIT (UL(1) << 34) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 660 | |
Arunachalam Ganapathy | 4f601e7 | 2023-05-22 11:49:29 +0100 | [diff] [blame] | 661 | /* Floating point control and status register */ |
| 662 | #define FPCR S3_3_C4_C4_0 |
| 663 | #define FPSR S3_3_C4_C4_1 |
| 664 | |
Arunachalam Ganapathy | f649121 | 2023-02-23 16:04:34 +0000 | [diff] [blame] | 665 | /* SVE Control Register */ |
| 666 | #define ZCR_EL2 S3_4_C1_C2_0 |
Arunachalam Ganapathy | 2b45658 | 2023-05-19 11:56:44 +0100 | [diff] [blame] | 667 | #define ZCR_EL2_LEN_SHIFT UL(0) |
| 668 | #define ZCR_EL2_LEN_WIDTH UL(4) |
Arunachalam Ganapathy | f649121 | 2023-02-23 16:04:34 +0000 | [diff] [blame] | 669 | |
Arunachalam Ganapathy | 4f601e7 | 2023-05-22 11:49:29 +0100 | [diff] [blame] | 670 | #define ZCR_EL12 S3_5_C1_C2_0 |
| 671 | |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 672 | /* SME Control Register */ |
| 673 | #define SMCR_EL2 S3_4_C1_C2_6 |
| 674 | #define SMCR_EL2_LEN_SHIFT UL(0) |
| 675 | #define SMCR_EL2_LEN_WIDTH UL(4) |
| 676 | /* |
| 677 | * SMCR_EL2_RAZ_LEN is defined to find the architecturally permitted SVL. This |
| 678 | * is a combination of RAZ and LEN bit fields. |
| 679 | */ |
| 680 | #define SMCR_EL2_RAZ_LEN_SHIFT UL(0) |
| 681 | #define SMCR_EL2_RAZ_LEN_WIDTH UL(9) |
| 682 | #define SMCR_EL2_EZT0_BIT (UL(1) << 30) |
| 683 | #define SMCR_EL2_FA64_BIT (UL(1) << 31) |
| 684 | |
| 685 | /* Streaming Vector Control register */ |
| 686 | #define SVCR S3_3_C4_C2_2 |
| 687 | #define SVCR_SM_BIT (UL(1) << 0) |
| 688 | #define SVCR_ZA_BIT (UL(1) << 1) |
| 689 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 690 | /* VTCR definitions */ |
| 691 | #define VTCR_T0SZ_SHIFT 0 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 692 | #define VTCR_T0SZ_WIDTH U(6) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 693 | |
| 694 | #define VTCR_SL0_SHIFT 6 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 695 | #define VTCR_SL0_WIDTH U(2) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 696 | |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 697 | #define VTCR_SL0_4K_L2 INPLACE(VTCR_SL0, UL(0)) |
| 698 | #define VTCR_SL0_4K_L1 INPLACE(VTCR_SL0, UL(1)) |
| 699 | #define VTCR_SL0_4K_L0 INPLACE(VTCR_SL0, UL(2)) |
| 700 | #define VTCR_SL0_4K_L3 INPLACE(VTCR_SL0, UL(3)) |
Javier Almansa Sobrino | f6fff69 | 2024-02-02 17:13:57 +0000 | [diff] [blame] | 701 | #define VTCR_SL0_4K_LM1 VTCR_SL0_4K_L2 |
| 702 | |
| 703 | #define VTCR_SL2_SHIFT 33 |
| 704 | #define VTCR_SL2_WIDTH U(1) |
| 705 | #define VCTR_SL2_4K_LM1 INPLACE(VTCR_SL2, UL(1)) |
| 706 | |
| 707 | #define VTCR_DS_SHIFT 32 |
| 708 | #define VTCR_DS_WIDTH U(1) |
| 709 | #define VTCR_DS_52BIT INPLACE(VTCR_DS, UL(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 710 | |
| 711 | #define VTCR_IRGN0_SHIFT 8 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 712 | #define VTCR_IRGN0_WIDTH U(2) |
| 713 | #define VTCR_IRGN0_WBRAWA INPLACE(VTCR_IRGN0, UL(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 714 | |
| 715 | #define VTCR_ORGN0_SHIFT 10 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 716 | #define VTCR_ORGN0_WIDTH U(2) |
| 717 | #define VTCR_ORGN0_WBRAWA INPLACE(VTCR_ORGN0, UL(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 718 | |
| 719 | #define VTCR_SH0_SHIFT 12 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 720 | #define VTCR_SH0_WIDTH U(2) |
| 721 | #define VTCR_SH0_IS INPLACE(VTCR_SH0, UL(3)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 722 | |
| 723 | #define VTCR_TG0_SHIFT 14 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 724 | #define VTCR_TG0_WIDTH U(2) |
| 725 | #define VTCR_TG0_4K INPLACE(VTCR_TG0, UL(0)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 726 | |
| 727 | #define VTCR_PS_SHIFT 16 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 728 | #define VTCR_PS_WIDTH U(3) |
Mathieu Poirier | 6752efa | 2024-09-24 11:53:59 -0600 | [diff] [blame] | 729 | #define VTCR_PS_32 INPLACE(VTCR_PS, UL(0)) |
| 730 | #define VTCR_PS_36 INPLACE(VTCR_PS, UL(1)) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 731 | #define VTCR_PS_40 INPLACE(VTCR_PS, UL(2)) |
Mathieu Poirier | 6752efa | 2024-09-24 11:53:59 -0600 | [diff] [blame] | 732 | #define VTCR_PS_42 INPLACE(VTCR_PS, UL(3)) |
| 733 | #define VTCR_PS_44 INPLACE(VTCR_PS, UL(4)) |
| 734 | #define VTCR_PS_48 INPLACE(VTCR_PS, UL(5)) |
| 735 | #define VTCR_PS_52 INPLACE(VTCR_PS, UL(6)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 736 | |
| 737 | #define VTCR_VS (UL(1) << 19) |
| 738 | #define VTCR_NSA (UL(1) << 30) |
| 739 | #define VTCR_RES1 (UL(1) << 31) |
| 740 | |
| 741 | #define VTCR_FLAGS ( \ |
| 742 | VTCR_IRGN0_WBRAWA | /* PTW inner cache attr. is WB RAWA*/ \ |
| 743 | VTCR_ORGN0_WBRAWA | /* PTW outer cache attr. is WB RAWA*/ \ |
| 744 | VTCR_SH0_IS | /* PTW shareability attr. is Outer Sharable*/\ |
| 745 | VTCR_TG0_4K | /* 4K granule size in non-secure PT*/ \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 746 | /* VS = 0 size(VMID) = 8 */ \ |
| 747 | /* NSW = 0 non-secure s2 is made of secure pages*/ \ |
| 748 | VTCR_NSA | /* non-secure IPA maps to non-secure PA */ \ |
| 749 | VTCR_RES1 \ |
| 750 | ) |
| 751 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 752 | /* PMCR_EL0 Definitions */ |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 753 | #define PMCR_EL0_N_SHIFT 11 |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 754 | #define PMCR_EL0_N_WIDTH U(5) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 755 | #define PMCR_EL0_LC_BIT (UL(1) << 6) |
| 756 | #define PMCR_EL0_DP_BIT (UL(1) << 5) |
| 757 | #define PMCR_EL0_C_BIT (UL(1) << 2) |
| 758 | #define PMCR_EL0_P_BIT (UL(1) << 1) |
| 759 | #define PMCR_EL0_E_BIT (UL(1) << 0) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 760 | |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 761 | #define PMCR_EL0_INIT (PMCR_EL0_LC_BIT | PMCR_EL0_DP_BIT) |
| 762 | #define PMCR_EL0_INIT_RESET (PMCR_EL0_INIT | PMCR_EL0_C_BIT | \ |
| 763 | PMCR_EL0_P_BIT) |
AlexeiFedorov | c1c2aed | 2025-01-15 18:00:08 +0000 | [diff] [blame] | 764 | /* PMSELR_EL0 Definitions */ |
| 765 | #define PMSELR_EL0_SEL_SHIFT 0 |
| 766 | #define PMSELR_EL0_SEL_WIDTH U(5) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 767 | |
AlexeiFedorov | 862f96c | 2024-03-01 16:26:48 +0000 | [diff] [blame] | 768 | /* DCZID_EL0 Definitions */ |
| 769 | #define DCZID_EL0_BS_SHIFT 0 |
| 770 | #define DCZID_EL0_BS_WIDTH U(4) |
| 771 | #define DCZID_EL0_DZP_BIT (UL(1) << 4) |
| 772 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 773 | /* MDSCR_EL1 Definitions */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 774 | #define MDSCR_EL1_TDCC_BIT (UL(1) << 12) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 775 | |
| 776 | /* SCTLR register definitions */ |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 777 | #define SCTLR_ELx_RES1_BIT ((UL(1) << 22) /* TODO: ARMv8.5-CSEH, otherwise RES1 */ | \ |
| 778 | (UL(1) << 11) /* TODO: ARMv8.5-CSEH, otherwise RES1 */) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 779 | |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 780 | #define SCTLR_ELx_M_BIT (UL(1) << 0) |
AlexeiFedorov | bb01b42 | 2023-10-24 17:00:50 +0100 | [diff] [blame] | 781 | #define SCTLR_ELx_A_BIT (UL(1) << 1) |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 782 | #define SCTLR_ELx_C_BIT (UL(1) << 2) |
| 783 | #define SCTLR_ELx_SA_BIT (UL(1) << 3) |
| 784 | #define SCTLR_ELx_SA0_BIT (UL(1) << 4) |
| 785 | #define SCTLR_ELx_CP15BEN_BIT (UL(1) << 5) |
| 786 | #define SCTLR_ELx_nAA_BIT (UL(1) << 6) |
| 787 | #define SCTLR_ELx_SED_BIT (UL(1) << 8) |
| 788 | #define SCTLR_ELx_EOS_BIT (UL(1) << 11) |
| 789 | #define SCTLR_ELx_I_BIT (UL(1) << 12) |
| 790 | #define SCTLR_ELx_DZE_BIT (UL(1) << 14) |
| 791 | #define SCTLR_ELx_UCT_BIT (UL(1) << 15) |
| 792 | #define SCTLR_ELx_nTWI_BIT (UL(1) << 16) |
| 793 | #define SCTLR_ELx_nTWE_BIT (UL(1) << 18) |
| 794 | #define SCTLR_ELx_WXN_BIT (UL(1) << 19) |
| 795 | #define SCTLR_ELx_TSCXT_BIT (UL(1) << 20) |
| 796 | #define SCTLR_ELx_EIS_BIT (UL(1) << 22) |
| 797 | #define SCTLR_ELx_SPAN_BIT (UL(1) << 23) |
| 798 | #define SCTLR_ELx_EE_BIT (UL(1) << 25) |
| 799 | #define SCTLR_ELx_UCI_BIT (UL(1) << 26) |
| 800 | #define SCTLR_ELx_nTLSMD_BIT (UL(1) << 28) |
| 801 | #define SCTLR_ELx_LSMAOE_BIT (UL(1) << 29) |
| 802 | #define SCTLR_ELx_EnIA_BIT (UL(1) << 31) |
Shruti Gupta | a4cb2a2 | 2023-05-23 14:55:49 +0100 | [diff] [blame] | 803 | #define SCTLR_ELx_BT0_BIT (UL(1) << 35) |
| 804 | #define SCTLR_ELx_BT1_BIT (UL(1) << 36) |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 805 | #define SCTLR_ELx_DSSBS_BIT (UL(1) << 44) |
| 806 | #define SCTLR_ELx_SPINTMASK_BIT (UL(1) << 62) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 807 | |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 808 | #define SCTLR_EL1_FLAGS (SCTLR_ELx_SPAN_BIT | SCTLR_ELx_EIS_BIT | SCTLR_ELx_nTWE_BIT | \ |
| 809 | SCTLR_ELx_nTWI_BIT | SCTLR_ELx_EOS_BIT | SCTLR_ELx_nAA_BIT | \ |
| 810 | SCTLR_ELx_CP15BEN_BIT | SCTLR_ELx_SA0_BIT | SCTLR_ELx_SA_BIT) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 811 | |
AlexeiFedorov | bb01b42 | 2023-10-24 17:00:50 +0100 | [diff] [blame] | 812 | #define SCTLR_EL2_BITS (SCTLR_ELx_C_BIT /* Data accesses are cacheable |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 813 | * as per translation tables */ | \ |
| 814 | /* SCTLR_EL2_M = 0 (MMU disabled) */ \ |
| 815 | /* SCTLR_EL2_A = 0 |
| 816 | * (No alignment checks) */ \ |
| 817 | SCTLR_ELx_SA_BIT /* SP aligned at EL2 */ | \ |
| 818 | SCTLR_ELx_SA0_BIT /* SP Alignment check enable for EL0 */ \ |
| 819 | /* SCTLR_EL2_CP15BEN = 0 (EL0 using AArch32: |
| 820 | * EL0 execution of the CP15DMB, CP15DSB, |
| 821 | * and CP15ISB instructions is |
| 822 | * UNDEFINED. */ \ |
| 823 | /* SCTLR_EL2_NAA = 0 (unaligned MA fault |
| 824 | * at EL2 and EL0) */ \ |
| 825 | /* SCTLR_EL2_ITD = 0 (A32 Only) */ | \ |
| 826 | SCTLR_ELx_SED_BIT /* A32 Only, RES1 for non-A32 systems */ \ |
| 827 | /* SCTLR_EL2_EOS TODO: ARMv8.5-CSEH, |
| 828 | * otherwise RES1 */ | \ |
| 829 | SCTLR_ELx_I_BIT /* I$ is ON for EL2 and EL0 */ | \ |
| 830 | SCTLR_ELx_DZE_BIT /* Do not trap DC ZVA */ | \ |
| 831 | SCTLR_ELx_UCT_BIT /* Allow EL0 access to CTR_EL0 */ | \ |
| 832 | SCTLR_ELx_nTWI_BIT /* Don't trap WFI from EL0 to EL2 */ | \ |
| 833 | SCTLR_ELx_nTWE_BIT /* Don't trap WFE from EL0 to EL2 */ | \ |
| 834 | SCTLR_ELx_WXN_BIT /* W implies XN */ | \ |
| 835 | SCTLR_ELx_TSCXT_BIT /* Trap EL0 accesss to SCXTNUM_EL0 */ | \ |
| 836 | /* SCTLR_EL2_EIS EL2 exception is context |
| 837 | * synchronizing |
| 838 | */ \ |
| 839 | SCTLR_ELx_RES1_BIT | \ |
| 840 | /* SCTLR_EL2_SPAN = 0 (Set PSTATE.PAN = 1 on |
| 841 | * exceptions to EL2)) */ \ |
| 842 | SCTLR_ELx_UCI_BIT /* Allow cache maintenance |
| 843 | * instructions at EL0 */ | \ |
| 844 | SCTLR_ELx_nTLSMD_BIT /* A32/T32 only */ | \ |
| 845 | SCTLR_ELx_LSMAOE_BIT /* A32/T32 only */) |
| 846 | |
AlexeiFedorov | bb01b42 | 2023-10-24 17:00:50 +0100 | [diff] [blame] | 847 | #ifdef RMM_FPU_USE_AT_REL2 |
| 848 | #define SCTLR_EL2_INIT SCTLR_EL2_BITS |
| 849 | #else |
| 850 | #define SCTLR_EL2_INIT (SCTLR_EL2_BITS | \ |
| 851 | SCTLR_ELx_A_BIT /* Alignment fault check enable */) |
| 852 | #endif |
| 853 | |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 854 | #define SCTLR_EL2_RUNTIME (SCTLR_EL2_INIT | \ |
| 855 | SCTLR_ELx_M_BIT /* MMU enabled */) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 856 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 857 | /* SCTLR2_ELx Register definitions */ |
| 858 | #define SCTLR2_ELx_NMEA_BIT (UL(1) << 2) |
| 859 | #define SCTLR2_ELx_EnADERR_BIT (UL(1) << 3) |
| 860 | #define SCTLR2_ELx_EnANERR_BIT (UL(1) << 4) |
| 861 | #define SCTLR2_ELx_EASE_BIT (UL(1) << 5) |
| 862 | #define SCTLR2_ELx_EnIDCP128_BIT (UL(1) << 6) |
| 863 | |
Arunachalam Ganapathy | 9ade18b | 2023-06-12 14:07:21 +0100 | [diff] [blame] | 864 | /* RMM sets HCR_EL2.E2H to 1. CPTR_EL2 definitions when HCR_EL2.E2H == 1 */ |
| 865 | #define CPTR_EL2_VHE_TTA (UL(1) << 28) |
| 866 | #define CPTR_EL2_VHE_TAM (UL(1) << 30) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 867 | |
Arunachalam Ganapathy | 9ade18b | 2023-06-12 14:07:21 +0100 | [diff] [blame] | 868 | #define CPTR_EL2_VHE_FPEN_SHIFT UL(20) |
| 869 | #define CPTR_EL2_VHE_FPEN_WIDTH UL(2) |
| 870 | #define CPTR_EL2_VHE_FPEN_TRAP_ALL_00 UL(0) |
| 871 | #define CPTR_EL2_VHE_FPEN_TRAP_TGE_01 UL(1) |
| 872 | #define CPTR_EL2_VHE_FPEN_TRAP_ALL_10 UL(2) |
| 873 | #define CPTR_EL2_VHE_FPEN_NO_TRAP_11 UL(3) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 874 | |
Arunachalam Ganapathy | 9ade18b | 2023-06-12 14:07:21 +0100 | [diff] [blame] | 875 | #define CPTR_EL2_VHE_ZEN_SHIFT UL(16) |
| 876 | #define CPTR_EL2_VHE_ZEN_WIDTH UL(2) |
| 877 | #define CPTR_EL2_VHE_ZEN_TRAP_ALL_00 UL(0x0) |
| 878 | #define CPTR_EL2_VHE_ZEN_NO_TRAP_11 UL(0x3) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 879 | |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 880 | #define CPTR_EL2_VHE_SMEN_SHIFT UL(24) |
| 881 | #define CPTR_EL2_VHE_SMEN_WIDTH UL(2) |
| 882 | #define CPTR_EL2_VHE_SMEN_TRAP_ALL_00 UL(0x0) |
| 883 | #define CPTR_EL2_VHE_SMEN_NO_TRAP_11 UL(0x3) |
| 884 | |
Arunachalam Ganapathy | ddccbae | 2023-10-03 11:29:42 +0100 | [diff] [blame] | 885 | #define CPTR_EL2_VHE_SIMD_MASK (MASK(CPTR_EL2_VHE_FPEN) | \ |
| 886 | MASK(CPTR_EL2_VHE_ZEN) | \ |
| 887 | MASK(CPTR_EL2_VHE_SMEN)) |
| 888 | |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 889 | /* Trap all AMU, trace, FPU, SVE, SME accesses */ |
Arunachalam Ganapathy | 9ade18b | 2023-06-12 14:07:21 +0100 | [diff] [blame] | 890 | #define CPTR_EL2_VHE_INIT ((CPTR_EL2_VHE_ZEN_TRAP_ALL_00 << \ |
| 891 | CPTR_EL2_VHE_ZEN_SHIFT) | \ |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 892 | (CPTR_EL2_VHE_SMEN_TRAP_ALL_00 << \ |
| 893 | CPTR_EL2_VHE_SMEN_SHIFT) | \ |
Arunachalam Ganapathy | 9ade18b | 2023-06-12 14:07:21 +0100 | [diff] [blame] | 894 | (CPTR_EL2_VHE_FPEN_TRAP_ALL_00 << \ |
| 895 | CPTR_EL2_VHE_FPEN_SHIFT) | \ |
| 896 | CPTR_EL2_VHE_TTA | \ |
| 897 | CPTR_EL2_VHE_TAM) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 898 | |
| 899 | /* MDCR_EL2 definitions */ |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 900 | #define MDCR_EL2_HPMFZS (UL(1) << 36) |
| 901 | #define MDCR_EL2_HPMFZO (UL(1) << 29) |
| 902 | #define MDCR_EL2_MTPME (UL(1) << 28) |
| 903 | #define MDCR_EL2_TDCC (UL(1) << 27) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 904 | #define MDCR_EL2_HLP (UL(1) << 26) |
| 905 | #define MDCR_EL2_HCCD (UL(1) << 23) |
| 906 | #define MDCR_EL2_TTRF (UL(1) << 19) |
| 907 | #define MDCR_EL2_HPMD (UL(1) << 17) |
| 908 | #define MDCR_EL2_TPMS (UL(1) << 14) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 909 | #define MDCR_EL2_E2PB(x) ((x) << 12) |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 910 | #define MDCR_EL2_E2PB_EL1 UL(3) |
| 911 | #define MDCR_EL2_TDRA_BIT (UL(1) << 11) |
| 912 | #define MDCR_EL2_TDOSA_BIT (UL(1) << 10) |
| 913 | #define MDCR_EL2_TDA_BIT (UL(1) << 9) |
| 914 | #define MDCR_EL2_TDE_BIT (UL(1) << 8) |
| 915 | #define MDCR_EL2_HPME_BIT (UL(1) << 7) |
| 916 | #define MDCR_EL2_TPM_BIT (UL(1) << 6) |
| 917 | #define MDCR_EL2_TPMCR_BIT (UL(1) << 5) |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 918 | |
| 919 | #define MDCR_EL2_HPMN_SHIFT UL(0) |
| 920 | #define MDCR_EL2_HPMN_WIDTH UL(5) |
| 921 | |
| 922 | #define MDCR_EL2_INIT (MDCR_EL2_MTPME | \ |
| 923 | MDCR_EL2_HCCD | \ |
| 924 | MDCR_EL2_HPMD | \ |
| 925 | MDCR_EL2_TDA_BIT | \ |
| 926 | MDCR_EL2_TPM_BIT | \ |
| 927 | MDCR_EL2_TPMCR_BIT) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 928 | |
Arvind Ram Prakash | bd36a1b | 2022-12-15 12:16:36 -0600 | [diff] [blame] | 929 | /* Armv8.3 Pointer Authentication Registers */ |
| 930 | #define APIAKeyLo_EL1 S3_0_C2_C1_0 |
| 931 | #define APIAKeyHi_EL1 S3_0_C2_C1_1 |
| 932 | #define APIBKeyLo_EL1 S3_0_C2_C1_2 |
| 933 | #define APIBKeyHi_EL1 S3_0_C2_C1_3 |
| 934 | #define APDAKeyLo_EL1 S3_0_C2_C2_0 |
| 935 | #define APDAKeyHi_EL1 S3_0_C2_C2_1 |
| 936 | #define APDBKeyLo_EL1 S3_0_C2_C2_2 |
| 937 | #define APDBKeyHi_EL1 S3_0_C2_C2_3 |
| 938 | #define APGAKeyLo_EL1 S3_0_C2_C3_0 |
| 939 | #define APGAKeyHi_EL1 S3_0_C2_C3_1 |
| 940 | |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 941 | /* |
| 942 | * MPIDR_EL1 definitions |
| 943 | * 'MPIDR_EL1_AFF<n>_VAL_SHIFT' constants specify the right shift |
| 944 | * for affinity field <n> that gives the field's actual value. |
| 945 | */ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 946 | |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 947 | /* Aff0[3:0] - Affinity level 0 |
| 948 | * For compatibility with GICv3 only Aff0[3:0] field is used, |
| 949 | * and Aff0[7:4] of MPIDR_EL1 value is RES0 to match RmiRecMpidr. |
| 950 | */ |
| 951 | #define MPIDR_EL1_AFF0_SHIFT U(0) |
| 952 | #define MPIDR_EL1_AFF0_WIDTH U(4) |
| 953 | #define MPIDR_EL1_AFF0_VAL_SHIFT U(0) |
| 954 | |
| 955 | /* Aff1[15:8] - Affinity level 1 */ |
| 956 | #define MPIDR_EL1_AFF1_SHIFT U(8) |
| 957 | #define MPIDR_EL1_AFF1_WIDTH U(8) |
| 958 | #define MPIDR_EL1_AFF1_VAL_SHIFT U(4) |
| 959 | |
| 960 | /* Aff2[23:16] - Affinity level 2 */ |
| 961 | #define MPIDR_EL1_AFF2_SHIFT U(16) |
| 962 | #define MPIDR_EL1_AFF2_WIDTH U(8) |
| 963 | #define MPIDR_EL1_AFF2_VAL_SHIFT U(4) |
| 964 | |
| 965 | /* Aff3[39:32] - Affinity level 3 */ |
| 966 | #define MPIDR_EL1_AFF3_SHIFT U(32) |
| 967 | #define MPIDR_EL1_AFF3_WIDTH U(8) |
| 968 | #define MPIDR_EL1_AFF3_VAL_SHIFT U(12) |
| 969 | |
| 970 | /* |
| 971 | * Extract the value of MPIDR_EL1.Aff<n> register field shifted right |
| 972 | * so it can be evaluated directly. |
| 973 | */ |
| 974 | #define MPIDR_EL1_AFF(n, reg) \ |
| 975 | (((reg) & MASK(MPIDR_EL1_AFF##n)) >> MPIDR_EL1_AFF##n##_VAL_SHIFT) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 976 | |
| 977 | /* |
| 978 | * RmiRecMpidr type definitions. |
| 979 | * |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 980 | * 'RMI_MPIDR_AFF<n>_VAL_SHIFT' constants specify the right shift |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 981 | * for affinity field <n> that gives the field's actual value. |
| 982 | * |
| 983 | * Aff0[3:0] - Affinity level 0 |
| 984 | * For compatibility with GICv3 only Aff0[3:0] field is used, |
| 985 | * and Aff0[7:4] of a REC MPIDR value is RES0. |
| 986 | */ |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 987 | #define RMI_MPIDR_AFF0_SHIFT U(0) |
| 988 | #define RMI_MPIDR_AFF0_WIDTH U(4) |
| 989 | #define RMI_MPIDR_AFF0_VAL_SHIFT U(0) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 990 | |
| 991 | /* Aff1[15:8] - Affinity level 1 */ |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 992 | #define RMI_MPIDR_AFF1_SHIFT U(8) |
| 993 | #define RMI_MPIDR_AFF1_WIDTH U(8) |
| 994 | #define RMI_MPIDR_AFF1_VAL_SHIFT U(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 995 | |
| 996 | /* Aff2[23:16] - Affinity level 2 */ |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 997 | #define RMI_MPIDR_AFF2_SHIFT U(16) |
| 998 | #define RMI_MPIDR_AFF2_WIDTH U(8) |
| 999 | #define RMI_MPIDR_AFF2_VAL_SHIFT U(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1000 | |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 1001 | /* Aff3[31:24] - Affinity level 3 */ |
| 1002 | #define RMI_MPIDR_AFF3_SHIFT U(24) |
| 1003 | #define RMI_MPIDR_AFF3_WIDTH U(8) |
| 1004 | #define RMI_MPIDR_AFF3_VAL_SHIFT U(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1005 | |
| 1006 | /* |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 1007 | * Extract the value of RmiRecMpidr.Aff<n> field shifted right |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1008 | * so it can be evaluated directly. |
| 1009 | */ |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 1010 | #define RMI_MPIDR_AFF(n, val) \ |
| 1011 | (((val) & MASK(RMI_MPIDR_AFF##n)) >> RMI_MPIDR_AFF##n##_VAL_SHIFT) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1012 | |
AlexeiFedorov | 887a8aa | 2024-09-11 16:22:20 +0100 | [diff] [blame] | 1013 | /* VMPIDR bit [31] = RES1 */ |
| 1014 | #define VMPIDR_EL2_RES1 (UL(1) << 31) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* ICC_SRE_EL2 defintions */ |
| 1017 | #define ICC_SRE_EL2_ENABLE (UL(1) << 3) /* Enable lower EL access to ICC_SRE_EL1 */ |
| 1018 | #define ICC_SRE_EL2_DIB (UL(1) << 2) /* Disable IRQ bypass */ |
| 1019 | #define ICC_SRE_EL2_DFB (UL(1) << 1) /* Disable FIQ bypass */ |
| 1020 | #define ICC_SRE_EL2_SRE (UL(1) << 0) /* Enable sysreg access */ |
| 1021 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 1022 | #define ICC_SRE_EL2_INIT (ICC_SRE_EL2_ENABLE | ICC_SRE_EL2_DIB | \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1023 | ICC_SRE_EL2_DFB | ICC_SRE_EL2_SRE) |
| 1024 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1025 | #define PMSCR_EL2_INIT 0x0 |
| 1026 | |
| 1027 | #define SYSREG_ESR(op0, op1, crn, crm, op2) \ |
AlexeiFedorov | 13b86dd | 2023-08-29 10:38:09 +0100 | [diff] [blame] | 1028 | ((UL(op0) << ESR_EL2_SYSREG_TRAP_OP0_SHIFT) | \ |
| 1029 | (UL(op1) << ESR_EL2_SYSREG_TRAP_OP1_SHIFT) | \ |
| 1030 | (UL(crn) << ESR_EL2_SYSREG_TRAP_CRN_SHIFT) | \ |
| 1031 | (UL(crm) << ESR_EL2_SYSREG_TRAP_CRM_SHIFT) | \ |
| 1032 | (UL(op2) << ESR_EL2_SYSREG_TRAP_OP2_SHIFT)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1033 | |
| 1034 | #define ESR_EL2_SYSREG_MASK SYSREG_ESR(3, 7, 15, 15, 7) |
| 1035 | |
| 1036 | #define ESR_EL2_SYSREG_ID_MASK SYSREG_ESR(3, 7, 15, 0, 0) |
| 1037 | #define ESR_EL2_SYSREG_ID SYSREG_ESR(3, 0, 0, 0, 0) |
| 1038 | |
| 1039 | #define ESR_EL2_SYSREG_ID_AA64PFR0_EL1 SYSREG_ESR(3, 0, 0, 4, 0) |
| 1040 | #define ESR_EL2_SYSREG_ID_AA64PFR1_EL1 SYSREG_ESR(3, 0, 0, 4, 1) |
| 1041 | #define ESR_EL2_SYSREG_ID_AA64ZFR0_EL1 SYSREG_ESR(3, 0, 0, 4, 4) |
Arunachalam Ganapathy | 83f46ca | 2023-08-15 18:13:27 +0100 | [diff] [blame] | 1042 | #define ESR_EL2_SYSREG_ID_AA64SMFR0_EL1 SYSREG_ESR(3, 0, 0, 4, 5) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1043 | |
| 1044 | #define ESR_EL2_SYSREG_ID_AA64DFR0_EL1 SYSREG_ESR(3, 0, 0, 5, 0) |
| 1045 | #define ESR_EL2_SYSREG_ID_AA64DFR1_EL1 SYSREG_ESR(3, 0, 0, 5, 1) |
| 1046 | |
| 1047 | #define ESR_EL2_SYSREG_ID_AA64AFR0_EL1 SYSREG_ESR(3, 0, 0, 5, 4) |
| 1048 | #define ESR_EL2_SYSREG_ID_AA64AFR1_EL1 SYSREG_ESR(3, 0, 0, 5, 5) |
| 1049 | |
| 1050 | #define ESR_EL2_SYSREG_ID_AA64ISAR0_EL1 SYSREG_ESR(3, 0, 0, 6, 0) |
| 1051 | #define ESR_EL2_SYSREG_ID_AA64ISAR1_EL1 SYSREG_ESR(3, 0, 0, 6, 1) |
| 1052 | |
| 1053 | #define ESR_EL2_SYSREG_ID_AA64MMFR0_EL1 SYSREG_ESR(3, 0, 0, 7, 0) |
| 1054 | #define ESR_EL2_SYSREG_ID_AA64MMFR1_EL1 SYSREG_ESR(3, 0, 0, 7, 1) |
| 1055 | #define ESR_EL2_SYSREG_ID_AA64MMFR2_EL1 SYSREG_ESR(3, 0, 0, 7, 2) |
| 1056 | |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 1057 | /* ID_AA64ISAR1_EL1 definitions */ |
| 1058 | #define ID_AA64ISAR1_EL1_GPI_SHIFT UL(28) |
| 1059 | #define ID_AA64ISAR1_EL1_GPI_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 1060 | |
| 1061 | #define ID_AA64ISAR1_EL1_GPA_SHIFT UL(24) |
| 1062 | #define ID_AA64ISAR1_EL1_GPA_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 1063 | |
| 1064 | #define ID_AA64ISAR1_EL1_API_SHIFT UL(8) |
| 1065 | #define ID_AA64ISAR1_EL1_API_WIDTH UL(4) |
AlexeiFedorov | 7bb7a70 | 2023-01-17 17:04:14 +0000 | [diff] [blame] | 1066 | |
| 1067 | #define ID_AA64ISAR1_EL1_APA_SHIFT UL(4) |
| 1068 | #define ID_AA64ISAR1_EL1_APA_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1069 | |
| 1070 | #define ESR_EL2_SYSREG_TIMERS_MASK SYSREG_ESR(3, 3, 15, 12, 0) |
| 1071 | #define ESR_EL2_SYSREG_TIMERS SYSREG_ESR(3, 3, 14, 0, 0) |
| 1072 | |
| 1073 | #define ESR_EL2_SYSREG_TIMER_CNTP_TVAL_EL0 SYSREG_ESR(3, 3, 14, 2, 0) |
| 1074 | #define ESR_EL2_SYSREG_TIMER_CNTP_CTL_EL0 SYSREG_ESR(3, 3, 14, 2, 1) |
| 1075 | #define ESR_EL2_SYSREG_TIMER_CNTP_CVAL_EL0 SYSREG_ESR(3, 3, 14, 2, 2) |
| 1076 | #define ESR_EL2_SYSREG_TIMER_CNTV_TVAL_EL0 SYSREG_ESR(3, 3, 14, 3, 0) |
| 1077 | #define ESR_EL2_SYSREG_TIMER_CNTV_CTL_EL0 SYSREG_ESR(3, 3, 14, 3, 1) |
| 1078 | #define ESR_EL2_SYSREG_TIMER_CNTV_CVAL_EL0 SYSREG_ESR(3, 3, 14, 3, 2) |
| 1079 | |
| 1080 | #define ESR_EL2_SYSREG_ICC_PMR_EL1 SYSREG_ESR(3, 0, 4, 6, 0) |
| 1081 | |
| 1082 | /* |
| 1083 | * GIC system registers encoding mask for registers from |
| 1084 | * ICC_IAR0_EL1(3, 0, 12, 8, 0) to ICC_IGRPEN1_EL1(3, 0, 12, 12, 7). |
| 1085 | */ |
| 1086 | #define ESR_EL2_SYSREG_ICC_EL1_MASK SYSREG_ESR(3, 3, 15, 8, 0) |
| 1087 | #define ESR_EL2_SYSREG_ICC_EL1 SYSREG_ESR(3, 0, 12, 8, 0) |
| 1088 | |
| 1089 | #define ESR_EL2_SYSREG_ICC_DIR SYSREG_ESR(3, 0, 12, 11, 1) |
| 1090 | #define ESR_EL2_SYSREG_ICC_SGI1R_EL1 SYSREG_ESR(3, 0, 12, 11, 5) |
| 1091 | #define ESR_EL2_SYSREG_ICC_SGI0R_EL1 SYSREG_ESR(3, 0, 12, 11, 7) |
| 1092 | |
| 1093 | #define ESR_EL2_SYSREG_DIRECTION (UL(1) << 0) |
AlexeiFedorov | 13b86dd | 2023-08-29 10:38:09 +0100 | [diff] [blame] | 1094 | #define ESR_EL2_SYSREG_IS_WRITE(esr) (((esr) & ESR_EL2_SYSREG_DIRECTION) == 0UL) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1095 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 1096 | #define ESR_IL(esr) ((esr) & MASK(ESR_EL2_IL)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1097 | |
AlexeiFedorov | feaef16 | 2022-12-23 16:59:51 +0000 | [diff] [blame] | 1098 | #define ESR_EL2_SYSREG_ISS_RT(esr) EXTRACT(ESR_EL2_SYSREG_TRAP_RT, esr) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1099 | |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 1100 | #define ICC_HPPIR1_EL1_INTID_SHIFT UL(0) |
| 1101 | #define ICC_HPPIR1_EL1_INTID_WIDTH UL(24) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1102 | |
| 1103 | #define CNTHCTL_EL2_EL0PCTEN (UL(1) << UL(0)) |
| 1104 | #define CNTHCTL_EL2_EL0VCTEN (UL(1) << UL(1)) |
| 1105 | #define CNTHCTL_EL2_EL1PCTEN (UL(1) << 10) |
| 1106 | #define CNTHCTL_EL2_EL1PTEN (UL(1) << 11) |
| 1107 | #define CNTHCTL_EL2_EL1TVT (UL(1) << 13) |
| 1108 | #define CNTHCTL_EL2_EL1TVCT (UL(1) << 14) |
| 1109 | #define CNTHCTL_EL2_CNTVMASK (UL(1) << 18) |
| 1110 | #define CNTHCTL_EL2_CNTPMASK (UL(1) << 19) |
| 1111 | |
| 1112 | #define CNTHCTL_EL2_INIT (CNTHCTL_EL2_EL0VCTEN | CNTHCTL_EL2_EL0PCTEN) |
| 1113 | |
| 1114 | #define CNTHCTL_EL2_NO_TRAPS (CNTHCTL_EL2_EL1PCTEN | \ |
| 1115 | CNTHCTL_EL2_EL1PTEN) |
| 1116 | |
| 1117 | #define CNTx_CTL_ENABLE (UL(1) << 0) |
| 1118 | #define CNTx_CTL_IMASK (UL(1) << 1) |
| 1119 | #define CNTx_CTL_ISTATUS (UL(1) << 2) |
| 1120 | |
| 1121 | /******************************************************************************* |
| 1122 | * Definitions of register offsets, fields and macros for CPU system |
| 1123 | * instructions. |
| 1124 | ******************************************************************************/ |
| 1125 | |
| 1126 | #define TLBI_ADDR_SHIFT U(12) |
AlexeiFedorov | 1ba649f | 2023-10-19 13:56:02 +0100 | [diff] [blame] | 1127 | #define TLBI_ADDR_MASK UL(0x0FFFFFFFFFFF) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1128 | #define TLBI_ADDR(x) (((x) >> TLBI_ADDR_SHIFT) & TLBI_ADDR_MASK) |
| 1129 | |
| 1130 | /* ID_AA64MMFR2_EL1 definitions */ |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 1131 | #define ID_AA64MMFR2_EL1_ST_SHIFT UL(28) |
| 1132 | #define ID_AA64MMFR2_EL1_ST_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1133 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 1134 | #define ID_AA64MMFR2_EL1_CNP_SHIFT UL(0) |
| 1135 | #define ID_AA64MMFR2_EL1_CNP_WIDTH UL(4) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1136 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 1137 | /* ID_AA64MMFR3_EL1_definitions */ |
| 1138 | #define ID_AA64MMFR3 S3_0_C0_C7_3 |
| 1139 | #define ID_AA64MMFR3_EL1_SCTLRX_SHIFT UL(4) |
| 1140 | #define ID_AA64MMFR3_EL1_SCTLRX_WIDTH UL(4) |
| 1141 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1142 | /* Custom defined values to indicate the vector offset to exception handlers */ |
| 1143 | #define ARM_EXCEPTION_SYNC_LEL 0 |
| 1144 | #define ARM_EXCEPTION_IRQ_LEL 1 |
| 1145 | #define ARM_EXCEPTION_FIQ_LEL 2 |
| 1146 | #define ARM_EXCEPTION_SERROR_LEL 3 |
| 1147 | |
AlexeiFedorov | 537bee0 | 2023-02-02 13:38:23 +0000 | [diff] [blame] | 1148 | #define VBAR_CEL_SP_EL0_OFFSET 0x0 |
| 1149 | #define VBAR_CEL_SP_ELx_OFFSET 0x200 |
| 1150 | #define VBAR_LEL_AA64_OFFSET 0x400 |
| 1151 | #define VBAR_LEL_AA32_OFFSET 0x600 |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1152 | |
Javier Almansa Sobrino | cfd3254 | 2024-10-09 19:38:56 +0100 | [diff] [blame] | 1153 | /* SError vector offset from Sync exception vector */ |
| 1154 | #define VBAR_SERROR_OFFSET UL(0x180) |
| 1155 | |
AlexeiFedorov | 4c7d485 | 2024-01-25 14:37:34 +0000 | [diff] [blame] | 1156 | /* Stack Pointer selection */ |
| 1157 | #define MODE_SP_EL0 UL(0) |
| 1158 | #define MODE_SP_ELX UL(1) |
| 1159 | |
Javier Almansa Sobrino | 34005b9 | 2024-10-11 17:53:41 +0100 | [diff] [blame] | 1160 | /******************************************************************************* |
| 1161 | * FEAT_GCS - Guarded Control Stack Registers |
| 1162 | ******************************************************************************/ |
| 1163 | #define ID_GCSCR_EL12 S3_5_C2_C5_0 |
| 1164 | #define GCSCR_EXLOCK_EN_BIT (UL(1) << 6) |
| 1165 | |
| 1166 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1167 | #endif /* ARCH_H */ |