blob: 9e3e8ad75f209e417f4dbd4062cc8e9e946b95f4 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngier359b7062015-03-27 13:09:23 +00002/*
3 * Contains CPU feature definitions
4 *
5 * Copyright (C) 2015 ARM Ltd.
Will Deacona2a69962020-04-21 15:29:22 +01006 *
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 Deacon433022b2020-05-05 11:45:21 +010056 *
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 Zyngier359b7062015-03-27 13:09:23 +000061 */
62
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010063#define pr_fmt(fmt) "CPU features: " fmt
Marc Zyngier359b7062015-03-27 13:09:23 +000064
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010065#include <linux/bsearch.h>
James Morse2a6dcb22016-10-18 11:27:46 +010066#include <linux/cpumask.h>
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +010067#include <linux/crash_dump.h>
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010068#include <linux/sort.h>
James Morse2a6dcb22016-10-18 11:27:46 +010069#include <linux/stop_machine.h>
Will Deacon7af33502021-07-30 12:24:40 +010070#include <linux/sysfs.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000071#include <linux/types.h>
kernel test robotf6334b12021-04-29 22:50:46 +020072#include <linux/minmax.h>
Laura Abbott2077be62017-01-10 13:35:49 -080073#include <linux/mm.h>
Josh Poimboeufa111b7c2019-04-12 15:39:32 -050074#include <linux/cpu.h>
Andrey Konovalov2e903b92020-12-22 12:02:10 -080075#include <linux/kasan.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000076#include <asm/cpu.h>
77#include <asm/cpufeature.h>
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +010078#include <asm/cpu_ops.h>
Dave Martin2e0f2472017-10-31 15:51:10 +000079#include <asm/fpsimd.h>
Mark Rutland3e00e392021-06-09 11:23:01 +010080#include <asm/insn.h>
David Brazdil3eb681f2020-12-02 18:40:58 +000081#include <asm/kvm_host.h>
Suzuki K Poulose13f417f2016-02-23 10:31:45 +000082#include <asm/mmu_context.h>
Catalin Marinas34bfeea2020-05-04 14:42:36 +010083#include <asm/mte.h>
James Morse338d4f42015-07-22 19:05:54 +010084#include <asm/processor.h>
Carlos Bilbaoe62e0742021-07-08 07:15:42 -040085#include <asm/smp.h>
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +010086#include <asm/sysreg.h>
Suzuki K Poulose77c97b42017-01-09 17:28:31 +000087#include <asm/traps.h>
Marc Zyngierd88701b2015-01-29 11:24:05 +000088#include <asm/virt.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000089
Andrew Murrayaec0bff2019-04-09 10:52:41 +010090/* Kernel representation of AT_HWCAP and AT_HWCAP2 */
91static unsigned long elf_hwcap __read_mostly;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010092
93#ifdef CONFIG_COMPAT
94#define COMPAT_ELF_HWCAP_DEFAULT \
95 (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
96 COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
Suzuki K Poulose7559950a2020-01-13 23:30:20 +000097 COMPAT_HWCAP_TLS|COMPAT_HWCAP_IDIV|\
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010098 COMPAT_HWCAP_LPAE)
99unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT;
100unsigned int compat_elf_hwcap2 __read_mostly;
101#endif
102
103DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
Catalin Marinas4b65a5d2016-07-01 16:53:00 +0100104EXPORT_SYMBOL(cpu_hwcaps);
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000105static struct arm64_cpu_capabilities const __ro_after_init *cpu_hwcaps_ptrs[ARM64_NCAPS];
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +0100106
Daniel Thompson0ceb0d52019-01-31 14:58:53 +0000107/* Need also bit for ARM64_CB_PATCH */
108DECLARE_BITMAP(boot_capabilities, ARM64_NPATCHABLE);
109
Mark Brown09e3c222019-12-09 18:12:17 +0000110bool arm64_use_ng_mappings = false;
111EXPORT_SYMBOL(arm64_use_ng_mappings);
112
Dave Martin8f1eec52017-10-31 15:51:09 +0000113/*
Will Deacon2122a832021-06-08 19:02:55 +0100114 * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs
115 * support it?
116 */
117static bool __read_mostly allow_mismatched_32bit_el0;
118
119/*
120 * Static branch enabled only if allow_mismatched_32bit_el0 is set and we have
121 * seen at least one CPU capable of 32-bit EL0.
122 */
123DEFINE_STATIC_KEY_FALSE(arm64_mismatched_32bit_el0);
124
125/*
126 * Mask of CPUs supporting 32-bit EL0.
127 * Only valid if arm64_mismatched_32bit_el0 is enabled.
128 */
129static cpumask_var_t cpu_32bit_el0_mask __cpumask_var_read_mostly;
130
131/*
Dave Martin8f1eec52017-10-31 15:51:09 +0000132 * Flag to indicate if we have computed the system wide
133 * capabilities based on the boot time active CPUs. This
134 * will be used to determine if a new booting CPU should
135 * go through the verification process to make sure that it
136 * supports the system capabilities, without using a hotplug
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000137 * notifier. This is also used to decide if we could use
138 * the fast path for checking constant CPU caps.
Dave Martin8f1eec52017-10-31 15:51:09 +0000139 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000140DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready);
141EXPORT_SYMBOL(arm64_const_caps_ready);
142static inline void finalize_system_capabilities(void)
Dave Martin8f1eec52017-10-31 15:51:09 +0000143{
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000144 static_branch_enable(&arm64_const_caps_ready);
Dave Martin8f1eec52017-10-31 15:51:09 +0000145}
146
Anshuman Khandual638d5032020-06-29 10:08:31 +0530147void dump_cpu_features(void)
Mark Rutland8effeaa2017-06-21 18:11:23 +0100148{
149 /* file-wide pr_fmt adds "CPU features: " prefix */
150 pr_emerg("0x%*pb\n", ARM64_NCAPS, &cpu_hwcaps);
Mark Rutland8effeaa2017-06-21 18:11:23 +0100151}
152
Catalin Marinasefd9e032016-09-05 18:25:48 +0100153DEFINE_STATIC_KEY_ARRAY_FALSE(cpu_hwcap_keys, ARM64_NCAPS);
154EXPORT_SYMBOL(cpu_hwcap_keys);
155
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000156#define __ARM64_FTR_BITS(SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100157 { \
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000158 .sign = SIGNED, \
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000159 .visible = VISIBLE, \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100160 .strict = STRICT, \
161 .type = TYPE, \
162 .shift = SHIFT, \
163 .width = WIDTH, \
164 .safe_val = SAFE_VAL, \
165 }
166
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000167/* Define a feature with unsigned values */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000168#define ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
169 __ARM64_FTR_BITS(FTR_UNSIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000170
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000171/* Define a feature with a signed value */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000172#define S_ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
173 __ARM64_FTR_BITS(FTR_SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000174
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100175#define ARM64_FTR_END \
176 { \
177 .width = 0, \
178 }
179
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +0100180static void cpu_enable_cnp(struct arm64_cpu_capabilities const *cap);
James Morse70544192016-02-05 14:58:50 +0000181
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +0530182static bool __system_matches_cap(unsigned int n);
183
Suzuki K Poulose4aa8a472017-01-09 17:28:32 +0000184/*
185 * NOTE: Any changes to the visibility of features should be kept in
186 * sync with the documentation of the CPU feature register ABI.
187 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100188static const struct arm64_ftr_bits ftr_id_aa64isar0[] = {
Richard Henderson1a50ec02020-01-21 12:58:52 +0000189 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RNDR_SHIFT, 4, 0),
Anshuman Khandual7cd51a52020-05-19 15:10:46 +0530190 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TLB_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000191 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TS_SHIFT, 4, 0),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +0800192 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100193 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0),
194 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0),
195 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0),
196 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0),
197 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000198 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0),
199 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0),
200 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0),
201 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0),
202 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100203 ARM64_FTR_END,
204};
205
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000206static const struct arm64_ftr_bits ftr_id_aa64isar1[] = {
Steven Priced4209d82019-12-16 11:33:37 +0000207 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_I8MM_SHIFT, 4, 0),
208 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DGH_SHIFT, 4, 0),
209 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_BF16_SHIFT, 4, 0),
210 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SPECRES_SHIFT, 4, 0),
Will Deaconbd4fb6d2018-06-14 11:21:34 +0100211 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SB_SHIFT, 4, 0),
Julien Grall7230f7e2019-10-03 12:12:08 +0100212 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FRINTTS_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000213 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
214 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPI_SHIFT, 4, 0),
215 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
216 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100217 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0),
218 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0),
219 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000220 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +0530221 FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_API_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000222 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +0530223 FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_APA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100224 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000225 ARM64_FTR_END,
226};
227
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100228static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = {
Will Deacon179a56f2017-11-27 18:29:30 +0000229 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0),
Will Deacon0f15adb2018-01-03 11:17:58 +0000230 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000231 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_DIT_SHIFT, 4, 0),
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +0000232 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_AMU_SHIFT, 4, 0),
Anshuman Khandual011e5f52020-05-19 15:10:47 +0530233 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_MPAM_SHIFT, 4, 0),
234 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SEL2_SHIFT, 4, 0),
Dave Martin3fab3992017-12-14 14:03:44 +0000235 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
236 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000237 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100238 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000239 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
240 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_FP_SHIFT, 4, ID_AA64PFR0_FP_NI),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100241 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
Will Deacon98448cd2020-04-21 15:29:21 +0100242 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
Fuad Tabba95b54c32021-08-17 09:11:28 +0100243 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_ELx_64BIT_ONLY),
244 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL0_SHIFT, 4, ID_AA64PFR0_ELx_64BIT_ONLY),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100245 ARM64_FTR_END,
246};
247
Will Deacond71be2b2018-06-15 11:37:34 +0100248static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = {
Anshuman Khandual14e270f2020-05-19 15:10:48 +0530249 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MPAMFRAC_SHIFT, 4, 0),
250 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_RASFRAC_SHIFT, 4, 0),
Vincenzo Frascino3b714d22019-09-06 10:58:01 +0100251 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_MTE),
252 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MTE_SHIFT, 4, ID_AA64PFR1_MTE_NI),
Will Deacon532d5812020-09-15 23:56:12 +0100253 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR1_SSBS_SHIFT, 4, ID_AA64PFR1_SSBS_PSTATE_NI),
Dave Martin8ef8f3602020-03-16 16:50:45 +0000254 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_BTI),
255 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_BT_SHIFT, 4, 0),
Will Deacond71be2b2018-06-15 11:37:34 +0100256 ARM64_FTR_END,
257};
258
Dave Martin06a916f2019-04-18 18:41:38 +0100259static const struct arm64_ftr_bits ftr_id_aa64zfr0[] = {
Julien Grallec52c712019-10-14 11:21:13 +0100260 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000261 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F64MM_SHIFT, 4, 0),
262 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
263 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F32MM_SHIFT, 4, 0),
264 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
265 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_I8MM_SHIFT, 4, 0),
266 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100267 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SM4_SHIFT, 4, 0),
268 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
269 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SHA3_SHIFT, 4, 0),
270 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000271 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BF16_SHIFT, 4, 0),
272 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100273 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BITPERM_SHIFT, 4, 0),
274 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
275 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_AES_SHIFT, 4, 0),
276 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
277 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SVEVER_SHIFT, 4, 0),
Dave Martin06a916f2019-04-18 18:41:38 +0100278 ARM64_FTR_END,
279};
280
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100281static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Anshuman Khandualbc67f102020-07-03 09:21:34 +0530282 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ECV_SHIFT, 4, 0),
283 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_FGT_SHIFT, 4, 0),
284 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_EXS_SHIFT, 4, 0),
Will Deacon5717fe52019-08-12 16:02:25 +0100285 /*
Marc Zyngierb130a8f2020-05-28 14:12:58 +0100286 * Page size not being supported at Stage-2 is not fatal. You
287 * just give up KVM if PAGE_SIZE isn't supported there. Go fix
288 * your favourite nesting hypervisor.
289 *
290 * There is a small corner case where the hypervisor explicitly
291 * advertises a given granule size at Stage-2 (value 2) on some
292 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
293 * vCPUs. Although this is not forbidden by the architecture, it
294 * indicates that the hypervisor is being silly (or buggy).
295 *
296 * We make no effort to cope with this and pretend that if these
297 * fields are inconsistent across vCPUs, then it isn't worth
298 * trying to bring KVM up.
299 */
300 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN4_2_SHIFT, 4, 1),
301 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN64_2_SHIFT, 4, 1),
302 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN16_2_SHIFT, 4, 1),
303 /*
Will Deacon5717fe52019-08-12 16:02:25 +0100304 * We already refuse to boot CPUs that don't support our configured
305 * page size, so we can only detect mismatches for a page size other
306 * than the one we're currently using. Unfortunately, SoCs like this
307 * exist in the wild so, even though we don't like it, we'll have to go
308 * along with it and treat them as non-strict.
309 */
310 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
311 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
312 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
313
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100314 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100315 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100316 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
317 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
318 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100319 /*
320 * Differing PARange is fine as long as all peripherals and memory are mapped
321 * within the minimum PARange of all CPUs
322 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000323 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100324 ARM64_FTR_END,
325};
326
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100327static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Anshuman Khandual853772b2020-07-03 09:21:35 +0530328 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_ETS_SHIFT, 4, 0),
329 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_TWED_SHIFT, 4, 0),
330 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_XNX_SHIFT, 4, 0),
331 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_AA64MMFR1_SPECSEI_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000332 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100333 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
334 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
335 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
336 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
337 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100338 ARM64_FTR_END,
339};
340
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100341static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Mark Brown3e6c69a2019-12-09 18:12:14 +0000342 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_E0PD_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530343 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_EVT_SHIFT, 4, 0),
344 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_BBM_SHIFT, 4, 0),
345 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_TTL_SHIFT, 4, 0),
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100346 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_FWB_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530347 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IDS_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000348 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_AT_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530349 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_ST_SHIFT, 4, 0),
350 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_NV_SHIFT, 4, 0),
351 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CCIDX_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100352 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
Sai Prakash Ranjan9d3f8882020-04-21 15:29:15 +0100353 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100354 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
355 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
356 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000357 ARM64_FTR_END,
358};
359
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100360static const struct arm64_ftr_bits ftr_ctr[] = {
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600361 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */
362 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1),
363 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1),
Will Deacon147b9632019-07-30 15:40:20 +0100364 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_CWG_SHIFT, 4, 0),
365 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_ERG_SHIFT, 4, 0),
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600366 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100367 /*
368 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100369 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000370 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100371 */
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530372 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, CTR_L1IP_SHIFT, 2, ICACHE_POLICY_VIPT), /* L1Ip */
Suzuki K Poulose4c4a39d2018-07-04 23:07:45 +0100373 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IMINLINE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100374 ARM64_FTR_END,
375};
376
Marc Zyngier8f266a52021-02-08 09:57:19 +0000377static struct arm64_ftr_override __ro_after_init no_override = { };
378
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100379struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
380 .name = "SYS_CTR_EL0",
Marc Zyngier8f266a52021-02-08 09:57:19 +0000381 .ftr_bits = ftr_ctr,
382 .override = &no_override,
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100383};
384
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100385static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530386 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_INNERSHR_SHIFT, 4, 0xf),
387 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_FCSE_SHIFT, 4, 0),
388 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_MMFR0_AUXREG_SHIFT, 4, 0),
389 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_TCM_SHIFT, 4, 0),
390 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_SHARELVL_SHIFT, 4, 0),
391 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_OUTERSHR_SHIFT, 4, 0xf),
392 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_PMSA_SHIFT, 4, 0),
393 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_VMSA_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100394 ARM64_FTR_END,
395};
396
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100397static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530398 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_DOUBLELOCK_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000399 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
400 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
401 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
402 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100403 /*
404 * We can instantiate multiple PMU instances with different levels
405 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000406 */
407 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000408 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100409 ARM64_FTR_END,
410};
411
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100412static const struct arm64_ftr_bits ftr_mvfr2[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530413 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_FPMISC_SHIFT, 4, 0),
414 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_SIMDMISC_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100415 ARM64_FTR_END,
416};
417
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100418static const struct arm64_ftr_bits ftr_dczid[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530419 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, DCZID_DZP_SHIFT, 1, 1),
420 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, DCZID_BS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100421 ARM64_FTR_END,
422};
423
Catalin Marinas21047e92021-05-26 20:36:21 +0100424static const struct arm64_ftr_bits ftr_gmid[] = {
425 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, SYS_GMID_EL1_BS_SHIFT, 4, 0),
426 ARM64_FTR_END,
427};
428
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530429static const struct arm64_ftr_bits ftr_id_isar0[] = {
430 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DIVIDE_SHIFT, 4, 0),
431 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DEBUG_SHIFT, 4, 0),
432 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_COPROC_SHIFT, 4, 0),
433 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_CMPBRANCH_SHIFT, 4, 0),
434 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITFIELD_SHIFT, 4, 0),
435 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITCOUNT_SHIFT, 4, 0),
436 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_SWAP_SHIFT, 4, 0),
437 ARM64_FTR_END,
438};
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100439
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100440static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100441 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
442 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
443 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
444 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
445 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
446 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100447 ARM64_FTR_END,
448};
449
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100450static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530451 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_EVT_SHIFT, 4, 0),
452 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CCIDX_SHIFT, 4, 0),
453 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_LSM_SHIFT, 4, 0),
454 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_HPDS_SHIFT, 4, 0),
455 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CNP_SHIFT, 4, 0),
456 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_XNX_SHIFT, 4, 0),
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530457 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_AC2_SHIFT, 4, 0),
458
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530459 /*
460 * SpecSEI = 1 indicates that the PE might generate an SError on an
461 * external abort on speculative read. It is safe to assume that an
462 * SError might be generated than it will not be. Hence it has been
463 * classified as FTR_HIGHER_SAFE.
464 */
465 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_MMFR4_SPECSEI_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100466 ARM64_FTR_END,
467};
468
Will Deacon01133402020-04-21 15:29:16 +0100469static const struct arm64_ftr_bits ftr_id_isar4[] = {
470 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SWP_FRAC_SHIFT, 4, 0),
471 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_PSR_M_SHIFT, 4, 0),
472 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SYNCH_PRIM_FRAC_SHIFT, 4, 0),
473 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_BARRIER_SHIFT, 4, 0),
474 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SMC_SHIFT, 4, 0),
475 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WRITEBACK_SHIFT, 4, 0),
476 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WITHSHIFTS_SHIFT, 4, 0),
477 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_UNPRIV_SHIFT, 4, 0),
478 ARM64_FTR_END,
479};
480
Anshuman Khandual152accf82020-05-19 15:10:43 +0530481static const struct arm64_ftr_bits ftr_id_mmfr5[] = {
482 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR5_ETS_SHIFT, 4, 0),
483 ARM64_FTR_END,
484};
485
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530486static const struct arm64_ftr_bits ftr_id_isar6[] = {
487 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_I8MM_SHIFT, 4, 0),
488 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_BF16_SHIFT, 4, 0),
489 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SPECRES_SHIFT, 4, 0),
490 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SB_SHIFT, 4, 0),
491 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_FHM_SHIFT, 4, 0),
492 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_DP_SHIFT, 4, 0),
493 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_JSCVT_SHIFT, 4, 0),
494 ARM64_FTR_END,
495};
496
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100497static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Anshuman Khandual0ae43a92020-05-19 15:10:44 +0530498 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_DIT_SHIFT, 4, 0),
499 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR0_CSV2_SHIFT, 4, 0),
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530500 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE3_SHIFT, 4, 0),
501 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE2_SHIFT, 4, 0),
502 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE1_SHIFT, 4, 0),
503 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100504 ARM64_FTR_END,
505};
506
Will Deacon01133402020-04-21 15:29:16 +0100507static const struct arm64_ftr_bits ftr_id_pfr1[] = {
508 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GIC_SHIFT, 4, 0),
509 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRT_FRAC_SHIFT, 4, 0),
510 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SEC_FRAC_SHIFT, 4, 0),
511 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GENTIMER_SHIFT, 4, 0),
512 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRTUALIZATION_SHIFT, 4, 0),
513 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_MPROGMOD_SHIFT, 4, 0),
514 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SECURITY_SHIFT, 4, 0),
515 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_PROGMOD_SHIFT, 4, 0),
516 ARM64_FTR_END,
517};
518
Anshuman Khandual16824082020-05-19 15:10:41 +0530519static const struct arm64_ftr_bits ftr_id_pfr2[] = {
Will Deacon532d5812020-09-15 23:56:12 +0100520 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_SSBS_SHIFT, 4, 0),
Anshuman Khandual16824082020-05-19 15:10:41 +0530521 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_CSV3_SHIFT, 4, 0),
522 ARM64_FTR_END,
523};
524
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100525static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Anshuman Khandual1ed1b902020-05-19 15:10:39 +0530526 /* [31:28] TraceFilt */
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530527 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_PERFMON_SHIFT, 4, 0xf),
528 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MPROFDBG_SHIFT, 4, 0),
529 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPTRC_SHIFT, 4, 0),
530 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPTRC_SHIFT, 4, 0),
531 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPDBG_SHIFT, 4, 0),
532 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPSDBG_SHIFT, 4, 0),
533 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPDBG_SHIFT, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000534 ARM64_FTR_END,
535};
536
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530537static const struct arm64_ftr_bits ftr_id_dfr1[] = {
538 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR1_MTPMU_SHIFT, 4, 0),
539 ARM64_FTR_END,
540};
541
Dave Martin2e0f2472017-10-31 15:51:10 +0000542static const struct arm64_ftr_bits ftr_zcr[] = {
543 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
544 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
545 ARM64_FTR_END,
546};
547
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100548/*
549 * Common ftr bits for a 32bit register with all hidden, strict
550 * attributes, with 4bit feature fields and a default safe value of
551 * 0. Covers the following 32bit registers:
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530552 * id_isar[1-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100553 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100554static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000555 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
556 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
557 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
558 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
559 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
560 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
561 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
562 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100563 ARM64_FTR_END,
564};
565
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000566/* Table for a single 32bit feature value */
567static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000568 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100569 ARM64_FTR_END,
570};
571
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000572static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100573 ARM64_FTR_END,
574};
575
Marc Zyngier8f266a52021-02-08 09:57:19 +0000576#define ARM64_FTR_REG_OVERRIDE(id, table, ovr) { \
577 .sys_id = id, \
578 .reg = &(struct arm64_ftr_reg){ \
579 .name = #id, \
580 .override = (ovr), \
581 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100582 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100583
Marc Zyngier8f266a52021-02-08 09:57:19 +0000584#define ARM64_FTR_REG(id, table) ARM64_FTR_REG_OVERRIDE(id, table, &no_override)
585
Marc Zyngier361db0f2021-02-08 09:57:23 +0000586struct arm64_ftr_override __ro_after_init id_aa64mmfr1_override;
Marc Zyngier93ad55b2021-02-08 09:57:29 +0000587struct arm64_ftr_override __ro_after_init id_aa64pfr1_override;
Marc Zyngierf8da5752021-02-08 09:57:31 +0000588struct arm64_ftr_override __ro_after_init id_aa64isar1_override;
Marc Zyngier361db0f2021-02-08 09:57:23 +0000589
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100590static const struct __ftr_reg_entry {
591 u32 sys_id;
592 struct arm64_ftr_reg *reg;
593} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100594
595 /* Op1 = 0, CRn = 0, CRm = 1 */
596 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
Will Deacon01133402020-04-21 15:29:16 +0100597 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_id_pfr1),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000598 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100599 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
600 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
601 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
602 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
603
604 /* Op1 = 0, CRn = 0, CRm = 2 */
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530605 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_id_isar0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100606 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
607 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
608 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
Will Deacon01133402020-04-21 15:29:16 +0100609 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_id_isar4),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100610 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
611 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530612 ARM64_FTR_REG(SYS_ID_ISAR6_EL1, ftr_id_isar6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100613
614 /* Op1 = 0, CRn = 0, CRm = 3 */
615 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
616 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
617 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
Anshuman Khandual16824082020-05-19 15:10:41 +0530618 ARM64_FTR_REG(SYS_ID_PFR2_EL1, ftr_id_pfr2),
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530619 ARM64_FTR_REG(SYS_ID_DFR1_EL1, ftr_id_dfr1),
Anshuman Khandual152accf82020-05-19 15:10:43 +0530620 ARM64_FTR_REG(SYS_ID_MMFR5_EL1, ftr_id_mmfr5),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100621
622 /* Op1 = 0, CRn = 0, CRm = 4 */
623 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Marc Zyngier93ad55b2021-02-08 09:57:29 +0000624 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1,
625 &id_aa64pfr1_override),
Dave Martin06a916f2019-04-18 18:41:38 +0100626 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_id_aa64zfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100627
628 /* Op1 = 0, CRn = 0, CRm = 5 */
629 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000630 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100631
632 /* Op1 = 0, CRn = 0, CRm = 6 */
633 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Marc Zyngierf8da5752021-02-08 09:57:31 +0000634 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1,
635 &id_aa64isar1_override),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100636
637 /* Op1 = 0, CRn = 0, CRm = 7 */
638 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
Marc Zyngier361db0f2021-02-08 09:57:23 +0000639 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1,
640 &id_aa64mmfr1_override),
James Morse406e3082016-02-05 14:58:47 +0000641 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100642
Dave Martin2e0f2472017-10-31 15:51:10 +0000643 /* Op1 = 0, CRn = 1, CRm = 2 */
644 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
645
Catalin Marinas21047e92021-05-26 20:36:21 +0100646 /* Op1 = 1, CRn = 0, CRm = 0 */
647 ARM64_FTR_REG(SYS_GMID_EL1, ftr_gmid),
648
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100649 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100650 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100651 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
652
653 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000654 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100655};
656
657static int search_cmp_ftr_reg(const void *id, const void *regp)
658{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100659 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100660}
661
662/*
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530663 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
664 * its sys_reg() encoding. With the array arm64_ftr_regs sorted in the
665 * ascending order of sys_id, we use binary search to find a matching
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100666 * entry.
667 *
668 * returns - Upon success, matching ftr_reg entry for id.
669 * - NULL on failure. It is upto the caller to decide
670 * the impact of a failure.
671 */
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530672static struct arm64_ftr_reg *get_arm64_ftr_reg_nowarn(u32 sys_id)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100673{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100674 const struct __ftr_reg_entry *ret;
675
676 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100677 arm64_ftr_regs,
678 ARRAY_SIZE(arm64_ftr_regs),
679 sizeof(arm64_ftr_regs[0]),
680 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100681 if (ret)
682 return ret->reg;
683 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100684}
685
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530686/*
687 * get_arm64_ftr_reg - Looks up a feature register entry using
688 * its sys_reg() encoding. This calls get_arm64_ftr_reg_nowarn().
689 *
690 * returns - Upon success, matching ftr_reg entry for id.
691 * - NULL on failure but with an WARN_ON().
692 */
693static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
694{
695 struct arm64_ftr_reg *reg;
696
697 reg = get_arm64_ftr_reg_nowarn(sys_id);
698
699 /*
700 * Requesting a non-existent register search is an error. Warn
701 * and let the caller handle it.
702 */
703 WARN_ON(!reg);
704 return reg;
705}
706
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100707static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
708 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100709{
710 u64 mask = arm64_ftr_mask(ftrp);
711
712 reg &= ~mask;
713 reg |= (ftr_val << ftrp->shift) & mask;
714 return reg;
715}
716
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100717static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
718 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100719{
720 s64 ret = 0;
721
722 switch (ftrp->type) {
723 case FTR_EXACT:
724 ret = ftrp->safe_val;
725 break;
726 case FTR_LOWER_SAFE:
kernel test robotf6334b12021-04-29 22:50:46 +0200727 ret = min(new, cur);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100728 break;
Will Deacon147b9632019-07-30 15:40:20 +0100729 case FTR_HIGHER_OR_ZERO_SAFE:
730 if (!cur || !new)
731 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500732 fallthrough;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100733 case FTR_HIGHER_SAFE:
kernel test robotf6334b12021-04-29 22:50:46 +0200734 ret = max(new, cur);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100735 break;
736 default:
737 BUG();
738 }
739
740 return ret;
741}
742
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100743static void __init sort_ftr_regs(void)
744{
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530745 unsigned int i;
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100746
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530747 for (i = 0; i < ARRAY_SIZE(arm64_ftr_regs); i++) {
748 const struct arm64_ftr_reg *ftr_reg = arm64_ftr_regs[i].reg;
749 const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits;
750 unsigned int j = 0;
751
752 /*
753 * Features here must be sorted in descending order with respect
754 * to their shift values and should not overlap with each other.
755 */
756 for (; ftr_bits->width != 0; ftr_bits++, j++) {
757 unsigned int width = ftr_reg->ftr_bits[j].width;
758 unsigned int shift = ftr_reg->ftr_bits[j].shift;
759 unsigned int prev_shift;
760
761 WARN((shift + width) > 64,
762 "%s has invalid feature at shift %d\n",
763 ftr_reg->name, shift);
764
765 /*
766 * Skip the first feature. There is nothing to
767 * compare against for now.
768 */
769 if (j == 0)
770 continue;
771
772 prev_shift = ftr_reg->ftr_bits[j - 1].shift;
773 WARN((shift + width) > prev_shift,
774 "%s has feature overlap at shift %d\n",
775 ftr_reg->name, shift);
776 }
777
778 /*
779 * Skip the first register. There is nothing to
780 * compare against for now.
781 */
782 if (i == 0)
783 continue;
784 /*
785 * Registers here must be sorted in ascending order with respect
786 * to sys_id for subsequent binary search in get_arm64_ftr_reg()
787 * to work correctly.
788 */
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100789 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530790 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100791}
792
793/*
794 * Initialise the CPU feature register from Boot CPU values.
795 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000796 * Any bits that are not covered by an arm64_ftr_bits entry are considered
797 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100798 */
Will Deacon2122a832021-06-08 19:02:55 +0100799static void init_cpu_ftr_reg(u32 sys_reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100800{
801 u64 val = 0;
802 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000803 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000804 u64 valid_mask = 0;
805
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100806 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100807 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
808
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530809 if (!reg)
810 return;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100811
韩科才24b2cce2020-03-11 14:52:49 +0800812 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000813 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100814 s64 ftr_new = arm64_ftr_value(ftrp, new);
Marc Zyngier8f266a52021-02-08 09:57:19 +0000815 s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val);
816
817 if ((ftr_mask & reg->override->mask) == ftr_mask) {
818 s64 tmp = arm64_ftr_safe_value(ftrp, ftr_ovr, ftr_new);
819 char *str = NULL;
820
821 if (ftr_ovr != tmp) {
822 /* Unsafe, remove the override */
823 reg->override->mask &= ~ftr_mask;
824 reg->override->val &= ~ftr_mask;
825 tmp = ftr_ovr;
826 str = "ignoring override";
827 } else if (ftr_new != tmp) {
828 /* Override was valid */
829 ftr_new = tmp;
830 str = "forced";
831 } else if (ftr_ovr == tmp) {
832 /* Override was the safe value */
833 str = "already set";
834 }
835
836 if (str)
837 pr_warn("%s[%d:%d]: %s to %llx\n",
838 reg->name,
839 ftrp->shift + ftrp->width - 1,
840 ftrp->shift, str, tmp);
Marc Zyngiercac642c2021-04-08 14:10:08 +0100841 } else if ((ftr_mask & reg->override->val) == ftr_mask) {
842 reg->override->val &= ~ftr_mask;
843 pr_warn("%s[%d:%d]: impossible override, ignored\n",
844 reg->name,
845 ftrp->shift + ftrp->width - 1,
846 ftrp->shift);
Marc Zyngier8f266a52021-02-08 09:57:19 +0000847 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100848
849 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000850
851 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100852 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000853 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000854 if (ftrp->visible)
855 user_mask |= ftr_mask;
856 else
857 reg->user_val = arm64_ftr_set_value(ftrp,
858 reg->user_val,
859 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100860 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000861
862 val &= valid_mask;
863
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100864 reg->sys_val = val;
865 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000866 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100867}
868
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100869extern const struct arm64_cpu_capabilities arm64_errata[];
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000870static const struct arm64_cpu_capabilities arm64_features[];
871
872static void __init
873init_cpu_hwcaps_indirect_list_from_array(const struct arm64_cpu_capabilities *caps)
874{
875 for (; caps->matches; caps++) {
876 if (WARN(caps->capability >= ARM64_NCAPS,
877 "Invalid capability %d\n", caps->capability))
878 continue;
879 if (WARN(cpu_hwcaps_ptrs[caps->capability],
880 "Duplicate entry for capability %d\n",
881 caps->capability))
882 continue;
883 cpu_hwcaps_ptrs[caps->capability] = caps;
884 }
885}
886
887static void __init init_cpu_hwcaps_indirect_list(void)
888{
889 init_cpu_hwcaps_indirect_list_from_array(arm64_features);
890 init_cpu_hwcaps_indirect_list_from_array(arm64_errata);
891}
892
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100893static void __init setup_boot_cpu_capabilities(void);
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100894
Will Deacon2122a832021-06-08 19:02:55 +0100895static void init_32bit_cpu_features(struct cpuinfo_32bit *info)
Will Deacon930a58b2021-06-08 19:02:54 +0100896{
897 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
898 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1);
899 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
900 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
901 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
902 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
903 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
904 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
905 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6);
906 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
907 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
908 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
909 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
910 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4);
911 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5);
912 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
913 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
914 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2);
915 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
916 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
917 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
918}
919
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100920void __init init_cpu_features(struct cpuinfo_arm64 *info)
921{
922 /* Before we start using the tables, make sure it is sorted */
923 sort_ftr_regs();
924
925 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
926 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
927 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
928 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
929 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
930 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
931 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
932 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
933 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000934 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100935 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
936 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000937 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100938
Will Deacon930a58b2021-06-08 19:02:54 +0100939 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0))
940 init_32bit_cpu_features(&info->aarch32);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100941
Dave Martin2e0f2472017-10-31 15:51:10 +0000942 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
943 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
944 sve_init_vq_map();
945 }
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100946
Catalin Marinas21047e92021-05-26 20:36:21 +0100947 if (id_aa64pfr1_mte(info->reg_id_aa64pfr1))
948 init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid);
949
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100950 /*
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000951 * Initialize the indirect array of CPU hwcaps capabilities pointers
952 * before we handle the boot CPU below.
953 */
954 init_cpu_hwcaps_indirect_list();
955
956 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100957 * Detect and enable early CPU capabilities based on the boot CPU,
958 * after we have initialised the CPU feature infrastructure.
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100959 */
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100960 setup_boot_cpu_capabilities();
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100961}
962
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100963static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100964{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100965 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100966
967 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
968 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
969 s64 ftr_new = arm64_ftr_value(ftrp, new);
970
971 if (ftr_cur == ftr_new)
972 continue;
973 /* Find a safe value */
974 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
975 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
976 }
977
978}
979
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100980static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100981{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100982 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
983
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530984 if (!regp)
985 return 0;
986
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100987 update_cpu_ftr_reg(regp, val);
988 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
989 return 0;
990 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
991 regp->name, boot, cpu, val);
992 return 1;
993}
994
Will Deaconeab2f922020-04-21 15:29:20 +0100995static void relax_cpu_ftr_reg(u32 sys_id, int field)
996{
997 const struct arm64_ftr_bits *ftrp;
998 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
999
Anshuman Khandual3577dd32020-05-27 15:34:36 +05301000 if (!regp)
Will Deaconeab2f922020-04-21 15:29:20 +01001001 return;
1002
1003 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) {
1004 if (ftrp->shift == field) {
1005 regp->strict_mask &= ~arm64_ftr_mask(ftrp);
1006 break;
1007 }
1008 }
1009
1010 /* Bogus field? */
1011 WARN_ON(!ftrp->width);
1012}
1013
Will Deacon2122a832021-06-08 19:02:55 +01001014static void lazy_init_32bit_cpu_features(struct cpuinfo_arm64 *info,
1015 struct cpuinfo_arm64 *boot)
1016{
1017 static bool boot_cpu_32bit_regs_overridden = false;
1018
1019 if (!allow_mismatched_32bit_el0 || boot_cpu_32bit_regs_overridden)
1020 return;
1021
1022 if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0))
1023 return;
1024
1025 boot->aarch32 = info->aarch32;
1026 init_32bit_cpu_features(&boot->aarch32);
1027 boot_cpu_32bit_regs_overridden = true;
1028}
1029
Will Deacon930a58b2021-06-08 19:02:54 +01001030static int update_32bit_cpu_features(int cpu, struct cpuinfo_32bit *info,
1031 struct cpuinfo_32bit *boot)
Will Deacon1efcfe72020-04-21 15:29:19 +01001032{
1033 int taint = 0;
1034 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
1035
1036 /*
Will Deaconeab2f922020-04-21 15:29:20 +01001037 * If we don't have AArch32 at EL1, then relax the strictness of
1038 * EL1-dependent register fields to avoid spurious sanity check fails.
1039 */
1040 if (!id_aa64pfr0_32bit_el1(pfr0)) {
1041 relax_cpu_ftr_reg(SYS_ID_ISAR4_EL1, ID_ISAR4_SMC_SHIFT);
1042 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRT_FRAC_SHIFT);
1043 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SEC_FRAC_SHIFT);
1044 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRTUALIZATION_SHIFT);
1045 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SECURITY_SHIFT);
1046 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_PROGMOD_SHIFT);
1047 }
1048
Will Deacon1efcfe72020-04-21 15:29:19 +01001049 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
1050 info->reg_id_dfr0, boot->reg_id_dfr0);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +05301051 taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu,
1052 info->reg_id_dfr1, boot->reg_id_dfr1);
Will Deacon1efcfe72020-04-21 15:29:19 +01001053 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
1054 info->reg_id_isar0, boot->reg_id_isar0);
1055 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
1056 info->reg_id_isar1, boot->reg_id_isar1);
1057 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
1058 info->reg_id_isar2, boot->reg_id_isar2);
1059 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
1060 info->reg_id_isar3, boot->reg_id_isar3);
1061 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
1062 info->reg_id_isar4, boot->reg_id_isar4);
1063 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
1064 info->reg_id_isar5, boot->reg_id_isar5);
1065 taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu,
1066 info->reg_id_isar6, boot->reg_id_isar6);
1067
1068 /*
1069 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
1070 * ACTLR formats could differ across CPUs and therefore would have to
1071 * be trapped for virtualization anyway.
1072 */
1073 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
1074 info->reg_id_mmfr0, boot->reg_id_mmfr0);
1075 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
1076 info->reg_id_mmfr1, boot->reg_id_mmfr1);
1077 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
1078 info->reg_id_mmfr2, boot->reg_id_mmfr2);
1079 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
1080 info->reg_id_mmfr3, boot->reg_id_mmfr3);
Anshuman Khandual858b8a82020-05-19 15:10:54 +05301081 taint |= check_update_ftr_reg(SYS_ID_MMFR4_EL1, cpu,
1082 info->reg_id_mmfr4, boot->reg_id_mmfr4);
Anshuman Khandual152accf82020-05-19 15:10:43 +05301083 taint |= check_update_ftr_reg(SYS_ID_MMFR5_EL1, cpu,
1084 info->reg_id_mmfr5, boot->reg_id_mmfr5);
Will Deacon1efcfe72020-04-21 15:29:19 +01001085 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
1086 info->reg_id_pfr0, boot->reg_id_pfr0);
1087 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
1088 info->reg_id_pfr1, boot->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +05301089 taint |= check_update_ftr_reg(SYS_ID_PFR2_EL1, cpu,
1090 info->reg_id_pfr2, boot->reg_id_pfr2);
Will Deacon1efcfe72020-04-21 15:29:19 +01001091 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
1092 info->reg_mvfr0, boot->reg_mvfr0);
1093 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
1094 info->reg_mvfr1, boot->reg_mvfr1);
1095 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
1096 info->reg_mvfr2, boot->reg_mvfr2);
1097
1098 return taint;
1099}
1100
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001101/*
1102 * Update system wide CPU feature registers with the values from a
1103 * non-boot CPU. Also performs SANITY checks to make sure that there
1104 * aren't any insane variations from that of the boot CPU.
1105 */
1106void update_cpu_features(int cpu,
1107 struct cpuinfo_arm64 *info,
1108 struct cpuinfo_arm64 *boot)
1109{
1110 int taint = 0;
1111
1112 /*
1113 * The kernel can handle differing I-cache policies, but otherwise
1114 * caches should look identical. Userspace JITs will make use of
1115 * *minLine.
1116 */
1117 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
1118 info->reg_ctr, boot->reg_ctr);
1119
1120 /*
1121 * Userspace may perform DC ZVA instructions. Mismatched block sizes
1122 * could result in too much or too little memory being zeroed if a
1123 * process is preempted and migrated between CPUs.
1124 */
1125 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
1126 info->reg_dczid, boot->reg_dczid);
1127
1128 /* If different, timekeeping will be broken (especially with KVM) */
1129 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
1130 info->reg_cntfrq, boot->reg_cntfrq);
1131
1132 /*
1133 * The kernel uses self-hosted debug features and expects CPUs to
1134 * support identical debug features. We presently need CTX_CMPs, WRPs,
1135 * and BRPs to be identical.
1136 * ID_AA64DFR1 is currently RES0.
1137 */
1138 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
1139 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
1140 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
1141 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
1142 /*
1143 * Even in big.LITTLE, processors should be identical instruction-set
1144 * wise.
1145 */
1146 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
1147 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
1148 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
1149 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
1150
1151 /*
1152 * Differing PARange support is fine as long as all peripherals and
1153 * memory are mapped within the minimum PARange of all CPUs.
1154 * Linux should not care about secure memory.
1155 */
1156 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
1157 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
1158 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
1159 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +00001160 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
1161 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001162
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001163 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
1164 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
1165 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
1166 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
1167
Dave Martin2e0f2472017-10-31 15:51:10 +00001168 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
1169 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
1170
Dave Martin2e0f2472017-10-31 15:51:10 +00001171 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
1172 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
1173 info->reg_zcr, boot->reg_zcr);
1174
1175 /* Probe vector lengths, unless we already gave up on SVE */
1176 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00001177 !system_capabilities_finalized())
Dave Martin2e0f2472017-10-31 15:51:10 +00001178 sve_update_vq_map();
1179 }
1180
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001181 /*
Catalin Marinas21047e92021-05-26 20:36:21 +01001182 * The kernel uses the LDGM/STGM instructions and the number of tags
1183 * they read/write depends on the GMID_EL1.BS field. Check that the
1184 * value is the same on all CPUs.
1185 */
1186 if (IS_ENABLED(CONFIG_ARM64_MTE) &&
Will Deacon930a58b2021-06-08 19:02:54 +01001187 id_aa64pfr1_mte(info->reg_id_aa64pfr1)) {
Catalin Marinas21047e92021-05-26 20:36:21 +01001188 taint |= check_update_ftr_reg(SYS_GMID_EL1, cpu,
1189 info->reg_gmid, boot->reg_gmid);
Will Deacon930a58b2021-06-08 19:02:54 +01001190 }
Catalin Marinas21047e92021-05-26 20:36:21 +01001191
1192 /*
Will Deacon930a58b2021-06-08 19:02:54 +01001193 * If we don't have AArch32 at all then skip the checks entirely
1194 * as the register values may be UNKNOWN and we're not going to be
1195 * using them for anything.
1196 *
Will Deacon1efcfe72020-04-21 15:29:19 +01001197 * This relies on a sanitised view of the AArch64 ID registers
1198 * (e.g. SYS_ID_AA64PFR0_EL1), so we call it last.
1199 */
Will Deacon930a58b2021-06-08 19:02:54 +01001200 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
Will Deacon2122a832021-06-08 19:02:55 +01001201 lazy_init_32bit_cpu_features(info, boot);
Will Deacon930a58b2021-06-08 19:02:54 +01001202 taint |= update_32bit_cpu_features(cpu, &info->aarch32,
1203 &boot->aarch32);
1204 }
Will Deacon1efcfe72020-04-21 15:29:19 +01001205
1206 /*
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001207 * Mismatched CPU features are a recipe for disaster. Don't even
1208 * pretend to support them.
1209 */
Will Deacon8dd0ee62017-06-05 11:40:23 +01001210 if (taint) {
1211 pr_warn_once("Unsupported CPU feature variation detected.\n");
1212 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
1213 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +01001214}
1215
Dave Martin46823dd2017-03-23 15:14:39 +00001216u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001217{
1218 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
1219
Anshuman Khandual3577dd32020-05-27 15:34:36 +05301220 if (!regp)
1221 return 0;
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001222 return regp->sys_val;
1223}
Jean-Philippe Brucker6f3c4af2020-09-18 12:18:46 +02001224EXPORT_SYMBOL_GPL(read_sanitised_ftr_reg);
Marc Zyngier359b7062015-03-27 13:09:23 +00001225
Mark Rutland965861d2017-02-02 17:32:15 +00001226#define read_sysreg_case(r) \
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001227 case r: val = read_sysreg_s(r); break;
Mark Rutland965861d2017-02-02 17:32:15 +00001228
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001229/*
Dave Martin46823dd2017-03-23 15:14:39 +00001230 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001231 * Read the system register on the current CPU
1232 */
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001233u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001234{
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001235 struct arm64_ftr_reg *regp;
1236 u64 val;
1237
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001238 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +00001239 read_sysreg_case(SYS_ID_PFR0_EL1);
1240 read_sysreg_case(SYS_ID_PFR1_EL1);
Anshuman Khandual16824082020-05-19 15:10:41 +05301241 read_sysreg_case(SYS_ID_PFR2_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001242 read_sysreg_case(SYS_ID_DFR0_EL1);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +05301243 read_sysreg_case(SYS_ID_DFR1_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001244 read_sysreg_case(SYS_ID_MMFR0_EL1);
1245 read_sysreg_case(SYS_ID_MMFR1_EL1);
1246 read_sysreg_case(SYS_ID_MMFR2_EL1);
1247 read_sysreg_case(SYS_ID_MMFR3_EL1);
Anshuman Khandual858b8a82020-05-19 15:10:54 +05301248 read_sysreg_case(SYS_ID_MMFR4_EL1);
Anshuman Khandual152accf82020-05-19 15:10:43 +05301249 read_sysreg_case(SYS_ID_MMFR5_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001250 read_sysreg_case(SYS_ID_ISAR0_EL1);
1251 read_sysreg_case(SYS_ID_ISAR1_EL1);
1252 read_sysreg_case(SYS_ID_ISAR2_EL1);
1253 read_sysreg_case(SYS_ID_ISAR3_EL1);
1254 read_sysreg_case(SYS_ID_ISAR4_EL1);
1255 read_sysreg_case(SYS_ID_ISAR5_EL1);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +05301256 read_sysreg_case(SYS_ID_ISAR6_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001257 read_sysreg_case(SYS_MVFR0_EL1);
1258 read_sysreg_case(SYS_MVFR1_EL1);
1259 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001260
Mark Rutland965861d2017-02-02 17:32:15 +00001261 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
1262 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
Dave Martin78ed70b2019-06-03 16:35:02 +01001263 read_sysreg_case(SYS_ID_AA64ZFR0_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001264 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
1265 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
1266 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
1267 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
1268 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
1269 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
1270 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001271
Mark Rutland965861d2017-02-02 17:32:15 +00001272 read_sysreg_case(SYS_CNTFRQ_EL0);
1273 read_sysreg_case(SYS_CTR_EL0);
1274 read_sysreg_case(SYS_DCZID_EL0);
1275
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001276 default:
1277 BUG();
1278 return 0;
1279 }
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001280
1281 regp = get_arm64_ftr_reg(sys_id);
1282 if (regp) {
1283 val &= ~regp->override->mask;
1284 val |= (regp->override->val & regp->override->mask);
1285 }
1286
1287 return val;
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001288}
1289
Marc Zyngier963fcd42015-09-30 11:50:04 +01001290#include <linux/irqchip/arm-gic-v3.h>
1291
Marc Zyngier94a9e042015-06-12 12:06:36 +01001292static bool
James Morse18ffa042015-07-21 13:23:29 +01001293feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
1294{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +00001295 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +01001296
1297 return val >= entry->min_field_value;
1298}
1299
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001300static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001301has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001302{
1303 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +01001304
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001305 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
1306 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +00001307 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001308 else
Dave Martin46823dd2017-03-23 15:14:39 +00001309 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001310
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001311 return feature_matches(val, entry);
1312}
James Morse338d4f42015-07-22 19:05:54 +01001313
Will Deacon2122a832021-06-08 19:02:55 +01001314const struct cpumask *system_32bit_el0_cpumask(void)
1315{
1316 if (!system_supports_32bit_el0())
1317 return cpu_none_mask;
1318
1319 if (static_branch_unlikely(&arm64_mismatched_32bit_el0))
1320 return cpu_32bit_el0_mask;
1321
1322 return cpu_possible_mask;
1323}
1324
Will Deaconead7de42021-07-30 12:24:41 +01001325static int __init parse_32bit_el0_param(char *str)
1326{
1327 allow_mismatched_32bit_el0 = true;
1328 return 0;
1329}
1330early_param("allow_mismatched_32bit_el0", parse_32bit_el0_param);
1331
Will Deacon7af33502021-07-30 12:24:40 +01001332static ssize_t aarch32_el0_show(struct device *dev,
1333 struct device_attribute *attr, char *buf)
1334{
1335 const struct cpumask *mask = system_32bit_el0_cpumask();
1336
1337 return sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(mask));
1338}
1339static const DEVICE_ATTR_RO(aarch32_el0);
1340
1341static int __init aarch32_el0_sysfs_init(void)
1342{
1343 if (!allow_mismatched_32bit_el0)
1344 return 0;
1345
1346 return device_create_file(cpu_subsys.dev_root, &dev_attr_aarch32_el0);
1347}
1348device_initcall(aarch32_el0_sysfs_init);
1349
Will Deacon2122a832021-06-08 19:02:55 +01001350static bool has_32bit_el0(const struct arm64_cpu_capabilities *entry, int scope)
1351{
1352 if (!has_cpuid_feature(entry, scope))
1353 return allow_mismatched_32bit_el0;
1354
1355 if (scope == SCOPE_SYSTEM)
1356 pr_info("detected: 32-bit EL0 Support\n");
1357
1358 return true;
1359}
1360
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001361static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +01001362{
1363 bool has_sre;
1364
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001365 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +01001366 return false;
1367
1368 has_sre = gic_enable_sre();
1369 if (!has_sre)
1370 pr_warn_once("%s present but disabled by higher exception level\n",
1371 entry->desc);
1372
1373 return has_sre;
1374}
1375
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001376static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +00001377{
1378 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +00001379
1380 /* Cavium ThunderX pass 1.x and 2.x */
Qian Caib99286b2019-08-05 23:05:03 -04001381 return midr_is_cpu_model_range(midr, MIDR_THUNDERX,
Robert Richterfa5ce3d2017-01-13 14:12:09 +01001382 MIDR_CPU_VAR_REV(0, 0),
1383 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +00001384}
1385
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001386static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
1387{
Dave Martin46823dd2017-03-23 15:14:39 +00001388 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001389
1390 return cpuid_feature_extract_signed_field(pfr0,
1391 ID_AA64PFR0_FP_SHIFT) < 0;
1392}
1393
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001394static bool has_cache_idc(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001395 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001396{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001397 u64 ctr;
1398
1399 if (scope == SCOPE_SYSTEM)
1400 ctr = arm64_ftr_reg_ctrel0.sys_val;
1401 else
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001402 ctr = read_cpuid_effective_cachetype();
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001403
1404 return ctr & BIT(CTR_IDC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001405}
1406
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001407static void cpu_emulate_effective_ctr(const struct arm64_cpu_capabilities *__unused)
1408{
1409 /*
1410 * If the CPU exposes raw CTR_EL0.IDC = 0, while effectively
1411 * CTR_EL0.IDC = 1 (from CLIDR values), we need to trap accesses
1412 * to the CTR_EL0 on this CPU and emulate it with the real/safe
1413 * value.
1414 */
1415 if (!(read_cpuid_cachetype() & BIT(CTR_IDC_SHIFT)))
1416 sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCT, 0);
1417}
1418
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001419static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001420 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001421{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001422 u64 ctr;
1423
1424 if (scope == SCOPE_SYSTEM)
1425 ctr = arm64_ftr_reg_ctrel0.sys_val;
1426 else
1427 ctr = read_cpuid_cachetype();
1428
1429 return ctr & BIT(CTR_DIC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001430}
1431
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001432static bool __maybe_unused
1433has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope)
1434{
1435 /*
1436 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP
1437 * may share TLB entries with a CPU stuck in the crashed
1438 * kernel.
1439 */
Rich Wiley20109a82021-03-23 17:28:09 -07001440 if (is_kdump_kernel())
1441 return false;
1442
1443 if (cpus_have_const_cap(ARM64_WORKAROUND_NVIDIA_CARMEL_CNP))
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001444 return false;
1445
1446 return has_cpuid_feature(entry, scope);
1447}
1448
Mark Brown09e3c222019-12-09 18:12:17 +00001449/*
1450 * This check is triggered during the early boot before the cpufeature
1451 * is initialised. Checking the status on the local CPU allows the boot
1452 * CPU to detect the need for non-global mappings and thus avoiding a
1453 * pagetable re-write after all the CPUs are booted. This check will be
1454 * anyway run on individual CPUs, allowing us to get the consistent
1455 * state once the SMP CPUs are up and thus make the switch to non-global
1456 * mappings if required.
1457 */
1458bool kaslr_requires_kpti(void)
1459{
Mark Brown09e3c222019-12-09 18:12:17 +00001460 if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE))
1461 return false;
1462
1463 /*
1464 * E0PD does a similar job to KPTI so can be used instead
1465 * where available.
1466 */
1467 if (IS_ENABLED(CONFIG_ARM64_E0PD)) {
Will Deacona569f5f2020-01-15 14:06:37 +00001468 u64 mmfr2 = read_sysreg_s(SYS_ID_AA64MMFR2_EL1);
1469 if (cpuid_feature_extract_unsigned_field(mmfr2,
1470 ID_AA64MMFR2_E0PD_SHIFT))
Mark Brown09e3c222019-12-09 18:12:17 +00001471 return false;
1472 }
1473
1474 /*
1475 * Systems affected by Cavium erratum 24756 are incompatible
1476 * with KPTI.
1477 */
Will Deaconebac96e2020-01-15 13:59:58 +00001478 if (IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) {
Mark Brown09e3c222019-12-09 18:12:17 +00001479 extern const struct midr_range cavium_erratum_27456_cpus[];
1480
Will Deaconebac96e2020-01-15 13:59:58 +00001481 if (is_midr_in_range_list(read_cpuid_id(),
1482 cavium_erratum_27456_cpus))
1483 return false;
Mark Brown09e3c222019-12-09 18:12:17 +00001484 }
Mark Brown09e3c222019-12-09 18:12:17 +00001485
1486 return kaslr_offset() > 0;
1487}
1488
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001489static bool __meltdown_safe = true;
Will Deaconea1e3de2017-11-14 14:38:19 +00001490static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
1491
1492static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001493 int scope)
Will Deaconea1e3de2017-11-14 14:38:19 +00001494{
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001495 /* List of CPUs that are not vulnerable and don't need KPTI */
1496 static const struct midr_range kpti_safe_list[] = {
1497 MIDR_ALL_VERSIONS(MIDR_CAVIUM_THUNDERX2),
1498 MIDR_ALL_VERSIONS(MIDR_BRCM_VULCAN),
Florian Fainelli31d868c2020-01-06 14:54:12 -08001499 MIDR_ALL_VERSIONS(MIDR_BRAHMA_B53),
Will Deacon2a355ec2018-12-13 13:47:38 +00001500 MIDR_ALL_VERSIONS(MIDR_CORTEX_A35),
1501 MIDR_ALL_VERSIONS(MIDR_CORTEX_A53),
1502 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
1503 MIDR_ALL_VERSIONS(MIDR_CORTEX_A57),
1504 MIDR_ALL_VERSIONS(MIDR_CORTEX_A72),
1505 MIDR_ALL_VERSIONS(MIDR_CORTEX_A73),
Hanjun Guo0ecc4712019-03-05 21:40:58 +08001506 MIDR_ALL_VERSIONS(MIDR_HISI_TSV110),
Rich Wiley918e1942019-11-05 10:45:10 -08001507 MIDR_ALL_VERSIONS(MIDR_NVIDIA_CARMEL),
Konrad Dybcioe3dd11a2020-11-05 00:22:11 +01001508 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_GOLD),
1509 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_SILVER),
Sai Prakash Ranjanf4617be2020-06-24 18:04:06 +05301510 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_3XX_SILVER),
1511 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_4XX_SILVER),
Mark Rutland71c751f2018-04-23 11:41:33 +01001512 { /* sentinel */ }
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001513 };
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001514 char const *str = "kpti command line option";
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001515 bool meltdown_safe;
1516
1517 meltdown_safe = is_midr_in_range_list(read_cpuid_id(), kpti_safe_list);
1518
1519 /* Defer to CPU feature registers */
1520 if (has_cpuid_feature(entry, scope))
1521 meltdown_safe = true;
1522
1523 if (!meltdown_safe)
1524 __meltdown_safe = false;
Will Deacon179a56f2017-11-27 18:29:30 +00001525
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001526 /*
1527 * For reasons that aren't entirely clear, enabling KPTI on Cavium
1528 * ThunderX leads to apparent I-cache corruption of kernel text, which
dann frazier22b70e62021-09-23 08:50:02 -06001529 * ends as well as you might imagine. Don't even try. We cannot rely
1530 * on the cpus_have_*cap() helpers here to detect the CPU erratum
1531 * because cpucap detection order may change. However, since we know
1532 * affected CPUs are always in a homogeneous configuration, it is
1533 * safe to rely on this_cpu_has_cap() here.
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001534 */
dann frazier22b70e62021-09-23 08:50:02 -06001535 if (this_cpu_has_cap(ARM64_WORKAROUND_CAVIUM_27456)) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001536 str = "ARM64_WORKAROUND_CAVIUM_27456";
1537 __kpti_forced = -1;
1538 }
1539
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001540 /* Useful for KASLR robustness */
Mark Brownc2d92352019-12-09 18:12:15 +00001541 if (kaslr_requires_kpti()) {
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001542 if (!__kpti_forced) {
1543 str = "KASLR";
1544 __kpti_forced = 1;
1545 }
1546 }
1547
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001548 if (cpu_mitigations_off() && !__kpti_forced) {
1549 str = "mitigations=off";
1550 __kpti_forced = -1;
1551 }
1552
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001553 if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) {
1554 pr_info_once("kernel page table isolation disabled by kernel configuration\n");
1555 return false;
1556 }
1557
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001558 /* Forced? */
Will Deaconea1e3de2017-11-14 14:38:19 +00001559 if (__kpti_forced) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001560 pr_info_once("kernel page table isolation forced %s by %s\n",
1561 __kpti_forced > 0 ? "ON" : "OFF", str);
Will Deaconea1e3de2017-11-14 14:38:19 +00001562 return __kpti_forced > 0;
1563 }
1564
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001565 return !meltdown_safe;
Will Deaconea1e3de2017-11-14 14:38:19 +00001566}
1567
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001568#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Sami Tolvanencbdac842021-04-08 11:28:39 -07001569static void __nocfi
Dave Martinc0cda3b2018-03-26 15:12:28 +01001570kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
Will Deaconf992b4d2018-02-06 22:22:50 +00001571{
1572 typedef void (kpti_remap_fn)(int, int, phys_addr_t);
1573 extern kpti_remap_fn idmap_kpti_install_ng_mappings;
1574 kpti_remap_fn *remap_fn;
1575
Will Deaconf992b4d2018-02-06 22:22:50 +00001576 int cpu = smp_processor_id();
1577
Will Deaconb89d82e2019-01-08 16:19:01 +00001578 /*
1579 * We don't need to rewrite the page-tables if either we've done
1580 * it already or we have KASLR enabled and therefore have not
1581 * created any global mappings at all.
1582 */
Mark Brown09e3c222019-12-09 18:12:17 +00001583 if (arm64_use_ng_mappings)
Dave Martinc0cda3b2018-03-26 15:12:28 +01001584 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001585
Sami Tolvanenbde33972021-04-08 11:28:38 -07001586 remap_fn = (void *)__pa_symbol(function_nocfi(idmap_kpti_install_ng_mappings));
Will Deaconf992b4d2018-02-06 22:22:50 +00001587
1588 cpu_install_idmap();
1589 remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));
1590 cpu_uninstall_idmap();
1591
1592 if (!cpu)
Mark Brown09e3c222019-12-09 18:12:17 +00001593 arm64_use_ng_mappings = true;
Will Deaconf992b4d2018-02-06 22:22:50 +00001594}
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001595#else
1596static void
1597kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
1598{
1599}
1600#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
Will Deaconf992b4d2018-02-06 22:22:50 +00001601
Will Deaconea1e3de2017-11-14 14:38:19 +00001602static int __init parse_kpti(char *str)
1603{
1604 bool enabled;
1605 int ret = strtobool(str, &enabled);
1606
1607 if (ret)
1608 return ret;
1609
1610 __kpti_forced = enabled ? 1 : -1;
1611 return 0;
1612}
Will Deaconb5b7dd62018-06-22 10:25:25 +01001613early_param("kpti", parse_kpti);
Will Deaconea1e3de2017-11-14 14:38:19 +00001614
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001615#ifdef CONFIG_ARM64_HW_AFDBM
1616static inline void __cpu_enable_hw_dbm(void)
1617{
1618 u64 tcr = read_sysreg(tcr_el1) | TCR_HD;
1619
1620 write_sysreg(tcr, tcr_el1);
1621 isb();
Will Deacon80d6b462020-10-01 09:48:21 +01001622 local_flush_tlb_all();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001623}
1624
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001625static bool cpu_has_broken_dbm(void)
1626{
1627 /* List of CPUs which have broken DBM support. */
1628 static const struct midr_range cpus[] = {
1629#ifdef CONFIG_ARM64_ERRATUM_1024718
Suzuki K Poulosec0b15c22021-02-03 23:00:57 +00001630 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
Sai Prakash Ranjan9b23d952020-06-30 23:30:55 +05301631 /* Kryo4xx Silver (rdpe => r1p0) */
1632 MIDR_REV(MIDR_QCOM_KRYO_4XX_SILVER, 0xd, 0xe),
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001633#endif
1634 {},
1635 };
1636
1637 return is_midr_in_range_list(read_cpuid_id(), cpus);
1638}
1639
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001640static bool cpu_can_use_dbm(const struct arm64_cpu_capabilities *cap)
1641{
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001642 return has_cpuid_feature(cap, SCOPE_LOCAL_CPU) &&
1643 !cpu_has_broken_dbm();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001644}
1645
1646static void cpu_enable_hw_dbm(struct arm64_cpu_capabilities const *cap)
1647{
1648 if (cpu_can_use_dbm(cap))
1649 __cpu_enable_hw_dbm();
1650}
1651
1652static bool has_hw_dbm(const struct arm64_cpu_capabilities *cap,
1653 int __unused)
1654{
1655 static bool detected = false;
1656 /*
1657 * DBM is a non-conflicting feature. i.e, the kernel can safely
1658 * run a mix of CPUs with and without the feature. So, we
1659 * unconditionally enable the capability to allow any late CPU
1660 * to use the feature. We only enable the control bits on the
1661 * CPU, if it actually supports.
1662 *
1663 * We have to make sure we print the "feature" detection only
1664 * when at least one CPU actually uses it. So check if this CPU
1665 * can actually use it and print the message exactly once.
1666 *
1667 * This is safe as all CPUs (including secondary CPUs - due to the
1668 * LOCAL_CPU scope - and the hotplugged CPUs - via verification)
1669 * goes through the "matches" check exactly once. Also if a CPU
1670 * matches the criteria, it is guaranteed that the CPU will turn
1671 * the DBM on, as the capability is unconditionally enabled.
1672 */
1673 if (!detected && cpu_can_use_dbm(cap)) {
1674 detected = true;
1675 pr_info("detected: Hardware dirty bit management\n");
1676 }
1677
1678 return true;
1679}
1680
1681#endif
1682
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001683#ifdef CONFIG_ARM64_AMU_EXTN
1684
1685/*
1686 * The "amu_cpus" cpumask only signals that the CPU implementation for the
1687 * flagged CPUs supports the Activity Monitors Unit (AMU) but does not provide
1688 * information regarding all the events that it supports. When a CPU bit is
1689 * set in the cpumask, the user of this feature can only rely on the presence
1690 * of the 4 fixed counters for that CPU. But this does not guarantee that the
1691 * counters are enabled or access to these counters is enabled by code
1692 * executed at higher exception levels (firmware).
1693 */
1694static struct cpumask amu_cpus __read_mostly;
1695
1696bool cpu_has_amu_feat(int cpu)
1697{
1698 return cpumask_test_cpu(cpu, &amu_cpus);
1699}
1700
Ionela Voinescu68c5deb2020-11-06 12:53:34 +00001701int get_cpu_with_amu_feat(void)
1702{
1703 return cpumask_any(&amu_cpus);
1704}
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001705
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001706static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap)
1707{
1708 if (has_cpuid_feature(cap, SCOPE_LOCAL_CPU)) {
1709 pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n",
1710 smp_processor_id());
1711 cpumask_set_cpu(smp_processor_id(), &amu_cpus);
Ionela Voinescu4b9cf232020-11-06 12:53:32 +00001712 update_freq_counters_refs();
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001713 }
1714}
1715
1716static bool has_amu(const struct arm64_cpu_capabilities *cap,
1717 int __unused)
1718{
1719 /*
1720 * The AMU extension is a non-conflicting feature: the kernel can
1721 * safely run a mix of CPUs with and without support for the
1722 * activity monitors extension. Therefore, unconditionally enable
1723 * the capability to allow any late CPU to use the feature.
1724 *
1725 * With this feature unconditionally enabled, the cpu_enable
1726 * function will be called for all CPUs that match the criteria,
1727 * including secondary and hotplugged, marking this feature as
1728 * present on that respective CPU. The enable function will also
1729 * print a detection message.
1730 */
1731
1732 return true;
1733}
Ionela Voinescu68c5deb2020-11-06 12:53:34 +00001734#else
1735int get_cpu_with_amu_feat(void)
1736{
1737 return nr_cpu_ids;
1738}
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001739#endif
1740
Will Deacon12eb3692018-03-27 11:51:12 +01001741static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
1742{
1743 return is_kernel_in_hyp_mode();
1744}
1745
Dave Martinc0cda3b2018-03-26 15:12:28 +01001746static void cpu_copy_el2regs(const struct arm64_cpu_capabilities *__unused)
James Morse6d99b682018-01-08 15:38:06 +00001747{
1748 /*
1749 * Copy register values that aren't redirected by hardware.
1750 *
1751 * Before code patching, we only set tpidr_el1, all CPUs need to copy
1752 * this value to tpidr_el2 before we patch the code. Once we've done
1753 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
1754 * do anything here.
1755 */
Julien Thierrye9ab7a22019-01-31 14:58:52 +00001756 if (!alternative_is_applied(ARM64_HAS_VIRT_HOST_EXTN))
James Morse6d99b682018-01-08 15:38:06 +00001757 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
James Morse6d99b682018-01-08 15:38:06 +00001758}
1759
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001760static void cpu_has_fwb(const struct arm64_cpu_capabilities *__unused)
1761{
1762 u64 val = read_sysreg_s(SYS_CLIDR_EL1);
1763
1764 /* Check that CLIDR_EL1.LOU{U,IS} are both 0 */
Shaokun Zhangff85f102021-07-16 13:58:09 +08001765 WARN_ON(CLIDR_LOUU(val) || CLIDR_LOUIS(val));
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001766}
1767
Will Deaconb8925ee2018-08-07 13:53:41 +01001768#ifdef CONFIG_ARM64_PAN
1769static void cpu_enable_pan(const struct arm64_cpu_capabilities *__unused)
1770{
1771 /*
1772 * We modify PSTATE. This won't work from irq context as the PSTATE
1773 * is discarded once we return from the exception.
1774 */
1775 WARN_ON_ONCE(in_interrupt());
1776
1777 sysreg_clear_set(sctlr_el1, SCTLR_EL1_SPAN, 0);
Mark Rutland515d5c82020-11-13 12:49:22 +00001778 set_pstate_pan(1);
Will Deaconb8925ee2018-08-07 13:53:41 +01001779}
1780#endif /* CONFIG_ARM64_PAN */
1781
1782#ifdef CONFIG_ARM64_RAS_EXTN
1783static void cpu_clear_disr(const struct arm64_cpu_capabilities *__unused)
1784{
1785 /* Firmware may have left a deferred SError in this register. */
1786 write_sysreg_s(0, SYS_DISR_EL1);
1787}
1788#endif /* CONFIG_ARM64_RAS_EXTN */
1789
Mark Rutland6984eb42018-12-07 18:39:24 +00001790#ifdef CONFIG_ARM64_PTR_AUTH
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05301791static bool has_address_auth_cpucap(const struct arm64_cpu_capabilities *entry, int scope)
Mark Rutland75031972018-12-07 18:39:25 +00001792{
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05301793 int boot_val, sec_val;
1794
1795 /* We don't expect to be called with SCOPE_SYSTEM */
1796 WARN_ON(scope == SCOPE_SYSTEM);
1797 /*
1798 * The ptr-auth feature levels are not intercompatible with lower
1799 * levels. Hence we must match ptr-auth feature level of the secondary
1800 * CPUs with that of the boot CPU. The level of boot cpu is fetched
1801 * from the sanitised register whereas direct register read is done for
1802 * the secondary CPUs.
1803 * The sanitised feature state is guaranteed to match that of the
1804 * boot CPU as a mismatched secondary CPU is parked before it gets
1805 * a chance to update the state, with the capability.
1806 */
1807 boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg),
1808 entry->field_pos, entry->sign);
1809 if (scope & SCOPE_BOOT_CPU)
1810 return boot_val >= entry->min_field_value;
1811 /* Now check for the secondary CPUs with SCOPE_LOCAL_CPU scope */
1812 sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg),
1813 entry->field_pos, entry->sign);
1814 return sec_val == boot_val;
1815}
1816
1817static bool has_address_auth_metacap(const struct arm64_cpu_capabilities *entry,
1818 int scope)
1819{
1820 return has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_ARCH], scope) ||
1821 has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_IMP_DEF], scope);
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301822}
1823
1824static bool has_generic_auth(const struct arm64_cpu_capabilities *entry,
1825 int __unused)
1826{
1827 return __system_matches_cap(ARM64_HAS_GENERIC_AUTH_ARCH) ||
1828 __system_matches_cap(ARM64_HAS_GENERIC_AUTH_IMP_DEF);
Mark Rutland75031972018-12-07 18:39:25 +00001829}
Mark Rutland6984eb42018-12-07 18:39:24 +00001830#endif /* CONFIG_ARM64_PTR_AUTH */
1831
Mark Brown3e6c69a2019-12-09 18:12:14 +00001832#ifdef CONFIG_ARM64_E0PD
1833static void cpu_enable_e0pd(struct arm64_cpu_capabilities const *cap)
1834{
1835 if (this_cpu_has_cap(ARM64_HAS_E0PD))
1836 sysreg_clear_set(tcr_el1, 0, TCR_E0PD1);
1837}
1838#endif /* CONFIG_ARM64_E0PD */
1839
Julien Thierryb90d2b22019-01-31 14:58:42 +00001840#ifdef CONFIG_ARM64_PSEUDO_NMI
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001841static bool enable_pseudo_nmi;
1842
1843static int __init early_enable_pseudo_nmi(char *p)
1844{
1845 return strtobool(p, &enable_pseudo_nmi);
1846}
1847early_param("irqchip.gicv3_pseudo_nmi", early_enable_pseudo_nmi);
1848
Julien Thierryb90d2b22019-01-31 14:58:42 +00001849static bool can_use_gic_priorities(const struct arm64_cpu_capabilities *entry,
1850 int scope)
1851{
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001852 return enable_pseudo_nmi && has_useable_gicv3_cpuif(entry, scope);
Julien Thierryb90d2b22019-01-31 14:58:42 +00001853}
1854#endif
1855
Dave Martin8ef8f3602020-03-16 16:50:45 +00001856#ifdef CONFIG_ARM64_BTI
1857static void bti_enable(const struct arm64_cpu_capabilities *__unused)
1858{
1859 /*
1860 * Use of X16/X17 for tail-calls and trampolines that jump to
1861 * function entry points using BR is a requirement for
1862 * marking binaries with GNU_PROPERTY_AARCH64_FEATURE_1_BTI.
1863 * So, be strict and forbid other BRs using other registers to
1864 * jump onto a PACIxSP instruction:
1865 */
1866 sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_BT0 | SCTLR_EL1_BT1);
1867 isb();
1868}
1869#endif /* CONFIG_ARM64_BTI */
1870
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001871#ifdef CONFIG_ARM64_MTE
1872static void cpu_enable_mte(struct arm64_cpu_capabilities const *cap)
1873{
Yee Lee7a062ce2021-08-03 15:08:22 +08001874 sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_ATA | SCTLR_EL1_ATA0);
1875 isb();
1876
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001877 /*
1878 * Clear the tags in the zero page. This needs to be done via the
1879 * linear map which has the Tagged attribute.
1880 */
Catalin Marinas68d54ce2021-02-10 18:03:16 +00001881 if (!test_and_set_bit(PG_mte_tagged, &ZERO_PAGE(0)->flags))
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001882 mte_clear_page_tags(lm_alias(empty_zero_page));
Andrey Konovalov2e903b92020-12-22 12:02:10 -08001883
1884 kasan_init_hw_tags_cpu();
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001885}
1886#endif /* CONFIG_ARM64_MTE */
1887
David Brazdil3eb681f2020-12-02 18:40:58 +00001888#ifdef CONFIG_KVM
1889static bool is_kvm_protected_mode(const struct arm64_cpu_capabilities *entry, int __unused)
1890{
1891 if (kvm_get_mode() != KVM_MODE_PROTECTED)
1892 return false;
1893
1894 if (is_kernel_in_hyp_mode()) {
1895 pr_warn("Protected KVM not available with VHE\n");
1896 return false;
1897 }
1898
1899 return true;
1900}
1901#endif /* CONFIG_KVM */
1902
Amit Daniel Kachhap8c176e12020-03-13 14:34:53 +05301903/* Internal helper functions to match cpu capability type */
1904static bool
1905cpucap_late_cpu_optional(const struct arm64_cpu_capabilities *cap)
1906{
1907 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU);
1908}
1909
1910static bool
1911cpucap_late_cpu_permitted(const struct arm64_cpu_capabilities *cap)
1912{
1913 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU);
1914}
1915
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05301916static bool
1917cpucap_panic_on_conflict(const struct arm64_cpu_capabilities *cap)
1918{
1919 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT);
1920}
1921
Marc Zyngier359b7062015-03-27 13:09:23 +00001922static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +01001923 {
1924 .desc = "GIC system register CPU interface",
1925 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Julien Thierryc9bfdf72019-01-31 14:58:41 +00001926 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngier963fcd42015-09-30 11:50:04 +01001927 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001928 .sys_reg = SYS_ID_AA64PFR0_EL1,
1929 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001930 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +01001931 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +01001932 },
James Morse338d4f42015-07-22 19:05:54 +01001933#ifdef CONFIG_ARM64_PAN
1934 {
1935 .desc = "Privileged Access Never",
1936 .capability = ARM64_HAS_PAN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001937 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001938 .matches = has_cpuid_feature,
1939 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1940 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001941 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +01001942 .min_field_value = 1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001943 .cpu_enable = cpu_enable_pan,
James Morse338d4f42015-07-22 19:05:54 +01001944 },
1945#endif /* CONFIG_ARM64_PAN */
Vladimir Murzin18107f82021-03-12 17:38:10 +00001946#ifdef CONFIG_ARM64_EPAN
1947 {
1948 .desc = "Enhanced Privileged Access Never",
1949 .capability = ARM64_HAS_EPAN,
1950 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1951 .matches = has_cpuid_feature,
1952 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1953 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
1954 .sign = FTR_UNSIGNED,
1955 .min_field_value = 3,
1956 },
1957#endif /* CONFIG_ARM64_EPAN */
Catalin Marinas395af862020-01-15 11:30:08 +00001958#ifdef CONFIG_ARM64_LSE_ATOMICS
Will Deacon2e94da12015-07-27 16:23:58 +01001959 {
1960 .desc = "LSE atomic instructions",
1961 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001962 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001963 .matches = has_cpuid_feature,
1964 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1965 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001966 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +01001967 .min_field_value = 2,
1968 },
Catalin Marinas395af862020-01-15 11:30:08 +00001969#endif /* CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +00001970 {
Will Deacond5370f72016-02-02 12:46:24 +00001971 .desc = "Software prefetching using PRFM",
1972 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose5c137712018-03-26 15:12:39 +01001973 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
Will Deacond5370f72016-02-02 12:46:24 +00001974 .matches = has_no_hw_prefetch,
1975 },
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001976 {
Marc Zyngierd88701b2015-01-29 11:24:05 +00001977 .desc = "Virtualization Host Extensions",
1978 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001979 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001980 .matches = runs_at_el2,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001981 .cpu_enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001982 },
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001983 {
Will Deacon2122a832021-06-08 19:02:55 +01001984 .capability = ARM64_HAS_32BIT_EL0_DO_NOT_USE,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001985 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Will Deacon2122a832021-06-08 19:02:55 +01001986 .matches = has_32bit_el0,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001987 .sys_reg = SYS_ID_AA64PFR0_EL1,
1988 .sign = FTR_UNSIGNED,
1989 .field_pos = ID_AA64PFR0_EL0_SHIFT,
Fuad Tabba95b54c32021-08-17 09:11:28 +01001990 .min_field_value = ID_AA64PFR0_ELx_32BIT_64BIT,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001991 },
Will Deacon540f76d2020-04-21 15:29:17 +01001992#ifdef CONFIG_KVM
1993 {
1994 .desc = "32-bit EL1 Support",
1995 .capability = ARM64_HAS_32BIT_EL1,
1996 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1997 .matches = has_cpuid_feature,
1998 .sys_reg = SYS_ID_AA64PFR0_EL1,
1999 .sign = FTR_UNSIGNED,
2000 .field_pos = ID_AA64PFR0_EL1_SHIFT,
Fuad Tabba95b54c32021-08-17 09:11:28 +01002001 .min_field_value = ID_AA64PFR0_ELx_32BIT_64BIT,
Will Deacon540f76d2020-04-21 15:29:17 +01002002 },
David Brazdil3eb681f2020-12-02 18:40:58 +00002003 {
2004 .desc = "Protected KVM",
2005 .capability = ARM64_KVM_PROTECTED_MODE,
2006 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2007 .matches = is_kvm_protected_mode,
2008 },
Will Deacon540f76d2020-04-21 15:29:17 +01002009#endif
Will Deaconea1e3de2017-11-14 14:38:19 +00002010 {
Will Deacon179a56f2017-11-27 18:29:30 +00002011 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00002012 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01002013 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
2014 /*
2015 * The ID feature fields below are used to indicate that
2016 * the CPU doesn't need KPTI. See unmap_kernel_at_el0 for
2017 * more details.
2018 */
2019 .sys_reg = SYS_ID_AA64PFR0_EL1,
2020 .field_pos = ID_AA64PFR0_CSV3_SHIFT,
2021 .min_field_value = 1,
Will Deaconea1e3de2017-11-14 14:38:19 +00002022 .matches = unmap_kernel_at_el0,
Dave Martinc0cda3b2018-03-26 15:12:28 +01002023 .cpu_enable = kpti_install_ng_mappings,
Will Deaconea1e3de2017-11-14 14:38:19 +00002024 },
Suzuki K Poulose82e01912016-11-08 13:56:21 +00002025 {
2026 /* FP/SIMD is not implemented */
2027 .capability = ARM64_HAS_NO_FPSIMD,
Suzuki K Poulose449443c2020-01-13 23:30:19 +00002028 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
Suzuki K Poulose82e01912016-11-08 13:56:21 +00002029 .min_field_value = 0,
2030 .matches = has_no_fpsimd,
2031 },
Robin Murphyd50e0712017-07-25 11:55:42 +01002032#ifdef CONFIG_ARM64_PMEM
2033 {
2034 .desc = "Data cache clean to Point of Persistence",
2035 .capability = ARM64_HAS_DCPOP,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002036 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Robin Murphyd50e0712017-07-25 11:55:42 +01002037 .matches = has_cpuid_feature,
2038 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2039 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
2040 .min_field_value = 1,
2041 },
Andrew Murrayb9585f52019-04-09 10:52:45 +01002042 {
2043 .desc = "Data cache clean to Point of Deep Persistence",
2044 .capability = ARM64_HAS_DCPODP,
2045 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2046 .matches = has_cpuid_feature,
2047 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2048 .sign = FTR_UNSIGNED,
2049 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
2050 .min_field_value = 2,
2051 },
Robin Murphyd50e0712017-07-25 11:55:42 +01002052#endif
Dave Martin43994d82017-10-31 15:51:19 +00002053#ifdef CONFIG_ARM64_SVE
2054 {
2055 .desc = "Scalable Vector Extension",
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002056 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Dave Martin43994d82017-10-31 15:51:19 +00002057 .capability = ARM64_SVE,
Dave Martin43994d82017-10-31 15:51:19 +00002058 .sys_reg = SYS_ID_AA64PFR0_EL1,
2059 .sign = FTR_UNSIGNED,
2060 .field_pos = ID_AA64PFR0_SVE_SHIFT,
2061 .min_field_value = ID_AA64PFR0_SVE,
2062 .matches = has_cpuid_feature,
Dave Martinc0cda3b2018-03-26 15:12:28 +01002063 .cpu_enable = sve_kernel_enable,
Dave Martin43994d82017-10-31 15:51:19 +00002064 },
2065#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00002066#ifdef CONFIG_ARM64_RAS_EXTN
2067 {
2068 .desc = "RAS Extension Support",
2069 .capability = ARM64_HAS_RAS_EXTN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002070 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Xie XiuQi64c02722018-01-15 19:38:56 +00002071 .matches = has_cpuid_feature,
2072 .sys_reg = SYS_ID_AA64PFR0_EL1,
2073 .sign = FTR_UNSIGNED,
2074 .field_pos = ID_AA64PFR0_RAS_SHIFT,
2075 .min_field_value = ID_AA64PFR0_RAS_V1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01002076 .cpu_enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00002077 },
2078#endif /* CONFIG_ARM64_RAS_EXTN */
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00002079#ifdef CONFIG_ARM64_AMU_EXTN
2080 {
2081 /*
2082 * The feature is enabled by default if CONFIG_ARM64_AMU_EXTN=y.
2083 * Therefore, don't provide .desc as we don't want the detection
2084 * message to be shown until at least one CPU is detected to
2085 * support the feature.
2086 */
2087 .capability = ARM64_HAS_AMU_EXTN,
2088 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
2089 .matches = has_amu,
2090 .sys_reg = SYS_ID_AA64PFR0_EL1,
2091 .sign = FTR_UNSIGNED,
2092 .field_pos = ID_AA64PFR0_AMU_SHIFT,
2093 .min_field_value = ID_AA64PFR0_AMU,
2094 .cpu_enable = cpu_amu_enable,
2095 },
2096#endif /* CONFIG_ARM64_AMU_EXTN */
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002097 {
2098 .desc = "Data cache clean to the PoU not required for I/D coherence",
2099 .capability = ARM64_HAS_CACHE_IDC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002100 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002101 .matches = has_cache_idc,
Suzuki K Poulose1602df02018-10-09 14:47:06 +01002102 .cpu_enable = cpu_emulate_effective_ctr,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002103 },
2104 {
2105 .desc = "Instruction cache invalidation not required for I/D coherence",
2106 .capability = ARM64_HAS_CACHE_DIC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002107 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002108 .matches = has_cache_dic,
2109 },
Marc Zyngiere48d53a2018-04-06 12:27:28 +01002110 {
2111 .desc = "Stage-2 Force Write-Back",
2112 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2113 .capability = ARM64_HAS_STAGE2_FWB,
2114 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2115 .sign = FTR_UNSIGNED,
2116 .field_pos = ID_AA64MMFR2_FWB_SHIFT,
2117 .min_field_value = 1,
2118 .matches = has_cpuid_feature,
2119 .cpu_enable = cpu_has_fwb,
2120 },
Marc Zyngier552ae762018-12-22 12:00:10 +00002121 {
2122 .desc = "ARMv8.4 Translation Table Level",
2123 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2124 .capability = ARM64_HAS_ARMv8_4_TTL,
2125 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2126 .sign = FTR_UNSIGNED,
2127 .field_pos = ID_AA64MMFR2_TTL_SHIFT,
2128 .min_field_value = 1,
2129 .matches = has_cpuid_feature,
2130 },
Zhenyu Yeb620ba52020-07-15 15:19:43 +08002131 {
2132 .desc = "TLB range maintenance instructions",
2133 .capability = ARM64_HAS_TLB_RANGE,
2134 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2135 .matches = has_cpuid_feature,
2136 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2137 .field_pos = ID_AA64ISAR0_TLB_SHIFT,
2138 .sign = FTR_UNSIGNED,
2139 .min_field_value = ID_AA64ISAR0_TLB_RANGE,
2140 },
Suzuki K Poulose05abb592018-03-26 15:12:48 +01002141#ifdef CONFIG_ARM64_HW_AFDBM
2142 {
2143 /*
2144 * Since we turn this on always, we don't want the user to
2145 * think that the feature is available when it may not be.
2146 * So hide the description.
2147 *
2148 * .desc = "Hardware pagetable Dirty Bit Management",
2149 *
2150 */
2151 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
2152 .capability = ARM64_HW_DBM,
2153 .sys_reg = SYS_ID_AA64MMFR1_EL1,
2154 .sign = FTR_UNSIGNED,
2155 .field_pos = ID_AA64MMFR1_HADBS_SHIFT,
2156 .min_field_value = 2,
2157 .matches = has_hw_dbm,
2158 .cpu_enable = cpu_enable_hw_dbm,
2159 },
2160#endif
Ard Biesheuvel86d0dd32018-08-27 13:02:43 +02002161 {
2162 .desc = "CRC32 instructions",
2163 .capability = ARM64_HAS_CRC32,
2164 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2165 .matches = has_cpuid_feature,
2166 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2167 .field_pos = ID_AA64ISAR0_CRC32_SHIFT,
2168 .min_field_value = 1,
2169 },
Will Deacond71be2b2018-06-15 11:37:34 +01002170 {
2171 .desc = "Speculative Store Bypassing Safe (SSBS)",
2172 .capability = ARM64_SSBS,
Will Deacon532d5812020-09-15 23:56:12 +01002173 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Will Deacond71be2b2018-06-15 11:37:34 +01002174 .matches = has_cpuid_feature,
2175 .sys_reg = SYS_ID_AA64PFR1_EL1,
2176 .field_pos = ID_AA64PFR1_SSBS_SHIFT,
2177 .sign = FTR_UNSIGNED,
2178 .min_field_value = ID_AA64PFR1_SSBS_PSTATE_ONLY,
2179 },
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002180#ifdef CONFIG_ARM64_CNP
2181 {
2182 .desc = "Common not Private translations",
2183 .capability = ARM64_HAS_CNP,
2184 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2185 .matches = has_useable_cnp,
2186 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2187 .sign = FTR_UNSIGNED,
2188 .field_pos = ID_AA64MMFR2_CNP_SHIFT,
2189 .min_field_value = 1,
2190 .cpu_enable = cpu_enable_cnp,
2191 },
2192#endif
Will Deaconbd4fb6d2018-06-14 11:21:34 +01002193 {
2194 .desc = "Speculation barrier (SB)",
2195 .capability = ARM64_HAS_SB,
2196 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2197 .matches = has_cpuid_feature,
2198 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2199 .field_pos = ID_AA64ISAR1_SB_SHIFT,
2200 .sign = FTR_UNSIGNED,
2201 .min_field_value = 1,
2202 },
Mark Rutland6984eb42018-12-07 18:39:24 +00002203#ifdef CONFIG_ARM64_PTR_AUTH
2204 {
2205 .desc = "Address authentication (architected algorithm)",
2206 .capability = ARM64_HAS_ADDRESS_AUTH_ARCH,
Kristina Martsenko69829342020-03-13 14:34:55 +05302207 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00002208 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2209 .sign = FTR_UNSIGNED,
2210 .field_pos = ID_AA64ISAR1_APA_SHIFT,
2211 .min_field_value = ID_AA64ISAR1_APA_ARCHITECTED,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302212 .matches = has_address_auth_cpucap,
Mark Rutland6984eb42018-12-07 18:39:24 +00002213 },
2214 {
2215 .desc = "Address authentication (IMP DEF algorithm)",
2216 .capability = ARM64_HAS_ADDRESS_AUTH_IMP_DEF,
Kristina Martsenko69829342020-03-13 14:34:55 +05302217 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00002218 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2219 .sign = FTR_UNSIGNED,
2220 .field_pos = ID_AA64ISAR1_API_SHIFT,
2221 .min_field_value = ID_AA64ISAR1_API_IMP_DEF,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302222 .matches = has_address_auth_cpucap,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05302223 },
2224 {
2225 .capability = ARM64_HAS_ADDRESS_AUTH,
Kristina Martsenko69829342020-03-13 14:34:55 +05302226 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302227 .matches = has_address_auth_metacap,
Mark Rutland6984eb42018-12-07 18:39:24 +00002228 },
2229 {
2230 .desc = "Generic authentication (architected algorithm)",
2231 .capability = ARM64_HAS_GENERIC_AUTH_ARCH,
2232 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2233 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2234 .sign = FTR_UNSIGNED,
2235 .field_pos = ID_AA64ISAR1_GPA_SHIFT,
2236 .min_field_value = ID_AA64ISAR1_GPA_ARCHITECTED,
2237 .matches = has_cpuid_feature,
2238 },
2239 {
2240 .desc = "Generic authentication (IMP DEF algorithm)",
2241 .capability = ARM64_HAS_GENERIC_AUTH_IMP_DEF,
2242 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2243 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2244 .sign = FTR_UNSIGNED,
2245 .field_pos = ID_AA64ISAR1_GPI_SHIFT,
2246 .min_field_value = ID_AA64ISAR1_GPI_IMP_DEF,
2247 .matches = has_cpuid_feature,
2248 },
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05302249 {
2250 .capability = ARM64_HAS_GENERIC_AUTH,
2251 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2252 .matches = has_generic_auth,
2253 },
Mark Rutland6984eb42018-12-07 18:39:24 +00002254#endif /* CONFIG_ARM64_PTR_AUTH */
Julien Thierryb90d2b22019-01-31 14:58:42 +00002255#ifdef CONFIG_ARM64_PSEUDO_NMI
2256 {
2257 /*
2258 * Depends on having GICv3
2259 */
2260 .desc = "IRQ priority masking",
2261 .capability = ARM64_HAS_IRQ_PRIO_MASKING,
2262 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2263 .matches = can_use_gic_priorities,
2264 .sys_reg = SYS_ID_AA64PFR0_EL1,
2265 .field_pos = ID_AA64PFR0_GIC_SHIFT,
2266 .sign = FTR_UNSIGNED,
2267 .min_field_value = 1,
2268 },
2269#endif
Mark Brown3e6c69a2019-12-09 18:12:14 +00002270#ifdef CONFIG_ARM64_E0PD
2271 {
2272 .desc = "E0PD",
2273 .capability = ARM64_HAS_E0PD,
2274 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2275 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2276 .sign = FTR_UNSIGNED,
2277 .field_pos = ID_AA64MMFR2_E0PD_SHIFT,
2278 .matches = has_cpuid_feature,
2279 .min_field_value = 1,
2280 .cpu_enable = cpu_enable_e0pd,
2281 },
2282#endif
Richard Henderson1a50ec02020-01-21 12:58:52 +00002283#ifdef CONFIG_ARCH_RANDOM
2284 {
2285 .desc = "Random Number Generator",
2286 .capability = ARM64_HAS_RNG,
2287 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2288 .matches = has_cpuid_feature,
2289 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2290 .field_pos = ID_AA64ISAR0_RNDR_SHIFT,
2291 .sign = FTR_UNSIGNED,
2292 .min_field_value = 1,
2293 },
2294#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002295#ifdef CONFIG_ARM64_BTI
2296 {
2297 .desc = "Branch Target Identification",
2298 .capability = ARM64_BTI,
Mark Brownc8027282020-05-06 20:51:31 +01002299#ifdef CONFIG_ARM64_BTI_KERNEL
2300 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2301#else
Dave Martin8ef8f3602020-03-16 16:50:45 +00002302 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Mark Brownc8027282020-05-06 20:51:31 +01002303#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002304 .matches = has_cpuid_feature,
2305 .cpu_enable = bti_enable,
2306 .sys_reg = SYS_ID_AA64PFR1_EL1,
2307 .field_pos = ID_AA64PFR1_BT_SHIFT,
2308 .min_field_value = ID_AA64PFR1_BT_BTI,
2309 .sign = FTR_UNSIGNED,
2310 },
2311#endif
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002312#ifdef CONFIG_ARM64_MTE
2313 {
2314 .desc = "Memory Tagging Extension",
2315 .capability = ARM64_MTE,
2316 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2317 .matches = has_cpuid_feature,
2318 .sys_reg = SYS_ID_AA64PFR1_EL1,
2319 .field_pos = ID_AA64PFR1_MTE_SHIFT,
2320 .min_field_value = ID_AA64PFR1_MTE,
2321 .sign = FTR_UNSIGNED,
Catalin Marinas34bfeea2020-05-04 14:42:36 +01002322 .cpu_enable = cpu_enable_mte,
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002323 },
Vincenzo Frascinod73c1622021-10-06 16:47:49 +01002324 {
2325 .desc = "Asymmetric MTE Tag Check Fault",
2326 .capability = ARM64_MTE_ASYMM,
2327 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
2328 .matches = has_cpuid_feature,
2329 .sys_reg = SYS_ID_AA64PFR1_EL1,
2330 .field_pos = ID_AA64PFR1_MTE_SHIFT,
2331 .min_field_value = ID_AA64PFR1_MTE_ASYMM,
2332 .sign = FTR_UNSIGNED,
2333 },
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002334#endif /* CONFIG_ARM64_MTE */
Will Deacon364a5a82020-06-30 14:02:22 +01002335 {
2336 .desc = "RCpc load-acquire (LDAPR)",
2337 .capability = ARM64_HAS_LDAPR,
2338 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2339 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2340 .sign = FTR_UNSIGNED,
2341 .field_pos = ID_AA64ISAR1_LRCPC_SHIFT,
2342 .matches = has_cpuid_feature,
2343 .min_field_value = 1,
2344 },
Marc Zyngier359b7062015-03-27 13:09:23 +00002345 {},
2346};
2347
Will Deacon1e013d02018-12-12 15:53:54 +00002348#define HWCAP_CPUID_MATCH(reg, field, s, min_value) \
2349 .matches = has_cpuid_feature, \
2350 .sys_reg = reg, \
2351 .field_pos = field, \
2352 .sign = s, \
2353 .min_field_value = min_value,
2354
2355#define __HWCAP_CAP(name, cap_type, cap) \
2356 .desc = name, \
2357 .type = ARM64_CPUCAP_SYSTEM_FEATURE, \
2358 .hwcap_type = cap_type, \
2359 .hwcap = cap, \
2360
2361#define HWCAP_CAP(reg, field, s, min_value, cap_type, cap) \
2362 { \
2363 __HWCAP_CAP(#cap, cap_type, cap) \
2364 HWCAP_CPUID_MATCH(reg, field, s, min_value) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002365 }
2366
Will Deacon1e013d02018-12-12 15:53:54 +00002367#define HWCAP_MULTI_CAP(list, cap_type, cap) \
2368 { \
2369 __HWCAP_CAP(#cap, cap_type, cap) \
2370 .matches = cpucap_multi_entry_cap_matches, \
2371 .match_list = list, \
2372 }
2373
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002374#define HWCAP_CAP_MATCH(match, cap_type, cap) \
2375 { \
2376 __HWCAP_CAP(#cap, cap_type, cap) \
2377 .matches = match, \
2378 }
2379
Will Deacon1e013d02018-12-12 15:53:54 +00002380#ifdef CONFIG_ARM64_PTR_AUTH
2381static const struct arm64_cpu_capabilities ptr_auth_hwcap_addr_matches[] = {
2382 {
2383 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_APA_SHIFT,
2384 FTR_UNSIGNED, ID_AA64ISAR1_APA_ARCHITECTED)
2385 },
2386 {
2387 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_API_SHIFT,
2388 FTR_UNSIGNED, ID_AA64ISAR1_API_IMP_DEF)
2389 },
2390 {},
2391};
2392
2393static const struct arm64_cpu_capabilities ptr_auth_hwcap_gen_matches[] = {
2394 {
2395 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPA_SHIFT,
2396 FTR_UNSIGNED, ID_AA64ISAR1_GPA_ARCHITECTED)
2397 },
2398 {
2399 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPI_SHIFT,
2400 FTR_UNSIGNED, ID_AA64ISAR1_GPI_IMP_DEF)
2401 },
2402 {},
2403};
2404#endif
2405
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002406static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Andrew Murrayaaba0982019-04-09 10:52:40 +01002407 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_PMULL),
2408 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_AES),
2409 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA1),
2410 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA2),
2411 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_SHA512),
2412 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_CRC32),
2413 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ATOMICS),
2414 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDRDM),
2415 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA3),
2416 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM3),
2417 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM4),
2418 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDDP),
2419 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDFHM),
2420 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_TS_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FLAGM),
Mark Brown12019372019-06-18 19:10:54 +01002421 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_TS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_FLAGM2),
Richard Henderson1a50ec02020-01-21 12:58:52 +00002422 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RNDR_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_RNG),
Andrew Murrayaaba0982019-04-09 10:52:40 +01002423 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_FP),
2424 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP),
2425 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD),
2426 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP),
2427 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_DIT_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT),
2428 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DCPOP),
Andrew Murray671db582019-04-09 10:52:43 +01002429 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_DCPODP),
Andrew Murrayaaba0982019-04-09 10:52:40 +01002430 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT),
2431 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FCMA),
2432 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_LRCPC),
2433 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ILRCPC),
Mark Brownca9503f2019-06-18 19:10:55 +01002434 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FRINTTS_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FRINT),
Andrew Murrayaaba0982019-04-09 10:52:40 +01002435 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_SB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SB),
Steven Priced4209d82019-12-16 11:33:37 +00002436 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_BF16_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_BF16),
2437 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DGH_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DGH),
2438 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_I8MM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_I8MM),
Andrew Murrayaaba0982019-04-09 10:52:40 +01002439 HWCAP_CAP(SYS_ID_AA64MMFR2_EL1, ID_AA64MMFR2_AT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_USCAT),
Dave Martin43994d82017-10-31 15:51:19 +00002440#ifdef CONFIG_ARM64_SVE
Andrew Murrayaaba0982019-04-09 10:52:40 +01002441 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_SVE_SHIFT, FTR_UNSIGNED, ID_AA64PFR0_SVE, CAP_HWCAP, KERNEL_HWCAP_SVE),
Dave Martin06a916f2019-04-18 18:41:38 +01002442 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SVEVER_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SVEVER_SVE2, CAP_HWCAP, KERNEL_HWCAP_SVE2),
2443 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES, CAP_HWCAP, KERNEL_HWCAP_SVEAES),
2444 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES_PMULL, CAP_HWCAP, KERNEL_HWCAP_SVEPMULL),
2445 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_BITPERM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_BITPERM, CAP_HWCAP, KERNEL_HWCAP_SVEBITPERM),
Steven Priced4209d82019-12-16 11:33:37 +00002446 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_BF16_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_BF16, CAP_HWCAP, KERNEL_HWCAP_SVEBF16),
Dave Martin06a916f2019-04-18 18:41:38 +01002447 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SHA3_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SHA3, CAP_HWCAP, KERNEL_HWCAP_SVESHA3),
2448 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SM4_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SM4, CAP_HWCAP, KERNEL_HWCAP_SVESM4),
Steven Priced4209d82019-12-16 11:33:37 +00002449 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_I8MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_I8MM, CAP_HWCAP, KERNEL_HWCAP_SVEI8MM),
2450 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F32MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F32MM, CAP_HWCAP, KERNEL_HWCAP_SVEF32MM),
2451 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F64MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F64MM, CAP_HWCAP, KERNEL_HWCAP_SVEF64MM),
Dave Martin43994d82017-10-31 15:51:19 +00002452#endif
Andrew Murrayaaba0982019-04-09 10:52:40 +01002453 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_SSBS_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_SSBS_PSTATE_INSNS, CAP_HWCAP, KERNEL_HWCAP_SSBS),
Dave Martin8ef8f3602020-03-16 16:50:45 +00002454#ifdef CONFIG_ARM64_BTI
2455 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_BT_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_BT_BTI, CAP_HWCAP, KERNEL_HWCAP_BTI),
2456#endif
Mark Rutland75031972018-12-07 18:39:25 +00002457#ifdef CONFIG_ARM64_PTR_AUTH
Andrew Murrayaaba0982019-04-09 10:52:40 +01002458 HWCAP_MULTI_CAP(ptr_auth_hwcap_addr_matches, CAP_HWCAP, KERNEL_HWCAP_PACA),
2459 HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG),
Mark Rutland75031972018-12-07 18:39:25 +00002460#endif
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002461#ifdef CONFIG_ARM64_MTE
2462 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_MTE_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_MTE, CAP_HWCAP, KERNEL_HWCAP_MTE),
2463#endif /* CONFIG_ARM64_MTE */
Suzuki K Poulose75283502016-04-18 10:28:33 +01002464 {},
2465};
2466
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002467#ifdef CONFIG_COMPAT
2468static bool compat_has_neon(const struct arm64_cpu_capabilities *cap, int scope)
2469{
2470 /*
2471 * Check that all of MVFR1_EL1.{SIMDSP, SIMDInt, SIMDLS} are available,
2472 * in line with that of arm32 as in vfp_init(). We make sure that the
2473 * check is future proof, by making sure value is non-zero.
2474 */
2475 u32 mvfr1;
2476
2477 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
2478 if (scope == SCOPE_SYSTEM)
2479 mvfr1 = read_sanitised_ftr_reg(SYS_MVFR1_EL1);
2480 else
2481 mvfr1 = read_sysreg_s(SYS_MVFR1_EL1);
2482
2483 return cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDSP_SHIFT) &&
2484 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDINT_SHIFT) &&
2485 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDLS_SHIFT);
2486}
2487#endif
2488
Suzuki K Poulose75283502016-04-18 10:28:33 +01002489static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002490#ifdef CONFIG_COMPAT
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002491 HWCAP_CAP_MATCH(compat_has_neon, CAP_COMPAT_HWCAP, COMPAT_HWCAP_NEON),
2492 HWCAP_CAP(SYS_MVFR1_EL1, MVFR1_SIMDFMAC_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv4),
2493 /* Arm v8 mandates MVFR0.FPDP == {0, 2}. So, piggy back on this for the presence of VFP support */
2494 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFP),
2495 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv3),
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00002496 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
2497 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
2498 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
2499 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
2500 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_CRC32),
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002501#endif
2502 {},
2503};
2504
Will Deacon2122a832021-06-08 19:02:55 +01002505static void cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002506{
2507 switch (cap->hwcap_type) {
2508 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002509 cpu_set_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002510 break;
2511#ifdef CONFIG_COMPAT
2512 case CAP_COMPAT_HWCAP:
2513 compat_elf_hwcap |= (u32)cap->hwcap;
2514 break;
2515 case CAP_COMPAT_HWCAP2:
2516 compat_elf_hwcap2 |= (u32)cap->hwcap;
2517 break;
2518#endif
2519 default:
2520 WARN_ON(1);
2521 break;
2522 }
2523}
2524
2525/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002526static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002527{
2528 bool rc;
2529
2530 switch (cap->hwcap_type) {
2531 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002532 rc = cpu_have_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002533 break;
2534#ifdef CONFIG_COMPAT
2535 case CAP_COMPAT_HWCAP:
2536 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
2537 break;
2538 case CAP_COMPAT_HWCAP2:
2539 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
2540 break;
2541#endif
2542 default:
2543 WARN_ON(1);
2544 rc = false;
2545 }
2546
2547 return rc;
2548}
2549
Will Deacon2122a832021-06-08 19:02:55 +01002550static void setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002551{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002552 /* We support emulation of accesses to CPU ID feature registers */
Andrew Murrayaaba0982019-04-09 10:52:40 +01002553 cpu_set_named_feature(CPUID);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002554 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose143ba052018-03-26 15:12:31 +01002555 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps)))
Suzuki K Poulose75283502016-04-18 10:28:33 +01002556 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002557}
2558
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002559static void update_cpu_capabilities(u16 scope_mask)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002560{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002561 int i;
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002562 const struct arm64_cpu_capabilities *caps;
2563
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002564 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002565 for (i = 0; i < ARM64_NCAPS; i++) {
2566 caps = cpu_hwcaps_ptrs[i];
2567 if (!caps || !(caps->type & scope_mask) ||
2568 cpus_have_cap(caps->capability) ||
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002569 !caps->matches(caps, cpucap_default_scope(caps)))
Marc Zyngier359b7062015-03-27 13:09:23 +00002570 continue;
2571
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002572 if (caps->desc)
2573 pr_info("detected: %s\n", caps->desc);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002574 cpus_set_cap(caps->capability);
Daniel Thompson0ceb0d52019-01-31 14:58:53 +00002575
2576 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU))
2577 set_bit(caps->capability, boot_capabilities);
Marc Zyngier359b7062015-03-27 13:09:23 +00002578 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002579}
James Morse1c076302015-07-21 13:23:28 +01002580
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002581/*
2582 * Enable all the available capabilities on this CPU. The capabilities
2583 * with BOOT_CPU scope are handled separately and hence skipped here.
2584 */
2585static int cpu_enable_non_boot_scope_capabilities(void *__unused)
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002586{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002587 int i;
2588 u16 non_boot_scope = SCOPE_ALL & ~SCOPE_BOOT_CPU;
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002589
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002590 for_each_available_cap(i) {
2591 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[i];
Dave Martinc0cda3b2018-03-26 15:12:28 +01002592
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002593 if (WARN_ON(!cap))
2594 continue;
2595
2596 if (!(cap->type & non_boot_scope))
2597 continue;
2598
2599 if (cap->cpu_enable)
2600 cap->cpu_enable(cap);
2601 }
Dave Martinc0cda3b2018-03-26 15:12:28 +01002602 return 0;
2603}
2604
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002605/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002606 * Run through the enabled capabilities and enable() it on all active
2607 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002608 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002609static void __init enable_cpu_capabilities(u16 scope_mask)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002610{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002611 int i;
2612 const struct arm64_cpu_capabilities *caps;
2613 bool boot_scope;
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002614
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002615 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2616 boot_scope = !!(scope_mask & SCOPE_BOOT_CPU);
2617
2618 for (i = 0; i < ARM64_NCAPS; i++) {
2619 unsigned int num;
2620
2621 caps = cpu_hwcaps_ptrs[i];
2622 if (!caps || !(caps->type & scope_mask))
2623 continue;
2624 num = caps->capability;
2625 if (!cpus_have_cap(num))
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002626 continue;
2627
2628 /* Ensure cpus_have_const_cap(num) works */
2629 static_branch_enable(&cpu_hwcap_keys[num]);
2630
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002631 if (boot_scope && caps->cpu_enable)
James Morse2a6dcb22016-10-18 11:27:46 +01002632 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002633 * Capabilities with SCOPE_BOOT_CPU scope are finalised
2634 * before any secondary CPU boots. Thus, each secondary
2635 * will enable the capability as appropriate via
2636 * check_local_cpu_capabilities(). The only exception is
2637 * the boot CPU, for which the capability must be
2638 * enabled here. This approach avoids costly
2639 * stop_machine() calls for this case.
James Morse2a6dcb22016-10-18 11:27:46 +01002640 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002641 caps->cpu_enable(caps);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002642 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002643
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002644 /*
2645 * For all non-boot scope capabilities, use stop_machine()
2646 * as it schedules the work allowing us to modify PSTATE,
2647 * instead of on_each_cpu() which uses an IPI, giving us a
2648 * PSTATE that disappears when we return.
2649 */
2650 if (!boot_scope)
2651 stop_machine(cpu_enable_non_boot_scope_capabilities,
2652 NULL, cpu_online_mask);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002653}
2654
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002655/*
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002656 * Run through the list of capabilities to check for conflicts.
2657 * If the system has already detected a capability, take necessary
2658 * action on this CPU.
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002659 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302660static void verify_local_cpu_caps(u16 scope_mask)
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002661{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002662 int i;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002663 bool cpu_has_cap, system_has_cap;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002664 const struct arm64_cpu_capabilities *caps;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002665
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002666 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2667
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002668 for (i = 0; i < ARM64_NCAPS; i++) {
2669 caps = cpu_hwcaps_ptrs[i];
2670 if (!caps || !(caps->type & scope_mask))
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002671 continue;
2672
Suzuki K Pouloseba7d9232018-03-26 15:12:46 +01002673 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002674 system_has_cap = cpus_have_cap(caps->capability);
2675
2676 if (system_has_cap) {
2677 /*
2678 * Check if the new CPU misses an advertised feature,
2679 * which is not safe to miss.
2680 */
2681 if (!cpu_has_cap && !cpucap_late_cpu_optional(caps))
2682 break;
2683 /*
2684 * We have to issue cpu_enable() irrespective of
2685 * whether the CPU has it or not, as it is enabeld
2686 * system wide. It is upto the call back to take
2687 * appropriate action on this CPU.
2688 */
2689 if (caps->cpu_enable)
2690 caps->cpu_enable(caps);
2691 } else {
2692 /*
2693 * Check if the CPU has this capability if it isn't
2694 * safe to have when the system doesn't.
2695 */
2696 if (cpu_has_cap && !cpucap_late_cpu_permitted(caps))
2697 break;
2698 }
2699 }
2700
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002701 if (i < ARM64_NCAPS) {
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002702 pr_crit("CPU%d: Detected conflict for capability %d (%s), System: %d, CPU: %d\n",
2703 smp_processor_id(), caps->capability,
2704 caps->desc, system_has_cap, cpu_has_cap);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002705
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302706 if (cpucap_panic_on_conflict(caps))
2707 cpu_panic_kernel();
2708 else
2709 cpu_die_early();
2710 }
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002711}
2712
2713/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002714 * Check for CPU features that are used in early boot
2715 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002716 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002717static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00002718{
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002719 verify_cpu_asid_bits();
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302720
2721 verify_local_cpu_caps(SCOPE_BOOT_CPU);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002722}
2723
Suzuki K Poulose75283502016-04-18 10:28:33 +01002724static void
Will Deacon2122a832021-06-08 19:02:55 +01002725__verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
Suzuki K Poulose75283502016-04-18 10:28:33 +01002726{
2727
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002728 for (; caps->matches; caps++)
2729 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01002730 pr_crit("CPU%d: missing HWCAP: %s\n",
2731 smp_processor_id(), caps->desc);
2732 cpu_die_early();
2733 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01002734}
2735
Will Deacon2122a832021-06-08 19:02:55 +01002736static void verify_local_elf_hwcaps(void)
2737{
2738 __verify_local_elf_hwcaps(arm64_elf_hwcaps);
2739
2740 if (id_aa64pfr0_32bit_el0(read_cpuid(ID_AA64PFR0_EL1)))
2741 __verify_local_elf_hwcaps(compat_elf_hwcaps);
2742}
2743
Dave Martin2e0f2472017-10-31 15:51:10 +00002744static void verify_sve_features(void)
2745{
2746 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
2747 u64 zcr = read_zcr_features();
2748
2749 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
2750 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
2751
2752 if (len < safe_len || sve_verify_vq_map()) {
Dave Martind06b76b2018-09-28 14:39:10 +01002753 pr_crit("CPU%d: SVE: vector length support mismatch\n",
Dave Martin2e0f2472017-10-31 15:51:10 +00002754 smp_processor_id());
2755 cpu_die_early();
2756 }
2757
2758 /* Add checks on other ZCR bits here if necessary */
2759}
2760
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302761static void verify_hyp_capabilities(void)
2762{
2763 u64 safe_mmfr1, mmfr0, mmfr1;
2764 int parange, ipa_max;
2765 unsigned int safe_vmid_bits, vmid_bits;
2766
Shannon Zhao45ba7b12021-01-04 19:38:44 +08002767 if (!IS_ENABLED(CONFIG_KVM))
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302768 return;
2769
2770 safe_mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
2771 mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
2772 mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
2773
2774 /* Verify VMID bits */
2775 safe_vmid_bits = get_vmid_bits(safe_mmfr1);
2776 vmid_bits = get_vmid_bits(mmfr1);
2777 if (vmid_bits < safe_vmid_bits) {
2778 pr_crit("CPU%d: VMID width mismatch\n", smp_processor_id());
2779 cpu_die_early();
2780 }
2781
2782 /* Verify IPA range */
Anshuman Khandualf73531f2020-05-13 14:33:34 +05302783 parange = cpuid_feature_extract_unsigned_field(mmfr0,
2784 ID_AA64MMFR0_PARANGE_SHIFT);
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302785 ipa_max = id_aa64mmfr0_parange_to_phys_shift(parange);
2786 if (ipa_max < get_kvm_ipa_limit()) {
2787 pr_crit("CPU%d: IPA range mismatch\n", smp_processor_id());
2788 cpu_die_early();
2789 }
2790}
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +01002791
2792/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002793 * Run through the enabled system capabilities and enable() it on this CPU.
2794 * The capabilities were decided based on the available CPUs at the boot time.
2795 * Any new CPU should match the system wide status of the capability. If the
2796 * new CPU doesn't have a capability which the system now has enabled, we
2797 * cannot do anything to fix it up and could cause unexpected failures. So
2798 * we park the CPU.
2799 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002800static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002801{
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002802 /*
2803 * The capabilities with SCOPE_BOOT_CPU are checked from
2804 * check_early_cpu_features(), as they need to be verified
2805 * on all secondary CPUs.
2806 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302807 verify_local_cpu_caps(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Will Deacon2122a832021-06-08 19:02:55 +01002808 verify_local_elf_hwcaps();
Dave Martin2e0f2472017-10-31 15:51:10 +00002809
2810 if (system_supports_sve())
2811 verify_sve_features();
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302812
2813 if (is_hyp_mode_available())
2814 verify_hyp_capabilities();
Marc Zyngier359b7062015-03-27 13:09:23 +00002815}
2816
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002817void check_local_cpu_capabilities(void)
2818{
2819 /*
2820 * All secondary CPUs should conform to the early CPU features
2821 * in use by the kernel based on boot CPU.
2822 */
2823 check_early_cpu_features();
2824
2825 /*
2826 * If we haven't finalised the system capabilities, this CPU gets
Suzuki K Poulosefbd890b2018-03-26 15:12:37 +01002827 * a chance to update the errata work arounds and local features.
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002828 * Otherwise, this CPU should verify that it has all the system
2829 * advertised capabilities.
2830 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002831 if (!system_capabilities_finalized())
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002832 update_cpu_capabilities(SCOPE_LOCAL_CPU);
2833 else
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002834 verify_local_cpu_capabilities();
2835}
2836
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002837static void __init setup_boot_cpu_capabilities(void)
2838{
2839 /* Detect capabilities with either SCOPE_BOOT_CPU or SCOPE_LOCAL_CPU */
2840 update_cpu_capabilities(SCOPE_BOOT_CPU | SCOPE_LOCAL_CPU);
2841 /* Enable the SCOPE_BOOT_CPU capabilities alone right away */
2842 enable_cpu_capabilities(SCOPE_BOOT_CPU);
2843}
2844
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002845bool this_cpu_has_cap(unsigned int n)
Marc Zyngier8f4137582017-01-30 15:39:52 +00002846{
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002847 if (!WARN_ON(preemptible()) && n < ARM64_NCAPS) {
2848 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2849
2850 if (cap)
2851 return cap->matches(cap, SCOPE_LOCAL_CPU);
2852 }
2853
2854 return false;
Marc Zyngier8f4137582017-01-30 15:39:52 +00002855}
2856
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302857/*
2858 * This helper function is used in a narrow window when,
2859 * - The system wide safe registers are set with all the SMP CPUs and,
2860 * - The SYSTEM_FEATURE cpu_hwcaps may not have been set.
2861 * In all other cases cpus_have_{const_}cap() should be used.
2862 */
Mark Rutland701f49062020-12-03 15:24:03 +00002863static bool __maybe_unused __system_matches_cap(unsigned int n)
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302864{
2865 if (n < ARM64_NCAPS) {
2866 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2867
2868 if (cap)
2869 return cap->matches(cap, SCOPE_SYSTEM);
2870 }
2871 return false;
2872}
2873
Andrew Murrayaec0bff2019-04-09 10:52:41 +01002874void cpu_set_feature(unsigned int num)
2875{
2876 WARN_ON(num >= MAX_CPU_FEATURES);
2877 elf_hwcap |= BIT(num);
2878}
2879EXPORT_SYMBOL_GPL(cpu_set_feature);
2880
2881bool cpu_have_feature(unsigned int num)
2882{
2883 WARN_ON(num >= MAX_CPU_FEATURES);
2884 return elf_hwcap & BIT(num);
2885}
2886EXPORT_SYMBOL_GPL(cpu_have_feature);
2887
2888unsigned long cpu_get_elf_hwcap(void)
2889{
2890 /*
2891 * We currently only populate the first 32 bits of AT_HWCAP. Please
2892 * note that for userspace compatibility we guarantee that bits 62
2893 * and 63 will always be returned as 0.
2894 */
2895 return lower_32_bits(elf_hwcap);
2896}
2897
2898unsigned long cpu_get_elf_hwcap2(void)
2899{
2900 return upper_32_bits(elf_hwcap);
2901}
2902
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002903static void __init setup_system_capabilities(void)
2904{
2905 /*
2906 * We have finalised the system-wide safe feature
2907 * registers, finalise the capabilities that depend
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002908 * on it. Also enable all the available capabilities,
2909 * that are not enabled already.
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002910 */
2911 update_cpu_capabilities(SCOPE_SYSTEM);
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002912 enable_cpu_capabilities(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002913}
2914
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002915void __init setup_cpu_features(void)
2916{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002917 u32 cwg;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002918
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002919 setup_system_capabilities();
Suzuki K Poulose75283502016-04-18 10:28:33 +01002920 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002921
2922 if (system_supports_32bit_el0())
2923 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002924
Kees Cook2e6f5492018-02-21 10:18:21 -08002925 if (system_uses_ttbr0_pan())
2926 pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
2927
Dave Martin2e0f2472017-10-31 15:51:10 +00002928 sve_setup();
Dave Martin94b07c12018-06-01 11:10:14 +01002929 minsigstksz_setup();
Dave Martin2e0f2472017-10-31 15:51:10 +00002930
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002931 /* Advertise that we have computed the system capabilities */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002932 finalize_system_capabilities();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002933
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002934 /*
2935 * Check for sane CTR_EL0.CWG value.
2936 */
2937 cwg = cache_type_cwg();
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002938 if (!cwg)
Catalin Marinasebc7e212018-05-11 13:33:12 +01002939 pr_warn("No Cache Writeback Granule information, assuming %d\n",
2940 ARCH_DMA_MINALIGN);
Marc Zyngier359b7062015-03-27 13:09:23 +00002941}
James Morse70544192016-02-05 14:58:50 +00002942
Will Deacon2122a832021-06-08 19:02:55 +01002943static int enable_mismatched_32bit_el0(unsigned int cpu)
2944{
Will Deacondf950812021-07-30 12:24:39 +01002945 /*
2946 * The first 32-bit-capable CPU we detected and so can no longer
2947 * be offlined by userspace. -1 indicates we haven't yet onlined
2948 * a 32-bit-capable CPU.
2949 */
2950 static int lucky_winner = -1;
2951
Will Deacon2122a832021-06-08 19:02:55 +01002952 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu);
2953 bool cpu_32bit = id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0);
2954
2955 if (cpu_32bit) {
2956 cpumask_set_cpu(cpu, cpu_32bit_el0_mask);
2957 static_branch_enable_cpuslocked(&arm64_mismatched_32bit_el0);
Will Deacon2122a832021-06-08 19:02:55 +01002958 }
2959
Will Deacondf950812021-07-30 12:24:39 +01002960 if (cpumask_test_cpu(0, cpu_32bit_el0_mask) == cpu_32bit)
2961 return 0;
2962
2963 if (lucky_winner >= 0)
2964 return 0;
2965
2966 /*
2967 * We've detected a mismatch. We need to keep one of our CPUs with
2968 * 32-bit EL0 online so that is_cpu_allowed() doesn't end up rejecting
2969 * every CPU in the system for a 32-bit task.
2970 */
2971 lucky_winner = cpu_32bit ? cpu : cpumask_any_and(cpu_32bit_el0_mask,
2972 cpu_active_mask);
2973 get_cpu_device(lucky_winner)->offline_disabled = true;
2974 setup_elf_hwcaps(compat_elf_hwcaps);
2975 pr_info("Asymmetric 32-bit EL0 support detected on CPU %u; CPU hot-unplug disabled on CPU %u\n",
2976 cpu, lucky_winner);
Will Deacon2122a832021-06-08 19:02:55 +01002977 return 0;
2978}
2979
2980static int __init init_32bit_el0_mask(void)
2981{
2982 if (!allow_mismatched_32bit_el0)
2983 return 0;
2984
2985 if (!zalloc_cpumask_var(&cpu_32bit_el0_mask, GFP_KERNEL))
2986 return -ENOMEM;
2987
2988 return cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
2989 "arm64/mismatched_32bit_el0:online",
2990 enable_mismatched_32bit_el0, NULL);
2991}
2992subsys_initcall_sync(init_32bit_el0_mask);
2993
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002994static void __maybe_unused cpu_enable_cnp(struct arm64_cpu_capabilities const *cap)
2995{
2996 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
2997}
2998
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002999/*
3000 * We emulate only the following system register space.
3001 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
3002 * See Table C5-6 System instruction encodings for System register accesses,
3003 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
3004 */
3005static inline bool __attribute_const__ is_emulated(u32 id)
3006{
3007 return (sys_reg_Op0(id) == 0x3 &&
3008 sys_reg_CRn(id) == 0x0 &&
3009 sys_reg_Op1(id) == 0x0 &&
3010 (sys_reg_CRm(id) == 0 ||
3011 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
3012}
3013
3014/*
3015 * With CRm == 0, reg should be one of :
3016 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
3017 */
3018static inline int emulate_id_reg(u32 id, u64 *valp)
3019{
3020 switch (id) {
3021 case SYS_MIDR_EL1:
3022 *valp = read_cpuid_id();
3023 break;
3024 case SYS_MPIDR_EL1:
3025 *valp = SYS_MPIDR_SAFE_VAL;
3026 break;
3027 case SYS_REVIDR_EL1:
3028 /* IMPLEMENTATION DEFINED values are emulated with 0 */
3029 *valp = 0;
3030 break;
3031 default:
3032 return -EINVAL;
3033 }
3034
3035 return 0;
3036}
3037
3038static int emulate_sys_reg(u32 id, u64 *valp)
3039{
3040 struct arm64_ftr_reg *regp;
3041
3042 if (!is_emulated(id))
3043 return -EINVAL;
3044
3045 if (sys_reg_CRm(id) == 0)
3046 return emulate_id_reg(id, valp);
3047
Anshuman Khandual3577dd32020-05-27 15:34:36 +05303048 regp = get_arm64_ftr_reg_nowarn(id);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003049 if (regp)
3050 *valp = arm64_ftr_reg_user_value(regp);
3051 else
3052 /*
3053 * The untracked registers are either IMPLEMENTATION DEFINED
3054 * (e.g, ID_AFR0_EL1) or reserved RAZ.
3055 */
3056 *valp = 0;
3057 return 0;
3058}
3059
Anshuman Khandual520ad982018-09-20 09:36:20 +05303060int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt)
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003061{
3062 int rc;
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003063 u64 val;
3064
Anshuman Khandual520ad982018-09-20 09:36:20 +05303065 rc = emulate_sys_reg(sys_reg, &val);
3066 if (!rc) {
3067 pt_regs_write_reg(regs, rt, val);
3068 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
3069 }
3070 return rc;
3071}
3072
3073static int emulate_mrs(struct pt_regs *regs, u32 insn)
3074{
3075 u32 sys_reg, rt;
3076
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003077 /*
3078 * sys_reg values are defined as used in mrs/msr instruction.
3079 * shift the imm value to get the encoding.
3080 */
3081 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
Anshuman Khandual520ad982018-09-20 09:36:20 +05303082 rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
3083 return do_emulate_mrs(regs, sys_reg, rt);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003084}
3085
3086static struct undef_hook mrs_hook = {
Raphael Gaultcf292e92021-05-17 13:02:56 -05003087 .instr_mask = 0xffff0000,
3088 .instr_val = 0xd5380000,
Mark Rutlandd64567f2018-07-05 15:16:52 +01003089 .pstate_mask = PSR_AA32_MODE_MASK,
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003090 .pstate_val = PSR_MODE_EL0t,
3091 .fn = emulate_mrs,
3092};
3093
3094static int __init enable_mrs_emulation(void)
3095{
3096 register_undef_hook(&mrs_hook);
3097 return 0;
3098}
3099
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01003100core_initcall(enable_mrs_emulation);
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003101
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003102enum mitigation_state arm64_get_meltdown_state(void)
3103{
3104 if (__meltdown_safe)
3105 return SPECTRE_UNAFFECTED;
3106
3107 if (arm64_kernel_unmapped_at_el0())
3108 return SPECTRE_MITIGATED;
3109
3110 return SPECTRE_VULNERABLE;
3111}
3112
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003113ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr,
3114 char *buf)
3115{
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003116 switch (arm64_get_meltdown_state()) {
3117 case SPECTRE_UNAFFECTED:
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003118 return sprintf(buf, "Not affected\n");
3119
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003120 case SPECTRE_MITIGATED:
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003121 return sprintf(buf, "Mitigation: PTI\n");
3122
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003123 default:
3124 return sprintf(buf, "Vulnerable\n");
3125 }
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003126}