Thomas Gleixner | caab277 | 2019-06-03 07:44:50 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Contains CPU feature definitions |
| 4 | * |
| 5 | * Copyright (C) 2015 ARM Ltd. |
Will Deacon | a2a6996 | 2020-04-21 15:29:22 +0100 | [diff] [blame] | 6 | * |
| 7 | * A note for the weary kernel hacker: the code here is confusing and hard to |
| 8 | * follow! That's partly because it's solving a nasty problem, but also because |
| 9 | * there's a little bit of over-abstraction that tends to obscure what's going |
| 10 | * on behind a maze of helper functions and macros. |
| 11 | * |
| 12 | * The basic problem is that hardware folks have started gluing together CPUs |
| 13 | * with distinct architectural features; in some cases even creating SoCs where |
| 14 | * user-visible instructions are available only on a subset of the available |
| 15 | * cores. We try to address this by snapshotting the feature registers of the |
| 16 | * boot CPU and comparing these with the feature registers of each secondary |
| 17 | * CPU when bringing them up. If there is a mismatch, then we update the |
| 18 | * snapshot state to indicate the lowest-common denominator of the feature, |
| 19 | * known as the "safe" value. This snapshot state can be queried to view the |
| 20 | * "sanitised" value of a feature register. |
| 21 | * |
| 22 | * The sanitised register values are used to decide which capabilities we |
| 23 | * have in the system. These may be in the form of traditional "hwcaps" |
| 24 | * advertised to userspace or internal "cpucaps" which are used to configure |
| 25 | * things like alternative patching and static keys. While a feature mismatch |
| 26 | * may result in a TAINT_CPU_OUT_OF_SPEC kernel taint, a capability mismatch |
| 27 | * may prevent a CPU from being onlined at all. |
| 28 | * |
| 29 | * Some implementation details worth remembering: |
| 30 | * |
| 31 | * - Mismatched features are *always* sanitised to a "safe" value, which |
| 32 | * usually indicates that the feature is not supported. |
| 33 | * |
| 34 | * - A mismatched feature marked with FTR_STRICT will cause a "SANITY CHECK" |
| 35 | * warning when onlining an offending CPU and the kernel will be tainted |
| 36 | * with TAINT_CPU_OUT_OF_SPEC. |
| 37 | * |
| 38 | * - Features marked as FTR_VISIBLE have their sanitised value visible to |
| 39 | * userspace. FTR_VISIBLE features in registers that are only visible |
| 40 | * to EL0 by trapping *must* have a corresponding HWCAP so that late |
| 41 | * onlining of CPUs cannot lead to features disappearing at runtime. |
| 42 | * |
| 43 | * - A "feature" is typically a 4-bit register field. A "capability" is the |
| 44 | * high-level description derived from the sanitised field value. |
| 45 | * |
| 46 | * - Read the Arm ARM (DDI 0487F.a) section D13.1.3 ("Principles of the ID |
| 47 | * scheme for fields in ID registers") to understand when feature fields |
| 48 | * may be signed or unsigned (FTR_SIGNED and FTR_UNSIGNED accordingly). |
| 49 | * |
| 50 | * - KVM exposes its own view of the feature registers to guest operating |
| 51 | * systems regardless of FTR_VISIBLE. This is typically driven from the |
| 52 | * sanitised register values to allow virtual CPUs to be migrated between |
| 53 | * arbitrary physical CPUs, but some features not present on the host are |
| 54 | * also advertised and emulated. Look at sys_reg_descs[] for the gory |
| 55 | * details. |
Will Deacon | 433022b | 2020-05-05 11:45:21 +0100 | [diff] [blame] | 56 | * |
| 57 | * - If the arm64_ftr_bits[] for a register has a missing field, then this |
| 58 | * field is treated as STRICT RES0, including for read_sanitised_ftr_reg(). |
| 59 | * This is stronger than FTR_HIDDEN and can be used to hide features from |
| 60 | * KVM guests. |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 61 | */ |
| 62 | |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 63 | #define pr_fmt(fmt) "CPU features: " fmt |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 64 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 65 | #include <linux/bsearch.h> |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 66 | #include <linux/cpumask.h> |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 67 | #include <linux/crash_dump.h> |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 68 | #include <linux/sort.h> |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 69 | #include <linux/stop_machine.h> |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 70 | #include <linux/types.h> |
kernel test robot | f6334b1 | 2021-04-29 22:50:46 +0200 | [diff] [blame] | 71 | #include <linux/minmax.h> |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 72 | #include <linux/mm.h> |
Josh Poimboeuf | a111b7c | 2019-04-12 15:39:32 -0500 | [diff] [blame] | 73 | #include <linux/cpu.h> |
Andrey Konovalov | 2e903b9 | 2020-12-22 12:02:10 -0800 | [diff] [blame] | 74 | #include <linux/kasan.h> |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 75 | #include <asm/cpu.h> |
| 76 | #include <asm/cpufeature.h> |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 77 | #include <asm/cpu_ops.h> |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 78 | #include <asm/fpsimd.h> |
Mark Rutland | 3e00e39 | 2021-06-09 11:23:01 +0100 | [diff] [blame] | 79 | #include <asm/insn.h> |
David Brazdil | 3eb681f | 2020-12-02 18:40:58 +0000 | [diff] [blame] | 80 | #include <asm/kvm_host.h> |
Suzuki K Poulose | 13f417f | 2016-02-23 10:31:45 +0000 | [diff] [blame] | 81 | #include <asm/mmu_context.h> |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 82 | #include <asm/mte.h> |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 83 | #include <asm/processor.h> |
Carlos Bilbao | e62e074 | 2021-07-08 07:15:42 -0400 | [diff] [blame] | 84 | #include <asm/smp.h> |
Suzuki K. Poulose | cdcf817 | 2015-10-19 14:24:42 +0100 | [diff] [blame] | 85 | #include <asm/sysreg.h> |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 86 | #include <asm/traps.h> |
Marc Zyngier | d88701b | 2015-01-29 11:24:05 +0000 | [diff] [blame] | 87 | #include <asm/virt.h> |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 88 | |
Andrew Murray | aec0bff | 2019-04-09 10:52:41 +0100 | [diff] [blame] | 89 | /* Kernel representation of AT_HWCAP and AT_HWCAP2 */ |
| 90 | static unsigned long elf_hwcap __read_mostly; |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 91 | |
| 92 | #ifdef CONFIG_COMPAT |
| 93 | #define COMPAT_ELF_HWCAP_DEFAULT \ |
| 94 | (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\ |
| 95 | COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\ |
Suzuki K Poulose | 7559950a | 2020-01-13 23:30:20 +0000 | [diff] [blame] | 96 | COMPAT_HWCAP_TLS|COMPAT_HWCAP_IDIV|\ |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 97 | COMPAT_HWCAP_LPAE) |
| 98 | unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT; |
| 99 | unsigned int compat_elf_hwcap2 __read_mostly; |
| 100 | #endif |
| 101 | |
| 102 | DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS); |
Catalin Marinas | 4b65a5d | 2016-07-01 16:53:00 +0100 | [diff] [blame] | 103 | EXPORT_SYMBOL(cpu_hwcaps); |
Suzuki K Poulose | 82a3a21 | 2018-11-30 17:18:03 +0000 | [diff] [blame] | 104 | static struct arm64_cpu_capabilities const __ro_after_init *cpu_hwcaps_ptrs[ARM64_NCAPS]; |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 105 | |
Daniel Thompson | 0ceb0d5 | 2019-01-31 14:58:53 +0000 | [diff] [blame] | 106 | /* Need also bit for ARM64_CB_PATCH */ |
| 107 | DECLARE_BITMAP(boot_capabilities, ARM64_NPATCHABLE); |
| 108 | |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 109 | bool arm64_use_ng_mappings = false; |
| 110 | EXPORT_SYMBOL(arm64_use_ng_mappings); |
| 111 | |
Dave Martin | 8f1eec5 | 2017-10-31 15:51:09 +0000 | [diff] [blame] | 112 | /* |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 113 | * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs |
| 114 | * support it? |
| 115 | */ |
| 116 | static bool __read_mostly allow_mismatched_32bit_el0; |
| 117 | |
| 118 | /* |
| 119 | * Static branch enabled only if allow_mismatched_32bit_el0 is set and we have |
| 120 | * seen at least one CPU capable of 32-bit EL0. |
| 121 | */ |
| 122 | DEFINE_STATIC_KEY_FALSE(arm64_mismatched_32bit_el0); |
| 123 | |
| 124 | /* |
| 125 | * Mask of CPUs supporting 32-bit EL0. |
| 126 | * Only valid if arm64_mismatched_32bit_el0 is enabled. |
| 127 | */ |
| 128 | static cpumask_var_t cpu_32bit_el0_mask __cpumask_var_read_mostly; |
| 129 | |
| 130 | /* |
Dave Martin | 8f1eec5 | 2017-10-31 15:51:09 +0000 | [diff] [blame] | 131 | * Flag to indicate if we have computed the system wide |
| 132 | * capabilities based on the boot time active CPUs. This |
| 133 | * will be used to determine if a new booting CPU should |
| 134 | * go through the verification process to make sure that it |
| 135 | * supports the system capabilities, without using a hotplug |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 136 | * notifier. This is also used to decide if we could use |
| 137 | * the fast path for checking constant CPU caps. |
Dave Martin | 8f1eec5 | 2017-10-31 15:51:09 +0000 | [diff] [blame] | 138 | */ |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 139 | DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready); |
| 140 | EXPORT_SYMBOL(arm64_const_caps_ready); |
| 141 | static inline void finalize_system_capabilities(void) |
Dave Martin | 8f1eec5 | 2017-10-31 15:51:09 +0000 | [diff] [blame] | 142 | { |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 143 | static_branch_enable(&arm64_const_caps_ready); |
Dave Martin | 8f1eec5 | 2017-10-31 15:51:09 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Anshuman Khandual | 638d503 | 2020-06-29 10:08:31 +0530 | [diff] [blame] | 146 | void dump_cpu_features(void) |
Mark Rutland | 8effeaa | 2017-06-21 18:11:23 +0100 | [diff] [blame] | 147 | { |
| 148 | /* file-wide pr_fmt adds "CPU features: " prefix */ |
| 149 | pr_emerg("0x%*pb\n", ARM64_NCAPS, &cpu_hwcaps); |
Mark Rutland | 8effeaa | 2017-06-21 18:11:23 +0100 | [diff] [blame] | 150 | } |
| 151 | |
Catalin Marinas | efd9e03 | 2016-09-05 18:25:48 +0100 | [diff] [blame] | 152 | DEFINE_STATIC_KEY_ARRAY_FALSE(cpu_hwcap_keys, ARM64_NCAPS); |
| 153 | EXPORT_SYMBOL(cpu_hwcap_keys); |
| 154 | |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 155 | #define __ARM64_FTR_BITS(SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \ |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 156 | { \ |
Suzuki K. Poulose | 4f0a606 | 2015-11-18 17:08:57 +0000 | [diff] [blame] | 157 | .sign = SIGNED, \ |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 158 | .visible = VISIBLE, \ |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 159 | .strict = STRICT, \ |
| 160 | .type = TYPE, \ |
| 161 | .shift = SHIFT, \ |
| 162 | .width = WIDTH, \ |
| 163 | .safe_val = SAFE_VAL, \ |
| 164 | } |
| 165 | |
Suzuki K Poulose | 0710cfd | 2016-01-26 10:58:14 +0000 | [diff] [blame] | 166 | /* Define a feature with unsigned values */ |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 167 | #define ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \ |
| 168 | __ARM64_FTR_BITS(FTR_UNSIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) |
Suzuki K. Poulose | 4f0a606 | 2015-11-18 17:08:57 +0000 | [diff] [blame] | 169 | |
Suzuki K Poulose | 0710cfd | 2016-01-26 10:58:14 +0000 | [diff] [blame] | 170 | /* Define a feature with a signed value */ |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 171 | #define S_ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \ |
| 172 | __ARM64_FTR_BITS(FTR_SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) |
Suzuki K Poulose | 0710cfd | 2016-01-26 10:58:14 +0000 | [diff] [blame] | 173 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 174 | #define ARM64_FTR_END \ |
| 175 | { \ |
| 176 | .width = 0, \ |
| 177 | } |
| 178 | |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 179 | static void cpu_enable_cnp(struct arm64_cpu_capabilities const *cap); |
James Morse | 7054419 | 2016-02-05 14:58:50 +0000 | [diff] [blame] | 180 | |
Amit Daniel Kachhap | 3ff047f | 2020-03-13 14:34:48 +0530 | [diff] [blame] | 181 | static bool __system_matches_cap(unsigned int n); |
| 182 | |
Suzuki K Poulose | 4aa8a47 | 2017-01-09 17:28:32 +0000 | [diff] [blame] | 183 | /* |
| 184 | * NOTE: Any changes to the visibility of features should be kept in |
| 185 | * sync with the documentation of the CPU feature register ABI. |
| 186 | */ |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 187 | static const struct arm64_ftr_bits ftr_id_aa64isar0[] = { |
Richard Henderson | 1a50ec0 | 2020-01-21 12:58:52 +0000 | [diff] [blame] | 188 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RNDR_SHIFT, 4, 0), |
Anshuman Khandual | 7cd51a5 | 2020-05-19 15:10:46 +0530 | [diff] [blame] | 189 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TLB_SHIFT, 4, 0), |
Suzuki K Poulose | 7206dc9 | 2018-03-12 10:04:14 +0000 | [diff] [blame] | 190 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TS_SHIFT, 4, 0), |
Dongjiu Geng | 3b3b681 | 2017-12-13 18:13:56 +0800 | [diff] [blame] | 191 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 192 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0), |
| 193 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0), |
| 194 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0), |
| 195 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0), |
| 196 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0), |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 197 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0), |
| 198 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0), |
| 199 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0), |
| 200 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0), |
| 201 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 202 | ARM64_FTR_END, |
| 203 | }; |
| 204 | |
Suzuki K Poulose | c8c3798 | 2017-03-14 18:13:25 +0000 | [diff] [blame] | 205 | static const struct arm64_ftr_bits ftr_id_aa64isar1[] = { |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 206 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_I8MM_SHIFT, 4, 0), |
| 207 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DGH_SHIFT, 4, 0), |
| 208 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_BF16_SHIFT, 4, 0), |
| 209 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SPECRES_SHIFT, 4, 0), |
Will Deacon | bd4fb6d | 2018-06-14 11:21:34 +0100 | [diff] [blame] | 210 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SB_SHIFT, 4, 0), |
Julien Grall | 7230f7e | 2019-10-03 12:12:08 +0100 | [diff] [blame] | 211 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FRINTTS_SHIFT, 4, 0), |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 212 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH), |
| 213 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPI_SHIFT, 4, 0), |
| 214 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH), |
| 215 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPA_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 216 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0), |
| 217 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0), |
| 218 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0), |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 219 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH), |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 220 | FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_API_SHIFT, 4, 0), |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 221 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH), |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 222 | FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_APA_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 223 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0), |
Suzuki K Poulose | c8c3798 | 2017-03-14 18:13:25 +0000 | [diff] [blame] | 224 | ARM64_FTR_END, |
| 225 | }; |
| 226 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 227 | static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = { |
Will Deacon | 179a56f | 2017-11-27 18:29:30 +0000 | [diff] [blame] | 228 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0), |
Will Deacon | 0f15adb | 2018-01-03 11:17:58 +0000 | [diff] [blame] | 229 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0), |
Suzuki K Poulose | 7206dc9 | 2018-03-12 10:04:14 +0000 | [diff] [blame] | 230 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_DIT_SHIFT, 4, 0), |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 231 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_AMU_SHIFT, 4, 0), |
Anshuman Khandual | 011e5f5 | 2020-05-19 15:10:47 +0530 | [diff] [blame] | 232 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_MPAM_SHIFT, 4, 0), |
| 233 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SEL2_SHIFT, 4, 0), |
Dave Martin | 3fab399 | 2017-12-14 14:03:44 +0000 | [diff] [blame] | 234 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 235 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0), |
Xie XiuQi | 64c0272 | 2018-01-15 19:38:56 +0000 | [diff] [blame] | 236 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 237 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0), |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 238 | S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI), |
| 239 | S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_FP_SHIFT, 4, ID_AA64PFR0_FP_NI), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 240 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0), |
Will Deacon | 98448cd | 2020-04-21 15:29:21 +0100 | [diff] [blame] | 241 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0), |
| 242 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY), |
| 243 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL0_SHIFT, 4, ID_AA64PFR0_EL0_64BIT_ONLY), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 244 | ARM64_FTR_END, |
| 245 | }; |
| 246 | |
Will Deacon | d71be2b | 2018-06-15 11:37:34 +0100 | [diff] [blame] | 247 | static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = { |
Anshuman Khandual | 14e270f | 2020-05-19 15:10:48 +0530 | [diff] [blame] | 248 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MPAMFRAC_SHIFT, 4, 0), |
| 249 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_RASFRAC_SHIFT, 4, 0), |
Vincenzo Frascino | 3b714d2 | 2019-09-06 10:58:01 +0100 | [diff] [blame] | 250 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_MTE), |
| 251 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MTE_SHIFT, 4, ID_AA64PFR1_MTE_NI), |
Will Deacon | 532d581 | 2020-09-15 23:56:12 +0100 | [diff] [blame] | 252 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR1_SSBS_SHIFT, 4, ID_AA64PFR1_SSBS_PSTATE_NI), |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 253 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_BTI), |
| 254 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_BT_SHIFT, 4, 0), |
Will Deacon | d71be2b | 2018-06-15 11:37:34 +0100 | [diff] [blame] | 255 | ARM64_FTR_END, |
| 256 | }; |
| 257 | |
Dave Martin | 06a916f | 2019-04-18 18:41:38 +0100 | [diff] [blame] | 258 | static const struct arm64_ftr_bits ftr_id_aa64zfr0[] = { |
Julien Grall | ec52c71 | 2019-10-14 11:21:13 +0100 | [diff] [blame] | 259 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 260 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F64MM_SHIFT, 4, 0), |
| 261 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 262 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F32MM_SHIFT, 4, 0), |
| 263 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 264 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_I8MM_SHIFT, 4, 0), |
| 265 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
Julien Grall | ec52c71 | 2019-10-14 11:21:13 +0100 | [diff] [blame] | 266 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SM4_SHIFT, 4, 0), |
| 267 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 268 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SHA3_SHIFT, 4, 0), |
| 269 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 270 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BF16_SHIFT, 4, 0), |
| 271 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
Julien Grall | ec52c71 | 2019-10-14 11:21:13 +0100 | [diff] [blame] | 272 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BITPERM_SHIFT, 4, 0), |
| 273 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 274 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_AES_SHIFT, 4, 0), |
| 275 | ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE), |
| 276 | FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SVEVER_SHIFT, 4, 0), |
Dave Martin | 06a916f | 2019-04-18 18:41:38 +0100 | [diff] [blame] | 277 | ARM64_FTR_END, |
| 278 | }; |
| 279 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 280 | static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = { |
Anshuman Khandual | bc67f10 | 2020-07-03 09:21:34 +0530 | [diff] [blame] | 281 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ECV_SHIFT, 4, 0), |
| 282 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_FGT_SHIFT, 4, 0), |
| 283 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_EXS_SHIFT, 4, 0), |
Will Deacon | 5717fe5 | 2019-08-12 16:02:25 +0100 | [diff] [blame] | 284 | /* |
Marc Zyngier | b130a8f | 2020-05-28 14:12:58 +0100 | [diff] [blame] | 285 | * Page size not being supported at Stage-2 is not fatal. You |
| 286 | * just give up KVM if PAGE_SIZE isn't supported there. Go fix |
| 287 | * your favourite nesting hypervisor. |
| 288 | * |
| 289 | * There is a small corner case where the hypervisor explicitly |
| 290 | * advertises a given granule size at Stage-2 (value 2) on some |
| 291 | * vCPUs, and uses the fallback to Stage-1 (value 0) for other |
| 292 | * vCPUs. Although this is not forbidden by the architecture, it |
| 293 | * indicates that the hypervisor is being silly (or buggy). |
| 294 | * |
| 295 | * We make no effort to cope with this and pretend that if these |
| 296 | * fields are inconsistent across vCPUs, then it isn't worth |
| 297 | * trying to bring KVM up. |
| 298 | */ |
| 299 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN4_2_SHIFT, 4, 1), |
| 300 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN64_2_SHIFT, 4, 1), |
| 301 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN16_2_SHIFT, 4, 1), |
| 302 | /* |
Will Deacon | 5717fe5 | 2019-08-12 16:02:25 +0100 | [diff] [blame] | 303 | * We already refuse to boot CPUs that don't support our configured |
| 304 | * page size, so we can only detect mismatches for a page size other |
| 305 | * than the one we're currently using. Unfortunately, SoCs like this |
| 306 | * exist in the wild so, even though we don't like it, we'll have to go |
| 307 | * along with it and treat them as non-strict. |
| 308 | */ |
| 309 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI), |
| 310 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI), |
| 311 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI), |
| 312 | |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 313 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 314 | /* Linux shouldn't care about secure memory */ |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 315 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0), |
| 316 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0), |
| 317 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 318 | /* |
| 319 | * Differing PARange is fine as long as all peripherals and memory are mapped |
| 320 | * within the minimum PARange of all CPUs |
| 321 | */ |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 322 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 323 | ARM64_FTR_END, |
| 324 | }; |
| 325 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 326 | static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = { |
Anshuman Khandual | 853772b | 2020-07-03 09:21:35 +0530 | [diff] [blame] | 327 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_ETS_SHIFT, 4, 0), |
| 328 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_TWED_SHIFT, 4, 0), |
| 329 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_XNX_SHIFT, 4, 0), |
| 330 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_AA64MMFR1_SPECSEI_SHIFT, 4, 0), |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 331 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 332 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0), |
| 333 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0), |
| 334 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0), |
| 335 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0), |
| 336 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 337 | ARM64_FTR_END, |
| 338 | }; |
| 339 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 340 | static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = { |
Mark Brown | 3e6c69a | 2019-12-09 18:12:14 +0000 | [diff] [blame] | 341 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_E0PD_SHIFT, 4, 0), |
Anshuman Khandual | 356fdfb | 2020-07-03 09:21:36 +0530 | [diff] [blame] | 342 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_EVT_SHIFT, 4, 0), |
| 343 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_BBM_SHIFT, 4, 0), |
| 344 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_TTL_SHIFT, 4, 0), |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 345 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_FWB_SHIFT, 4, 0), |
Anshuman Khandual | 356fdfb | 2020-07-03 09:21:36 +0530 | [diff] [blame] | 346 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IDS_SHIFT, 4, 0), |
Suzuki K Poulose | 7206dc9 | 2018-03-12 10:04:14 +0000 | [diff] [blame] | 347 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_AT_SHIFT, 4, 0), |
Anshuman Khandual | 356fdfb | 2020-07-03 09:21:36 +0530 | [diff] [blame] | 348 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_ST_SHIFT, 4, 0), |
| 349 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_NV_SHIFT, 4, 0), |
| 350 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CCIDX_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 351 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0), |
Sai Prakash Ranjan | 9d3f888 | 2020-04-21 15:29:15 +0100 | [diff] [blame] | 352 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0), |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 353 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0), |
| 354 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0), |
| 355 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0), |
James Morse | 406e308 | 2016-02-05 14:58:47 +0000 | [diff] [blame] | 356 | ARM64_FTR_END, |
| 357 | }; |
| 358 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 359 | static const struct arm64_ftr_bits ftr_ctr[] = { |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 360 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */ |
| 361 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1), |
| 362 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1), |
Will Deacon | 147b963 | 2019-07-30 15:40:20 +0100 | [diff] [blame] | 363 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_CWG_SHIFT, 4, 0), |
| 364 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_ERG_SHIFT, 4, 0), |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 365 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 366 | /* |
| 367 | * Linux can handle differing I-cache policies. Userspace JITs will |
Suzuki K Poulose | ee7bc63 | 2016-09-09 14:07:08 +0100 | [diff] [blame] | 368 | * make use of *minLine. |
Will Deacon | 155433c | 2017-03-10 20:32:22 +0000 | [diff] [blame] | 369 | * If we have differing I-cache policies, report it as the weakest - VIPT. |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 370 | */ |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 371 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, CTR_L1IP_SHIFT, 2, ICACHE_POLICY_VIPT), /* L1Ip */ |
Suzuki K Poulose | 4c4a39d | 2018-07-04 23:07:45 +0100 | [diff] [blame] | 372 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IMINLINE_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 373 | ARM64_FTR_END, |
| 374 | }; |
| 375 | |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 376 | static struct arm64_ftr_override __ro_after_init no_override = { }; |
| 377 | |
Ard Biesheuvel | 675b056 | 2016-08-31 11:31:10 +0100 | [diff] [blame] | 378 | struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = { |
| 379 | .name = "SYS_CTR_EL0", |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 380 | .ftr_bits = ftr_ctr, |
| 381 | .override = &no_override, |
Ard Biesheuvel | 675b056 | 2016-08-31 11:31:10 +0100 | [diff] [blame] | 382 | }; |
| 383 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 384 | static const struct arm64_ftr_bits ftr_id_mmfr0[] = { |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 385 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_INNERSHR_SHIFT, 4, 0xf), |
| 386 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_FCSE_SHIFT, 4, 0), |
| 387 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_MMFR0_AUXREG_SHIFT, 4, 0), |
| 388 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_TCM_SHIFT, 4, 0), |
| 389 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_SHARELVL_SHIFT, 4, 0), |
| 390 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_OUTERSHR_SHIFT, 4, 0xf), |
| 391 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_PMSA_SHIFT, 4, 0), |
| 392 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_VMSA_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 393 | ARM64_FTR_END, |
| 394 | }; |
| 395 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 396 | static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = { |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 397 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_DOUBLELOCK_SHIFT, 4, 0), |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 398 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0), |
| 399 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0), |
| 400 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0), |
| 401 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0), |
Will Deacon | b20d1ba | 2016-07-25 16:17:52 +0100 | [diff] [blame] | 402 | /* |
| 403 | * We can instantiate multiple PMU instances with different levels |
| 404 | * of support. |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 405 | */ |
| 406 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0), |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 407 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 408 | ARM64_FTR_END, |
| 409 | }; |
| 410 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 411 | static const struct arm64_ftr_bits ftr_mvfr2[] = { |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 412 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_FPMISC_SHIFT, 4, 0), |
| 413 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_SIMDMISC_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 414 | ARM64_FTR_END, |
| 415 | }; |
| 416 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 417 | static const struct arm64_ftr_bits ftr_dczid[] = { |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 418 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, DCZID_DZP_SHIFT, 1, 1), |
| 419 | ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, DCZID_BS_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 420 | ARM64_FTR_END, |
| 421 | }; |
| 422 | |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 423 | static const struct arm64_ftr_bits ftr_gmid[] = { |
| 424 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, SYS_GMID_EL1_BS_SHIFT, 4, 0), |
| 425 | ARM64_FTR_END, |
| 426 | }; |
| 427 | |
Anshuman Khandual | 2a5bc6c | 2020-05-19 15:10:38 +0530 | [diff] [blame] | 428 | static const struct arm64_ftr_bits ftr_id_isar0[] = { |
| 429 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DIVIDE_SHIFT, 4, 0), |
| 430 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DEBUG_SHIFT, 4, 0), |
| 431 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_COPROC_SHIFT, 4, 0), |
| 432 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_CMPBRANCH_SHIFT, 4, 0), |
| 433 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITFIELD_SHIFT, 4, 0), |
| 434 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITCOUNT_SHIFT, 4, 0), |
| 435 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_SWAP_SHIFT, 4, 0), |
| 436 | ARM64_FTR_END, |
| 437 | }; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 438 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 439 | static const struct arm64_ftr_bits ftr_id_isar5[] = { |
Suzuki K Poulose | 5bdecb7 | 2017-10-19 16:39:02 +0100 | [diff] [blame] | 440 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0), |
| 441 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0), |
| 442 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0), |
| 443 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0), |
| 444 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0), |
| 445 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 446 | ARM64_FTR_END, |
| 447 | }; |
| 448 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 449 | static const struct arm64_ftr_bits ftr_id_mmfr4[] = { |
Anshuman Khandual | fcd6535 | 2020-05-19 15:10:45 +0530 | [diff] [blame] | 450 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_EVT_SHIFT, 4, 0), |
| 451 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CCIDX_SHIFT, 4, 0), |
| 452 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_LSM_SHIFT, 4, 0), |
| 453 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_HPDS_SHIFT, 4, 0), |
| 454 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CNP_SHIFT, 4, 0), |
| 455 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_XNX_SHIFT, 4, 0), |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 456 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_AC2_SHIFT, 4, 0), |
| 457 | |
Anshuman Khandual | fcd6535 | 2020-05-19 15:10:45 +0530 | [diff] [blame] | 458 | /* |
| 459 | * SpecSEI = 1 indicates that the PE might generate an SError on an |
| 460 | * external abort on speculative read. It is safe to assume that an |
| 461 | * SError might be generated than it will not be. Hence it has been |
| 462 | * classified as FTR_HIGHER_SAFE. |
| 463 | */ |
| 464 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_MMFR4_SPECSEI_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 465 | ARM64_FTR_END, |
| 466 | }; |
| 467 | |
Will Deacon | 0113340 | 2020-04-21 15:29:16 +0100 | [diff] [blame] | 468 | static const struct arm64_ftr_bits ftr_id_isar4[] = { |
| 469 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SWP_FRAC_SHIFT, 4, 0), |
| 470 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_PSR_M_SHIFT, 4, 0), |
| 471 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SYNCH_PRIM_FRAC_SHIFT, 4, 0), |
| 472 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_BARRIER_SHIFT, 4, 0), |
| 473 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SMC_SHIFT, 4, 0), |
| 474 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WRITEBACK_SHIFT, 4, 0), |
| 475 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WITHSHIFTS_SHIFT, 4, 0), |
| 476 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_UNPRIV_SHIFT, 4, 0), |
| 477 | ARM64_FTR_END, |
| 478 | }; |
| 479 | |
Anshuman Khandual | 152accf8 | 2020-05-19 15:10:43 +0530 | [diff] [blame] | 480 | static const struct arm64_ftr_bits ftr_id_mmfr5[] = { |
| 481 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR5_ETS_SHIFT, 4, 0), |
| 482 | ARM64_FTR_END, |
| 483 | }; |
| 484 | |
Anshuman Khandual | 8e3747b | 2019-12-17 20:17:32 +0530 | [diff] [blame] | 485 | static const struct arm64_ftr_bits ftr_id_isar6[] = { |
| 486 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_I8MM_SHIFT, 4, 0), |
| 487 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_BF16_SHIFT, 4, 0), |
| 488 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SPECRES_SHIFT, 4, 0), |
| 489 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SB_SHIFT, 4, 0), |
| 490 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_FHM_SHIFT, 4, 0), |
| 491 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_DP_SHIFT, 4, 0), |
| 492 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_JSCVT_SHIFT, 4, 0), |
| 493 | ARM64_FTR_END, |
| 494 | }; |
| 495 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 496 | static const struct arm64_ftr_bits ftr_id_pfr0[] = { |
Anshuman Khandual | 0ae43a9 | 2020-05-19 15:10:44 +0530 | [diff] [blame] | 497 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_DIT_SHIFT, 4, 0), |
| 498 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR0_CSV2_SHIFT, 4, 0), |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 499 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE3_SHIFT, 4, 0), |
| 500 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE2_SHIFT, 4, 0), |
| 501 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE1_SHIFT, 4, 0), |
| 502 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE0_SHIFT, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 503 | ARM64_FTR_END, |
| 504 | }; |
| 505 | |
Will Deacon | 0113340 | 2020-04-21 15:29:16 +0100 | [diff] [blame] | 506 | static const struct arm64_ftr_bits ftr_id_pfr1[] = { |
| 507 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GIC_SHIFT, 4, 0), |
| 508 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRT_FRAC_SHIFT, 4, 0), |
| 509 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SEC_FRAC_SHIFT, 4, 0), |
| 510 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GENTIMER_SHIFT, 4, 0), |
| 511 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRTUALIZATION_SHIFT, 4, 0), |
| 512 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_MPROGMOD_SHIFT, 4, 0), |
| 513 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SECURITY_SHIFT, 4, 0), |
| 514 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_PROGMOD_SHIFT, 4, 0), |
| 515 | ARM64_FTR_END, |
| 516 | }; |
| 517 | |
Anshuman Khandual | 1682408 | 2020-05-19 15:10:41 +0530 | [diff] [blame] | 518 | static const struct arm64_ftr_bits ftr_id_pfr2[] = { |
Will Deacon | 532d581 | 2020-09-15 23:56:12 +0100 | [diff] [blame] | 519 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_SSBS_SHIFT, 4, 0), |
Anshuman Khandual | 1682408 | 2020-05-19 15:10:41 +0530 | [diff] [blame] | 520 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_CSV3_SHIFT, 4, 0), |
| 521 | ARM64_FTR_END, |
| 522 | }; |
| 523 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 524 | static const struct arm64_ftr_bits ftr_id_dfr0[] = { |
Anshuman Khandual | 1ed1b90 | 2020-05-19 15:10:39 +0530 | [diff] [blame] | 525 | /* [31:28] TraceFilt */ |
Anshuman Khandual | 8d3154a | 2020-07-03 09:21:37 +0530 | [diff] [blame] | 526 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_PERFMON_SHIFT, 4, 0xf), |
| 527 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MPROFDBG_SHIFT, 4, 0), |
| 528 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPTRC_SHIFT, 4, 0), |
| 529 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPTRC_SHIFT, 4, 0), |
| 530 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPDBG_SHIFT, 4, 0), |
| 531 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPSDBG_SHIFT, 4, 0), |
| 532 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPDBG_SHIFT, 4, 0), |
Suzuki K Poulose | e534350 | 2016-01-26 10:58:13 +0000 | [diff] [blame] | 533 | ARM64_FTR_END, |
| 534 | }; |
| 535 | |
Anshuman Khandual | dd35ec0 | 2020-05-19 15:10:42 +0530 | [diff] [blame] | 536 | static const struct arm64_ftr_bits ftr_id_dfr1[] = { |
| 537 | S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR1_MTPMU_SHIFT, 4, 0), |
| 538 | ARM64_FTR_END, |
| 539 | }; |
| 540 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 541 | static const struct arm64_ftr_bits ftr_zcr[] = { |
| 542 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, |
| 543 | ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */ |
| 544 | ARM64_FTR_END, |
| 545 | }; |
| 546 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 547 | /* |
| 548 | * Common ftr bits for a 32bit register with all hidden, strict |
| 549 | * attributes, with 4bit feature fields and a default safe value of |
| 550 | * 0. Covers the following 32bit registers: |
Anshuman Khandual | 2a5bc6c | 2020-05-19 15:10:38 +0530 | [diff] [blame] | 551 | * id_isar[1-4], id_mmfr[1-3], id_pfr1, mvfr[0-1] |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 552 | */ |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 553 | static const struct arm64_ftr_bits ftr_generic_32bits[] = { |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 554 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0), |
| 555 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0), |
| 556 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0), |
| 557 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0), |
| 558 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), |
| 559 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0), |
| 560 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), |
| 561 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 562 | ARM64_FTR_END, |
| 563 | }; |
| 564 | |
Suzuki K Poulose | eab43e8 | 2017-01-09 17:28:26 +0000 | [diff] [blame] | 565 | /* Table for a single 32bit feature value */ |
| 566 | static const struct arm64_ftr_bits ftr_single32[] = { |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 567 | ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 568 | ARM64_FTR_END, |
| 569 | }; |
| 570 | |
Suzuki K Poulose | eab43e8 | 2017-01-09 17:28:26 +0000 | [diff] [blame] | 571 | static const struct arm64_ftr_bits ftr_raz[] = { |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 572 | ARM64_FTR_END, |
| 573 | }; |
| 574 | |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 575 | #define ARM64_FTR_REG_OVERRIDE(id, table, ovr) { \ |
| 576 | .sys_id = id, \ |
| 577 | .reg = &(struct arm64_ftr_reg){ \ |
| 578 | .name = #id, \ |
| 579 | .override = (ovr), \ |
| 580 | .ftr_bits = &((table)[0]), \ |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 581 | }} |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 582 | |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 583 | #define ARM64_FTR_REG(id, table) ARM64_FTR_REG_OVERRIDE(id, table, &no_override) |
| 584 | |
Marc Zyngier | 361db0f | 2021-02-08 09:57:23 +0000 | [diff] [blame] | 585 | struct arm64_ftr_override __ro_after_init id_aa64mmfr1_override; |
Marc Zyngier | 93ad55b | 2021-02-08 09:57:29 +0000 | [diff] [blame] | 586 | struct arm64_ftr_override __ro_after_init id_aa64pfr1_override; |
Marc Zyngier | f8da575 | 2021-02-08 09:57:31 +0000 | [diff] [blame] | 587 | struct arm64_ftr_override __ro_after_init id_aa64isar1_override; |
Marc Zyngier | 361db0f | 2021-02-08 09:57:23 +0000 | [diff] [blame] | 588 | |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 589 | static const struct __ftr_reg_entry { |
| 590 | u32 sys_id; |
| 591 | struct arm64_ftr_reg *reg; |
| 592 | } arm64_ftr_regs[] = { |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 593 | |
| 594 | /* Op1 = 0, CRn = 0, CRm = 1 */ |
| 595 | ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0), |
Will Deacon | 0113340 | 2020-04-21 15:29:16 +0100 | [diff] [blame] | 596 | ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_id_pfr1), |
Suzuki K Poulose | e534350 | 2016-01-26 10:58:13 +0000 | [diff] [blame] | 597 | ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 598 | ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0), |
| 599 | ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits), |
| 600 | ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits), |
| 601 | ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits), |
| 602 | |
| 603 | /* Op1 = 0, CRn = 0, CRm = 2 */ |
Anshuman Khandual | 2a5bc6c | 2020-05-19 15:10:38 +0530 | [diff] [blame] | 604 | ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_id_isar0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 605 | ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits), |
| 606 | ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits), |
| 607 | ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits), |
Will Deacon | 0113340 | 2020-04-21 15:29:16 +0100 | [diff] [blame] | 608 | ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_id_isar4), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 609 | ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5), |
| 610 | ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4), |
Anshuman Khandual | 8e3747b | 2019-12-17 20:17:32 +0530 | [diff] [blame] | 611 | ARM64_FTR_REG(SYS_ID_ISAR6_EL1, ftr_id_isar6), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 612 | |
| 613 | /* Op1 = 0, CRn = 0, CRm = 3 */ |
| 614 | ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits), |
| 615 | ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits), |
| 616 | ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2), |
Anshuman Khandual | 1682408 | 2020-05-19 15:10:41 +0530 | [diff] [blame] | 617 | ARM64_FTR_REG(SYS_ID_PFR2_EL1, ftr_id_pfr2), |
Anshuman Khandual | dd35ec0 | 2020-05-19 15:10:42 +0530 | [diff] [blame] | 618 | ARM64_FTR_REG(SYS_ID_DFR1_EL1, ftr_id_dfr1), |
Anshuman Khandual | 152accf8 | 2020-05-19 15:10:43 +0530 | [diff] [blame] | 619 | ARM64_FTR_REG(SYS_ID_MMFR5_EL1, ftr_id_mmfr5), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 620 | |
| 621 | /* Op1 = 0, CRn = 0, CRm = 4 */ |
| 622 | ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0), |
Marc Zyngier | 93ad55b | 2021-02-08 09:57:29 +0000 | [diff] [blame] | 623 | ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1, |
| 624 | &id_aa64pfr1_override), |
Dave Martin | 06a916f | 2019-04-18 18:41:38 +0100 | [diff] [blame] | 625 | ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_id_aa64zfr0), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 626 | |
| 627 | /* Op1 = 0, CRn = 0, CRm = 5 */ |
| 628 | ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0), |
Suzuki K Poulose | eab43e8 | 2017-01-09 17:28:26 +0000 | [diff] [blame] | 629 | ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 630 | |
| 631 | /* Op1 = 0, CRn = 0, CRm = 6 */ |
| 632 | ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0), |
Marc Zyngier | f8da575 | 2021-02-08 09:57:31 +0000 | [diff] [blame] | 633 | ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1, |
| 634 | &id_aa64isar1_override), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 635 | |
| 636 | /* Op1 = 0, CRn = 0, CRm = 7 */ |
| 637 | ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0), |
Marc Zyngier | 361db0f | 2021-02-08 09:57:23 +0000 | [diff] [blame] | 638 | ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1, |
| 639 | &id_aa64mmfr1_override), |
James Morse | 406e308 | 2016-02-05 14:58:47 +0000 | [diff] [blame] | 640 | ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 641 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 642 | /* Op1 = 0, CRn = 1, CRm = 2 */ |
| 643 | ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr), |
| 644 | |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 645 | /* Op1 = 1, CRn = 0, CRm = 0 */ |
| 646 | ARM64_FTR_REG(SYS_GMID_EL1, ftr_gmid), |
| 647 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 648 | /* Op1 = 3, CRn = 0, CRm = 0 */ |
Ard Biesheuvel | 675b056 | 2016-08-31 11:31:10 +0100 | [diff] [blame] | 649 | { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 }, |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 650 | ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid), |
| 651 | |
| 652 | /* Op1 = 3, CRn = 14, CRm = 0 */ |
Suzuki K Poulose | eab43e8 | 2017-01-09 17:28:26 +0000 | [diff] [blame] | 653 | ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32), |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 654 | }; |
| 655 | |
| 656 | static int search_cmp_ftr_reg(const void *id, const void *regp) |
| 657 | { |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 658 | return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | /* |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 662 | * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using |
| 663 | * its sys_reg() encoding. With the array arm64_ftr_regs sorted in the |
| 664 | * ascending order of sys_id, we use binary search to find a matching |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 665 | * entry. |
| 666 | * |
| 667 | * returns - Upon success, matching ftr_reg entry for id. |
| 668 | * - NULL on failure. It is upto the caller to decide |
| 669 | * the impact of a failure. |
| 670 | */ |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 671 | static struct arm64_ftr_reg *get_arm64_ftr_reg_nowarn(u32 sys_id) |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 672 | { |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 673 | const struct __ftr_reg_entry *ret; |
| 674 | |
| 675 | ret = bsearch((const void *)(unsigned long)sys_id, |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 676 | arm64_ftr_regs, |
| 677 | ARRAY_SIZE(arm64_ftr_regs), |
| 678 | sizeof(arm64_ftr_regs[0]), |
| 679 | search_cmp_ftr_reg); |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 680 | if (ret) |
| 681 | return ret->reg; |
| 682 | return NULL; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 683 | } |
| 684 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 685 | /* |
| 686 | * get_arm64_ftr_reg - Looks up a feature register entry using |
| 687 | * its sys_reg() encoding. This calls get_arm64_ftr_reg_nowarn(). |
| 688 | * |
| 689 | * returns - Upon success, matching ftr_reg entry for id. |
| 690 | * - NULL on failure but with an WARN_ON(). |
| 691 | */ |
| 692 | static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id) |
| 693 | { |
| 694 | struct arm64_ftr_reg *reg; |
| 695 | |
| 696 | reg = get_arm64_ftr_reg_nowarn(sys_id); |
| 697 | |
| 698 | /* |
| 699 | * Requesting a non-existent register search is an error. Warn |
| 700 | * and let the caller handle it. |
| 701 | */ |
| 702 | WARN_ON(!reg); |
| 703 | return reg; |
| 704 | } |
| 705 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 706 | static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg, |
| 707 | s64 ftr_val) |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 708 | { |
| 709 | u64 mask = arm64_ftr_mask(ftrp); |
| 710 | |
| 711 | reg &= ~mask; |
| 712 | reg |= (ftr_val << ftrp->shift) & mask; |
| 713 | return reg; |
| 714 | } |
| 715 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 716 | static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new, |
| 717 | s64 cur) |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 718 | { |
| 719 | s64 ret = 0; |
| 720 | |
| 721 | switch (ftrp->type) { |
| 722 | case FTR_EXACT: |
| 723 | ret = ftrp->safe_val; |
| 724 | break; |
| 725 | case FTR_LOWER_SAFE: |
kernel test robot | f6334b1 | 2021-04-29 22:50:46 +0200 | [diff] [blame] | 726 | ret = min(new, cur); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 727 | break; |
Will Deacon | 147b963 | 2019-07-30 15:40:20 +0100 | [diff] [blame] | 728 | case FTR_HIGHER_OR_ZERO_SAFE: |
| 729 | if (!cur || !new) |
| 730 | break; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 731 | fallthrough; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 732 | case FTR_HIGHER_SAFE: |
kernel test robot | f6334b1 | 2021-04-29 22:50:46 +0200 | [diff] [blame] | 733 | ret = max(new, cur); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 734 | break; |
| 735 | default: |
| 736 | BUG(); |
| 737 | } |
| 738 | |
| 739 | return ret; |
| 740 | } |
| 741 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 742 | static void __init sort_ftr_regs(void) |
| 743 | { |
Anshuman Khandual | c6c83d7 | 2020-07-07 19:53:13 +0530 | [diff] [blame] | 744 | unsigned int i; |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 745 | |
Anshuman Khandual | c6c83d7 | 2020-07-07 19:53:13 +0530 | [diff] [blame] | 746 | for (i = 0; i < ARRAY_SIZE(arm64_ftr_regs); i++) { |
| 747 | const struct arm64_ftr_reg *ftr_reg = arm64_ftr_regs[i].reg; |
| 748 | const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits; |
| 749 | unsigned int j = 0; |
| 750 | |
| 751 | /* |
| 752 | * Features here must be sorted in descending order with respect |
| 753 | * to their shift values and should not overlap with each other. |
| 754 | */ |
| 755 | for (; ftr_bits->width != 0; ftr_bits++, j++) { |
| 756 | unsigned int width = ftr_reg->ftr_bits[j].width; |
| 757 | unsigned int shift = ftr_reg->ftr_bits[j].shift; |
| 758 | unsigned int prev_shift; |
| 759 | |
| 760 | WARN((shift + width) > 64, |
| 761 | "%s has invalid feature at shift %d\n", |
| 762 | ftr_reg->name, shift); |
| 763 | |
| 764 | /* |
| 765 | * Skip the first feature. There is nothing to |
| 766 | * compare against for now. |
| 767 | */ |
| 768 | if (j == 0) |
| 769 | continue; |
| 770 | |
| 771 | prev_shift = ftr_reg->ftr_bits[j - 1].shift; |
| 772 | WARN((shift + width) > prev_shift, |
| 773 | "%s has feature overlap at shift %d\n", |
| 774 | ftr_reg->name, shift); |
| 775 | } |
| 776 | |
| 777 | /* |
| 778 | * Skip the first register. There is nothing to |
| 779 | * compare against for now. |
| 780 | */ |
| 781 | if (i == 0) |
| 782 | continue; |
| 783 | /* |
| 784 | * Registers here must be sorted in ascending order with respect |
| 785 | * to sys_id for subsequent binary search in get_arm64_ftr_reg() |
| 786 | * to work correctly. |
| 787 | */ |
Ard Biesheuvel | 6f2b7ee | 2016-08-31 11:31:09 +0100 | [diff] [blame] | 788 | BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id); |
Anshuman Khandual | c6c83d7 | 2020-07-07 19:53:13 +0530 | [diff] [blame] | 789 | } |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* |
| 793 | * Initialise the CPU feature register from Boot CPU values. |
| 794 | * Also initiliases the strict_mask for the register. |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 795 | * Any bits that are not covered by an arm64_ftr_bits entry are considered |
| 796 | * RES0 for the system-wide value, and must strictly match. |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 797 | */ |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 798 | static void init_cpu_ftr_reg(u32 sys_reg, u64 new) |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 799 | { |
| 800 | u64 val = 0; |
| 801 | u64 strict_mask = ~0x0ULL; |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 802 | u64 user_mask = 0; |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 803 | u64 valid_mask = 0; |
| 804 | |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 805 | const struct arm64_ftr_bits *ftrp; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 806 | struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg); |
| 807 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 808 | if (!reg) |
| 809 | return; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 810 | |
韩科才 | 24b2cce | 2020-03-11 14:52:49 +0800 | [diff] [blame] | 811 | for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 812 | u64 ftr_mask = arm64_ftr_mask(ftrp); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 813 | s64 ftr_new = arm64_ftr_value(ftrp, new); |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 814 | s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val); |
| 815 | |
| 816 | if ((ftr_mask & reg->override->mask) == ftr_mask) { |
| 817 | s64 tmp = arm64_ftr_safe_value(ftrp, ftr_ovr, ftr_new); |
| 818 | char *str = NULL; |
| 819 | |
| 820 | if (ftr_ovr != tmp) { |
| 821 | /* Unsafe, remove the override */ |
| 822 | reg->override->mask &= ~ftr_mask; |
| 823 | reg->override->val &= ~ftr_mask; |
| 824 | tmp = ftr_ovr; |
| 825 | str = "ignoring override"; |
| 826 | } else if (ftr_new != tmp) { |
| 827 | /* Override was valid */ |
| 828 | ftr_new = tmp; |
| 829 | str = "forced"; |
| 830 | } else if (ftr_ovr == tmp) { |
| 831 | /* Override was the safe value */ |
| 832 | str = "already set"; |
| 833 | } |
| 834 | |
| 835 | if (str) |
| 836 | pr_warn("%s[%d:%d]: %s to %llx\n", |
| 837 | reg->name, |
| 838 | ftrp->shift + ftrp->width - 1, |
| 839 | ftrp->shift, str, tmp); |
Marc Zyngier | cac642c | 2021-04-08 14:10:08 +0100 | [diff] [blame] | 840 | } else if ((ftr_mask & reg->override->val) == ftr_mask) { |
| 841 | reg->override->val &= ~ftr_mask; |
| 842 | pr_warn("%s[%d:%d]: impossible override, ignored\n", |
| 843 | reg->name, |
| 844 | ftrp->shift + ftrp->width - 1, |
| 845 | ftrp->shift); |
Marc Zyngier | 8f266a5 | 2021-02-08 09:57:19 +0000 | [diff] [blame] | 846 | } |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 847 | |
| 848 | val = arm64_ftr_set_value(ftrp, val, ftr_new); |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 849 | |
| 850 | valid_mask |= ftr_mask; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 851 | if (!ftrp->strict) |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 852 | strict_mask &= ~ftr_mask; |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 853 | if (ftrp->visible) |
| 854 | user_mask |= ftr_mask; |
| 855 | else |
| 856 | reg->user_val = arm64_ftr_set_value(ftrp, |
| 857 | reg->user_val, |
| 858 | ftrp->safe_val); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 859 | } |
Mark Rutland | b389d79 | 2017-01-09 17:28:24 +0000 | [diff] [blame] | 860 | |
| 861 | val &= valid_mask; |
| 862 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 863 | reg->sys_val = val; |
| 864 | reg->strict_mask = strict_mask; |
Suzuki K Poulose | fe4fbdb | 2017-01-09 17:28:30 +0000 | [diff] [blame] | 865 | reg->user_mask = user_mask; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 866 | } |
| 867 | |
Suzuki K Poulose | 1e89bae | 2018-03-26 15:12:30 +0100 | [diff] [blame] | 868 | extern const struct arm64_cpu_capabilities arm64_errata[]; |
Suzuki K Poulose | 82a3a21 | 2018-11-30 17:18:03 +0000 | [diff] [blame] | 869 | static const struct arm64_cpu_capabilities arm64_features[]; |
| 870 | |
| 871 | static void __init |
| 872 | init_cpu_hwcaps_indirect_list_from_array(const struct arm64_cpu_capabilities *caps) |
| 873 | { |
| 874 | for (; caps->matches; caps++) { |
| 875 | if (WARN(caps->capability >= ARM64_NCAPS, |
| 876 | "Invalid capability %d\n", caps->capability)) |
| 877 | continue; |
| 878 | if (WARN(cpu_hwcaps_ptrs[caps->capability], |
| 879 | "Duplicate entry for capability %d\n", |
| 880 | caps->capability)) |
| 881 | continue; |
| 882 | cpu_hwcaps_ptrs[caps->capability] = caps; |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | static void __init init_cpu_hwcaps_indirect_list(void) |
| 887 | { |
| 888 | init_cpu_hwcaps_indirect_list_from_array(arm64_features); |
| 889 | init_cpu_hwcaps_indirect_list_from_array(arm64_errata); |
| 890 | } |
| 891 | |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 892 | static void __init setup_boot_cpu_capabilities(void); |
Suzuki K Poulose | 1e89bae | 2018-03-26 15:12:30 +0100 | [diff] [blame] | 893 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 894 | static void init_32bit_cpu_features(struct cpuinfo_32bit *info) |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 895 | { |
| 896 | init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0); |
| 897 | init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1); |
| 898 | init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0); |
| 899 | init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1); |
| 900 | init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2); |
| 901 | init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3); |
| 902 | init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4); |
| 903 | init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5); |
| 904 | init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6); |
| 905 | init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0); |
| 906 | init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1); |
| 907 | init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2); |
| 908 | init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3); |
| 909 | init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4); |
| 910 | init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5); |
| 911 | init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0); |
| 912 | init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1); |
| 913 | init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2); |
| 914 | init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0); |
| 915 | init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1); |
| 916 | init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2); |
| 917 | } |
| 918 | |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 919 | void __init init_cpu_features(struct cpuinfo_arm64 *info) |
| 920 | { |
| 921 | /* Before we start using the tables, make sure it is sorted */ |
| 922 | sort_ftr_regs(); |
| 923 | |
| 924 | init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr); |
| 925 | init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid); |
| 926 | init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq); |
| 927 | init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0); |
| 928 | init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1); |
| 929 | init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0); |
| 930 | init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1); |
| 931 | init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0); |
| 932 | init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1); |
James Morse | 406e308 | 2016-02-05 14:58:47 +0000 | [diff] [blame] | 933 | init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 934 | init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0); |
| 935 | init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1); |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 936 | init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0); |
Suzuki K Poulose | a6dc3cd | 2016-04-18 10:28:35 +0100 | [diff] [blame] | 937 | |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 938 | if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) |
| 939 | init_32bit_cpu_features(&info->aarch32); |
Suzuki K Poulose | a6dc3cd | 2016-04-18 10:28:35 +0100 | [diff] [blame] | 940 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 941 | if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) { |
| 942 | init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr); |
| 943 | sve_init_vq_map(); |
| 944 | } |
Suzuki K Poulose | 5e91107 | 2018-03-26 15:12:29 +0100 | [diff] [blame] | 945 | |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 946 | if (id_aa64pfr1_mte(info->reg_id_aa64pfr1)) |
| 947 | init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid); |
| 948 | |
Suzuki K Poulose | 5e91107 | 2018-03-26 15:12:29 +0100 | [diff] [blame] | 949 | /* |
Suzuki K Poulose | 82a3a21 | 2018-11-30 17:18:03 +0000 | [diff] [blame] | 950 | * Initialize the indirect array of CPU hwcaps capabilities pointers |
| 951 | * before we handle the boot CPU below. |
| 952 | */ |
| 953 | init_cpu_hwcaps_indirect_list(); |
| 954 | |
| 955 | /* |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 956 | * Detect and enable early CPU capabilities based on the boot CPU, |
| 957 | * after we have initialised the CPU feature infrastructure. |
Suzuki K Poulose | 5e91107 | 2018-03-26 15:12:29 +0100 | [diff] [blame] | 958 | */ |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 959 | setup_boot_cpu_capabilities(); |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 960 | } |
| 961 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 962 | static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new) |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 963 | { |
Ard Biesheuvel | 5e49d73 | 2016-08-31 11:31:08 +0100 | [diff] [blame] | 964 | const struct arm64_ftr_bits *ftrp; |
Suzuki K. Poulose | 3c739b5 | 2015-10-19 14:24:45 +0100 | [diff] [blame] | 965 | |
| 966 | for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { |
| 967 | s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val); |
| 968 | s64 ftr_new = arm64_ftr_value(ftrp, new); |
| 969 | |
| 970 | if (ftr_cur == ftr_new) |
| 971 | continue; |
| 972 | /* Find a safe value */ |
| 973 | ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur); |
| 974 | reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new); |
| 975 | } |
| 976 | |
| 977 | } |
| 978 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 979 | static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot) |
Suzuki K. Poulose | cdcf817 | 2015-10-19 14:24:42 +0100 | [diff] [blame] | 980 | { |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 981 | struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id); |
| 982 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 983 | if (!regp) |
| 984 | return 0; |
| 985 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 986 | update_cpu_ftr_reg(regp, val); |
| 987 | if ((boot & regp->strict_mask) == (val & regp->strict_mask)) |
| 988 | return 0; |
| 989 | pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n", |
| 990 | regp->name, boot, cpu, val); |
| 991 | return 1; |
| 992 | } |
| 993 | |
Will Deacon | eab2f92 | 2020-04-21 15:29:20 +0100 | [diff] [blame] | 994 | static void relax_cpu_ftr_reg(u32 sys_id, int field) |
| 995 | { |
| 996 | const struct arm64_ftr_bits *ftrp; |
| 997 | struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id); |
| 998 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 999 | if (!regp) |
Will Deacon | eab2f92 | 2020-04-21 15:29:20 +0100 | [diff] [blame] | 1000 | return; |
| 1001 | |
| 1002 | for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) { |
| 1003 | if (ftrp->shift == field) { |
| 1004 | regp->strict_mask &= ~arm64_ftr_mask(ftrp); |
| 1005 | break; |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | /* Bogus field? */ |
| 1010 | WARN_ON(!ftrp->width); |
| 1011 | } |
| 1012 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 1013 | static void lazy_init_32bit_cpu_features(struct cpuinfo_arm64 *info, |
| 1014 | struct cpuinfo_arm64 *boot) |
| 1015 | { |
| 1016 | static bool boot_cpu_32bit_regs_overridden = false; |
| 1017 | |
| 1018 | if (!allow_mismatched_32bit_el0 || boot_cpu_32bit_regs_overridden) |
| 1019 | return; |
| 1020 | |
| 1021 | if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0)) |
| 1022 | return; |
| 1023 | |
| 1024 | boot->aarch32 = info->aarch32; |
| 1025 | init_32bit_cpu_features(&boot->aarch32); |
| 1026 | boot_cpu_32bit_regs_overridden = true; |
| 1027 | } |
| 1028 | |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1029 | static int update_32bit_cpu_features(int cpu, struct cpuinfo_32bit *info, |
| 1030 | struct cpuinfo_32bit *boot) |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1031 | { |
| 1032 | int taint = 0; |
| 1033 | u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1); |
| 1034 | |
| 1035 | /* |
Will Deacon | eab2f92 | 2020-04-21 15:29:20 +0100 | [diff] [blame] | 1036 | * If we don't have AArch32 at EL1, then relax the strictness of |
| 1037 | * EL1-dependent register fields to avoid spurious sanity check fails. |
| 1038 | */ |
| 1039 | if (!id_aa64pfr0_32bit_el1(pfr0)) { |
| 1040 | relax_cpu_ftr_reg(SYS_ID_ISAR4_EL1, ID_ISAR4_SMC_SHIFT); |
| 1041 | relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRT_FRAC_SHIFT); |
| 1042 | relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SEC_FRAC_SHIFT); |
| 1043 | relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRTUALIZATION_SHIFT); |
| 1044 | relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SECURITY_SHIFT); |
| 1045 | relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_PROGMOD_SHIFT); |
| 1046 | } |
| 1047 | |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1048 | taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu, |
| 1049 | info->reg_id_dfr0, boot->reg_id_dfr0); |
Anshuman Khandual | dd35ec0 | 2020-05-19 15:10:42 +0530 | [diff] [blame] | 1050 | taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu, |
| 1051 | info->reg_id_dfr1, boot->reg_id_dfr1); |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1052 | taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu, |
| 1053 | info->reg_id_isar0, boot->reg_id_isar0); |
| 1054 | taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu, |
| 1055 | info->reg_id_isar1, boot->reg_id_isar1); |
| 1056 | taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu, |
| 1057 | info->reg_id_isar2, boot->reg_id_isar2); |
| 1058 | taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu, |
| 1059 | info->reg_id_isar3, boot->reg_id_isar3); |
| 1060 | taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu, |
| 1061 | info->reg_id_isar4, boot->reg_id_isar4); |
| 1062 | taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu, |
| 1063 | info->reg_id_isar5, boot->reg_id_isar5); |
| 1064 | taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu, |
| 1065 | info->reg_id_isar6, boot->reg_id_isar6); |
| 1066 | |
| 1067 | /* |
| 1068 | * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and |
| 1069 | * ACTLR formats could differ across CPUs and therefore would have to |
| 1070 | * be trapped for virtualization anyway. |
| 1071 | */ |
| 1072 | taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu, |
| 1073 | info->reg_id_mmfr0, boot->reg_id_mmfr0); |
| 1074 | taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu, |
| 1075 | info->reg_id_mmfr1, boot->reg_id_mmfr1); |
| 1076 | taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu, |
| 1077 | info->reg_id_mmfr2, boot->reg_id_mmfr2); |
| 1078 | taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu, |
| 1079 | info->reg_id_mmfr3, boot->reg_id_mmfr3); |
Anshuman Khandual | 858b8a8 | 2020-05-19 15:10:54 +0530 | [diff] [blame] | 1080 | taint |= check_update_ftr_reg(SYS_ID_MMFR4_EL1, cpu, |
| 1081 | info->reg_id_mmfr4, boot->reg_id_mmfr4); |
Anshuman Khandual | 152accf8 | 2020-05-19 15:10:43 +0530 | [diff] [blame] | 1082 | taint |= check_update_ftr_reg(SYS_ID_MMFR5_EL1, cpu, |
| 1083 | info->reg_id_mmfr5, boot->reg_id_mmfr5); |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1084 | taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu, |
| 1085 | info->reg_id_pfr0, boot->reg_id_pfr0); |
| 1086 | taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu, |
| 1087 | info->reg_id_pfr1, boot->reg_id_pfr1); |
Anshuman Khandual | 1682408 | 2020-05-19 15:10:41 +0530 | [diff] [blame] | 1088 | taint |= check_update_ftr_reg(SYS_ID_PFR2_EL1, cpu, |
| 1089 | info->reg_id_pfr2, boot->reg_id_pfr2); |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1090 | taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu, |
| 1091 | info->reg_mvfr0, boot->reg_mvfr0); |
| 1092 | taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu, |
| 1093 | info->reg_mvfr1, boot->reg_mvfr1); |
| 1094 | taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu, |
| 1095 | info->reg_mvfr2, boot->reg_mvfr2); |
| 1096 | |
| 1097 | return taint; |
| 1098 | } |
| 1099 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 1100 | /* |
| 1101 | * Update system wide CPU feature registers with the values from a |
| 1102 | * non-boot CPU. Also performs SANITY checks to make sure that there |
| 1103 | * aren't any insane variations from that of the boot CPU. |
| 1104 | */ |
| 1105 | void update_cpu_features(int cpu, |
| 1106 | struct cpuinfo_arm64 *info, |
| 1107 | struct cpuinfo_arm64 *boot) |
| 1108 | { |
| 1109 | int taint = 0; |
| 1110 | |
| 1111 | /* |
| 1112 | * The kernel can handle differing I-cache policies, but otherwise |
| 1113 | * caches should look identical. Userspace JITs will make use of |
| 1114 | * *minLine. |
| 1115 | */ |
| 1116 | taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu, |
| 1117 | info->reg_ctr, boot->reg_ctr); |
| 1118 | |
| 1119 | /* |
| 1120 | * Userspace may perform DC ZVA instructions. Mismatched block sizes |
| 1121 | * could result in too much or too little memory being zeroed if a |
| 1122 | * process is preempted and migrated between CPUs. |
| 1123 | */ |
| 1124 | taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu, |
| 1125 | info->reg_dczid, boot->reg_dczid); |
| 1126 | |
| 1127 | /* If different, timekeeping will be broken (especially with KVM) */ |
| 1128 | taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu, |
| 1129 | info->reg_cntfrq, boot->reg_cntfrq); |
| 1130 | |
| 1131 | /* |
| 1132 | * The kernel uses self-hosted debug features and expects CPUs to |
| 1133 | * support identical debug features. We presently need CTX_CMPs, WRPs, |
| 1134 | * and BRPs to be identical. |
| 1135 | * ID_AA64DFR1 is currently RES0. |
| 1136 | */ |
| 1137 | taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu, |
| 1138 | info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0); |
| 1139 | taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu, |
| 1140 | info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1); |
| 1141 | /* |
| 1142 | * Even in big.LITTLE, processors should be identical instruction-set |
| 1143 | * wise. |
| 1144 | */ |
| 1145 | taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu, |
| 1146 | info->reg_id_aa64isar0, boot->reg_id_aa64isar0); |
| 1147 | taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu, |
| 1148 | info->reg_id_aa64isar1, boot->reg_id_aa64isar1); |
| 1149 | |
| 1150 | /* |
| 1151 | * Differing PARange support is fine as long as all peripherals and |
| 1152 | * memory are mapped within the minimum PARange of all CPUs. |
| 1153 | * Linux should not care about secure memory. |
| 1154 | */ |
| 1155 | taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu, |
| 1156 | info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0); |
| 1157 | taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu, |
| 1158 | info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1); |
James Morse | 406e308 | 2016-02-05 14:58:47 +0000 | [diff] [blame] | 1159 | taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu, |
| 1160 | info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2); |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 1161 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 1162 | taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu, |
| 1163 | info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0); |
| 1164 | taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu, |
| 1165 | info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1); |
| 1166 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 1167 | taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu, |
| 1168 | info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0); |
| 1169 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 1170 | if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) { |
| 1171 | taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu, |
| 1172 | info->reg_zcr, boot->reg_zcr); |
| 1173 | |
| 1174 | /* Probe vector lengths, unless we already gave up on SVE */ |
| 1175 | if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) && |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 1176 | !system_capabilities_finalized()) |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 1177 | sve_update_vq_map(); |
| 1178 | } |
| 1179 | |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 1180 | /* |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 1181 | * The kernel uses the LDGM/STGM instructions and the number of tags |
| 1182 | * they read/write depends on the GMID_EL1.BS field. Check that the |
| 1183 | * value is the same on all CPUs. |
| 1184 | */ |
| 1185 | if (IS_ENABLED(CONFIG_ARM64_MTE) && |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1186 | id_aa64pfr1_mte(info->reg_id_aa64pfr1)) { |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 1187 | taint |= check_update_ftr_reg(SYS_GMID_EL1, cpu, |
| 1188 | info->reg_gmid, boot->reg_gmid); |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1189 | } |
Catalin Marinas | 21047e9 | 2021-05-26 20:36:21 +0100 | [diff] [blame] | 1190 | |
| 1191 | /* |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1192 | * If we don't have AArch32 at all then skip the checks entirely |
| 1193 | * as the register values may be UNKNOWN and we're not going to be |
| 1194 | * using them for anything. |
| 1195 | * |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1196 | * This relies on a sanitised view of the AArch64 ID registers |
| 1197 | * (e.g. SYS_ID_AA64PFR0_EL1), so we call it last. |
| 1198 | */ |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1199 | if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 1200 | lazy_init_32bit_cpu_features(info, boot); |
Will Deacon | 930a58b | 2021-06-08 19:02:54 +0100 | [diff] [blame] | 1201 | taint |= update_32bit_cpu_features(cpu, &info->aarch32, |
| 1202 | &boot->aarch32); |
| 1203 | } |
Will Deacon | 1efcfe7 | 2020-04-21 15:29:19 +0100 | [diff] [blame] | 1204 | |
| 1205 | /* |
Suzuki K. Poulose | 3086d39 | 2015-10-19 14:24:46 +0100 | [diff] [blame] | 1206 | * Mismatched CPU features are a recipe for disaster. Don't even |
| 1207 | * pretend to support them. |
| 1208 | */ |
Will Deacon | 8dd0ee6 | 2017-06-05 11:40:23 +0100 | [diff] [blame] | 1209 | if (taint) { |
| 1210 | pr_warn_once("Unsupported CPU feature variation detected.\n"); |
| 1211 | add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK); |
| 1212 | } |
Suzuki K. Poulose | cdcf817 | 2015-10-19 14:24:42 +0100 | [diff] [blame] | 1213 | } |
| 1214 | |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 1215 | u64 read_sanitised_ftr_reg(u32 id) |
Suzuki K. Poulose | b3f1537 | 2015-10-19 14:24:47 +0100 | [diff] [blame] | 1216 | { |
| 1217 | struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id); |
| 1218 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 1219 | if (!regp) |
| 1220 | return 0; |
Suzuki K. Poulose | b3f1537 | 2015-10-19 14:24:47 +0100 | [diff] [blame] | 1221 | return regp->sys_val; |
| 1222 | } |
Jean-Philippe Brucker | 6f3c4af | 2020-09-18 12:18:46 +0200 | [diff] [blame] | 1223 | EXPORT_SYMBOL_GPL(read_sanitised_ftr_reg); |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 1224 | |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1225 | #define read_sysreg_case(r) \ |
Marc Zyngier | b3341ae | 2021-02-08 09:57:20 +0000 | [diff] [blame] | 1226 | case r: val = read_sysreg_s(r); break; |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1227 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1228 | /* |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 1229 | * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated. |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1230 | * Read the system register on the current CPU |
| 1231 | */ |
Marc Zyngier | b3341ae | 2021-02-08 09:57:20 +0000 | [diff] [blame] | 1232 | u64 __read_sysreg_by_encoding(u32 sys_id) |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1233 | { |
Marc Zyngier | b3341ae | 2021-02-08 09:57:20 +0000 | [diff] [blame] | 1234 | struct arm64_ftr_reg *regp; |
| 1235 | u64 val; |
| 1236 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1237 | switch (sys_id) { |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1238 | read_sysreg_case(SYS_ID_PFR0_EL1); |
| 1239 | read_sysreg_case(SYS_ID_PFR1_EL1); |
Anshuman Khandual | 1682408 | 2020-05-19 15:10:41 +0530 | [diff] [blame] | 1240 | read_sysreg_case(SYS_ID_PFR2_EL1); |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1241 | read_sysreg_case(SYS_ID_DFR0_EL1); |
Anshuman Khandual | dd35ec0 | 2020-05-19 15:10:42 +0530 | [diff] [blame] | 1242 | read_sysreg_case(SYS_ID_DFR1_EL1); |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1243 | read_sysreg_case(SYS_ID_MMFR0_EL1); |
| 1244 | read_sysreg_case(SYS_ID_MMFR1_EL1); |
| 1245 | read_sysreg_case(SYS_ID_MMFR2_EL1); |
| 1246 | read_sysreg_case(SYS_ID_MMFR3_EL1); |
Anshuman Khandual | 858b8a8 | 2020-05-19 15:10:54 +0530 | [diff] [blame] | 1247 | read_sysreg_case(SYS_ID_MMFR4_EL1); |
Anshuman Khandual | 152accf8 | 2020-05-19 15:10:43 +0530 | [diff] [blame] | 1248 | read_sysreg_case(SYS_ID_MMFR5_EL1); |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1249 | read_sysreg_case(SYS_ID_ISAR0_EL1); |
| 1250 | read_sysreg_case(SYS_ID_ISAR1_EL1); |
| 1251 | read_sysreg_case(SYS_ID_ISAR2_EL1); |
| 1252 | read_sysreg_case(SYS_ID_ISAR3_EL1); |
| 1253 | read_sysreg_case(SYS_ID_ISAR4_EL1); |
| 1254 | read_sysreg_case(SYS_ID_ISAR5_EL1); |
Anshuman Khandual | 8e3747b | 2019-12-17 20:17:32 +0530 | [diff] [blame] | 1255 | read_sysreg_case(SYS_ID_ISAR6_EL1); |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1256 | read_sysreg_case(SYS_MVFR0_EL1); |
| 1257 | read_sysreg_case(SYS_MVFR1_EL1); |
| 1258 | read_sysreg_case(SYS_MVFR2_EL1); |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1259 | |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1260 | read_sysreg_case(SYS_ID_AA64PFR0_EL1); |
| 1261 | read_sysreg_case(SYS_ID_AA64PFR1_EL1); |
Dave Martin | 78ed70b | 2019-06-03 16:35:02 +0100 | [diff] [blame] | 1262 | read_sysreg_case(SYS_ID_AA64ZFR0_EL1); |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1263 | read_sysreg_case(SYS_ID_AA64DFR0_EL1); |
| 1264 | read_sysreg_case(SYS_ID_AA64DFR1_EL1); |
| 1265 | read_sysreg_case(SYS_ID_AA64MMFR0_EL1); |
| 1266 | read_sysreg_case(SYS_ID_AA64MMFR1_EL1); |
| 1267 | read_sysreg_case(SYS_ID_AA64MMFR2_EL1); |
| 1268 | read_sysreg_case(SYS_ID_AA64ISAR0_EL1); |
| 1269 | read_sysreg_case(SYS_ID_AA64ISAR1_EL1); |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1270 | |
Mark Rutland | 965861d | 2017-02-02 17:32:15 +0000 | [diff] [blame] | 1271 | read_sysreg_case(SYS_CNTFRQ_EL0); |
| 1272 | read_sysreg_case(SYS_CTR_EL0); |
| 1273 | read_sysreg_case(SYS_DCZID_EL0); |
| 1274 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1275 | default: |
| 1276 | BUG(); |
| 1277 | return 0; |
| 1278 | } |
Marc Zyngier | b3341ae | 2021-02-08 09:57:20 +0000 | [diff] [blame] | 1279 | |
| 1280 | regp = get_arm64_ftr_reg(sys_id); |
| 1281 | if (regp) { |
| 1282 | val &= ~regp->override->mask; |
| 1283 | val |= (regp->override->val & regp->override->mask); |
| 1284 | } |
| 1285 | |
| 1286 | return val; |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1287 | } |
| 1288 | |
Marc Zyngier | 963fcd4 | 2015-09-30 11:50:04 +0100 | [diff] [blame] | 1289 | #include <linux/irqchip/arm-gic-v3.h> |
| 1290 | |
Marc Zyngier | 94a9e04 | 2015-06-12 12:06:36 +0100 | [diff] [blame] | 1291 | static bool |
James Morse | 18ffa04 | 2015-07-21 13:23:29 +0100 | [diff] [blame] | 1292 | feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry) |
| 1293 | { |
Suzuki K Poulose | 28c5dcb | 2016-01-26 10:58:16 +0000 | [diff] [blame] | 1294 | int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign); |
James Morse | 18ffa04 | 2015-07-21 13:23:29 +0100 | [diff] [blame] | 1295 | |
| 1296 | return val >= entry->min_field_value; |
| 1297 | } |
| 1298 | |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1299 | static bool |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1300 | has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope) |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1301 | { |
| 1302 | u64 val; |
Marc Zyngier | 94a9e04 | 2015-06-12 12:06:36 +0100 | [diff] [blame] | 1303 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1304 | WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible()); |
| 1305 | if (scope == SCOPE_SYSTEM) |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 1306 | val = read_sanitised_ftr_reg(entry->sys_reg); |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1307 | else |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 1308 | val = __read_sysreg_by_encoding(entry->sys_reg); |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1309 | |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1310 | return feature_matches(val, entry); |
| 1311 | } |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 1312 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 1313 | const struct cpumask *system_32bit_el0_cpumask(void) |
| 1314 | { |
| 1315 | if (!system_supports_32bit_el0()) |
| 1316 | return cpu_none_mask; |
| 1317 | |
| 1318 | if (static_branch_unlikely(&arm64_mismatched_32bit_el0)) |
| 1319 | return cpu_32bit_el0_mask; |
| 1320 | |
| 1321 | return cpu_possible_mask; |
| 1322 | } |
| 1323 | |
| 1324 | static bool has_32bit_el0(const struct arm64_cpu_capabilities *entry, int scope) |
| 1325 | { |
| 1326 | if (!has_cpuid_feature(entry, scope)) |
| 1327 | return allow_mismatched_32bit_el0; |
| 1328 | |
| 1329 | if (scope == SCOPE_SYSTEM) |
| 1330 | pr_info("detected: 32-bit EL0 Support\n"); |
| 1331 | |
| 1332 | return true; |
| 1333 | } |
| 1334 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1335 | static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope) |
Marc Zyngier | 963fcd4 | 2015-09-30 11:50:04 +0100 | [diff] [blame] | 1336 | { |
| 1337 | bool has_sre; |
| 1338 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1339 | if (!has_cpuid_feature(entry, scope)) |
Marc Zyngier | 963fcd4 | 2015-09-30 11:50:04 +0100 | [diff] [blame] | 1340 | return false; |
| 1341 | |
| 1342 | has_sre = gic_enable_sre(); |
| 1343 | if (!has_sre) |
| 1344 | pr_warn_once("%s present but disabled by higher exception level\n", |
| 1345 | entry->desc); |
| 1346 | |
| 1347 | return has_sre; |
| 1348 | } |
| 1349 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 1350 | static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused) |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 1351 | { |
| 1352 | u32 midr = read_cpuid_id(); |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 1353 | |
| 1354 | /* Cavium ThunderX pass 1.x and 2.x */ |
Qian Cai | b99286b | 2019-08-05 23:05:03 -0400 | [diff] [blame] | 1355 | return midr_is_cpu_model_range(midr, MIDR_THUNDERX, |
Robert Richter | fa5ce3d | 2017-01-13 14:12:09 +0100 | [diff] [blame] | 1356 | MIDR_CPU_VAR_REV(0, 0), |
| 1357 | MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK)); |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 1358 | } |
| 1359 | |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 1360 | static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused) |
| 1361 | { |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 1362 | u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1); |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 1363 | |
| 1364 | return cpuid_feature_extract_signed_field(pfr0, |
| 1365 | ID_AA64PFR0_FP_SHIFT) < 0; |
| 1366 | } |
| 1367 | |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1368 | static bool has_cache_idc(const struct arm64_cpu_capabilities *entry, |
Suzuki K Poulose | 8ab66cb | 2018-10-09 14:47:05 +0100 | [diff] [blame] | 1369 | int scope) |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1370 | { |
Suzuki K Poulose | 8ab66cb | 2018-10-09 14:47:05 +0100 | [diff] [blame] | 1371 | u64 ctr; |
| 1372 | |
| 1373 | if (scope == SCOPE_SYSTEM) |
| 1374 | ctr = arm64_ftr_reg_ctrel0.sys_val; |
| 1375 | else |
Suzuki K Poulose | 1602df0 | 2018-10-09 14:47:06 +0100 | [diff] [blame] | 1376 | ctr = read_cpuid_effective_cachetype(); |
Suzuki K Poulose | 8ab66cb | 2018-10-09 14:47:05 +0100 | [diff] [blame] | 1377 | |
| 1378 | return ctr & BIT(CTR_IDC_SHIFT); |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1379 | } |
| 1380 | |
Suzuki K Poulose | 1602df0 | 2018-10-09 14:47:06 +0100 | [diff] [blame] | 1381 | static void cpu_emulate_effective_ctr(const struct arm64_cpu_capabilities *__unused) |
| 1382 | { |
| 1383 | /* |
| 1384 | * If the CPU exposes raw CTR_EL0.IDC = 0, while effectively |
| 1385 | * CTR_EL0.IDC = 1 (from CLIDR values), we need to trap accesses |
| 1386 | * to the CTR_EL0 on this CPU and emulate it with the real/safe |
| 1387 | * value. |
| 1388 | */ |
| 1389 | if (!(read_cpuid_cachetype() & BIT(CTR_IDC_SHIFT))) |
| 1390 | sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCT, 0); |
| 1391 | } |
| 1392 | |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1393 | static bool has_cache_dic(const struct arm64_cpu_capabilities *entry, |
Suzuki K Poulose | 8ab66cb | 2018-10-09 14:47:05 +0100 | [diff] [blame] | 1394 | int scope) |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1395 | { |
Suzuki K Poulose | 8ab66cb | 2018-10-09 14:47:05 +0100 | [diff] [blame] | 1396 | u64 ctr; |
| 1397 | |
| 1398 | if (scope == SCOPE_SYSTEM) |
| 1399 | ctr = arm64_ftr_reg_ctrel0.sys_val; |
| 1400 | else |
| 1401 | ctr = read_cpuid_cachetype(); |
| 1402 | |
| 1403 | return ctr & BIT(CTR_DIC_SHIFT); |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 1404 | } |
| 1405 | |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 1406 | static bool __maybe_unused |
| 1407 | has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope) |
| 1408 | { |
| 1409 | /* |
| 1410 | * Kdump isn't guaranteed to power-off all secondary CPUs, CNP |
| 1411 | * may share TLB entries with a CPU stuck in the crashed |
| 1412 | * kernel. |
| 1413 | */ |
Rich Wiley | 20109a8 | 2021-03-23 17:28:09 -0700 | [diff] [blame] | 1414 | if (is_kdump_kernel()) |
| 1415 | return false; |
| 1416 | |
| 1417 | if (cpus_have_const_cap(ARM64_WORKAROUND_NVIDIA_CARMEL_CNP)) |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 1418 | return false; |
| 1419 | |
| 1420 | return has_cpuid_feature(entry, scope); |
| 1421 | } |
| 1422 | |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1423 | /* |
| 1424 | * This check is triggered during the early boot before the cpufeature |
| 1425 | * is initialised. Checking the status on the local CPU allows the boot |
| 1426 | * CPU to detect the need for non-global mappings and thus avoiding a |
| 1427 | * pagetable re-write after all the CPUs are booted. This check will be |
| 1428 | * anyway run on individual CPUs, allowing us to get the consistent |
| 1429 | * state once the SMP CPUs are up and thus make the switch to non-global |
| 1430 | * mappings if required. |
| 1431 | */ |
| 1432 | bool kaslr_requires_kpti(void) |
| 1433 | { |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1434 | if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE)) |
| 1435 | return false; |
| 1436 | |
| 1437 | /* |
| 1438 | * E0PD does a similar job to KPTI so can be used instead |
| 1439 | * where available. |
| 1440 | */ |
| 1441 | if (IS_ENABLED(CONFIG_ARM64_E0PD)) { |
Will Deacon | a569f5f | 2020-01-15 14:06:37 +0000 | [diff] [blame] | 1442 | u64 mmfr2 = read_sysreg_s(SYS_ID_AA64MMFR2_EL1); |
| 1443 | if (cpuid_feature_extract_unsigned_field(mmfr2, |
| 1444 | ID_AA64MMFR2_E0PD_SHIFT)) |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1445 | return false; |
| 1446 | } |
| 1447 | |
| 1448 | /* |
| 1449 | * Systems affected by Cavium erratum 24756 are incompatible |
| 1450 | * with KPTI. |
| 1451 | */ |
Will Deacon | ebac96e | 2020-01-15 13:59:58 +0000 | [diff] [blame] | 1452 | if (IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) { |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1453 | extern const struct midr_range cavium_erratum_27456_cpus[]; |
| 1454 | |
Will Deacon | ebac96e | 2020-01-15 13:59:58 +0000 | [diff] [blame] | 1455 | if (is_midr_in_range_list(read_cpuid_id(), |
| 1456 | cavium_erratum_27456_cpus)) |
| 1457 | return false; |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1458 | } |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1459 | |
| 1460 | return kaslr_offset() > 0; |
| 1461 | } |
| 1462 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1463 | static bool __meltdown_safe = true; |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1464 | static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */ |
| 1465 | |
| 1466 | static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry, |
Suzuki K Poulose | d3aec8a | 2018-03-26 15:12:40 +0100 | [diff] [blame] | 1467 | int scope) |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1468 | { |
Suzuki K Poulose | be5b299 | 2018-03-26 15:12:45 +0100 | [diff] [blame] | 1469 | /* List of CPUs that are not vulnerable and don't need KPTI */ |
| 1470 | static const struct midr_range kpti_safe_list[] = { |
| 1471 | MIDR_ALL_VERSIONS(MIDR_CAVIUM_THUNDERX2), |
| 1472 | MIDR_ALL_VERSIONS(MIDR_BRCM_VULCAN), |
Florian Fainelli | 31d868c | 2020-01-06 14:54:12 -0800 | [diff] [blame] | 1473 | MIDR_ALL_VERSIONS(MIDR_BRAHMA_B53), |
Will Deacon | 2a355ec | 2018-12-13 13:47:38 +0000 | [diff] [blame] | 1474 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A35), |
| 1475 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A53), |
| 1476 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A55), |
| 1477 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A57), |
| 1478 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A72), |
| 1479 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A73), |
Hanjun Guo | 0ecc471 | 2019-03-05 21:40:58 +0800 | [diff] [blame] | 1480 | MIDR_ALL_VERSIONS(MIDR_HISI_TSV110), |
Rich Wiley | 918e194 | 2019-11-05 10:45:10 -0800 | [diff] [blame] | 1481 | MIDR_ALL_VERSIONS(MIDR_NVIDIA_CARMEL), |
Konrad Dybcio | e3dd11a | 2020-11-05 00:22:11 +0100 | [diff] [blame] | 1482 | MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_GOLD), |
| 1483 | MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_SILVER), |
Sai Prakash Ranjan | f4617be | 2020-06-24 18:04:06 +0530 | [diff] [blame] | 1484 | MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_3XX_SILVER), |
| 1485 | MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_4XX_SILVER), |
Mark Rutland | 71c751f | 2018-04-23 11:41:33 +0100 | [diff] [blame] | 1486 | { /* sentinel */ } |
Suzuki K Poulose | be5b299 | 2018-03-26 15:12:45 +0100 | [diff] [blame] | 1487 | }; |
Josh Poimboeuf | a111b7c | 2019-04-12 15:39:32 -0500 | [diff] [blame] | 1488 | char const *str = "kpti command line option"; |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1489 | bool meltdown_safe; |
| 1490 | |
| 1491 | meltdown_safe = is_midr_in_range_list(read_cpuid_id(), kpti_safe_list); |
| 1492 | |
| 1493 | /* Defer to CPU feature registers */ |
| 1494 | if (has_cpuid_feature(entry, scope)) |
| 1495 | meltdown_safe = true; |
| 1496 | |
| 1497 | if (!meltdown_safe) |
| 1498 | __meltdown_safe = false; |
Will Deacon | 179a56f | 2017-11-27 18:29:30 +0000 | [diff] [blame] | 1499 | |
Marc Zyngier | 6dc52b1 | 2018-01-29 11:59:56 +0000 | [diff] [blame] | 1500 | /* |
| 1501 | * For reasons that aren't entirely clear, enabling KPTI on Cavium |
| 1502 | * ThunderX leads to apparent I-cache corruption of kernel text, which |
| 1503 | * ends as well as you might imagine. Don't even try. |
| 1504 | */ |
| 1505 | if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456)) { |
| 1506 | str = "ARM64_WORKAROUND_CAVIUM_27456"; |
| 1507 | __kpti_forced = -1; |
| 1508 | } |
| 1509 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1510 | /* Useful for KASLR robustness */ |
Mark Brown | c2d9235 | 2019-12-09 18:12:15 +0000 | [diff] [blame] | 1511 | if (kaslr_requires_kpti()) { |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1512 | if (!__kpti_forced) { |
| 1513 | str = "KASLR"; |
| 1514 | __kpti_forced = 1; |
| 1515 | } |
| 1516 | } |
| 1517 | |
Josh Poimboeuf | a111b7c | 2019-04-12 15:39:32 -0500 | [diff] [blame] | 1518 | if (cpu_mitigations_off() && !__kpti_forced) { |
| 1519 | str = "mitigations=off"; |
| 1520 | __kpti_forced = -1; |
| 1521 | } |
| 1522 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1523 | if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) { |
| 1524 | pr_info_once("kernel page table isolation disabled by kernel configuration\n"); |
| 1525 | return false; |
| 1526 | } |
| 1527 | |
Marc Zyngier | 6dc52b1 | 2018-01-29 11:59:56 +0000 | [diff] [blame] | 1528 | /* Forced? */ |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1529 | if (__kpti_forced) { |
Marc Zyngier | 6dc52b1 | 2018-01-29 11:59:56 +0000 | [diff] [blame] | 1530 | pr_info_once("kernel page table isolation forced %s by %s\n", |
| 1531 | __kpti_forced > 0 ? "ON" : "OFF", str); |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1532 | return __kpti_forced > 0; |
| 1533 | } |
| 1534 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1535 | return !meltdown_safe; |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1538 | #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 |
Sami Tolvanen | cbdac84 | 2021-04-08 11:28:39 -0700 | [diff] [blame] | 1539 | static void __nocfi |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1540 | kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused) |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1541 | { |
| 1542 | typedef void (kpti_remap_fn)(int, int, phys_addr_t); |
| 1543 | extern kpti_remap_fn idmap_kpti_install_ng_mappings; |
| 1544 | kpti_remap_fn *remap_fn; |
| 1545 | |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1546 | int cpu = smp_processor_id(); |
| 1547 | |
Will Deacon | b89d82e | 2019-01-08 16:19:01 +0000 | [diff] [blame] | 1548 | /* |
| 1549 | * We don't need to rewrite the page-tables if either we've done |
| 1550 | * it already or we have KASLR enabled and therefore have not |
| 1551 | * created any global mappings at all. |
| 1552 | */ |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1553 | if (arm64_use_ng_mappings) |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1554 | return; |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1555 | |
Sami Tolvanen | bde3397 | 2021-04-08 11:28:38 -0700 | [diff] [blame] | 1556 | remap_fn = (void *)__pa_symbol(function_nocfi(idmap_kpti_install_ng_mappings)); |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1557 | |
| 1558 | cpu_install_idmap(); |
| 1559 | remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir)); |
| 1560 | cpu_uninstall_idmap(); |
| 1561 | |
| 1562 | if (!cpu) |
Mark Brown | 09e3c22 | 2019-12-09 18:12:17 +0000 | [diff] [blame] | 1563 | arm64_use_ng_mappings = true; |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1564 | |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1565 | return; |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1566 | } |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 1567 | #else |
| 1568 | static void |
| 1569 | kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused) |
| 1570 | { |
| 1571 | } |
| 1572 | #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ |
Will Deacon | f992b4d | 2018-02-06 22:22:50 +0000 | [diff] [blame] | 1573 | |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1574 | static int __init parse_kpti(char *str) |
| 1575 | { |
| 1576 | bool enabled; |
| 1577 | int ret = strtobool(str, &enabled); |
| 1578 | |
| 1579 | if (ret) |
| 1580 | return ret; |
| 1581 | |
| 1582 | __kpti_forced = enabled ? 1 : -1; |
| 1583 | return 0; |
| 1584 | } |
Will Deacon | b5b7dd6 | 2018-06-22 10:25:25 +0100 | [diff] [blame] | 1585 | early_param("kpti", parse_kpti); |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1586 | |
Suzuki K Poulose | 05abb59 | 2018-03-26 15:12:48 +0100 | [diff] [blame] | 1587 | #ifdef CONFIG_ARM64_HW_AFDBM |
| 1588 | static inline void __cpu_enable_hw_dbm(void) |
| 1589 | { |
| 1590 | u64 tcr = read_sysreg(tcr_el1) | TCR_HD; |
| 1591 | |
| 1592 | write_sysreg(tcr, tcr_el1); |
| 1593 | isb(); |
Will Deacon | 80d6b46 | 2020-10-01 09:48:21 +0100 | [diff] [blame] | 1594 | local_flush_tlb_all(); |
Suzuki K Poulose | 05abb59 | 2018-03-26 15:12:48 +0100 | [diff] [blame] | 1595 | } |
| 1596 | |
Suzuki K Poulose | ece1397 | 2018-03-26 15:12:49 +0100 | [diff] [blame] | 1597 | static bool cpu_has_broken_dbm(void) |
| 1598 | { |
| 1599 | /* List of CPUs which have broken DBM support. */ |
| 1600 | static const struct midr_range cpus[] = { |
| 1601 | #ifdef CONFIG_ARM64_ERRATUM_1024718 |
Suzuki K Poulose | c0b15c2 | 2021-02-03 23:00:57 +0000 | [diff] [blame] | 1602 | MIDR_ALL_VERSIONS(MIDR_CORTEX_A55), |
Sai Prakash Ranjan | 9b23d95 | 2020-06-30 23:30:55 +0530 | [diff] [blame] | 1603 | /* Kryo4xx Silver (rdpe => r1p0) */ |
| 1604 | MIDR_REV(MIDR_QCOM_KRYO_4XX_SILVER, 0xd, 0xe), |
Suzuki K Poulose | ece1397 | 2018-03-26 15:12:49 +0100 | [diff] [blame] | 1605 | #endif |
| 1606 | {}, |
| 1607 | }; |
| 1608 | |
| 1609 | return is_midr_in_range_list(read_cpuid_id(), cpus); |
| 1610 | } |
| 1611 | |
Suzuki K Poulose | 05abb59 | 2018-03-26 15:12:48 +0100 | [diff] [blame] | 1612 | static bool cpu_can_use_dbm(const struct arm64_cpu_capabilities *cap) |
| 1613 | { |
Suzuki K Poulose | ece1397 | 2018-03-26 15:12:49 +0100 | [diff] [blame] | 1614 | return has_cpuid_feature(cap, SCOPE_LOCAL_CPU) && |
| 1615 | !cpu_has_broken_dbm(); |
Suzuki K Poulose | 05abb59 | 2018-03-26 15:12:48 +0100 | [diff] [blame] | 1616 | } |
| 1617 | |
| 1618 | static void cpu_enable_hw_dbm(struct arm64_cpu_capabilities const *cap) |
| 1619 | { |
| 1620 | if (cpu_can_use_dbm(cap)) |
| 1621 | __cpu_enable_hw_dbm(); |
| 1622 | } |
| 1623 | |
| 1624 | static bool has_hw_dbm(const struct arm64_cpu_capabilities *cap, |
| 1625 | int __unused) |
| 1626 | { |
| 1627 | static bool detected = false; |
| 1628 | /* |
| 1629 | * DBM is a non-conflicting feature. i.e, the kernel can safely |
| 1630 | * run a mix of CPUs with and without the feature. So, we |
| 1631 | * unconditionally enable the capability to allow any late CPU |
| 1632 | * to use the feature. We only enable the control bits on the |
| 1633 | * CPU, if it actually supports. |
| 1634 | * |
| 1635 | * We have to make sure we print the "feature" detection only |
| 1636 | * when at least one CPU actually uses it. So check if this CPU |
| 1637 | * can actually use it and print the message exactly once. |
| 1638 | * |
| 1639 | * This is safe as all CPUs (including secondary CPUs - due to the |
| 1640 | * LOCAL_CPU scope - and the hotplugged CPUs - via verification) |
| 1641 | * goes through the "matches" check exactly once. Also if a CPU |
| 1642 | * matches the criteria, it is guaranteed that the CPU will turn |
| 1643 | * the DBM on, as the capability is unconditionally enabled. |
| 1644 | */ |
| 1645 | if (!detected && cpu_can_use_dbm(cap)) { |
| 1646 | detected = true; |
| 1647 | pr_info("detected: Hardware dirty bit management\n"); |
| 1648 | } |
| 1649 | |
| 1650 | return true; |
| 1651 | } |
| 1652 | |
| 1653 | #endif |
| 1654 | |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 1655 | #ifdef CONFIG_ARM64_AMU_EXTN |
| 1656 | |
| 1657 | /* |
| 1658 | * The "amu_cpus" cpumask only signals that the CPU implementation for the |
| 1659 | * flagged CPUs supports the Activity Monitors Unit (AMU) but does not provide |
| 1660 | * information regarding all the events that it supports. When a CPU bit is |
| 1661 | * set in the cpumask, the user of this feature can only rely on the presence |
| 1662 | * of the 4 fixed counters for that CPU. But this does not guarantee that the |
| 1663 | * counters are enabled or access to these counters is enabled by code |
| 1664 | * executed at higher exception levels (firmware). |
| 1665 | */ |
| 1666 | static struct cpumask amu_cpus __read_mostly; |
| 1667 | |
| 1668 | bool cpu_has_amu_feat(int cpu) |
| 1669 | { |
| 1670 | return cpumask_test_cpu(cpu, &amu_cpus); |
| 1671 | } |
| 1672 | |
Ionela Voinescu | 68c5deb | 2020-11-06 12:53:34 +0000 | [diff] [blame] | 1673 | int get_cpu_with_amu_feat(void) |
| 1674 | { |
| 1675 | return cpumask_any(&amu_cpus); |
| 1676 | } |
Ionela Voinescu | cd0ed03 | 2020-03-05 09:06:26 +0000 | [diff] [blame] | 1677 | |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 1678 | static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap) |
| 1679 | { |
| 1680 | if (has_cpuid_feature(cap, SCOPE_LOCAL_CPU)) { |
| 1681 | pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n", |
| 1682 | smp_processor_id()); |
| 1683 | cpumask_set_cpu(smp_processor_id(), &amu_cpus); |
Ionela Voinescu | 4b9cf23 | 2020-11-06 12:53:32 +0000 | [diff] [blame] | 1684 | update_freq_counters_refs(); |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 1685 | } |
| 1686 | } |
| 1687 | |
| 1688 | static bool has_amu(const struct arm64_cpu_capabilities *cap, |
| 1689 | int __unused) |
| 1690 | { |
| 1691 | /* |
| 1692 | * The AMU extension is a non-conflicting feature: the kernel can |
| 1693 | * safely run a mix of CPUs with and without support for the |
| 1694 | * activity monitors extension. Therefore, unconditionally enable |
| 1695 | * the capability to allow any late CPU to use the feature. |
| 1696 | * |
| 1697 | * With this feature unconditionally enabled, the cpu_enable |
| 1698 | * function will be called for all CPUs that match the criteria, |
| 1699 | * including secondary and hotplugged, marking this feature as |
| 1700 | * present on that respective CPU. The enable function will also |
| 1701 | * print a detection message. |
| 1702 | */ |
| 1703 | |
| 1704 | return true; |
| 1705 | } |
Ionela Voinescu | 68c5deb | 2020-11-06 12:53:34 +0000 | [diff] [blame] | 1706 | #else |
| 1707 | int get_cpu_with_amu_feat(void) |
| 1708 | { |
| 1709 | return nr_cpu_ids; |
| 1710 | } |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 1711 | #endif |
| 1712 | |
Will Deacon | 12eb369 | 2018-03-27 11:51:12 +0100 | [diff] [blame] | 1713 | static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused) |
| 1714 | { |
| 1715 | return is_kernel_in_hyp_mode(); |
| 1716 | } |
| 1717 | |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1718 | static void cpu_copy_el2regs(const struct arm64_cpu_capabilities *__unused) |
James Morse | 6d99b68 | 2018-01-08 15:38:06 +0000 | [diff] [blame] | 1719 | { |
| 1720 | /* |
| 1721 | * Copy register values that aren't redirected by hardware. |
| 1722 | * |
| 1723 | * Before code patching, we only set tpidr_el1, all CPUs need to copy |
| 1724 | * this value to tpidr_el2 before we patch the code. Once we've done |
| 1725 | * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to |
| 1726 | * do anything here. |
| 1727 | */ |
Julien Thierry | e9ab7a2 | 2019-01-31 14:58:52 +0000 | [diff] [blame] | 1728 | if (!alternative_is_applied(ARM64_HAS_VIRT_HOST_EXTN)) |
James Morse | 6d99b68 | 2018-01-08 15:38:06 +0000 | [diff] [blame] | 1729 | write_sysreg(read_sysreg(tpidr_el1), tpidr_el2); |
James Morse | 6d99b68 | 2018-01-08 15:38:06 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 1732 | static void cpu_has_fwb(const struct arm64_cpu_capabilities *__unused) |
| 1733 | { |
| 1734 | u64 val = read_sysreg_s(SYS_CLIDR_EL1); |
| 1735 | |
| 1736 | /* Check that CLIDR_EL1.LOU{U,IS} are both 0 */ |
| 1737 | WARN_ON(val & (7 << 27 | 7 << 21)); |
| 1738 | } |
| 1739 | |
Will Deacon | b8925ee | 2018-08-07 13:53:41 +0100 | [diff] [blame] | 1740 | #ifdef CONFIG_ARM64_PAN |
| 1741 | static void cpu_enable_pan(const struct arm64_cpu_capabilities *__unused) |
| 1742 | { |
| 1743 | /* |
| 1744 | * We modify PSTATE. This won't work from irq context as the PSTATE |
| 1745 | * is discarded once we return from the exception. |
| 1746 | */ |
| 1747 | WARN_ON_ONCE(in_interrupt()); |
| 1748 | |
| 1749 | sysreg_clear_set(sctlr_el1, SCTLR_EL1_SPAN, 0); |
Mark Rutland | 515d5c8 | 2020-11-13 12:49:22 +0000 | [diff] [blame] | 1750 | set_pstate_pan(1); |
Will Deacon | b8925ee | 2018-08-07 13:53:41 +0100 | [diff] [blame] | 1751 | } |
| 1752 | #endif /* CONFIG_ARM64_PAN */ |
| 1753 | |
| 1754 | #ifdef CONFIG_ARM64_RAS_EXTN |
| 1755 | static void cpu_clear_disr(const struct arm64_cpu_capabilities *__unused) |
| 1756 | { |
| 1757 | /* Firmware may have left a deferred SError in this register. */ |
| 1758 | write_sysreg_s(0, SYS_DISR_EL1); |
| 1759 | } |
| 1760 | #endif /* CONFIG_ARM64_RAS_EXTN */ |
| 1761 | |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 1762 | #ifdef CONFIG_ARM64_PTR_AUTH |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 1763 | static bool has_address_auth_cpucap(const struct arm64_cpu_capabilities *entry, int scope) |
Mark Rutland | 7503197 | 2018-12-07 18:39:25 +0000 | [diff] [blame] | 1764 | { |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 1765 | int boot_val, sec_val; |
| 1766 | |
| 1767 | /* We don't expect to be called with SCOPE_SYSTEM */ |
| 1768 | WARN_ON(scope == SCOPE_SYSTEM); |
| 1769 | /* |
| 1770 | * The ptr-auth feature levels are not intercompatible with lower |
| 1771 | * levels. Hence we must match ptr-auth feature level of the secondary |
| 1772 | * CPUs with that of the boot CPU. The level of boot cpu is fetched |
| 1773 | * from the sanitised register whereas direct register read is done for |
| 1774 | * the secondary CPUs. |
| 1775 | * The sanitised feature state is guaranteed to match that of the |
| 1776 | * boot CPU as a mismatched secondary CPU is parked before it gets |
| 1777 | * a chance to update the state, with the capability. |
| 1778 | */ |
| 1779 | boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg), |
| 1780 | entry->field_pos, entry->sign); |
| 1781 | if (scope & SCOPE_BOOT_CPU) |
| 1782 | return boot_val >= entry->min_field_value; |
| 1783 | /* Now check for the secondary CPUs with SCOPE_LOCAL_CPU scope */ |
| 1784 | sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg), |
| 1785 | entry->field_pos, entry->sign); |
| 1786 | return sec_val == boot_val; |
| 1787 | } |
| 1788 | |
| 1789 | static bool has_address_auth_metacap(const struct arm64_cpu_capabilities *entry, |
| 1790 | int scope) |
| 1791 | { |
| 1792 | return has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_ARCH], scope) || |
| 1793 | has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_IMP_DEF], scope); |
Kristina Martsenko | cfef06b | 2020-03-13 14:34:49 +0530 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | static bool has_generic_auth(const struct arm64_cpu_capabilities *entry, |
| 1797 | int __unused) |
| 1798 | { |
| 1799 | return __system_matches_cap(ARM64_HAS_GENERIC_AUTH_ARCH) || |
| 1800 | __system_matches_cap(ARM64_HAS_GENERIC_AUTH_IMP_DEF); |
Mark Rutland | 7503197 | 2018-12-07 18:39:25 +0000 | [diff] [blame] | 1801 | } |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 1802 | #endif /* CONFIG_ARM64_PTR_AUTH */ |
| 1803 | |
Mark Brown | 3e6c69a | 2019-12-09 18:12:14 +0000 | [diff] [blame] | 1804 | #ifdef CONFIG_ARM64_E0PD |
| 1805 | static void cpu_enable_e0pd(struct arm64_cpu_capabilities const *cap) |
| 1806 | { |
| 1807 | if (this_cpu_has_cap(ARM64_HAS_E0PD)) |
| 1808 | sysreg_clear_set(tcr_el1, 0, TCR_E0PD1); |
| 1809 | } |
| 1810 | #endif /* CONFIG_ARM64_E0PD */ |
| 1811 | |
Julien Thierry | b90d2b2 | 2019-01-31 14:58:42 +0000 | [diff] [blame] | 1812 | #ifdef CONFIG_ARM64_PSEUDO_NMI |
Julien Thierry | bc3c03c | 2019-01-31 14:59:03 +0000 | [diff] [blame] | 1813 | static bool enable_pseudo_nmi; |
| 1814 | |
| 1815 | static int __init early_enable_pseudo_nmi(char *p) |
| 1816 | { |
| 1817 | return strtobool(p, &enable_pseudo_nmi); |
| 1818 | } |
| 1819 | early_param("irqchip.gicv3_pseudo_nmi", early_enable_pseudo_nmi); |
| 1820 | |
Julien Thierry | b90d2b2 | 2019-01-31 14:58:42 +0000 | [diff] [blame] | 1821 | static bool can_use_gic_priorities(const struct arm64_cpu_capabilities *entry, |
| 1822 | int scope) |
| 1823 | { |
Julien Thierry | bc3c03c | 2019-01-31 14:59:03 +0000 | [diff] [blame] | 1824 | return enable_pseudo_nmi && has_useable_gicv3_cpuif(entry, scope); |
Julien Thierry | b90d2b2 | 2019-01-31 14:58:42 +0000 | [diff] [blame] | 1825 | } |
| 1826 | #endif |
| 1827 | |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 1828 | #ifdef CONFIG_ARM64_BTI |
| 1829 | static void bti_enable(const struct arm64_cpu_capabilities *__unused) |
| 1830 | { |
| 1831 | /* |
| 1832 | * Use of X16/X17 for tail-calls and trampolines that jump to |
| 1833 | * function entry points using BR is a requirement for |
| 1834 | * marking binaries with GNU_PROPERTY_AARCH64_FEATURE_1_BTI. |
| 1835 | * So, be strict and forbid other BRs using other registers to |
| 1836 | * jump onto a PACIxSP instruction: |
| 1837 | */ |
| 1838 | sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_BT0 | SCTLR_EL1_BT1); |
| 1839 | isb(); |
| 1840 | } |
| 1841 | #endif /* CONFIG_ARM64_BTI */ |
| 1842 | |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 1843 | #ifdef CONFIG_ARM64_MTE |
| 1844 | static void cpu_enable_mte(struct arm64_cpu_capabilities const *cap) |
| 1845 | { |
Yee Lee | 7a062ce | 2021-08-03 15:08:22 +0800 | [diff] [blame^] | 1846 | sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_ATA | SCTLR_EL1_ATA0); |
| 1847 | isb(); |
| 1848 | |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 1849 | /* |
| 1850 | * Clear the tags in the zero page. This needs to be done via the |
| 1851 | * linear map which has the Tagged attribute. |
| 1852 | */ |
Catalin Marinas | 68d54ce | 2021-02-10 18:03:16 +0000 | [diff] [blame] | 1853 | if (!test_and_set_bit(PG_mte_tagged, &ZERO_PAGE(0)->flags)) |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 1854 | mte_clear_page_tags(lm_alias(empty_zero_page)); |
Andrey Konovalov | 2e903b9 | 2020-12-22 12:02:10 -0800 | [diff] [blame] | 1855 | |
| 1856 | kasan_init_hw_tags_cpu(); |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 1857 | } |
| 1858 | #endif /* CONFIG_ARM64_MTE */ |
| 1859 | |
David Brazdil | 3eb681f | 2020-12-02 18:40:58 +0000 | [diff] [blame] | 1860 | #ifdef CONFIG_KVM |
| 1861 | static bool is_kvm_protected_mode(const struct arm64_cpu_capabilities *entry, int __unused) |
| 1862 | { |
| 1863 | if (kvm_get_mode() != KVM_MODE_PROTECTED) |
| 1864 | return false; |
| 1865 | |
| 1866 | if (is_kernel_in_hyp_mode()) { |
| 1867 | pr_warn("Protected KVM not available with VHE\n"); |
| 1868 | return false; |
| 1869 | } |
| 1870 | |
| 1871 | return true; |
| 1872 | } |
| 1873 | #endif /* CONFIG_KVM */ |
| 1874 | |
Amit Daniel Kachhap | 8c176e1 | 2020-03-13 14:34:53 +0530 | [diff] [blame] | 1875 | /* Internal helper functions to match cpu capability type */ |
| 1876 | static bool |
| 1877 | cpucap_late_cpu_optional(const struct arm64_cpu_capabilities *cap) |
| 1878 | { |
| 1879 | return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU); |
| 1880 | } |
| 1881 | |
| 1882 | static bool |
| 1883 | cpucap_late_cpu_permitted(const struct arm64_cpu_capabilities *cap) |
| 1884 | { |
| 1885 | return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU); |
| 1886 | } |
| 1887 | |
Kristina Martsenko | deeaac5 | 2020-03-13 14:34:54 +0530 | [diff] [blame] | 1888 | static bool |
| 1889 | cpucap_panic_on_conflict(const struct arm64_cpu_capabilities *cap) |
| 1890 | { |
| 1891 | return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT); |
| 1892 | } |
| 1893 | |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 1894 | static const struct arm64_cpu_capabilities arm64_features[] = { |
Marc Zyngier | 94a9e04 | 2015-06-12 12:06:36 +0100 | [diff] [blame] | 1895 | { |
| 1896 | .desc = "GIC system register CPU interface", |
| 1897 | .capability = ARM64_HAS_SYSREG_GIC_CPUIF, |
Julien Thierry | c9bfdf7 | 2019-01-31 14:58:41 +0000 | [diff] [blame] | 1898 | .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE, |
Marc Zyngier | 963fcd4 | 2015-09-30 11:50:04 +0100 | [diff] [blame] | 1899 | .matches = has_useable_gicv3_cpuif, |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1900 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 1901 | .field_pos = ID_AA64PFR0_GIC_SHIFT, |
Suzuki K Poulose | ff96f7b | 2016-01-26 10:58:15 +0000 | [diff] [blame] | 1902 | .sign = FTR_UNSIGNED, |
James Morse | 18ffa04 | 2015-07-21 13:23:29 +0100 | [diff] [blame] | 1903 | .min_field_value = 1, |
Marc Zyngier | 94a9e04 | 2015-06-12 12:06:36 +0100 | [diff] [blame] | 1904 | }, |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 1905 | #ifdef CONFIG_ARM64_PAN |
| 1906 | { |
| 1907 | .desc = "Privileged Access Never", |
| 1908 | .capability = ARM64_HAS_PAN, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 1909 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1910 | .matches = has_cpuid_feature, |
| 1911 | .sys_reg = SYS_ID_AA64MMFR1_EL1, |
| 1912 | .field_pos = ID_AA64MMFR1_PAN_SHIFT, |
Suzuki K Poulose | ff96f7b | 2016-01-26 10:58:15 +0000 | [diff] [blame] | 1913 | .sign = FTR_UNSIGNED, |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 1914 | .min_field_value = 1, |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1915 | .cpu_enable = cpu_enable_pan, |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 1916 | }, |
| 1917 | #endif /* CONFIG_ARM64_PAN */ |
Vladimir Murzin | 18107f8 | 2021-03-12 17:38:10 +0000 | [diff] [blame] | 1918 | #ifdef CONFIG_ARM64_EPAN |
| 1919 | { |
| 1920 | .desc = "Enhanced Privileged Access Never", |
| 1921 | .capability = ARM64_HAS_EPAN, |
| 1922 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 1923 | .matches = has_cpuid_feature, |
| 1924 | .sys_reg = SYS_ID_AA64MMFR1_EL1, |
| 1925 | .field_pos = ID_AA64MMFR1_PAN_SHIFT, |
| 1926 | .sign = FTR_UNSIGNED, |
| 1927 | .min_field_value = 3, |
| 1928 | }, |
| 1929 | #endif /* CONFIG_ARM64_EPAN */ |
Catalin Marinas | 395af86 | 2020-01-15 11:30:08 +0000 | [diff] [blame] | 1930 | #ifdef CONFIG_ARM64_LSE_ATOMICS |
Will Deacon | 2e94da1 | 2015-07-27 16:23:58 +0100 | [diff] [blame] | 1931 | { |
| 1932 | .desc = "LSE atomic instructions", |
| 1933 | .capability = ARM64_HAS_LSE_ATOMICS, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 1934 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Suzuki K. Poulose | da8d02d | 2015-10-19 14:24:51 +0100 | [diff] [blame] | 1935 | .matches = has_cpuid_feature, |
| 1936 | .sys_reg = SYS_ID_AA64ISAR0_EL1, |
| 1937 | .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT, |
Suzuki K Poulose | ff96f7b | 2016-01-26 10:58:15 +0000 | [diff] [blame] | 1938 | .sign = FTR_UNSIGNED, |
Will Deacon | 2e94da1 | 2015-07-27 16:23:58 +0100 | [diff] [blame] | 1939 | .min_field_value = 2, |
| 1940 | }, |
Catalin Marinas | 395af86 | 2020-01-15 11:30:08 +0000 | [diff] [blame] | 1941 | #endif /* CONFIG_ARM64_LSE_ATOMICS */ |
Marc Zyngier | d88701b | 2015-01-29 11:24:05 +0000 | [diff] [blame] | 1942 | { |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 1943 | .desc = "Software prefetching using PRFM", |
| 1944 | .capability = ARM64_HAS_NO_HW_PREFETCH, |
Suzuki K Poulose | 5c13771 | 2018-03-26 15:12:39 +0100 | [diff] [blame] | 1945 | .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE, |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 1946 | .matches = has_no_hw_prefetch, |
| 1947 | }, |
Linus Torvalds | 588ab3f | 2016-03-17 20:03:47 -0700 | [diff] [blame] | 1948 | { |
Marc Zyngier | d88701b | 2015-01-29 11:24:05 +0000 | [diff] [blame] | 1949 | .desc = "Virtualization Host Extensions", |
| 1950 | .capability = ARM64_HAS_VIRT_HOST_EXTN, |
Suzuki K Poulose | 830dcc9 | 2018-03-26 15:12:42 +0100 | [diff] [blame] | 1951 | .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE, |
Marc Zyngier | d88701b | 2015-01-29 11:24:05 +0000 | [diff] [blame] | 1952 | .matches = runs_at_el2, |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1953 | .cpu_enable = cpu_copy_el2regs, |
Marc Zyngier | d88701b | 2015-01-29 11:24:05 +0000 | [diff] [blame] | 1954 | }, |
Suzuki K Poulose | 042446a | 2016-04-18 10:28:36 +0100 | [diff] [blame] | 1955 | { |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 1956 | .capability = ARM64_HAS_32BIT_EL0_DO_NOT_USE, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 1957 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 1958 | .matches = has_32bit_el0, |
Suzuki K Poulose | 042446a | 2016-04-18 10:28:36 +0100 | [diff] [blame] | 1959 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 1960 | .sign = FTR_UNSIGNED, |
| 1961 | .field_pos = ID_AA64PFR0_EL0_SHIFT, |
| 1962 | .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT, |
| 1963 | }, |
Will Deacon | 540f76d | 2020-04-21 15:29:17 +0100 | [diff] [blame] | 1964 | #ifdef CONFIG_KVM |
| 1965 | { |
| 1966 | .desc = "32-bit EL1 Support", |
| 1967 | .capability = ARM64_HAS_32BIT_EL1, |
| 1968 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 1969 | .matches = has_cpuid_feature, |
| 1970 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 1971 | .sign = FTR_UNSIGNED, |
| 1972 | .field_pos = ID_AA64PFR0_EL1_SHIFT, |
| 1973 | .min_field_value = ID_AA64PFR0_EL1_32BIT_64BIT, |
| 1974 | }, |
David Brazdil | 3eb681f | 2020-12-02 18:40:58 +0000 | [diff] [blame] | 1975 | { |
| 1976 | .desc = "Protected KVM", |
| 1977 | .capability = ARM64_KVM_PROTECTED_MODE, |
| 1978 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 1979 | .matches = is_kvm_protected_mode, |
| 1980 | }, |
Will Deacon | 540f76d | 2020-04-21 15:29:17 +0100 | [diff] [blame] | 1981 | #endif |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1982 | { |
Will Deacon | 179a56f | 2017-11-27 18:29:30 +0000 | [diff] [blame] | 1983 | .desc = "Kernel page table isolation (KPTI)", |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1984 | .capability = ARM64_UNMAP_KERNEL_AT_EL0, |
Suzuki K Poulose | d3aec8a | 2018-03-26 15:12:40 +0100 | [diff] [blame] | 1985 | .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE, |
| 1986 | /* |
| 1987 | * The ID feature fields below are used to indicate that |
| 1988 | * the CPU doesn't need KPTI. See unmap_kernel_at_el0 for |
| 1989 | * more details. |
| 1990 | */ |
| 1991 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 1992 | .field_pos = ID_AA64PFR0_CSV3_SHIFT, |
| 1993 | .min_field_value = 1, |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1994 | .matches = unmap_kernel_at_el0, |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 1995 | .cpu_enable = kpti_install_ng_mappings, |
Will Deacon | ea1e3de | 2017-11-14 14:38:19 +0000 | [diff] [blame] | 1996 | }, |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 1997 | { |
| 1998 | /* FP/SIMD is not implemented */ |
| 1999 | .capability = ARM64_HAS_NO_FPSIMD, |
Suzuki K Poulose | 449443c | 2020-01-13 23:30:19 +0000 | [diff] [blame] | 2000 | .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE, |
Suzuki K Poulose | 82e0191 | 2016-11-08 13:56:21 +0000 | [diff] [blame] | 2001 | .min_field_value = 0, |
| 2002 | .matches = has_no_fpsimd, |
| 2003 | }, |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 2004 | #ifdef CONFIG_ARM64_PMEM |
| 2005 | { |
| 2006 | .desc = "Data cache clean to Point of Persistence", |
| 2007 | .capability = ARM64_HAS_DCPOP, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 2008 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 2009 | .matches = has_cpuid_feature, |
| 2010 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2011 | .field_pos = ID_AA64ISAR1_DPB_SHIFT, |
| 2012 | .min_field_value = 1, |
| 2013 | }, |
Andrew Murray | b9585f5 | 2019-04-09 10:52:45 +0100 | [diff] [blame] | 2014 | { |
| 2015 | .desc = "Data cache clean to Point of Deep Persistence", |
| 2016 | .capability = ARM64_HAS_DCPODP, |
| 2017 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2018 | .matches = has_cpuid_feature, |
| 2019 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2020 | .sign = FTR_UNSIGNED, |
| 2021 | .field_pos = ID_AA64ISAR1_DPB_SHIFT, |
| 2022 | .min_field_value = 2, |
| 2023 | }, |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 2024 | #endif |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2025 | #ifdef CONFIG_ARM64_SVE |
| 2026 | { |
| 2027 | .desc = "Scalable Vector Extension", |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 2028 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2029 | .capability = ARM64_SVE, |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2030 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 2031 | .sign = FTR_UNSIGNED, |
| 2032 | .field_pos = ID_AA64PFR0_SVE_SHIFT, |
| 2033 | .min_field_value = ID_AA64PFR0_SVE, |
| 2034 | .matches = has_cpuid_feature, |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 2035 | .cpu_enable = sve_kernel_enable, |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2036 | }, |
| 2037 | #endif /* CONFIG_ARM64_SVE */ |
Xie XiuQi | 64c0272 | 2018-01-15 19:38:56 +0000 | [diff] [blame] | 2038 | #ifdef CONFIG_ARM64_RAS_EXTN |
| 2039 | { |
| 2040 | .desc = "RAS Extension Support", |
| 2041 | .capability = ARM64_HAS_RAS_EXTN, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 2042 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Xie XiuQi | 64c0272 | 2018-01-15 19:38:56 +0000 | [diff] [blame] | 2043 | .matches = has_cpuid_feature, |
| 2044 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 2045 | .sign = FTR_UNSIGNED, |
| 2046 | .field_pos = ID_AA64PFR0_RAS_SHIFT, |
| 2047 | .min_field_value = ID_AA64PFR0_RAS_V1, |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 2048 | .cpu_enable = cpu_clear_disr, |
Xie XiuQi | 64c0272 | 2018-01-15 19:38:56 +0000 | [diff] [blame] | 2049 | }, |
| 2050 | #endif /* CONFIG_ARM64_RAS_EXTN */ |
Ionela Voinescu | 2c9d45b | 2020-03-05 09:06:21 +0000 | [diff] [blame] | 2051 | #ifdef CONFIG_ARM64_AMU_EXTN |
| 2052 | { |
| 2053 | /* |
| 2054 | * The feature is enabled by default if CONFIG_ARM64_AMU_EXTN=y. |
| 2055 | * Therefore, don't provide .desc as we don't want the detection |
| 2056 | * message to be shown until at least one CPU is detected to |
| 2057 | * support the feature. |
| 2058 | */ |
| 2059 | .capability = ARM64_HAS_AMU_EXTN, |
| 2060 | .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE, |
| 2061 | .matches = has_amu, |
| 2062 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 2063 | .sign = FTR_UNSIGNED, |
| 2064 | .field_pos = ID_AA64PFR0_AMU_SHIFT, |
| 2065 | .min_field_value = ID_AA64PFR0_AMU, |
| 2066 | .cpu_enable = cpu_amu_enable, |
| 2067 | }, |
| 2068 | #endif /* CONFIG_ARM64_AMU_EXTN */ |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 2069 | { |
| 2070 | .desc = "Data cache clean to the PoU not required for I/D coherence", |
| 2071 | .capability = ARM64_HAS_CACHE_IDC, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 2072 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 2073 | .matches = has_cache_idc, |
Suzuki K Poulose | 1602df0 | 2018-10-09 14:47:06 +0100 | [diff] [blame] | 2074 | .cpu_enable = cpu_emulate_effective_ctr, |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 2075 | }, |
| 2076 | { |
| 2077 | .desc = "Instruction cache invalidation not required for I/D coherence", |
| 2078 | .capability = ARM64_HAS_CACHE_DIC, |
Suzuki K Poulose | 5b4747c | 2018-03-26 15:12:32 +0100 | [diff] [blame] | 2079 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Shanker Donthineni | 6ae4b6e | 2018-03-07 09:00:08 -0600 | [diff] [blame] | 2080 | .matches = has_cache_dic, |
| 2081 | }, |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 2082 | { |
| 2083 | .desc = "Stage-2 Force Write-Back", |
| 2084 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2085 | .capability = ARM64_HAS_STAGE2_FWB, |
| 2086 | .sys_reg = SYS_ID_AA64MMFR2_EL1, |
| 2087 | .sign = FTR_UNSIGNED, |
| 2088 | .field_pos = ID_AA64MMFR2_FWB_SHIFT, |
| 2089 | .min_field_value = 1, |
| 2090 | .matches = has_cpuid_feature, |
| 2091 | .cpu_enable = cpu_has_fwb, |
| 2092 | }, |
Marc Zyngier | 552ae76 | 2018-12-22 12:00:10 +0000 | [diff] [blame] | 2093 | { |
| 2094 | .desc = "ARMv8.4 Translation Table Level", |
| 2095 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2096 | .capability = ARM64_HAS_ARMv8_4_TTL, |
| 2097 | .sys_reg = SYS_ID_AA64MMFR2_EL1, |
| 2098 | .sign = FTR_UNSIGNED, |
| 2099 | .field_pos = ID_AA64MMFR2_TTL_SHIFT, |
| 2100 | .min_field_value = 1, |
| 2101 | .matches = has_cpuid_feature, |
| 2102 | }, |
Zhenyu Ye | b620ba5 | 2020-07-15 15:19:43 +0800 | [diff] [blame] | 2103 | { |
| 2104 | .desc = "TLB range maintenance instructions", |
| 2105 | .capability = ARM64_HAS_TLB_RANGE, |
| 2106 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2107 | .matches = has_cpuid_feature, |
| 2108 | .sys_reg = SYS_ID_AA64ISAR0_EL1, |
| 2109 | .field_pos = ID_AA64ISAR0_TLB_SHIFT, |
| 2110 | .sign = FTR_UNSIGNED, |
| 2111 | .min_field_value = ID_AA64ISAR0_TLB_RANGE, |
| 2112 | }, |
Suzuki K Poulose | 05abb59 | 2018-03-26 15:12:48 +0100 | [diff] [blame] | 2113 | #ifdef CONFIG_ARM64_HW_AFDBM |
| 2114 | { |
| 2115 | /* |
| 2116 | * Since we turn this on always, we don't want the user to |
| 2117 | * think that the feature is available when it may not be. |
| 2118 | * So hide the description. |
| 2119 | * |
| 2120 | * .desc = "Hardware pagetable Dirty Bit Management", |
| 2121 | * |
| 2122 | */ |
| 2123 | .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE, |
| 2124 | .capability = ARM64_HW_DBM, |
| 2125 | .sys_reg = SYS_ID_AA64MMFR1_EL1, |
| 2126 | .sign = FTR_UNSIGNED, |
| 2127 | .field_pos = ID_AA64MMFR1_HADBS_SHIFT, |
| 2128 | .min_field_value = 2, |
| 2129 | .matches = has_hw_dbm, |
| 2130 | .cpu_enable = cpu_enable_hw_dbm, |
| 2131 | }, |
| 2132 | #endif |
Ard Biesheuvel | 86d0dd3 | 2018-08-27 13:02:43 +0200 | [diff] [blame] | 2133 | { |
| 2134 | .desc = "CRC32 instructions", |
| 2135 | .capability = ARM64_HAS_CRC32, |
| 2136 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2137 | .matches = has_cpuid_feature, |
| 2138 | .sys_reg = SYS_ID_AA64ISAR0_EL1, |
| 2139 | .field_pos = ID_AA64ISAR0_CRC32_SHIFT, |
| 2140 | .min_field_value = 1, |
| 2141 | }, |
Will Deacon | d71be2b | 2018-06-15 11:37:34 +0100 | [diff] [blame] | 2142 | { |
| 2143 | .desc = "Speculative Store Bypassing Safe (SSBS)", |
| 2144 | .capability = ARM64_SSBS, |
Will Deacon | 532d581 | 2020-09-15 23:56:12 +0100 | [diff] [blame] | 2145 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Will Deacon | d71be2b | 2018-06-15 11:37:34 +0100 | [diff] [blame] | 2146 | .matches = has_cpuid_feature, |
| 2147 | .sys_reg = SYS_ID_AA64PFR1_EL1, |
| 2148 | .field_pos = ID_AA64PFR1_SSBS_SHIFT, |
| 2149 | .sign = FTR_UNSIGNED, |
| 2150 | .min_field_value = ID_AA64PFR1_SSBS_PSTATE_ONLY, |
| 2151 | }, |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 2152 | #ifdef CONFIG_ARM64_CNP |
| 2153 | { |
| 2154 | .desc = "Common not Private translations", |
| 2155 | .capability = ARM64_HAS_CNP, |
| 2156 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2157 | .matches = has_useable_cnp, |
| 2158 | .sys_reg = SYS_ID_AA64MMFR2_EL1, |
| 2159 | .sign = FTR_UNSIGNED, |
| 2160 | .field_pos = ID_AA64MMFR2_CNP_SHIFT, |
| 2161 | .min_field_value = 1, |
| 2162 | .cpu_enable = cpu_enable_cnp, |
| 2163 | }, |
| 2164 | #endif |
Will Deacon | bd4fb6d | 2018-06-14 11:21:34 +0100 | [diff] [blame] | 2165 | { |
| 2166 | .desc = "Speculation barrier (SB)", |
| 2167 | .capability = ARM64_HAS_SB, |
| 2168 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2169 | .matches = has_cpuid_feature, |
| 2170 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2171 | .field_pos = ID_AA64ISAR1_SB_SHIFT, |
| 2172 | .sign = FTR_UNSIGNED, |
| 2173 | .min_field_value = 1, |
| 2174 | }, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2175 | #ifdef CONFIG_ARM64_PTR_AUTH |
| 2176 | { |
| 2177 | .desc = "Address authentication (architected algorithm)", |
| 2178 | .capability = ARM64_HAS_ADDRESS_AUTH_ARCH, |
Kristina Martsenko | 6982934 | 2020-03-13 14:34:55 +0530 | [diff] [blame] | 2179 | .type = ARM64_CPUCAP_BOOT_CPU_FEATURE, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2180 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2181 | .sign = FTR_UNSIGNED, |
| 2182 | .field_pos = ID_AA64ISAR1_APA_SHIFT, |
| 2183 | .min_field_value = ID_AA64ISAR1_APA_ARCHITECTED, |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 2184 | .matches = has_address_auth_cpucap, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2185 | }, |
| 2186 | { |
| 2187 | .desc = "Address authentication (IMP DEF algorithm)", |
| 2188 | .capability = ARM64_HAS_ADDRESS_AUTH_IMP_DEF, |
Kristina Martsenko | 6982934 | 2020-03-13 14:34:55 +0530 | [diff] [blame] | 2189 | .type = ARM64_CPUCAP_BOOT_CPU_FEATURE, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2190 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2191 | .sign = FTR_UNSIGNED, |
| 2192 | .field_pos = ID_AA64ISAR1_API_SHIFT, |
| 2193 | .min_field_value = ID_AA64ISAR1_API_IMP_DEF, |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 2194 | .matches = has_address_auth_cpucap, |
Kristina Martsenko | cfef06b | 2020-03-13 14:34:49 +0530 | [diff] [blame] | 2195 | }, |
| 2196 | { |
| 2197 | .capability = ARM64_HAS_ADDRESS_AUTH, |
Kristina Martsenko | 6982934 | 2020-03-13 14:34:55 +0530 | [diff] [blame] | 2198 | .type = ARM64_CPUCAP_BOOT_CPU_FEATURE, |
Amit Daniel Kachhap | ba9d1d3 | 2020-09-14 14:06:54 +0530 | [diff] [blame] | 2199 | .matches = has_address_auth_metacap, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2200 | }, |
| 2201 | { |
| 2202 | .desc = "Generic authentication (architected algorithm)", |
| 2203 | .capability = ARM64_HAS_GENERIC_AUTH_ARCH, |
| 2204 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2205 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2206 | .sign = FTR_UNSIGNED, |
| 2207 | .field_pos = ID_AA64ISAR1_GPA_SHIFT, |
| 2208 | .min_field_value = ID_AA64ISAR1_GPA_ARCHITECTED, |
| 2209 | .matches = has_cpuid_feature, |
| 2210 | }, |
| 2211 | { |
| 2212 | .desc = "Generic authentication (IMP DEF algorithm)", |
| 2213 | .capability = ARM64_HAS_GENERIC_AUTH_IMP_DEF, |
| 2214 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2215 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2216 | .sign = FTR_UNSIGNED, |
| 2217 | .field_pos = ID_AA64ISAR1_GPI_SHIFT, |
| 2218 | .min_field_value = ID_AA64ISAR1_GPI_IMP_DEF, |
| 2219 | .matches = has_cpuid_feature, |
| 2220 | }, |
Kristina Martsenko | cfef06b | 2020-03-13 14:34:49 +0530 | [diff] [blame] | 2221 | { |
| 2222 | .capability = ARM64_HAS_GENERIC_AUTH, |
| 2223 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2224 | .matches = has_generic_auth, |
| 2225 | }, |
Mark Rutland | 6984eb4 | 2018-12-07 18:39:24 +0000 | [diff] [blame] | 2226 | #endif /* CONFIG_ARM64_PTR_AUTH */ |
Julien Thierry | b90d2b2 | 2019-01-31 14:58:42 +0000 | [diff] [blame] | 2227 | #ifdef CONFIG_ARM64_PSEUDO_NMI |
| 2228 | { |
| 2229 | /* |
| 2230 | * Depends on having GICv3 |
| 2231 | */ |
| 2232 | .desc = "IRQ priority masking", |
| 2233 | .capability = ARM64_HAS_IRQ_PRIO_MASKING, |
| 2234 | .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE, |
| 2235 | .matches = can_use_gic_priorities, |
| 2236 | .sys_reg = SYS_ID_AA64PFR0_EL1, |
| 2237 | .field_pos = ID_AA64PFR0_GIC_SHIFT, |
| 2238 | .sign = FTR_UNSIGNED, |
| 2239 | .min_field_value = 1, |
| 2240 | }, |
| 2241 | #endif |
Mark Brown | 3e6c69a | 2019-12-09 18:12:14 +0000 | [diff] [blame] | 2242 | #ifdef CONFIG_ARM64_E0PD |
| 2243 | { |
| 2244 | .desc = "E0PD", |
| 2245 | .capability = ARM64_HAS_E0PD, |
| 2246 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2247 | .sys_reg = SYS_ID_AA64MMFR2_EL1, |
| 2248 | .sign = FTR_UNSIGNED, |
| 2249 | .field_pos = ID_AA64MMFR2_E0PD_SHIFT, |
| 2250 | .matches = has_cpuid_feature, |
| 2251 | .min_field_value = 1, |
| 2252 | .cpu_enable = cpu_enable_e0pd, |
| 2253 | }, |
| 2254 | #endif |
Richard Henderson | 1a50ec0 | 2020-01-21 12:58:52 +0000 | [diff] [blame] | 2255 | #ifdef CONFIG_ARCH_RANDOM |
| 2256 | { |
| 2257 | .desc = "Random Number Generator", |
| 2258 | .capability = ARM64_HAS_RNG, |
| 2259 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2260 | .matches = has_cpuid_feature, |
| 2261 | .sys_reg = SYS_ID_AA64ISAR0_EL1, |
| 2262 | .field_pos = ID_AA64ISAR0_RNDR_SHIFT, |
| 2263 | .sign = FTR_UNSIGNED, |
| 2264 | .min_field_value = 1, |
| 2265 | }, |
| 2266 | #endif |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 2267 | #ifdef CONFIG_ARM64_BTI |
| 2268 | { |
| 2269 | .desc = "Branch Target Identification", |
| 2270 | .capability = ARM64_BTI, |
Mark Brown | c802728 | 2020-05-06 20:51:31 +0100 | [diff] [blame] | 2271 | #ifdef CONFIG_ARM64_BTI_KERNEL |
| 2272 | .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE, |
| 2273 | #else |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 2274 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
Mark Brown | c802728 | 2020-05-06 20:51:31 +0100 | [diff] [blame] | 2275 | #endif |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 2276 | .matches = has_cpuid_feature, |
| 2277 | .cpu_enable = bti_enable, |
| 2278 | .sys_reg = SYS_ID_AA64PFR1_EL1, |
| 2279 | .field_pos = ID_AA64PFR1_BT_SHIFT, |
| 2280 | .min_field_value = ID_AA64PFR1_BT_BTI, |
| 2281 | .sign = FTR_UNSIGNED, |
| 2282 | }, |
| 2283 | #endif |
Vincenzo Frascino | 3b714d2 | 2019-09-06 10:58:01 +0100 | [diff] [blame] | 2284 | #ifdef CONFIG_ARM64_MTE |
| 2285 | { |
| 2286 | .desc = "Memory Tagging Extension", |
| 2287 | .capability = ARM64_MTE, |
| 2288 | .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE, |
| 2289 | .matches = has_cpuid_feature, |
| 2290 | .sys_reg = SYS_ID_AA64PFR1_EL1, |
| 2291 | .field_pos = ID_AA64PFR1_MTE_SHIFT, |
| 2292 | .min_field_value = ID_AA64PFR1_MTE, |
| 2293 | .sign = FTR_UNSIGNED, |
Catalin Marinas | 34bfeea | 2020-05-04 14:42:36 +0100 | [diff] [blame] | 2294 | .cpu_enable = cpu_enable_mte, |
Vincenzo Frascino | 3b714d2 | 2019-09-06 10:58:01 +0100 | [diff] [blame] | 2295 | }, |
| 2296 | #endif /* CONFIG_ARM64_MTE */ |
Will Deacon | 364a5a8 | 2020-06-30 14:02:22 +0100 | [diff] [blame] | 2297 | { |
| 2298 | .desc = "RCpc load-acquire (LDAPR)", |
| 2299 | .capability = ARM64_HAS_LDAPR, |
| 2300 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, |
| 2301 | .sys_reg = SYS_ID_AA64ISAR1_EL1, |
| 2302 | .sign = FTR_UNSIGNED, |
| 2303 | .field_pos = ID_AA64ISAR1_LRCPC_SHIFT, |
| 2304 | .matches = has_cpuid_feature, |
| 2305 | .min_field_value = 1, |
| 2306 | }, |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2307 | {}, |
| 2308 | }; |
| 2309 | |
Will Deacon | 1e013d0 | 2018-12-12 15:53:54 +0000 | [diff] [blame] | 2310 | #define HWCAP_CPUID_MATCH(reg, field, s, min_value) \ |
| 2311 | .matches = has_cpuid_feature, \ |
| 2312 | .sys_reg = reg, \ |
| 2313 | .field_pos = field, \ |
| 2314 | .sign = s, \ |
| 2315 | .min_field_value = min_value, |
| 2316 | |
| 2317 | #define __HWCAP_CAP(name, cap_type, cap) \ |
| 2318 | .desc = name, \ |
| 2319 | .type = ARM64_CPUCAP_SYSTEM_FEATURE, \ |
| 2320 | .hwcap_type = cap_type, \ |
| 2321 | .hwcap = cap, \ |
| 2322 | |
| 2323 | #define HWCAP_CAP(reg, field, s, min_value, cap_type, cap) \ |
| 2324 | { \ |
| 2325 | __HWCAP_CAP(#cap, cap_type, cap) \ |
| 2326 | HWCAP_CPUID_MATCH(reg, field, s, min_value) \ |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2327 | } |
| 2328 | |
Will Deacon | 1e013d0 | 2018-12-12 15:53:54 +0000 | [diff] [blame] | 2329 | #define HWCAP_MULTI_CAP(list, cap_type, cap) \ |
| 2330 | { \ |
| 2331 | __HWCAP_CAP(#cap, cap_type, cap) \ |
| 2332 | .matches = cpucap_multi_entry_cap_matches, \ |
| 2333 | .match_list = list, \ |
| 2334 | } |
| 2335 | |
Suzuki K Poulose | 7559950a | 2020-01-13 23:30:20 +0000 | [diff] [blame] | 2336 | #define HWCAP_CAP_MATCH(match, cap_type, cap) \ |
| 2337 | { \ |
| 2338 | __HWCAP_CAP(#cap, cap_type, cap) \ |
| 2339 | .matches = match, \ |
| 2340 | } |
| 2341 | |
Will Deacon | 1e013d0 | 2018-12-12 15:53:54 +0000 | [diff] [blame] | 2342 | #ifdef CONFIG_ARM64_PTR_AUTH |
| 2343 | static const struct arm64_cpu_capabilities ptr_auth_hwcap_addr_matches[] = { |
| 2344 | { |
| 2345 | HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_APA_SHIFT, |
| 2346 | FTR_UNSIGNED, ID_AA64ISAR1_APA_ARCHITECTED) |
| 2347 | }, |
| 2348 | { |
| 2349 | HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_API_SHIFT, |
| 2350 | FTR_UNSIGNED, ID_AA64ISAR1_API_IMP_DEF) |
| 2351 | }, |
| 2352 | {}, |
| 2353 | }; |
| 2354 | |
| 2355 | static const struct arm64_cpu_capabilities ptr_auth_hwcap_gen_matches[] = { |
| 2356 | { |
| 2357 | HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPA_SHIFT, |
| 2358 | FTR_UNSIGNED, ID_AA64ISAR1_GPA_ARCHITECTED) |
| 2359 | }, |
| 2360 | { |
| 2361 | HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPI_SHIFT, |
| 2362 | FTR_UNSIGNED, ID_AA64ISAR1_GPI_IMP_DEF) |
| 2363 | }, |
| 2364 | {}, |
| 2365 | }; |
| 2366 | #endif |
| 2367 | |
Suzuki K Poulose | f3efb67 | 2016-04-18 10:28:32 +0100 | [diff] [blame] | 2368 | static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = { |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2369 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_PMULL), |
| 2370 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_AES), |
| 2371 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA1), |
| 2372 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA2), |
| 2373 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_SHA512), |
| 2374 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_CRC32), |
| 2375 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ATOMICS), |
| 2376 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDRDM), |
| 2377 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA3), |
| 2378 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM3), |
| 2379 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM4), |
| 2380 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDDP), |
| 2381 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDFHM), |
| 2382 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_TS_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FLAGM), |
Mark Brown | 1201937 | 2019-06-18 19:10:54 +0100 | [diff] [blame] | 2383 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_TS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_FLAGM2), |
Richard Henderson | 1a50ec0 | 2020-01-21 12:58:52 +0000 | [diff] [blame] | 2384 | HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RNDR_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_RNG), |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2385 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_FP), |
| 2386 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP), |
| 2387 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD), |
| 2388 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP), |
| 2389 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_DIT_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT), |
| 2390 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DCPOP), |
Andrew Murray | 671db58 | 2019-04-09 10:52:43 +0100 | [diff] [blame] | 2391 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_DCPODP), |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2392 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT), |
| 2393 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FCMA), |
| 2394 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_LRCPC), |
| 2395 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ILRCPC), |
Mark Brown | ca9503f | 2019-06-18 19:10:55 +0100 | [diff] [blame] | 2396 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FRINTTS_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FRINT), |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2397 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_SB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SB), |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 2398 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_BF16_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_BF16), |
| 2399 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DGH_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DGH), |
| 2400 | HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_I8MM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_I8MM), |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2401 | HWCAP_CAP(SYS_ID_AA64MMFR2_EL1, ID_AA64MMFR2_AT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_USCAT), |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2402 | #ifdef CONFIG_ARM64_SVE |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2403 | HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_SVE_SHIFT, FTR_UNSIGNED, ID_AA64PFR0_SVE, CAP_HWCAP, KERNEL_HWCAP_SVE), |
Dave Martin | 06a916f | 2019-04-18 18:41:38 +0100 | [diff] [blame] | 2404 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SVEVER_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SVEVER_SVE2, CAP_HWCAP, KERNEL_HWCAP_SVE2), |
| 2405 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES, CAP_HWCAP, KERNEL_HWCAP_SVEAES), |
| 2406 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES_PMULL, CAP_HWCAP, KERNEL_HWCAP_SVEPMULL), |
| 2407 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_BITPERM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_BITPERM, CAP_HWCAP, KERNEL_HWCAP_SVEBITPERM), |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 2408 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_BF16_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_BF16, CAP_HWCAP, KERNEL_HWCAP_SVEBF16), |
Dave Martin | 06a916f | 2019-04-18 18:41:38 +0100 | [diff] [blame] | 2409 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SHA3_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SHA3, CAP_HWCAP, KERNEL_HWCAP_SVESHA3), |
| 2410 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SM4_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SM4, CAP_HWCAP, KERNEL_HWCAP_SVESM4), |
Steven Price | d4209d8 | 2019-12-16 11:33:37 +0000 | [diff] [blame] | 2411 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_I8MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_I8MM, CAP_HWCAP, KERNEL_HWCAP_SVEI8MM), |
| 2412 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F32MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F32MM, CAP_HWCAP, KERNEL_HWCAP_SVEF32MM), |
| 2413 | HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F64MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F64MM, CAP_HWCAP, KERNEL_HWCAP_SVEF64MM), |
Dave Martin | 43994d8 | 2017-10-31 15:51:19 +0000 | [diff] [blame] | 2414 | #endif |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2415 | HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_SSBS_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_SSBS_PSTATE_INSNS, CAP_HWCAP, KERNEL_HWCAP_SSBS), |
Dave Martin | 8ef8f360 | 2020-03-16 16:50:45 +0000 | [diff] [blame] | 2416 | #ifdef CONFIG_ARM64_BTI |
| 2417 | HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_BT_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_BT_BTI, CAP_HWCAP, KERNEL_HWCAP_BTI), |
| 2418 | #endif |
Mark Rutland | 7503197 | 2018-12-07 18:39:25 +0000 | [diff] [blame] | 2419 | #ifdef CONFIG_ARM64_PTR_AUTH |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2420 | HWCAP_MULTI_CAP(ptr_auth_hwcap_addr_matches, CAP_HWCAP, KERNEL_HWCAP_PACA), |
| 2421 | HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG), |
Mark Rutland | 7503197 | 2018-12-07 18:39:25 +0000 | [diff] [blame] | 2422 | #endif |
Vincenzo Frascino | 3b714d2 | 2019-09-06 10:58:01 +0100 | [diff] [blame] | 2423 | #ifdef CONFIG_ARM64_MTE |
| 2424 | HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_MTE_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_MTE, CAP_HWCAP, KERNEL_HWCAP_MTE), |
| 2425 | #endif /* CONFIG_ARM64_MTE */ |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2426 | {}, |
| 2427 | }; |
| 2428 | |
Suzuki K Poulose | 7559950a | 2020-01-13 23:30:20 +0000 | [diff] [blame] | 2429 | #ifdef CONFIG_COMPAT |
| 2430 | static bool compat_has_neon(const struct arm64_cpu_capabilities *cap, int scope) |
| 2431 | { |
| 2432 | /* |
| 2433 | * Check that all of MVFR1_EL1.{SIMDSP, SIMDInt, SIMDLS} are available, |
| 2434 | * in line with that of arm32 as in vfp_init(). We make sure that the |
| 2435 | * check is future proof, by making sure value is non-zero. |
| 2436 | */ |
| 2437 | u32 mvfr1; |
| 2438 | |
| 2439 | WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible()); |
| 2440 | if (scope == SCOPE_SYSTEM) |
| 2441 | mvfr1 = read_sanitised_ftr_reg(SYS_MVFR1_EL1); |
| 2442 | else |
| 2443 | mvfr1 = read_sysreg_s(SYS_MVFR1_EL1); |
| 2444 | |
| 2445 | return cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDSP_SHIFT) && |
| 2446 | cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDINT_SHIFT) && |
| 2447 | cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDLS_SHIFT); |
| 2448 | } |
| 2449 | #endif |
| 2450 | |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2451 | static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = { |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2452 | #ifdef CONFIG_COMPAT |
Suzuki K Poulose | 7559950a | 2020-01-13 23:30:20 +0000 | [diff] [blame] | 2453 | HWCAP_CAP_MATCH(compat_has_neon, CAP_COMPAT_HWCAP, COMPAT_HWCAP_NEON), |
| 2454 | HWCAP_CAP(SYS_MVFR1_EL1, MVFR1_SIMDFMAC_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv4), |
| 2455 | /* Arm v8 mandates MVFR0.FPDP == {0, 2}. So, piggy back on this for the presence of VFP support */ |
| 2456 | HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFP), |
| 2457 | HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv3), |
Suzuki K Poulose | ff96f7b | 2016-01-26 10:58:15 +0000 | [diff] [blame] | 2458 | HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL), |
| 2459 | HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES), |
| 2460 | HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1), |
| 2461 | HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2), |
| 2462 | HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_CRC32), |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2463 | #endif |
| 2464 | {}, |
| 2465 | }; |
| 2466 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2467 | static void cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap) |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2468 | { |
| 2469 | switch (cap->hwcap_type) { |
| 2470 | case CAP_HWCAP: |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2471 | cpu_set_feature(cap->hwcap); |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2472 | break; |
| 2473 | #ifdef CONFIG_COMPAT |
| 2474 | case CAP_COMPAT_HWCAP: |
| 2475 | compat_elf_hwcap |= (u32)cap->hwcap; |
| 2476 | break; |
| 2477 | case CAP_COMPAT_HWCAP2: |
| 2478 | compat_elf_hwcap2 |= (u32)cap->hwcap; |
| 2479 | break; |
| 2480 | #endif |
| 2481 | default: |
| 2482 | WARN_ON(1); |
| 2483 | break; |
| 2484 | } |
| 2485 | } |
| 2486 | |
| 2487 | /* Check if we have a particular HWCAP enabled */ |
Suzuki K Poulose | f3efb67 | 2016-04-18 10:28:32 +0100 | [diff] [blame] | 2488 | static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap) |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2489 | { |
| 2490 | bool rc; |
| 2491 | |
| 2492 | switch (cap->hwcap_type) { |
| 2493 | case CAP_HWCAP: |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2494 | rc = cpu_have_feature(cap->hwcap); |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2495 | break; |
| 2496 | #ifdef CONFIG_COMPAT |
| 2497 | case CAP_COMPAT_HWCAP: |
| 2498 | rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0; |
| 2499 | break; |
| 2500 | case CAP_COMPAT_HWCAP2: |
| 2501 | rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0; |
| 2502 | break; |
| 2503 | #endif |
| 2504 | default: |
| 2505 | WARN_ON(1); |
| 2506 | rc = false; |
| 2507 | } |
| 2508 | |
| 2509 | return rc; |
| 2510 | } |
| 2511 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2512 | static void setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps) |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2513 | { |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 2514 | /* We support emulation of accesses to CPU ID feature registers */ |
Andrew Murray | aaba098 | 2019-04-09 10:52:40 +0100 | [diff] [blame] | 2515 | cpu_set_named_feature(CPUID); |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2516 | for (; hwcaps->matches; hwcaps++) |
Suzuki K Poulose | 143ba05 | 2018-03-26 15:12:31 +0100 | [diff] [blame] | 2517 | if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps))) |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2518 | cap_set_elf_hwcap(hwcaps); |
Suzuki K. Poulose | 37b01d53 | 2015-10-19 14:24:52 +0100 | [diff] [blame] | 2519 | } |
| 2520 | |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2521 | static void update_cpu_capabilities(u16 scope_mask) |
Suzuki K Poulose | 67948af | 2018-01-09 16:12:18 +0000 | [diff] [blame] | 2522 | { |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2523 | int i; |
Suzuki K Poulose | 67948af | 2018-01-09 16:12:18 +0000 | [diff] [blame] | 2524 | const struct arm64_cpu_capabilities *caps; |
| 2525 | |
Suzuki K Poulose | cce360b | 2018-03-26 15:12:34 +0100 | [diff] [blame] | 2526 | scope_mask &= ARM64_CPUCAP_SCOPE_MASK; |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2527 | for (i = 0; i < ARM64_NCAPS; i++) { |
| 2528 | caps = cpu_hwcaps_ptrs[i]; |
| 2529 | if (!caps || !(caps->type & scope_mask) || |
| 2530 | cpus_have_cap(caps->capability) || |
Suzuki K Poulose | cce360b | 2018-03-26 15:12:34 +0100 | [diff] [blame] | 2531 | !caps->matches(caps, cpucap_default_scope(caps))) |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2532 | continue; |
| 2533 | |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2534 | if (caps->desc) |
| 2535 | pr_info("detected: %s\n", caps->desc); |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2536 | cpus_set_cap(caps->capability); |
Daniel Thompson | 0ceb0d5 | 2019-01-31 14:58:53 +0000 | [diff] [blame] | 2537 | |
| 2538 | if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU)) |
| 2539 | set_bit(caps->capability, boot_capabilities); |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2540 | } |
Suzuki K. Poulose | ce8b602 | 2015-10-19 14:24:49 +0100 | [diff] [blame] | 2541 | } |
James Morse | 1c07630 | 2015-07-21 13:23:28 +0100 | [diff] [blame] | 2542 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2543 | /* |
| 2544 | * Enable all the available capabilities on this CPU. The capabilities |
| 2545 | * with BOOT_CPU scope are handled separately and hence skipped here. |
| 2546 | */ |
| 2547 | static int cpu_enable_non_boot_scope_capabilities(void *__unused) |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2548 | { |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2549 | int i; |
| 2550 | u16 non_boot_scope = SCOPE_ALL & ~SCOPE_BOOT_CPU; |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2551 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2552 | for_each_available_cap(i) { |
| 2553 | const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[i]; |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 2554 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2555 | if (WARN_ON(!cap)) |
| 2556 | continue; |
| 2557 | |
| 2558 | if (!(cap->type & non_boot_scope)) |
| 2559 | continue; |
| 2560 | |
| 2561 | if (cap->cpu_enable) |
| 2562 | cap->cpu_enable(cap); |
| 2563 | } |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 2564 | return 0; |
| 2565 | } |
| 2566 | |
Suzuki K. Poulose | ce8b602 | 2015-10-19 14:24:49 +0100 | [diff] [blame] | 2567 | /* |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2568 | * Run through the enabled capabilities and enable() it on all active |
| 2569 | * CPUs |
Suzuki K. Poulose | ce8b602 | 2015-10-19 14:24:49 +0100 | [diff] [blame] | 2570 | */ |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2571 | static void __init enable_cpu_capabilities(u16 scope_mask) |
Suzuki K. Poulose | ce8b602 | 2015-10-19 14:24:49 +0100 | [diff] [blame] | 2572 | { |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2573 | int i; |
| 2574 | const struct arm64_cpu_capabilities *caps; |
| 2575 | bool boot_scope; |
Mark Rutland | 63a1e1c | 2017-05-16 15:18:05 +0100 | [diff] [blame] | 2576 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2577 | scope_mask &= ARM64_CPUCAP_SCOPE_MASK; |
| 2578 | boot_scope = !!(scope_mask & SCOPE_BOOT_CPU); |
| 2579 | |
| 2580 | for (i = 0; i < ARM64_NCAPS; i++) { |
| 2581 | unsigned int num; |
| 2582 | |
| 2583 | caps = cpu_hwcaps_ptrs[i]; |
| 2584 | if (!caps || !(caps->type & scope_mask)) |
| 2585 | continue; |
| 2586 | num = caps->capability; |
| 2587 | if (!cpus_have_cap(num)) |
Mark Rutland | 63a1e1c | 2017-05-16 15:18:05 +0100 | [diff] [blame] | 2588 | continue; |
| 2589 | |
| 2590 | /* Ensure cpus_have_const_cap(num) works */ |
| 2591 | static_branch_enable(&cpu_hwcap_keys[num]); |
| 2592 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2593 | if (boot_scope && caps->cpu_enable) |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 2594 | /* |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 2595 | * Capabilities with SCOPE_BOOT_CPU scope are finalised |
| 2596 | * before any secondary CPU boots. Thus, each secondary |
| 2597 | * will enable the capability as appropriate via |
| 2598 | * check_local_cpu_capabilities(). The only exception is |
| 2599 | * the boot CPU, for which the capability must be |
| 2600 | * enabled here. This approach avoids costly |
| 2601 | * stop_machine() calls for this case. |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 2602 | */ |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2603 | caps->cpu_enable(caps); |
Mark Rutland | 63a1e1c | 2017-05-16 15:18:05 +0100 | [diff] [blame] | 2604 | } |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2605 | |
Suzuki K Poulose | 0b587c84 | 2018-11-30 17:18:06 +0000 | [diff] [blame] | 2606 | /* |
| 2607 | * For all non-boot scope capabilities, use stop_machine() |
| 2608 | * as it schedules the work allowing us to modify PSTATE, |
| 2609 | * instead of on_each_cpu() which uses an IPI, giving us a |
| 2610 | * PSTATE that disappears when we return. |
| 2611 | */ |
| 2612 | if (!boot_scope) |
| 2613 | stop_machine(cpu_enable_non_boot_scope_capabilities, |
| 2614 | NULL, cpu_online_mask); |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2615 | } |
| 2616 | |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2617 | /* |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2618 | * Run through the list of capabilities to check for conflicts. |
| 2619 | * If the system has already detected a capability, take necessary |
| 2620 | * action on this CPU. |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2621 | */ |
Kristina Martsenko | deeaac5 | 2020-03-13 14:34:54 +0530 | [diff] [blame] | 2622 | static void verify_local_cpu_caps(u16 scope_mask) |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2623 | { |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2624 | int i; |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2625 | bool cpu_has_cap, system_has_cap; |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2626 | const struct arm64_cpu_capabilities *caps; |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2627 | |
Suzuki K Poulose | cce360b | 2018-03-26 15:12:34 +0100 | [diff] [blame] | 2628 | scope_mask &= ARM64_CPUCAP_SCOPE_MASK; |
| 2629 | |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2630 | for (i = 0; i < ARM64_NCAPS; i++) { |
| 2631 | caps = cpu_hwcaps_ptrs[i]; |
| 2632 | if (!caps || !(caps->type & scope_mask)) |
Suzuki K Poulose | cce360b | 2018-03-26 15:12:34 +0100 | [diff] [blame] | 2633 | continue; |
| 2634 | |
Suzuki K Poulose | ba7d923 | 2018-03-26 15:12:46 +0100 | [diff] [blame] | 2635 | cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU); |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2636 | system_has_cap = cpus_have_cap(caps->capability); |
| 2637 | |
| 2638 | if (system_has_cap) { |
| 2639 | /* |
| 2640 | * Check if the new CPU misses an advertised feature, |
| 2641 | * which is not safe to miss. |
| 2642 | */ |
| 2643 | if (!cpu_has_cap && !cpucap_late_cpu_optional(caps)) |
| 2644 | break; |
| 2645 | /* |
| 2646 | * We have to issue cpu_enable() irrespective of |
| 2647 | * whether the CPU has it or not, as it is enabeld |
| 2648 | * system wide. It is upto the call back to take |
| 2649 | * appropriate action on this CPU. |
| 2650 | */ |
| 2651 | if (caps->cpu_enable) |
| 2652 | caps->cpu_enable(caps); |
| 2653 | } else { |
| 2654 | /* |
| 2655 | * Check if the CPU has this capability if it isn't |
| 2656 | * safe to have when the system doesn't. |
| 2657 | */ |
| 2658 | if (cpu_has_cap && !cpucap_late_cpu_permitted(caps)) |
| 2659 | break; |
| 2660 | } |
| 2661 | } |
| 2662 | |
Suzuki K Poulose | 606f8e7 | 2018-11-30 17:18:05 +0000 | [diff] [blame] | 2663 | if (i < ARM64_NCAPS) { |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2664 | pr_crit("CPU%d: Detected conflict for capability %d (%s), System: %d, CPU: %d\n", |
| 2665 | smp_processor_id(), caps->capability, |
| 2666 | caps->desc, system_has_cap, cpu_has_cap); |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2667 | |
Kristina Martsenko | deeaac5 | 2020-03-13 14:34:54 +0530 | [diff] [blame] | 2668 | if (cpucap_panic_on_conflict(caps)) |
| 2669 | cpu_panic_kernel(); |
| 2670 | else |
| 2671 | cpu_die_early(); |
| 2672 | } |
Suzuki K Poulose | eaac4d8 | 2018-03-26 15:12:33 +0100 | [diff] [blame] | 2673 | } |
| 2674 | |
| 2675 | /* |
Suzuki K Poulose | 13f417f | 2016-02-23 10:31:45 +0000 | [diff] [blame] | 2676 | * Check for CPU features that are used in early boot |
| 2677 | * based on the Boot CPU value. |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2678 | */ |
Suzuki K Poulose | 13f417f | 2016-02-23 10:31:45 +0000 | [diff] [blame] | 2679 | static void check_early_cpu_features(void) |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2680 | { |
Suzuki K Poulose | 13f417f | 2016-02-23 10:31:45 +0000 | [diff] [blame] | 2681 | verify_cpu_asid_bits(); |
Kristina Martsenko | deeaac5 | 2020-03-13 14:34:54 +0530 | [diff] [blame] | 2682 | |
| 2683 | verify_local_cpu_caps(SCOPE_BOOT_CPU); |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2684 | } |
| 2685 | |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2686 | static void |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2687 | __verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps) |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2688 | { |
| 2689 | |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 2690 | for (; caps->matches; caps++) |
| 2691 | if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) { |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2692 | pr_crit("CPU%d: missing HWCAP: %s\n", |
| 2693 | smp_processor_id(), caps->desc); |
| 2694 | cpu_die_early(); |
| 2695 | } |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2696 | } |
| 2697 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2698 | static void verify_local_elf_hwcaps(void) |
| 2699 | { |
| 2700 | __verify_local_elf_hwcaps(arm64_elf_hwcaps); |
| 2701 | |
| 2702 | if (id_aa64pfr0_32bit_el0(read_cpuid(ID_AA64PFR0_EL1))) |
| 2703 | __verify_local_elf_hwcaps(compat_elf_hwcaps); |
| 2704 | } |
| 2705 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 2706 | static void verify_sve_features(void) |
| 2707 | { |
| 2708 | u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1); |
| 2709 | u64 zcr = read_zcr_features(); |
| 2710 | |
| 2711 | unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK; |
| 2712 | unsigned int len = zcr & ZCR_ELx_LEN_MASK; |
| 2713 | |
| 2714 | if (len < safe_len || sve_verify_vq_map()) { |
Dave Martin | d06b76b | 2018-09-28 14:39:10 +0100 | [diff] [blame] | 2715 | pr_crit("CPU%d: SVE: vector length support mismatch\n", |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 2716 | smp_processor_id()); |
| 2717 | cpu_die_early(); |
| 2718 | } |
| 2719 | |
| 2720 | /* Add checks on other ZCR bits here if necessary */ |
| 2721 | } |
| 2722 | |
Anshuman Khandual | c73433f | 2020-05-12 07:27:27 +0530 | [diff] [blame] | 2723 | static void verify_hyp_capabilities(void) |
| 2724 | { |
| 2725 | u64 safe_mmfr1, mmfr0, mmfr1; |
| 2726 | int parange, ipa_max; |
| 2727 | unsigned int safe_vmid_bits, vmid_bits; |
| 2728 | |
Shannon Zhao | 45ba7b1 | 2021-01-04 19:38:44 +0800 | [diff] [blame] | 2729 | if (!IS_ENABLED(CONFIG_KVM)) |
Anshuman Khandual | c73433f | 2020-05-12 07:27:27 +0530 | [diff] [blame] | 2730 | return; |
| 2731 | |
| 2732 | safe_mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1); |
| 2733 | mmfr0 = read_cpuid(ID_AA64MMFR0_EL1); |
| 2734 | mmfr1 = read_cpuid(ID_AA64MMFR1_EL1); |
| 2735 | |
| 2736 | /* Verify VMID bits */ |
| 2737 | safe_vmid_bits = get_vmid_bits(safe_mmfr1); |
| 2738 | vmid_bits = get_vmid_bits(mmfr1); |
| 2739 | if (vmid_bits < safe_vmid_bits) { |
| 2740 | pr_crit("CPU%d: VMID width mismatch\n", smp_processor_id()); |
| 2741 | cpu_die_early(); |
| 2742 | } |
| 2743 | |
| 2744 | /* Verify IPA range */ |
Anshuman Khandual | f73531f | 2020-05-13 14:33:34 +0530 | [diff] [blame] | 2745 | parange = cpuid_feature_extract_unsigned_field(mmfr0, |
| 2746 | ID_AA64MMFR0_PARANGE_SHIFT); |
Anshuman Khandual | c73433f | 2020-05-12 07:27:27 +0530 | [diff] [blame] | 2747 | ipa_max = id_aa64mmfr0_parange_to_phys_shift(parange); |
| 2748 | if (ipa_max < get_kvm_ipa_limit()) { |
| 2749 | pr_crit("CPU%d: IPA range mismatch\n", smp_processor_id()); |
| 2750 | cpu_die_early(); |
| 2751 | } |
| 2752 | } |
Suzuki K Poulose | 1e89bae | 2018-03-26 15:12:30 +0100 | [diff] [blame] | 2753 | |
| 2754 | /* |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2755 | * Run through the enabled system capabilities and enable() it on this CPU. |
| 2756 | * The capabilities were decided based on the available CPUs at the boot time. |
| 2757 | * Any new CPU should match the system wide status of the capability. If the |
| 2758 | * new CPU doesn't have a capability which the system now has enabled, we |
| 2759 | * cannot do anything to fix it up and could cause unexpected failures. So |
| 2760 | * we park the CPU. |
| 2761 | */ |
Suzuki K Poulose | c47a190 | 2016-09-09 14:07:10 +0100 | [diff] [blame] | 2762 | static void verify_local_cpu_capabilities(void) |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2763 | { |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 2764 | /* |
| 2765 | * The capabilities with SCOPE_BOOT_CPU are checked from |
| 2766 | * check_early_cpu_features(), as they need to be verified |
| 2767 | * on all secondary CPUs. |
| 2768 | */ |
Kristina Martsenko | deeaac5 | 2020-03-13 14:34:54 +0530 | [diff] [blame] | 2769 | verify_local_cpu_caps(SCOPE_ALL & ~SCOPE_BOOT_CPU); |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2770 | verify_local_elf_hwcaps(); |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 2771 | |
| 2772 | if (system_supports_sve()) |
| 2773 | verify_sve_features(); |
Anshuman Khandual | c73433f | 2020-05-12 07:27:27 +0530 | [diff] [blame] | 2774 | |
| 2775 | if (is_hyp_mode_available()) |
| 2776 | verify_hyp_capabilities(); |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2777 | } |
| 2778 | |
Suzuki K Poulose | c47a190 | 2016-09-09 14:07:10 +0100 | [diff] [blame] | 2779 | void check_local_cpu_capabilities(void) |
| 2780 | { |
| 2781 | /* |
| 2782 | * All secondary CPUs should conform to the early CPU features |
| 2783 | * in use by the kernel based on boot CPU. |
| 2784 | */ |
| 2785 | check_early_cpu_features(); |
| 2786 | |
| 2787 | /* |
| 2788 | * If we haven't finalised the system capabilities, this CPU gets |
Suzuki K Poulose | fbd890b | 2018-03-26 15:12:37 +0100 | [diff] [blame] | 2789 | * a chance to update the errata work arounds and local features. |
Suzuki K Poulose | c47a190 | 2016-09-09 14:07:10 +0100 | [diff] [blame] | 2790 | * Otherwise, this CPU should verify that it has all the system |
| 2791 | * advertised capabilities. |
| 2792 | */ |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 2793 | if (!system_capabilities_finalized()) |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2794 | update_cpu_capabilities(SCOPE_LOCAL_CPU); |
| 2795 | else |
Suzuki K Poulose | c47a190 | 2016-09-09 14:07:10 +0100 | [diff] [blame] | 2796 | verify_local_cpu_capabilities(); |
| 2797 | } |
| 2798 | |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 2799 | static void __init setup_boot_cpu_capabilities(void) |
| 2800 | { |
| 2801 | /* Detect capabilities with either SCOPE_BOOT_CPU or SCOPE_LOCAL_CPU */ |
| 2802 | update_cpu_capabilities(SCOPE_BOOT_CPU | SCOPE_LOCAL_CPU); |
| 2803 | /* Enable the SCOPE_BOOT_CPU capabilities alone right away */ |
| 2804 | enable_cpu_capabilities(SCOPE_BOOT_CPU); |
| 2805 | } |
| 2806 | |
Suzuki K Poulose | f7bfc14 | 2018-11-30 17:18:04 +0000 | [diff] [blame] | 2807 | bool this_cpu_has_cap(unsigned int n) |
Marc Zyngier | 8f413758 | 2017-01-30 15:39:52 +0000 | [diff] [blame] | 2808 | { |
Suzuki K Poulose | f7bfc14 | 2018-11-30 17:18:04 +0000 | [diff] [blame] | 2809 | if (!WARN_ON(preemptible()) && n < ARM64_NCAPS) { |
| 2810 | const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n]; |
| 2811 | |
| 2812 | if (cap) |
| 2813 | return cap->matches(cap, SCOPE_LOCAL_CPU); |
| 2814 | } |
| 2815 | |
| 2816 | return false; |
Marc Zyngier | 8f413758 | 2017-01-30 15:39:52 +0000 | [diff] [blame] | 2817 | } |
| 2818 | |
Amit Daniel Kachhap | 3ff047f | 2020-03-13 14:34:48 +0530 | [diff] [blame] | 2819 | /* |
| 2820 | * This helper function is used in a narrow window when, |
| 2821 | * - The system wide safe registers are set with all the SMP CPUs and, |
| 2822 | * - The SYSTEM_FEATURE cpu_hwcaps may not have been set. |
| 2823 | * In all other cases cpus_have_{const_}cap() should be used. |
| 2824 | */ |
Mark Rutland | 701f4906 | 2020-12-03 15:24:03 +0000 | [diff] [blame] | 2825 | static bool __maybe_unused __system_matches_cap(unsigned int n) |
Amit Daniel Kachhap | 3ff047f | 2020-03-13 14:34:48 +0530 | [diff] [blame] | 2826 | { |
| 2827 | if (n < ARM64_NCAPS) { |
| 2828 | const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n]; |
| 2829 | |
| 2830 | if (cap) |
| 2831 | return cap->matches(cap, SCOPE_SYSTEM); |
| 2832 | } |
| 2833 | return false; |
| 2834 | } |
| 2835 | |
Andrew Murray | aec0bff | 2019-04-09 10:52:41 +0100 | [diff] [blame] | 2836 | void cpu_set_feature(unsigned int num) |
| 2837 | { |
| 2838 | WARN_ON(num >= MAX_CPU_FEATURES); |
| 2839 | elf_hwcap |= BIT(num); |
| 2840 | } |
| 2841 | EXPORT_SYMBOL_GPL(cpu_set_feature); |
| 2842 | |
| 2843 | bool cpu_have_feature(unsigned int num) |
| 2844 | { |
| 2845 | WARN_ON(num >= MAX_CPU_FEATURES); |
| 2846 | return elf_hwcap & BIT(num); |
| 2847 | } |
| 2848 | EXPORT_SYMBOL_GPL(cpu_have_feature); |
| 2849 | |
| 2850 | unsigned long cpu_get_elf_hwcap(void) |
| 2851 | { |
| 2852 | /* |
| 2853 | * We currently only populate the first 32 bits of AT_HWCAP. Please |
| 2854 | * note that for userspace compatibility we guarantee that bits 62 |
| 2855 | * and 63 will always be returned as 0. |
| 2856 | */ |
| 2857 | return lower_32_bits(elf_hwcap); |
| 2858 | } |
| 2859 | |
| 2860 | unsigned long cpu_get_elf_hwcap2(void) |
| 2861 | { |
| 2862 | return upper_32_bits(elf_hwcap); |
| 2863 | } |
| 2864 | |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2865 | static void __init setup_system_capabilities(void) |
| 2866 | { |
| 2867 | /* |
| 2868 | * We have finalised the system-wide safe feature |
| 2869 | * registers, finalise the capabilities that depend |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 2870 | * on it. Also enable all the available capabilities, |
| 2871 | * that are not enabled already. |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2872 | */ |
| 2873 | update_cpu_capabilities(SCOPE_SYSTEM); |
Suzuki K Poulose | fd9d63d | 2018-03-26 15:12:41 +0100 | [diff] [blame] | 2874 | enable_cpu_capabilities(SCOPE_ALL & ~SCOPE_BOOT_CPU); |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2875 | } |
| 2876 | |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 2877 | void __init setup_cpu_features(void) |
| 2878 | { |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 2879 | u32 cwg; |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 2880 | |
Suzuki K Poulose | ed478b3 | 2018-03-26 15:12:38 +0100 | [diff] [blame] | 2881 | setup_system_capabilities(); |
Suzuki K Poulose | 7528350 | 2016-04-18 10:28:33 +0100 | [diff] [blame] | 2882 | setup_elf_hwcaps(arm64_elf_hwcaps); |
Suzuki K Poulose | 643d703 | 2016-04-18 10:28:37 +0100 | [diff] [blame] | 2883 | |
| 2884 | if (system_supports_32bit_el0()) |
| 2885 | setup_elf_hwcaps(compat_elf_hwcaps); |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2886 | |
Kees Cook | 2e6f549 | 2018-02-21 10:18:21 -0800 | [diff] [blame] | 2887 | if (system_uses_ttbr0_pan()) |
| 2888 | pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n"); |
| 2889 | |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 2890 | sve_setup(); |
Dave Martin | 94b07c1 | 2018-06-01 11:10:14 +0100 | [diff] [blame] | 2891 | minsigstksz_setup(); |
Dave Martin | 2e0f247 | 2017-10-31 15:51:10 +0000 | [diff] [blame] | 2892 | |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2893 | /* Advertise that we have computed the system capabilities */ |
Suzuki K Poulose | b51c6ac | 2020-01-13 23:30:17 +0000 | [diff] [blame] | 2894 | finalize_system_capabilities(); |
Suzuki K. Poulose | dbb4e15 | 2015-10-19 14:24:50 +0100 | [diff] [blame] | 2895 | |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 2896 | /* |
| 2897 | * Check for sane CTR_EL0.CWG value. |
| 2898 | */ |
| 2899 | cwg = cache_type_cwg(); |
Suzuki K. Poulose | 9cdf8ec | 2015-10-19 14:24:41 +0100 | [diff] [blame] | 2900 | if (!cwg) |
Catalin Marinas | ebc7e21 | 2018-05-11 13:33:12 +0100 | [diff] [blame] | 2901 | pr_warn("No Cache Writeback Granule information, assuming %d\n", |
| 2902 | ARCH_DMA_MINALIGN); |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 2903 | } |
James Morse | 7054419 | 2016-02-05 14:58:50 +0000 | [diff] [blame] | 2904 | |
Will Deacon | 2122a83 | 2021-06-08 19:02:55 +0100 | [diff] [blame] | 2905 | static int enable_mismatched_32bit_el0(unsigned int cpu) |
| 2906 | { |
| 2907 | struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu); |
| 2908 | bool cpu_32bit = id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0); |
| 2909 | |
| 2910 | if (cpu_32bit) { |
| 2911 | cpumask_set_cpu(cpu, cpu_32bit_el0_mask); |
| 2912 | static_branch_enable_cpuslocked(&arm64_mismatched_32bit_el0); |
| 2913 | setup_elf_hwcaps(compat_elf_hwcaps); |
| 2914 | } |
| 2915 | |
| 2916 | return 0; |
| 2917 | } |
| 2918 | |
| 2919 | static int __init init_32bit_el0_mask(void) |
| 2920 | { |
| 2921 | if (!allow_mismatched_32bit_el0) |
| 2922 | return 0; |
| 2923 | |
| 2924 | if (!zalloc_cpumask_var(&cpu_32bit_el0_mask, GFP_KERNEL)) |
| 2925 | return -ENOMEM; |
| 2926 | |
| 2927 | return cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, |
| 2928 | "arm64/mismatched_32bit_el0:online", |
| 2929 | enable_mismatched_32bit_el0, NULL); |
| 2930 | } |
| 2931 | subsys_initcall_sync(init_32bit_el0_mask); |
| 2932 | |
Vladimir Murzin | 5ffdfae | 2018-07-31 14:08:56 +0100 | [diff] [blame] | 2933 | static void __maybe_unused cpu_enable_cnp(struct arm64_cpu_capabilities const *cap) |
| 2934 | { |
| 2935 | cpu_replace_ttbr1(lm_alias(swapper_pg_dir)); |
| 2936 | } |
| 2937 | |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 2938 | /* |
| 2939 | * We emulate only the following system register space. |
| 2940 | * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7] |
| 2941 | * See Table C5-6 System instruction encodings for System register accesses, |
| 2942 | * ARMv8 ARM(ARM DDI 0487A.f) for more details. |
| 2943 | */ |
| 2944 | static inline bool __attribute_const__ is_emulated(u32 id) |
| 2945 | { |
| 2946 | return (sys_reg_Op0(id) == 0x3 && |
| 2947 | sys_reg_CRn(id) == 0x0 && |
| 2948 | sys_reg_Op1(id) == 0x0 && |
| 2949 | (sys_reg_CRm(id) == 0 || |
| 2950 | ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7)))); |
| 2951 | } |
| 2952 | |
| 2953 | /* |
| 2954 | * With CRm == 0, reg should be one of : |
| 2955 | * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1. |
| 2956 | */ |
| 2957 | static inline int emulate_id_reg(u32 id, u64 *valp) |
| 2958 | { |
| 2959 | switch (id) { |
| 2960 | case SYS_MIDR_EL1: |
| 2961 | *valp = read_cpuid_id(); |
| 2962 | break; |
| 2963 | case SYS_MPIDR_EL1: |
| 2964 | *valp = SYS_MPIDR_SAFE_VAL; |
| 2965 | break; |
| 2966 | case SYS_REVIDR_EL1: |
| 2967 | /* IMPLEMENTATION DEFINED values are emulated with 0 */ |
| 2968 | *valp = 0; |
| 2969 | break; |
| 2970 | default: |
| 2971 | return -EINVAL; |
| 2972 | } |
| 2973 | |
| 2974 | return 0; |
| 2975 | } |
| 2976 | |
| 2977 | static int emulate_sys_reg(u32 id, u64 *valp) |
| 2978 | { |
| 2979 | struct arm64_ftr_reg *regp; |
| 2980 | |
| 2981 | if (!is_emulated(id)) |
| 2982 | return -EINVAL; |
| 2983 | |
| 2984 | if (sys_reg_CRm(id) == 0) |
| 2985 | return emulate_id_reg(id, valp); |
| 2986 | |
Anshuman Khandual | 3577dd3 | 2020-05-27 15:34:36 +0530 | [diff] [blame] | 2987 | regp = get_arm64_ftr_reg_nowarn(id); |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 2988 | if (regp) |
| 2989 | *valp = arm64_ftr_reg_user_value(regp); |
| 2990 | else |
| 2991 | /* |
| 2992 | * The untracked registers are either IMPLEMENTATION DEFINED |
| 2993 | * (e.g, ID_AFR0_EL1) or reserved RAZ. |
| 2994 | */ |
| 2995 | *valp = 0; |
| 2996 | return 0; |
| 2997 | } |
| 2998 | |
Anshuman Khandual | 520ad98 | 2018-09-20 09:36:20 +0530 | [diff] [blame] | 2999 | int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt) |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 3000 | { |
| 3001 | int rc; |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 3002 | u64 val; |
| 3003 | |
Anshuman Khandual | 520ad98 | 2018-09-20 09:36:20 +0530 | [diff] [blame] | 3004 | rc = emulate_sys_reg(sys_reg, &val); |
| 3005 | if (!rc) { |
| 3006 | pt_regs_write_reg(regs, rt, val); |
| 3007 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
| 3008 | } |
| 3009 | return rc; |
| 3010 | } |
| 3011 | |
| 3012 | static int emulate_mrs(struct pt_regs *regs, u32 insn) |
| 3013 | { |
| 3014 | u32 sys_reg, rt; |
| 3015 | |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 3016 | /* |
| 3017 | * sys_reg values are defined as used in mrs/msr instruction. |
| 3018 | * shift the imm value to get the encoding. |
| 3019 | */ |
| 3020 | sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5; |
Anshuman Khandual | 520ad98 | 2018-09-20 09:36:20 +0530 | [diff] [blame] | 3021 | rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn); |
| 3022 | return do_emulate_mrs(regs, sys_reg, rt); |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 3023 | } |
| 3024 | |
| 3025 | static struct undef_hook mrs_hook = { |
Raphael Gault | cf292e9 | 2021-05-17 13:02:56 -0500 | [diff] [blame] | 3026 | .instr_mask = 0xffff0000, |
| 3027 | .instr_val = 0xd5380000, |
Mark Rutland | d64567f | 2018-07-05 15:16:52 +0100 | [diff] [blame] | 3028 | .pstate_mask = PSR_AA32_MODE_MASK, |
Suzuki K Poulose | 77c97b4 | 2017-01-09 17:28:31 +0000 | [diff] [blame] | 3029 | .pstate_val = PSR_MODE_EL0t, |
| 3030 | .fn = emulate_mrs, |
| 3031 | }; |
| 3032 | |
| 3033 | static int __init enable_mrs_emulation(void) |
| 3034 | { |
| 3035 | register_undef_hook(&mrs_hook); |
| 3036 | return 0; |
| 3037 | } |
| 3038 | |
Suzuki K Poulose | c0d8832 | 2017-10-06 14:16:52 +0100 | [diff] [blame] | 3039 | core_initcall(enable_mrs_emulation); |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 3040 | |
Marc Zyngier | 7f43c201 | 2020-11-26 17:25:30 +0000 | [diff] [blame] | 3041 | enum mitigation_state arm64_get_meltdown_state(void) |
| 3042 | { |
| 3043 | if (__meltdown_safe) |
| 3044 | return SPECTRE_UNAFFECTED; |
| 3045 | |
| 3046 | if (arm64_kernel_unmapped_at_el0()) |
| 3047 | return SPECTRE_MITIGATED; |
| 3048 | |
| 3049 | return SPECTRE_VULNERABLE; |
| 3050 | } |
| 3051 | |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 3052 | ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, |
| 3053 | char *buf) |
| 3054 | { |
Marc Zyngier | 7f43c201 | 2020-11-26 17:25:30 +0000 | [diff] [blame] | 3055 | switch (arm64_get_meltdown_state()) { |
| 3056 | case SPECTRE_UNAFFECTED: |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 3057 | return sprintf(buf, "Not affected\n"); |
| 3058 | |
Marc Zyngier | 7f43c201 | 2020-11-26 17:25:30 +0000 | [diff] [blame] | 3059 | case SPECTRE_MITIGATED: |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 3060 | return sprintf(buf, "Mitigation: PTI\n"); |
| 3061 | |
Marc Zyngier | 7f43c201 | 2020-11-26 17:25:30 +0000 | [diff] [blame] | 3062 | default: |
| 3063 | return sprintf(buf, "Vulnerable\n"); |
| 3064 | } |
Jeremy Linton | 1b3ccf4 | 2019-04-15 16:21:22 -0500 | [diff] [blame] | 3065 | } |