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