blob: 51e6bf4bb7b5b02aea75189591b62929c63540e2 [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>
Marc Zyngier359b7062015-03-27 13:09:23 +000070#include <linux/types.h>
kernel test robotf6334b12021-04-29 22:50:46 +020071#include <linux/minmax.h>
Laura Abbott2077be62017-01-10 13:35:49 -080072#include <linux/mm.h>
Josh Poimboeufa111b7c2019-04-12 15:39:32 -050073#include <linux/cpu.h>
Andrey Konovalov2e903b92020-12-22 12:02:10 -080074#include <linux/kasan.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000075#include <asm/cpu.h>
76#include <asm/cpufeature.h>
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +010077#include <asm/cpu_ops.h>
Dave Martin2e0f2472017-10-31 15:51:10 +000078#include <asm/fpsimd.h>
Mark Rutland3e00e392021-06-09 11:23:01 +010079#include <asm/insn.h>
David Brazdil3eb681f2020-12-02 18:40:58 +000080#include <asm/kvm_host.h>
Suzuki K Poulose13f417f2016-02-23 10:31:45 +000081#include <asm/mmu_context.h>
Catalin Marinas34bfeea2020-05-04 14:42:36 +010082#include <asm/mte.h>
James Morse338d4f42015-07-22 19:05:54 +010083#include <asm/processor.h>
Carlos Bilbaoe62e0742021-07-08 07:15:42 -040084#include <asm/smp.h>
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +010085#include <asm/sysreg.h>
Suzuki K Poulose77c97b42017-01-09 17:28:31 +000086#include <asm/traps.h>
Marc Zyngierd88701b2015-01-29 11:24:05 +000087#include <asm/virt.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000088
Andrew Murrayaec0bff2019-04-09 10:52:41 +010089/* Kernel representation of AT_HWCAP and AT_HWCAP2 */
90static unsigned long elf_hwcap __read_mostly;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010091
92#ifdef CONFIG_COMPAT
93#define COMPAT_ELF_HWCAP_DEFAULT \
94 (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
95 COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
Suzuki K Poulose7559950a2020-01-13 23:30:20 +000096 COMPAT_HWCAP_TLS|COMPAT_HWCAP_IDIV|\
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010097 COMPAT_HWCAP_LPAE)
98unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT;
99unsigned int compat_elf_hwcap2 __read_mostly;
100#endif
101
102DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
Catalin Marinas4b65a5d2016-07-01 16:53:00 +0100103EXPORT_SYMBOL(cpu_hwcaps);
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000104static struct arm64_cpu_capabilities const __ro_after_init *cpu_hwcaps_ptrs[ARM64_NCAPS];
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +0100105
Daniel Thompson0ceb0d52019-01-31 14:58:53 +0000106/* Need also bit for ARM64_CB_PATCH */
107DECLARE_BITMAP(boot_capabilities, ARM64_NPATCHABLE);
108
Mark Brown09e3c222019-12-09 18:12:17 +0000109bool arm64_use_ng_mappings = false;
110EXPORT_SYMBOL(arm64_use_ng_mappings);
111
Dave Martin8f1eec52017-10-31 15:51:09 +0000112/*
Will Deacon2122a832021-06-08 19:02:55 +0100113 * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs
114 * support it?
115 */
116static bool __read_mostly allow_mismatched_32bit_el0;
117
118/*
119 * Static branch enabled only if allow_mismatched_32bit_el0 is set and we have
120 * seen at least one CPU capable of 32-bit EL0.
121 */
122DEFINE_STATIC_KEY_FALSE(arm64_mismatched_32bit_el0);
123
124/*
125 * Mask of CPUs supporting 32-bit EL0.
126 * Only valid if arm64_mismatched_32bit_el0 is enabled.
127 */
128static cpumask_var_t cpu_32bit_el0_mask __cpumask_var_read_mostly;
129
130/*
Dave Martin8f1eec52017-10-31 15:51:09 +0000131 * Flag to indicate if we have computed the system wide
132 * capabilities based on the boot time active CPUs. This
133 * will be used to determine if a new booting CPU should
134 * go through the verification process to make sure that it
135 * supports the system capabilities, without using a hotplug
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000136 * notifier. This is also used to decide if we could use
137 * the fast path for checking constant CPU caps.
Dave Martin8f1eec52017-10-31 15:51:09 +0000138 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000139DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready);
140EXPORT_SYMBOL(arm64_const_caps_ready);
141static inline void finalize_system_capabilities(void)
Dave Martin8f1eec52017-10-31 15:51:09 +0000142{
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000143 static_branch_enable(&arm64_const_caps_ready);
Dave Martin8f1eec52017-10-31 15:51:09 +0000144}
145
Anshuman Khandual638d5032020-06-29 10:08:31 +0530146void dump_cpu_features(void)
Mark Rutland8effeaa2017-06-21 18:11:23 +0100147{
148 /* file-wide pr_fmt adds "CPU features: " prefix */
149 pr_emerg("0x%*pb\n", ARM64_NCAPS, &cpu_hwcaps);
Mark Rutland8effeaa2017-06-21 18:11:23 +0100150}
151
Catalin Marinasefd9e032016-09-05 18:25:48 +0100152DEFINE_STATIC_KEY_ARRAY_FALSE(cpu_hwcap_keys, ARM64_NCAPS);
153EXPORT_SYMBOL(cpu_hwcap_keys);
154
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000155#define __ARM64_FTR_BITS(SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100156 { \
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000157 .sign = SIGNED, \
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000158 .visible = VISIBLE, \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100159 .strict = STRICT, \
160 .type = TYPE, \
161 .shift = SHIFT, \
162 .width = WIDTH, \
163 .safe_val = SAFE_VAL, \
164 }
165
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000166/* Define a feature with unsigned values */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000167#define ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
168 __ARM64_FTR_BITS(FTR_UNSIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000169
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000170/* Define a feature with a signed value */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000171#define S_ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
172 __ARM64_FTR_BITS(FTR_SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000173
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100174#define ARM64_FTR_END \
175 { \
176 .width = 0, \
177 }
178
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +0100179static void cpu_enable_cnp(struct arm64_cpu_capabilities const *cap);
James Morse70544192016-02-05 14:58:50 +0000180
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +0530181static bool __system_matches_cap(unsigned int n);
182
Suzuki K Poulose4aa8a472017-01-09 17:28:32 +0000183/*
184 * NOTE: Any changes to the visibility of features should be kept in
185 * sync with the documentation of the CPU feature register ABI.
186 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100187static const struct arm64_ftr_bits ftr_id_aa64isar0[] = {
Richard Henderson1a50ec02020-01-21 12:58:52 +0000188 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RNDR_SHIFT, 4, 0),
Anshuman Khandual7cd51a52020-05-19 15:10:46 +0530189 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TLB_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000190 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TS_SHIFT, 4, 0),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +0800191 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100192 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0),
193 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0),
194 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0),
195 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0),
196 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000197 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0),
198 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0),
199 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0),
200 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0),
201 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100202 ARM64_FTR_END,
203};
204
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000205static const struct arm64_ftr_bits ftr_id_aa64isar1[] = {
Steven Priced4209d82019-12-16 11:33:37 +0000206 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_I8MM_SHIFT, 4, 0),
207 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DGH_SHIFT, 4, 0),
208 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_BF16_SHIFT, 4, 0),
209 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SPECRES_SHIFT, 4, 0),
Will Deaconbd4fb6d2018-06-14 11:21:34 +0100210 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SB_SHIFT, 4, 0),
Julien Grall7230f7e2019-10-03 12:12:08 +0100211 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FRINTTS_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000212 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
213 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPI_SHIFT, 4, 0),
214 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
215 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100216 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0),
217 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0),
218 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000219 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +0530220 FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_API_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000221 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +0530222 FTR_STRICT, FTR_EXACT, ID_AA64ISAR1_APA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100223 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000224 ARM64_FTR_END,
225};
226
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100227static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = {
Will Deacon179a56f2017-11-27 18:29:30 +0000228 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0),
Will Deacon0f15adb2018-01-03 11:17:58 +0000229 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000230 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_DIT_SHIFT, 4, 0),
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +0000231 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_AMU_SHIFT, 4, 0),
Anshuman Khandual011e5f52020-05-19 15:10:47 +0530232 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_MPAM_SHIFT, 4, 0),
233 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SEL2_SHIFT, 4, 0),
Dave Martin3fab3992017-12-14 14:03:44 +0000234 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
235 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000236 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100237 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000238 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
239 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_FP_SHIFT, 4, ID_AA64PFR0_FP_NI),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100240 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
Will Deacon98448cd2020-04-21 15:29:21 +0100241 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
242 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY),
243 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL0_SHIFT, 4, ID_AA64PFR0_EL0_64BIT_ONLY),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100244 ARM64_FTR_END,
245};
246
Will Deacond71be2b2018-06-15 11:37:34 +0100247static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = {
Anshuman Khandual14e270f2020-05-19 15:10:48 +0530248 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MPAMFRAC_SHIFT, 4, 0),
249 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_RASFRAC_SHIFT, 4, 0),
Vincenzo Frascino3b714d22019-09-06 10:58:01 +0100250 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_MTE),
251 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MTE_SHIFT, 4, ID_AA64PFR1_MTE_NI),
Will Deacon532d5812020-09-15 23:56:12 +0100252 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 +0000253 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_BTI),
254 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_BT_SHIFT, 4, 0),
Will Deacond71be2b2018-06-15 11:37:34 +0100255 ARM64_FTR_END,
256};
257
Dave Martin06a916f2019-04-18 18:41:38 +0100258static const struct arm64_ftr_bits ftr_id_aa64zfr0[] = {
Julien Grallec52c712019-10-14 11:21:13 +0100259 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000260 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F64MM_SHIFT, 4, 0),
261 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
262 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F32MM_SHIFT, 4, 0),
263 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
264 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_I8MM_SHIFT, 4, 0),
265 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100266 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SM4_SHIFT, 4, 0),
267 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
268 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SHA3_SHIFT, 4, 0),
269 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000270 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BF16_SHIFT, 4, 0),
271 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100272 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BITPERM_SHIFT, 4, 0),
273 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
274 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_AES_SHIFT, 4, 0),
275 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
276 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SVEVER_SHIFT, 4, 0),
Dave Martin06a916f2019-04-18 18:41:38 +0100277 ARM64_FTR_END,
278};
279
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100280static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Anshuman Khandualbc67f102020-07-03 09:21:34 +0530281 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ECV_SHIFT, 4, 0),
282 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_FGT_SHIFT, 4, 0),
283 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_EXS_SHIFT, 4, 0),
Will Deacon5717fe52019-08-12 16:02:25 +0100284 /*
Marc Zyngierb130a8f2020-05-28 14:12:58 +0100285 * Page size not being supported at Stage-2 is not fatal. You
286 * just give up KVM if PAGE_SIZE isn't supported there. Go fix
287 * your favourite nesting hypervisor.
288 *
289 * There is a small corner case where the hypervisor explicitly
290 * advertises a given granule size at Stage-2 (value 2) on some
291 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
292 * vCPUs. Although this is not forbidden by the architecture, it
293 * indicates that the hypervisor is being silly (or buggy).
294 *
295 * We make no effort to cope with this and pretend that if these
296 * fields are inconsistent across vCPUs, then it isn't worth
297 * trying to bring KVM up.
298 */
299 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN4_2_SHIFT, 4, 1),
300 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN64_2_SHIFT, 4, 1),
301 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN16_2_SHIFT, 4, 1),
302 /*
Will Deacon5717fe52019-08-12 16:02:25 +0100303 * We already refuse to boot CPUs that don't support our configured
304 * page size, so we can only detect mismatches for a page size other
305 * than the one we're currently using. Unfortunately, SoCs like this
306 * exist in the wild so, even though we don't like it, we'll have to go
307 * along with it and treat them as non-strict.
308 */
309 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
310 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
311 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
312
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100313 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100314 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100315 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
316 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
317 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100318 /*
319 * Differing PARange is fine as long as all peripherals and memory are mapped
320 * within the minimum PARange of all CPUs
321 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000322 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100323 ARM64_FTR_END,
324};
325
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100326static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Anshuman Khandual853772b2020-07-03 09:21:35 +0530327 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_ETS_SHIFT, 4, 0),
328 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_TWED_SHIFT, 4, 0),
329 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_XNX_SHIFT, 4, 0),
330 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_AA64MMFR1_SPECSEI_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000331 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100332 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
333 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
334 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
335 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
336 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100337 ARM64_FTR_END,
338};
339
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100340static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Mark Brown3e6c69a2019-12-09 18:12:14 +0000341 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_E0PD_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530342 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_EVT_SHIFT, 4, 0),
343 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_BBM_SHIFT, 4, 0),
344 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_TTL_SHIFT, 4, 0),
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100345 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_FWB_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530346 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IDS_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000347 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_AT_SHIFT, 4, 0),
Anshuman Khandual356fdfb2020-07-03 09:21:36 +0530348 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_ST_SHIFT, 4, 0),
349 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_NV_SHIFT, 4, 0),
350 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CCIDX_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100351 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
Sai Prakash Ranjan9d3f8882020-04-21 15:29:15 +0100352 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100353 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
354 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
355 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000356 ARM64_FTR_END,
357};
358
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100359static const struct arm64_ftr_bits ftr_ctr[] = {
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600360 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */
361 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1),
362 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1),
Will Deacon147b9632019-07-30 15:40:20 +0100363 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_CWG_SHIFT, 4, 0),
364 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_ERG_SHIFT, 4, 0),
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600365 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100366 /*
367 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100368 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000369 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100370 */
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530371 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 +0100372 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IMINLINE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100373 ARM64_FTR_END,
374};
375
Marc Zyngier8f266a52021-02-08 09:57:19 +0000376static struct arm64_ftr_override __ro_after_init no_override = { };
377
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100378struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
379 .name = "SYS_CTR_EL0",
Marc Zyngier8f266a52021-02-08 09:57:19 +0000380 .ftr_bits = ftr_ctr,
381 .override = &no_override,
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100382};
383
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100384static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530385 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_INNERSHR_SHIFT, 4, 0xf),
386 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_FCSE_SHIFT, 4, 0),
387 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_MMFR0_AUXREG_SHIFT, 4, 0),
388 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_TCM_SHIFT, 4, 0),
389 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_SHARELVL_SHIFT, 4, 0),
390 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_OUTERSHR_SHIFT, 4, 0xf),
391 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_PMSA_SHIFT, 4, 0),
392 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR0_VMSA_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100393 ARM64_FTR_END,
394};
395
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100396static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530397 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 +0000398 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
399 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
400 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
401 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100402 /*
403 * We can instantiate multiple PMU instances with different levels
404 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000405 */
406 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000407 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100408 ARM64_FTR_END,
409};
410
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100411static const struct arm64_ftr_bits ftr_mvfr2[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530412 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_FPMISC_SHIFT, 4, 0),
413 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, MVFR2_SIMDMISC_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100414 ARM64_FTR_END,
415};
416
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100417static const struct arm64_ftr_bits ftr_dczid[] = {
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530418 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, DCZID_DZP_SHIFT, 1, 1),
419 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, DCZID_BS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100420 ARM64_FTR_END,
421};
422
Catalin Marinas21047e92021-05-26 20:36:21 +0100423static const struct arm64_ftr_bits ftr_gmid[] = {
424 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, SYS_GMID_EL1_BS_SHIFT, 4, 0),
425 ARM64_FTR_END,
426};
427
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530428static const struct arm64_ftr_bits ftr_id_isar0[] = {
429 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DIVIDE_SHIFT, 4, 0),
430 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DEBUG_SHIFT, 4, 0),
431 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_COPROC_SHIFT, 4, 0),
432 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_CMPBRANCH_SHIFT, 4, 0),
433 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITFIELD_SHIFT, 4, 0),
434 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITCOUNT_SHIFT, 4, 0),
435 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_SWAP_SHIFT, 4, 0),
436 ARM64_FTR_END,
437};
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100438
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100439static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100440 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
441 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
442 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
443 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
444 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
445 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100446 ARM64_FTR_END,
447};
448
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100449static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530450 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_EVT_SHIFT, 4, 0),
451 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CCIDX_SHIFT, 4, 0),
452 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_LSM_SHIFT, 4, 0),
453 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_HPDS_SHIFT, 4, 0),
454 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CNP_SHIFT, 4, 0),
455 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_XNX_SHIFT, 4, 0),
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530456 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_AC2_SHIFT, 4, 0),
457
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530458 /*
459 * SpecSEI = 1 indicates that the PE might generate an SError on an
460 * external abort on speculative read. It is safe to assume that an
461 * SError might be generated than it will not be. Hence it has been
462 * classified as FTR_HIGHER_SAFE.
463 */
464 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_MMFR4_SPECSEI_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100465 ARM64_FTR_END,
466};
467
Will Deacon01133402020-04-21 15:29:16 +0100468static const struct arm64_ftr_bits ftr_id_isar4[] = {
469 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SWP_FRAC_SHIFT, 4, 0),
470 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_PSR_M_SHIFT, 4, 0),
471 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SYNCH_PRIM_FRAC_SHIFT, 4, 0),
472 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_BARRIER_SHIFT, 4, 0),
473 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SMC_SHIFT, 4, 0),
474 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WRITEBACK_SHIFT, 4, 0),
475 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WITHSHIFTS_SHIFT, 4, 0),
476 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_UNPRIV_SHIFT, 4, 0),
477 ARM64_FTR_END,
478};
479
Anshuman Khandual152accf82020-05-19 15:10:43 +0530480static const struct arm64_ftr_bits ftr_id_mmfr5[] = {
481 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR5_ETS_SHIFT, 4, 0),
482 ARM64_FTR_END,
483};
484
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530485static const struct arm64_ftr_bits ftr_id_isar6[] = {
486 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_I8MM_SHIFT, 4, 0),
487 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_BF16_SHIFT, 4, 0),
488 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SPECRES_SHIFT, 4, 0),
489 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SB_SHIFT, 4, 0),
490 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_FHM_SHIFT, 4, 0),
491 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_DP_SHIFT, 4, 0),
492 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_JSCVT_SHIFT, 4, 0),
493 ARM64_FTR_END,
494};
495
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100496static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Anshuman Khandual0ae43a92020-05-19 15:10:44 +0530497 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_DIT_SHIFT, 4, 0),
498 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR0_CSV2_SHIFT, 4, 0),
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530499 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE3_SHIFT, 4, 0),
500 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE2_SHIFT, 4, 0),
501 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE1_SHIFT, 4, 0),
502 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_STATE0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100503 ARM64_FTR_END,
504};
505
Will Deacon01133402020-04-21 15:29:16 +0100506static const struct arm64_ftr_bits ftr_id_pfr1[] = {
507 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GIC_SHIFT, 4, 0),
508 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRT_FRAC_SHIFT, 4, 0),
509 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SEC_FRAC_SHIFT, 4, 0),
510 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GENTIMER_SHIFT, 4, 0),
511 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRTUALIZATION_SHIFT, 4, 0),
512 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_MPROGMOD_SHIFT, 4, 0),
513 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SECURITY_SHIFT, 4, 0),
514 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_PROGMOD_SHIFT, 4, 0),
515 ARM64_FTR_END,
516};
517
Anshuman Khandual16824082020-05-19 15:10:41 +0530518static const struct arm64_ftr_bits ftr_id_pfr2[] = {
Will Deacon532d5812020-09-15 23:56:12 +0100519 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_SSBS_SHIFT, 4, 0),
Anshuman Khandual16824082020-05-19 15:10:41 +0530520 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_CSV3_SHIFT, 4, 0),
521 ARM64_FTR_END,
522};
523
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100524static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Anshuman Khandual1ed1b902020-05-19 15:10:39 +0530525 /* [31:28] TraceFilt */
Anshuman Khandual8d3154a2020-07-03 09:21:37 +0530526 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_PERFMON_SHIFT, 4, 0xf),
527 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MPROFDBG_SHIFT, 4, 0),
528 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPTRC_SHIFT, 4, 0),
529 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPTRC_SHIFT, 4, 0),
530 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_MMAPDBG_SHIFT, 4, 0),
531 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPSDBG_SHIFT, 4, 0),
532 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR0_COPDBG_SHIFT, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000533 ARM64_FTR_END,
534};
535
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530536static const struct arm64_ftr_bits ftr_id_dfr1[] = {
537 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR1_MTPMU_SHIFT, 4, 0),
538 ARM64_FTR_END,
539};
540
Dave Martin2e0f2472017-10-31 15:51:10 +0000541static const struct arm64_ftr_bits ftr_zcr[] = {
542 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
543 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
544 ARM64_FTR_END,
545};
546
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100547/*
548 * Common ftr bits for a 32bit register with all hidden, strict
549 * attributes, with 4bit feature fields and a default safe value of
550 * 0. Covers the following 32bit registers:
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530551 * id_isar[1-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100552 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100553static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000554 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
555 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
556 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
557 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
558 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
559 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
560 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
561 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100562 ARM64_FTR_END,
563};
564
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000565/* Table for a single 32bit feature value */
566static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000567 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100568 ARM64_FTR_END,
569};
570
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000571static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100572 ARM64_FTR_END,
573};
574
Marc Zyngier8f266a52021-02-08 09:57:19 +0000575#define ARM64_FTR_REG_OVERRIDE(id, table, ovr) { \
576 .sys_id = id, \
577 .reg = &(struct arm64_ftr_reg){ \
578 .name = #id, \
579 .override = (ovr), \
580 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100581 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100582
Marc Zyngier8f266a52021-02-08 09:57:19 +0000583#define ARM64_FTR_REG(id, table) ARM64_FTR_REG_OVERRIDE(id, table, &no_override)
584
Marc Zyngier361db0f2021-02-08 09:57:23 +0000585struct arm64_ftr_override __ro_after_init id_aa64mmfr1_override;
Marc Zyngier93ad55b2021-02-08 09:57:29 +0000586struct arm64_ftr_override __ro_after_init id_aa64pfr1_override;
Marc Zyngierf8da5752021-02-08 09:57:31 +0000587struct arm64_ftr_override __ro_after_init id_aa64isar1_override;
Marc Zyngier361db0f2021-02-08 09:57:23 +0000588
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100589static const struct __ftr_reg_entry {
590 u32 sys_id;
591 struct arm64_ftr_reg *reg;
592} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100593
594 /* Op1 = 0, CRn = 0, CRm = 1 */
595 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
Will Deacon01133402020-04-21 15:29:16 +0100596 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_id_pfr1),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000597 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100598 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
599 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
600 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
601 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
602
603 /* Op1 = 0, CRn = 0, CRm = 2 */
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530604 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_id_isar0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100605 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
606 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
607 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
Will Deacon01133402020-04-21 15:29:16 +0100608 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_id_isar4),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100609 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
610 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530611 ARM64_FTR_REG(SYS_ID_ISAR6_EL1, ftr_id_isar6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100612
613 /* Op1 = 0, CRn = 0, CRm = 3 */
614 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
615 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
616 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
Anshuman Khandual16824082020-05-19 15:10:41 +0530617 ARM64_FTR_REG(SYS_ID_PFR2_EL1, ftr_id_pfr2),
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530618 ARM64_FTR_REG(SYS_ID_DFR1_EL1, ftr_id_dfr1),
Anshuman Khandual152accf82020-05-19 15:10:43 +0530619 ARM64_FTR_REG(SYS_ID_MMFR5_EL1, ftr_id_mmfr5),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100620
621 /* Op1 = 0, CRn = 0, CRm = 4 */
622 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Marc Zyngier93ad55b2021-02-08 09:57:29 +0000623 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1,
624 &id_aa64pfr1_override),
Dave Martin06a916f2019-04-18 18:41:38 +0100625 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_id_aa64zfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100626
627 /* Op1 = 0, CRn = 0, CRm = 5 */
628 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000629 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100630
631 /* Op1 = 0, CRn = 0, CRm = 6 */
632 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Marc Zyngierf8da5752021-02-08 09:57:31 +0000633 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1,
634 &id_aa64isar1_override),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100635
636 /* Op1 = 0, CRn = 0, CRm = 7 */
637 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
Marc Zyngier361db0f2021-02-08 09:57:23 +0000638 ARM64_FTR_REG_OVERRIDE(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1,
639 &id_aa64mmfr1_override),
James Morse406e3082016-02-05 14:58:47 +0000640 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100641
Dave Martin2e0f2472017-10-31 15:51:10 +0000642 /* Op1 = 0, CRn = 1, CRm = 2 */
643 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
644
Catalin Marinas21047e92021-05-26 20:36:21 +0100645 /* Op1 = 1, CRn = 0, CRm = 0 */
646 ARM64_FTR_REG(SYS_GMID_EL1, ftr_gmid),
647
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100648 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100649 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100650 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
651
652 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000653 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100654};
655
656static int search_cmp_ftr_reg(const void *id, const void *regp)
657{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100658 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100659}
660
661/*
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530662 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
663 * its sys_reg() encoding. With the array arm64_ftr_regs sorted in the
664 * ascending order of sys_id, we use binary search to find a matching
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100665 * entry.
666 *
667 * returns - Upon success, matching ftr_reg entry for id.
668 * - NULL on failure. It is upto the caller to decide
669 * the impact of a failure.
670 */
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530671static struct arm64_ftr_reg *get_arm64_ftr_reg_nowarn(u32 sys_id)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100672{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100673 const struct __ftr_reg_entry *ret;
674
675 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100676 arm64_ftr_regs,
677 ARRAY_SIZE(arm64_ftr_regs),
678 sizeof(arm64_ftr_regs[0]),
679 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100680 if (ret)
681 return ret->reg;
682 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100683}
684
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530685/*
686 * get_arm64_ftr_reg - Looks up a feature register entry using
687 * its sys_reg() encoding. This calls get_arm64_ftr_reg_nowarn().
688 *
689 * returns - Upon success, matching ftr_reg entry for id.
690 * - NULL on failure but with an WARN_ON().
691 */
692static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
693{
694 struct arm64_ftr_reg *reg;
695
696 reg = get_arm64_ftr_reg_nowarn(sys_id);
697
698 /*
699 * Requesting a non-existent register search is an error. Warn
700 * and let the caller handle it.
701 */
702 WARN_ON(!reg);
703 return reg;
704}
705
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100706static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
707 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100708{
709 u64 mask = arm64_ftr_mask(ftrp);
710
711 reg &= ~mask;
712 reg |= (ftr_val << ftrp->shift) & mask;
713 return reg;
714}
715
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100716static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
717 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100718{
719 s64 ret = 0;
720
721 switch (ftrp->type) {
722 case FTR_EXACT:
723 ret = ftrp->safe_val;
724 break;
725 case FTR_LOWER_SAFE:
kernel test robotf6334b12021-04-29 22:50:46 +0200726 ret = min(new, cur);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100727 break;
Will Deacon147b9632019-07-30 15:40:20 +0100728 case FTR_HIGHER_OR_ZERO_SAFE:
729 if (!cur || !new)
730 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500731 fallthrough;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100732 case FTR_HIGHER_SAFE:
kernel test robotf6334b12021-04-29 22:50:46 +0200733 ret = max(new, cur);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100734 break;
735 default:
736 BUG();
737 }
738
739 return ret;
740}
741
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100742static void __init sort_ftr_regs(void)
743{
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530744 unsigned int i;
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100745
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530746 for (i = 0; i < ARRAY_SIZE(arm64_ftr_regs); i++) {
747 const struct arm64_ftr_reg *ftr_reg = arm64_ftr_regs[i].reg;
748 const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits;
749 unsigned int j = 0;
750
751 /*
752 * Features here must be sorted in descending order with respect
753 * to their shift values and should not overlap with each other.
754 */
755 for (; ftr_bits->width != 0; ftr_bits++, j++) {
756 unsigned int width = ftr_reg->ftr_bits[j].width;
757 unsigned int shift = ftr_reg->ftr_bits[j].shift;
758 unsigned int prev_shift;
759
760 WARN((shift + width) > 64,
761 "%s has invalid feature at shift %d\n",
762 ftr_reg->name, shift);
763
764 /*
765 * Skip the first feature. There is nothing to
766 * compare against for now.
767 */
768 if (j == 0)
769 continue;
770
771 prev_shift = ftr_reg->ftr_bits[j - 1].shift;
772 WARN((shift + width) > prev_shift,
773 "%s has feature overlap at shift %d\n",
774 ftr_reg->name, shift);
775 }
776
777 /*
778 * Skip the first register. There is nothing to
779 * compare against for now.
780 */
781 if (i == 0)
782 continue;
783 /*
784 * Registers here must be sorted in ascending order with respect
785 * to sys_id for subsequent binary search in get_arm64_ftr_reg()
786 * to work correctly.
787 */
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100788 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Anshuman Khandualc6c83d72020-07-07 19:53:13 +0530789 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100790}
791
792/*
793 * Initialise the CPU feature register from Boot CPU values.
794 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000795 * Any bits that are not covered by an arm64_ftr_bits entry are considered
796 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100797 */
Will Deacon2122a832021-06-08 19:02:55 +0100798static void init_cpu_ftr_reg(u32 sys_reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100799{
800 u64 val = 0;
801 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000802 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000803 u64 valid_mask = 0;
804
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100805 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100806 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
807
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530808 if (!reg)
809 return;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100810
韩科才24b2cce2020-03-11 14:52:49 +0800811 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000812 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100813 s64 ftr_new = arm64_ftr_value(ftrp, new);
Marc Zyngier8f266a52021-02-08 09:57:19 +0000814 s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val);
815
816 if ((ftr_mask & reg->override->mask) == ftr_mask) {
817 s64 tmp = arm64_ftr_safe_value(ftrp, ftr_ovr, ftr_new);
818 char *str = NULL;
819
820 if (ftr_ovr != tmp) {
821 /* Unsafe, remove the override */
822 reg->override->mask &= ~ftr_mask;
823 reg->override->val &= ~ftr_mask;
824 tmp = ftr_ovr;
825 str = "ignoring override";
826 } else if (ftr_new != tmp) {
827 /* Override was valid */
828 ftr_new = tmp;
829 str = "forced";
830 } else if (ftr_ovr == tmp) {
831 /* Override was the safe value */
832 str = "already set";
833 }
834
835 if (str)
836 pr_warn("%s[%d:%d]: %s to %llx\n",
837 reg->name,
838 ftrp->shift + ftrp->width - 1,
839 ftrp->shift, str, tmp);
Marc Zyngiercac642c2021-04-08 14:10:08 +0100840 } else if ((ftr_mask & reg->override->val) == ftr_mask) {
841 reg->override->val &= ~ftr_mask;
842 pr_warn("%s[%d:%d]: impossible override, ignored\n",
843 reg->name,
844 ftrp->shift + ftrp->width - 1,
845 ftrp->shift);
Marc Zyngier8f266a52021-02-08 09:57:19 +0000846 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100847
848 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000849
850 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100851 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000852 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000853 if (ftrp->visible)
854 user_mask |= ftr_mask;
855 else
856 reg->user_val = arm64_ftr_set_value(ftrp,
857 reg->user_val,
858 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100859 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000860
861 val &= valid_mask;
862
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100863 reg->sys_val = val;
864 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000865 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100866}
867
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100868extern const struct arm64_cpu_capabilities arm64_errata[];
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000869static const struct arm64_cpu_capabilities arm64_features[];
870
871static void __init
872init_cpu_hwcaps_indirect_list_from_array(const struct arm64_cpu_capabilities *caps)
873{
874 for (; caps->matches; caps++) {
875 if (WARN(caps->capability >= ARM64_NCAPS,
876 "Invalid capability %d\n", caps->capability))
877 continue;
878 if (WARN(cpu_hwcaps_ptrs[caps->capability],
879 "Duplicate entry for capability %d\n",
880 caps->capability))
881 continue;
882 cpu_hwcaps_ptrs[caps->capability] = caps;
883 }
884}
885
886static void __init init_cpu_hwcaps_indirect_list(void)
887{
888 init_cpu_hwcaps_indirect_list_from_array(arm64_features);
889 init_cpu_hwcaps_indirect_list_from_array(arm64_errata);
890}
891
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100892static void __init setup_boot_cpu_capabilities(void);
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100893
Will Deacon2122a832021-06-08 19:02:55 +0100894static void init_32bit_cpu_features(struct cpuinfo_32bit *info)
Will Deacon930a58b2021-06-08 19:02:54 +0100895{
896 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
897 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1);
898 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
899 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
900 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
901 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
902 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
903 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
904 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6);
905 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
906 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
907 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
908 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
909 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4);
910 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5);
911 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
912 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
913 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2);
914 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
915 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
916 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
917}
918
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100919void __init init_cpu_features(struct cpuinfo_arm64 *info)
920{
921 /* Before we start using the tables, make sure it is sorted */
922 sort_ftr_regs();
923
924 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
925 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
926 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
927 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
928 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
929 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
930 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
931 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
932 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000933 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100934 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
935 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000936 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100937
Will Deacon930a58b2021-06-08 19:02:54 +0100938 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0))
939 init_32bit_cpu_features(&info->aarch32);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100940
Dave Martin2e0f2472017-10-31 15:51:10 +0000941 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
942 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
943 sve_init_vq_map();
944 }
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100945
Catalin Marinas21047e92021-05-26 20:36:21 +0100946 if (id_aa64pfr1_mte(info->reg_id_aa64pfr1))
947 init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid);
948
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100949 /*
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000950 * Initialize the indirect array of CPU hwcaps capabilities pointers
951 * before we handle the boot CPU below.
952 */
953 init_cpu_hwcaps_indirect_list();
954
955 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100956 * Detect and enable early CPU capabilities based on the boot CPU,
957 * after we have initialised the CPU feature infrastructure.
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100958 */
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100959 setup_boot_cpu_capabilities();
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100960}
961
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100962static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100963{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100964 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100965
966 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
967 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
968 s64 ftr_new = arm64_ftr_value(ftrp, new);
969
970 if (ftr_cur == ftr_new)
971 continue;
972 /* Find a safe value */
973 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
974 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
975 }
976
977}
978
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100979static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100980{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100981 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
982
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530983 if (!regp)
984 return 0;
985
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100986 update_cpu_ftr_reg(regp, val);
987 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
988 return 0;
989 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
990 regp->name, boot, cpu, val);
991 return 1;
992}
993
Will Deaconeab2f922020-04-21 15:29:20 +0100994static void relax_cpu_ftr_reg(u32 sys_id, int field)
995{
996 const struct arm64_ftr_bits *ftrp;
997 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
998
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530999 if (!regp)
Will Deaconeab2f922020-04-21 15:29:20 +01001000 return;
1001
1002 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) {
1003 if (ftrp->shift == field) {
1004 regp->strict_mask &= ~arm64_ftr_mask(ftrp);
1005 break;
1006 }
1007 }
1008
1009 /* Bogus field? */
1010 WARN_ON(!ftrp->width);
1011}
1012
Will Deacon2122a832021-06-08 19:02:55 +01001013static void lazy_init_32bit_cpu_features(struct cpuinfo_arm64 *info,
1014 struct cpuinfo_arm64 *boot)
1015{
1016 static bool boot_cpu_32bit_regs_overridden = false;
1017
1018 if (!allow_mismatched_32bit_el0 || boot_cpu_32bit_regs_overridden)
1019 return;
1020
1021 if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0))
1022 return;
1023
1024 boot->aarch32 = info->aarch32;
1025 init_32bit_cpu_features(&boot->aarch32);
1026 boot_cpu_32bit_regs_overridden = true;
1027}
1028
Will Deacon930a58b2021-06-08 19:02:54 +01001029static int update_32bit_cpu_features(int cpu, struct cpuinfo_32bit *info,
1030 struct cpuinfo_32bit *boot)
Will Deacon1efcfe72020-04-21 15:29:19 +01001031{
1032 int taint = 0;
1033 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
1034
1035 /*
Will Deaconeab2f922020-04-21 15:29:20 +01001036 * If we don't have AArch32 at EL1, then relax the strictness of
1037 * EL1-dependent register fields to avoid spurious sanity check fails.
1038 */
1039 if (!id_aa64pfr0_32bit_el1(pfr0)) {
1040 relax_cpu_ftr_reg(SYS_ID_ISAR4_EL1, ID_ISAR4_SMC_SHIFT);
1041 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRT_FRAC_SHIFT);
1042 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SEC_FRAC_SHIFT);
1043 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRTUALIZATION_SHIFT);
1044 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SECURITY_SHIFT);
1045 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_PROGMOD_SHIFT);
1046 }
1047
Will Deacon1efcfe72020-04-21 15:29:19 +01001048 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
1049 info->reg_id_dfr0, boot->reg_id_dfr0);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +05301050 taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu,
1051 info->reg_id_dfr1, boot->reg_id_dfr1);
Will Deacon1efcfe72020-04-21 15:29:19 +01001052 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
1053 info->reg_id_isar0, boot->reg_id_isar0);
1054 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
1055 info->reg_id_isar1, boot->reg_id_isar1);
1056 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
1057 info->reg_id_isar2, boot->reg_id_isar2);
1058 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
1059 info->reg_id_isar3, boot->reg_id_isar3);
1060 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
1061 info->reg_id_isar4, boot->reg_id_isar4);
1062 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
1063 info->reg_id_isar5, boot->reg_id_isar5);
1064 taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu,
1065 info->reg_id_isar6, boot->reg_id_isar6);
1066
1067 /*
1068 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
1069 * ACTLR formats could differ across CPUs and therefore would have to
1070 * be trapped for virtualization anyway.
1071 */
1072 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
1073 info->reg_id_mmfr0, boot->reg_id_mmfr0);
1074 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
1075 info->reg_id_mmfr1, boot->reg_id_mmfr1);
1076 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
1077 info->reg_id_mmfr2, boot->reg_id_mmfr2);
1078 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
1079 info->reg_id_mmfr3, boot->reg_id_mmfr3);
Anshuman Khandual858b8a82020-05-19 15:10:54 +05301080 taint |= check_update_ftr_reg(SYS_ID_MMFR4_EL1, cpu,
1081 info->reg_id_mmfr4, boot->reg_id_mmfr4);
Anshuman Khandual152accf82020-05-19 15:10:43 +05301082 taint |= check_update_ftr_reg(SYS_ID_MMFR5_EL1, cpu,
1083 info->reg_id_mmfr5, boot->reg_id_mmfr5);
Will Deacon1efcfe72020-04-21 15:29:19 +01001084 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
1085 info->reg_id_pfr0, boot->reg_id_pfr0);
1086 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
1087 info->reg_id_pfr1, boot->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +05301088 taint |= check_update_ftr_reg(SYS_ID_PFR2_EL1, cpu,
1089 info->reg_id_pfr2, boot->reg_id_pfr2);
Will Deacon1efcfe72020-04-21 15:29:19 +01001090 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
1091 info->reg_mvfr0, boot->reg_mvfr0);
1092 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
1093 info->reg_mvfr1, boot->reg_mvfr1);
1094 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
1095 info->reg_mvfr2, boot->reg_mvfr2);
1096
1097 return taint;
1098}
1099
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001100/*
1101 * Update system wide CPU feature registers with the values from a
1102 * non-boot CPU. Also performs SANITY checks to make sure that there
1103 * aren't any insane variations from that of the boot CPU.
1104 */
1105void update_cpu_features(int cpu,
1106 struct cpuinfo_arm64 *info,
1107 struct cpuinfo_arm64 *boot)
1108{
1109 int taint = 0;
1110
1111 /*
1112 * The kernel can handle differing I-cache policies, but otherwise
1113 * caches should look identical. Userspace JITs will make use of
1114 * *minLine.
1115 */
1116 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
1117 info->reg_ctr, boot->reg_ctr);
1118
1119 /*
1120 * Userspace may perform DC ZVA instructions. Mismatched block sizes
1121 * could result in too much or too little memory being zeroed if a
1122 * process is preempted and migrated between CPUs.
1123 */
1124 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
1125 info->reg_dczid, boot->reg_dczid);
1126
1127 /* If different, timekeeping will be broken (especially with KVM) */
1128 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
1129 info->reg_cntfrq, boot->reg_cntfrq);
1130
1131 /*
1132 * The kernel uses self-hosted debug features and expects CPUs to
1133 * support identical debug features. We presently need CTX_CMPs, WRPs,
1134 * and BRPs to be identical.
1135 * ID_AA64DFR1 is currently RES0.
1136 */
1137 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
1138 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
1139 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
1140 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
1141 /*
1142 * Even in big.LITTLE, processors should be identical instruction-set
1143 * wise.
1144 */
1145 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
1146 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
1147 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
1148 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
1149
1150 /*
1151 * Differing PARange support is fine as long as all peripherals and
1152 * memory are mapped within the minimum PARange of all CPUs.
1153 * Linux should not care about secure memory.
1154 */
1155 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
1156 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
1157 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
1158 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +00001159 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
1160 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001161
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001162 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
1163 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
1164 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
1165 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
1166
Dave Martin2e0f2472017-10-31 15:51:10 +00001167 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
1168 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
1169
Dave Martin2e0f2472017-10-31 15:51:10 +00001170 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
1171 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
1172 info->reg_zcr, boot->reg_zcr);
1173
1174 /* Probe vector lengths, unless we already gave up on SVE */
1175 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00001176 !system_capabilities_finalized())
Dave Martin2e0f2472017-10-31 15:51:10 +00001177 sve_update_vq_map();
1178 }
1179
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001180 /*
Catalin Marinas21047e92021-05-26 20:36:21 +01001181 * The kernel uses the LDGM/STGM instructions and the number of tags
1182 * they read/write depends on the GMID_EL1.BS field. Check that the
1183 * value is the same on all CPUs.
1184 */
1185 if (IS_ENABLED(CONFIG_ARM64_MTE) &&
Will Deacon930a58b2021-06-08 19:02:54 +01001186 id_aa64pfr1_mte(info->reg_id_aa64pfr1)) {
Catalin Marinas21047e92021-05-26 20:36:21 +01001187 taint |= check_update_ftr_reg(SYS_GMID_EL1, cpu,
1188 info->reg_gmid, boot->reg_gmid);
Will Deacon930a58b2021-06-08 19:02:54 +01001189 }
Catalin Marinas21047e92021-05-26 20:36:21 +01001190
1191 /*
Will Deacon930a58b2021-06-08 19:02:54 +01001192 * If we don't have AArch32 at all then skip the checks entirely
1193 * as the register values may be UNKNOWN and we're not going to be
1194 * using them for anything.
1195 *
Will Deacon1efcfe72020-04-21 15:29:19 +01001196 * This relies on a sanitised view of the AArch64 ID registers
1197 * (e.g. SYS_ID_AA64PFR0_EL1), so we call it last.
1198 */
Will Deacon930a58b2021-06-08 19:02:54 +01001199 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
Will Deacon2122a832021-06-08 19:02:55 +01001200 lazy_init_32bit_cpu_features(info, boot);
Will Deacon930a58b2021-06-08 19:02:54 +01001201 taint |= update_32bit_cpu_features(cpu, &info->aarch32,
1202 &boot->aarch32);
1203 }
Will Deacon1efcfe72020-04-21 15:29:19 +01001204
1205 /*
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001206 * Mismatched CPU features are a recipe for disaster. Don't even
1207 * pretend to support them.
1208 */
Will Deacon8dd0ee62017-06-05 11:40:23 +01001209 if (taint) {
1210 pr_warn_once("Unsupported CPU feature variation detected.\n");
1211 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
1212 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +01001213}
1214
Dave Martin46823dd2017-03-23 15:14:39 +00001215u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001216{
1217 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
1218
Anshuman Khandual3577dd32020-05-27 15:34:36 +05301219 if (!regp)
1220 return 0;
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001221 return regp->sys_val;
1222}
Jean-Philippe Brucker6f3c4af2020-09-18 12:18:46 +02001223EXPORT_SYMBOL_GPL(read_sanitised_ftr_reg);
Marc Zyngier359b7062015-03-27 13:09:23 +00001224
Mark Rutland965861d2017-02-02 17:32:15 +00001225#define read_sysreg_case(r) \
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001226 case r: val = read_sysreg_s(r); break;
Mark Rutland965861d2017-02-02 17:32:15 +00001227
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001228/*
Dave Martin46823dd2017-03-23 15:14:39 +00001229 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001230 * Read the system register on the current CPU
1231 */
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001232u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001233{
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001234 struct arm64_ftr_reg *regp;
1235 u64 val;
1236
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001237 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +00001238 read_sysreg_case(SYS_ID_PFR0_EL1);
1239 read_sysreg_case(SYS_ID_PFR1_EL1);
Anshuman Khandual16824082020-05-19 15:10:41 +05301240 read_sysreg_case(SYS_ID_PFR2_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001241 read_sysreg_case(SYS_ID_DFR0_EL1);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +05301242 read_sysreg_case(SYS_ID_DFR1_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001243 read_sysreg_case(SYS_ID_MMFR0_EL1);
1244 read_sysreg_case(SYS_ID_MMFR1_EL1);
1245 read_sysreg_case(SYS_ID_MMFR2_EL1);
1246 read_sysreg_case(SYS_ID_MMFR3_EL1);
Anshuman Khandual858b8a82020-05-19 15:10:54 +05301247 read_sysreg_case(SYS_ID_MMFR4_EL1);
Anshuman Khandual152accf82020-05-19 15:10:43 +05301248 read_sysreg_case(SYS_ID_MMFR5_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001249 read_sysreg_case(SYS_ID_ISAR0_EL1);
1250 read_sysreg_case(SYS_ID_ISAR1_EL1);
1251 read_sysreg_case(SYS_ID_ISAR2_EL1);
1252 read_sysreg_case(SYS_ID_ISAR3_EL1);
1253 read_sysreg_case(SYS_ID_ISAR4_EL1);
1254 read_sysreg_case(SYS_ID_ISAR5_EL1);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +05301255 read_sysreg_case(SYS_ID_ISAR6_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001256 read_sysreg_case(SYS_MVFR0_EL1);
1257 read_sysreg_case(SYS_MVFR1_EL1);
1258 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001259
Mark Rutland965861d2017-02-02 17:32:15 +00001260 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
1261 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
Dave Martin78ed70b2019-06-03 16:35:02 +01001262 read_sysreg_case(SYS_ID_AA64ZFR0_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001263 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
1264 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
1265 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
1266 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
1267 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
1268 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
1269 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001270
Mark Rutland965861d2017-02-02 17:32:15 +00001271 read_sysreg_case(SYS_CNTFRQ_EL0);
1272 read_sysreg_case(SYS_CTR_EL0);
1273 read_sysreg_case(SYS_DCZID_EL0);
1274
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001275 default:
1276 BUG();
1277 return 0;
1278 }
Marc Zyngierb3341ae2021-02-08 09:57:20 +00001279
1280 regp = get_arm64_ftr_reg(sys_id);
1281 if (regp) {
1282 val &= ~regp->override->mask;
1283 val |= (regp->override->val & regp->override->mask);
1284 }
1285
1286 return val;
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001287}
1288
Marc Zyngier963fcd42015-09-30 11:50:04 +01001289#include <linux/irqchip/arm-gic-v3.h>
1290
Marc Zyngier94a9e042015-06-12 12:06:36 +01001291static bool
James Morse18ffa042015-07-21 13:23:29 +01001292feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
1293{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +00001294 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +01001295
1296 return val >= entry->min_field_value;
1297}
1298
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001299static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001300has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001301{
1302 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +01001303
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001304 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
1305 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +00001306 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001307 else
Dave Martin46823dd2017-03-23 15:14:39 +00001308 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001309
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001310 return feature_matches(val, entry);
1311}
James Morse338d4f42015-07-22 19:05:54 +01001312
Will Deacon2122a832021-06-08 19:02:55 +01001313const struct cpumask *system_32bit_el0_cpumask(void)
1314{
1315 if (!system_supports_32bit_el0())
1316 return cpu_none_mask;
1317
1318 if (static_branch_unlikely(&arm64_mismatched_32bit_el0))
1319 return cpu_32bit_el0_mask;
1320
1321 return cpu_possible_mask;
1322}
1323
1324static bool has_32bit_el0(const struct arm64_cpu_capabilities *entry, int scope)
1325{
1326 if (!has_cpuid_feature(entry, scope))
1327 return allow_mismatched_32bit_el0;
1328
1329 if (scope == SCOPE_SYSTEM)
1330 pr_info("detected: 32-bit EL0 Support\n");
1331
1332 return true;
1333}
1334
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001335static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +01001336{
1337 bool has_sre;
1338
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001339 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +01001340 return false;
1341
1342 has_sre = gic_enable_sre();
1343 if (!has_sre)
1344 pr_warn_once("%s present but disabled by higher exception level\n",
1345 entry->desc);
1346
1347 return has_sre;
1348}
1349
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001350static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +00001351{
1352 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +00001353
1354 /* Cavium ThunderX pass 1.x and 2.x */
Qian Caib99286b2019-08-05 23:05:03 -04001355 return midr_is_cpu_model_range(midr, MIDR_THUNDERX,
Robert Richterfa5ce3d2017-01-13 14:12:09 +01001356 MIDR_CPU_VAR_REV(0, 0),
1357 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +00001358}
1359
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001360static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
1361{
Dave Martin46823dd2017-03-23 15:14:39 +00001362 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001363
1364 return cpuid_feature_extract_signed_field(pfr0,
1365 ID_AA64PFR0_FP_SHIFT) < 0;
1366}
1367
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001368static bool has_cache_idc(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001369 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001370{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001371 u64 ctr;
1372
1373 if (scope == SCOPE_SYSTEM)
1374 ctr = arm64_ftr_reg_ctrel0.sys_val;
1375 else
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001376 ctr = read_cpuid_effective_cachetype();
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001377
1378 return ctr & BIT(CTR_IDC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001379}
1380
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001381static void cpu_emulate_effective_ctr(const struct arm64_cpu_capabilities *__unused)
1382{
1383 /*
1384 * If the CPU exposes raw CTR_EL0.IDC = 0, while effectively
1385 * CTR_EL0.IDC = 1 (from CLIDR values), we need to trap accesses
1386 * to the CTR_EL0 on this CPU and emulate it with the real/safe
1387 * value.
1388 */
1389 if (!(read_cpuid_cachetype() & BIT(CTR_IDC_SHIFT)))
1390 sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCT, 0);
1391}
1392
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001393static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001394 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001395{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001396 u64 ctr;
1397
1398 if (scope == SCOPE_SYSTEM)
1399 ctr = arm64_ftr_reg_ctrel0.sys_val;
1400 else
1401 ctr = read_cpuid_cachetype();
1402
1403 return ctr & BIT(CTR_DIC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001404}
1405
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001406static bool __maybe_unused
1407has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope)
1408{
1409 /*
1410 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP
1411 * may share TLB entries with a CPU stuck in the crashed
1412 * kernel.
1413 */
Rich Wiley20109a82021-03-23 17:28:09 -07001414 if (is_kdump_kernel())
1415 return false;
1416
1417 if (cpus_have_const_cap(ARM64_WORKAROUND_NVIDIA_CARMEL_CNP))
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001418 return false;
1419
1420 return has_cpuid_feature(entry, scope);
1421}
1422
Mark Brown09e3c222019-12-09 18:12:17 +00001423/*
1424 * This check is triggered during the early boot before the cpufeature
1425 * is initialised. Checking the status on the local CPU allows the boot
1426 * CPU to detect the need for non-global mappings and thus avoiding a
1427 * pagetable re-write after all the CPUs are booted. This check will be
1428 * anyway run on individual CPUs, allowing us to get the consistent
1429 * state once the SMP CPUs are up and thus make the switch to non-global
1430 * mappings if required.
1431 */
1432bool kaslr_requires_kpti(void)
1433{
Mark Brown09e3c222019-12-09 18:12:17 +00001434 if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE))
1435 return false;
1436
1437 /*
1438 * E0PD does a similar job to KPTI so can be used instead
1439 * where available.
1440 */
1441 if (IS_ENABLED(CONFIG_ARM64_E0PD)) {
Will Deacona569f5f2020-01-15 14:06:37 +00001442 u64 mmfr2 = read_sysreg_s(SYS_ID_AA64MMFR2_EL1);
1443 if (cpuid_feature_extract_unsigned_field(mmfr2,
1444 ID_AA64MMFR2_E0PD_SHIFT))
Mark Brown09e3c222019-12-09 18:12:17 +00001445 return false;
1446 }
1447
1448 /*
1449 * Systems affected by Cavium erratum 24756 are incompatible
1450 * with KPTI.
1451 */
Will Deaconebac96e2020-01-15 13:59:58 +00001452 if (IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) {
Mark Brown09e3c222019-12-09 18:12:17 +00001453 extern const struct midr_range cavium_erratum_27456_cpus[];
1454
Will Deaconebac96e2020-01-15 13:59:58 +00001455 if (is_midr_in_range_list(read_cpuid_id(),
1456 cavium_erratum_27456_cpus))
1457 return false;
Mark Brown09e3c222019-12-09 18:12:17 +00001458 }
Mark Brown09e3c222019-12-09 18:12:17 +00001459
1460 return kaslr_offset() > 0;
1461}
1462
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001463static bool __meltdown_safe = true;
Will Deaconea1e3de2017-11-14 14:38:19 +00001464static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
1465
1466static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001467 int scope)
Will Deaconea1e3de2017-11-14 14:38:19 +00001468{
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001469 /* List of CPUs that are not vulnerable and don't need KPTI */
1470 static const struct midr_range kpti_safe_list[] = {
1471 MIDR_ALL_VERSIONS(MIDR_CAVIUM_THUNDERX2),
1472 MIDR_ALL_VERSIONS(MIDR_BRCM_VULCAN),
Florian Fainelli31d868c2020-01-06 14:54:12 -08001473 MIDR_ALL_VERSIONS(MIDR_BRAHMA_B53),
Will Deacon2a355ec2018-12-13 13:47:38 +00001474 MIDR_ALL_VERSIONS(MIDR_CORTEX_A35),
1475 MIDR_ALL_VERSIONS(MIDR_CORTEX_A53),
1476 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
1477 MIDR_ALL_VERSIONS(MIDR_CORTEX_A57),
1478 MIDR_ALL_VERSIONS(MIDR_CORTEX_A72),
1479 MIDR_ALL_VERSIONS(MIDR_CORTEX_A73),
Hanjun Guo0ecc4712019-03-05 21:40:58 +08001480 MIDR_ALL_VERSIONS(MIDR_HISI_TSV110),
Rich Wiley918e1942019-11-05 10:45:10 -08001481 MIDR_ALL_VERSIONS(MIDR_NVIDIA_CARMEL),
Konrad Dybcioe3dd11a2020-11-05 00:22:11 +01001482 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_GOLD),
1483 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_2XX_SILVER),
Sai Prakash Ranjanf4617be2020-06-24 18:04:06 +05301484 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_3XX_SILVER),
1485 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_4XX_SILVER),
Mark Rutland71c751f2018-04-23 11:41:33 +01001486 { /* sentinel */ }
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001487 };
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001488 char const *str = "kpti command line option";
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001489 bool meltdown_safe;
1490
1491 meltdown_safe = is_midr_in_range_list(read_cpuid_id(), kpti_safe_list);
1492
1493 /* Defer to CPU feature registers */
1494 if (has_cpuid_feature(entry, scope))
1495 meltdown_safe = true;
1496
1497 if (!meltdown_safe)
1498 __meltdown_safe = false;
Will Deacon179a56f2017-11-27 18:29:30 +00001499
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001500 /*
1501 * For reasons that aren't entirely clear, enabling KPTI on Cavium
1502 * ThunderX leads to apparent I-cache corruption of kernel text, which
1503 * ends as well as you might imagine. Don't even try.
1504 */
1505 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456)) {
1506 str = "ARM64_WORKAROUND_CAVIUM_27456";
1507 __kpti_forced = -1;
1508 }
1509
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001510 /* Useful for KASLR robustness */
Mark Brownc2d92352019-12-09 18:12:15 +00001511 if (kaslr_requires_kpti()) {
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001512 if (!__kpti_forced) {
1513 str = "KASLR";
1514 __kpti_forced = 1;
1515 }
1516 }
1517
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001518 if (cpu_mitigations_off() && !__kpti_forced) {
1519 str = "mitigations=off";
1520 __kpti_forced = -1;
1521 }
1522
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001523 if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) {
1524 pr_info_once("kernel page table isolation disabled by kernel configuration\n");
1525 return false;
1526 }
1527
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001528 /* Forced? */
Will Deaconea1e3de2017-11-14 14:38:19 +00001529 if (__kpti_forced) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001530 pr_info_once("kernel page table isolation forced %s by %s\n",
1531 __kpti_forced > 0 ? "ON" : "OFF", str);
Will Deaconea1e3de2017-11-14 14:38:19 +00001532 return __kpti_forced > 0;
1533 }
1534
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001535 return !meltdown_safe;
Will Deaconea1e3de2017-11-14 14:38:19 +00001536}
1537
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001538#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Sami Tolvanencbdac842021-04-08 11:28:39 -07001539static void __nocfi
Dave Martinc0cda3b2018-03-26 15:12:28 +01001540kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
Will Deaconf992b4d2018-02-06 22:22:50 +00001541{
1542 typedef void (kpti_remap_fn)(int, int, phys_addr_t);
1543 extern kpti_remap_fn idmap_kpti_install_ng_mappings;
1544 kpti_remap_fn *remap_fn;
1545
Will Deaconf992b4d2018-02-06 22:22:50 +00001546 int cpu = smp_processor_id();
1547
Will Deaconb89d82e2019-01-08 16:19:01 +00001548 /*
1549 * We don't need to rewrite the page-tables if either we've done
1550 * it already or we have KASLR enabled and therefore have not
1551 * created any global mappings at all.
1552 */
Mark Brown09e3c222019-12-09 18:12:17 +00001553 if (arm64_use_ng_mappings)
Dave Martinc0cda3b2018-03-26 15:12:28 +01001554 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001555
Sami Tolvanenbde33972021-04-08 11:28:38 -07001556 remap_fn = (void *)__pa_symbol(function_nocfi(idmap_kpti_install_ng_mappings));
Will Deaconf992b4d2018-02-06 22:22:50 +00001557
1558 cpu_install_idmap();
1559 remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));
1560 cpu_uninstall_idmap();
1561
1562 if (!cpu)
Mark Brown09e3c222019-12-09 18:12:17 +00001563 arm64_use_ng_mappings = true;
Will Deaconf992b4d2018-02-06 22:22:50 +00001564
Dave Martinc0cda3b2018-03-26 15:12:28 +01001565 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001566}
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001567#else
1568static void
1569kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
1570{
1571}
1572#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
Will Deaconf992b4d2018-02-06 22:22:50 +00001573
Will Deaconea1e3de2017-11-14 14:38:19 +00001574static int __init parse_kpti(char *str)
1575{
1576 bool enabled;
1577 int ret = strtobool(str, &enabled);
1578
1579 if (ret)
1580 return ret;
1581
1582 __kpti_forced = enabled ? 1 : -1;
1583 return 0;
1584}
Will Deaconb5b7dd62018-06-22 10:25:25 +01001585early_param("kpti", parse_kpti);
Will Deaconea1e3de2017-11-14 14:38:19 +00001586
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001587#ifdef CONFIG_ARM64_HW_AFDBM
1588static inline void __cpu_enable_hw_dbm(void)
1589{
1590 u64 tcr = read_sysreg(tcr_el1) | TCR_HD;
1591
1592 write_sysreg(tcr, tcr_el1);
1593 isb();
Will Deacon80d6b462020-10-01 09:48:21 +01001594 local_flush_tlb_all();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001595}
1596
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001597static bool cpu_has_broken_dbm(void)
1598{
1599 /* List of CPUs which have broken DBM support. */
1600 static const struct midr_range cpus[] = {
1601#ifdef CONFIG_ARM64_ERRATUM_1024718
Suzuki K Poulosec0b15c22021-02-03 23:00:57 +00001602 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
Sai Prakash Ranjan9b23d952020-06-30 23:30:55 +05301603 /* Kryo4xx Silver (rdpe => r1p0) */
1604 MIDR_REV(MIDR_QCOM_KRYO_4XX_SILVER, 0xd, 0xe),
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001605#endif
1606 {},
1607 };
1608
1609 return is_midr_in_range_list(read_cpuid_id(), cpus);
1610}
1611
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001612static bool cpu_can_use_dbm(const struct arm64_cpu_capabilities *cap)
1613{
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001614 return has_cpuid_feature(cap, SCOPE_LOCAL_CPU) &&
1615 !cpu_has_broken_dbm();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001616}
1617
1618static void cpu_enable_hw_dbm(struct arm64_cpu_capabilities const *cap)
1619{
1620 if (cpu_can_use_dbm(cap))
1621 __cpu_enable_hw_dbm();
1622}
1623
1624static bool has_hw_dbm(const struct arm64_cpu_capabilities *cap,
1625 int __unused)
1626{
1627 static bool detected = false;
1628 /*
1629 * DBM is a non-conflicting feature. i.e, the kernel can safely
1630 * run a mix of CPUs with and without the feature. So, we
1631 * unconditionally enable the capability to allow any late CPU
1632 * to use the feature. We only enable the control bits on the
1633 * CPU, if it actually supports.
1634 *
1635 * We have to make sure we print the "feature" detection only
1636 * when at least one CPU actually uses it. So check if this CPU
1637 * can actually use it and print the message exactly once.
1638 *
1639 * This is safe as all CPUs (including secondary CPUs - due to the
1640 * LOCAL_CPU scope - and the hotplugged CPUs - via verification)
1641 * goes through the "matches" check exactly once. Also if a CPU
1642 * matches the criteria, it is guaranteed that the CPU will turn
1643 * the DBM on, as the capability is unconditionally enabled.
1644 */
1645 if (!detected && cpu_can_use_dbm(cap)) {
1646 detected = true;
1647 pr_info("detected: Hardware dirty bit management\n");
1648 }
1649
1650 return true;
1651}
1652
1653#endif
1654
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001655#ifdef CONFIG_ARM64_AMU_EXTN
1656
1657/*
1658 * The "amu_cpus" cpumask only signals that the CPU implementation for the
1659 * flagged CPUs supports the Activity Monitors Unit (AMU) but does not provide
1660 * information regarding all the events that it supports. When a CPU bit is
1661 * set in the cpumask, the user of this feature can only rely on the presence
1662 * of the 4 fixed counters for that CPU. But this does not guarantee that the
1663 * counters are enabled or access to these counters is enabled by code
1664 * executed at higher exception levels (firmware).
1665 */
1666static struct cpumask amu_cpus __read_mostly;
1667
1668bool cpu_has_amu_feat(int cpu)
1669{
1670 return cpumask_test_cpu(cpu, &amu_cpus);
1671}
1672
Ionela Voinescu68c5deb2020-11-06 12:53:34 +00001673int get_cpu_with_amu_feat(void)
1674{
1675 return cpumask_any(&amu_cpus);
1676}
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001677
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001678static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap)
1679{
1680 if (has_cpuid_feature(cap, SCOPE_LOCAL_CPU)) {
1681 pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n",
1682 smp_processor_id());
1683 cpumask_set_cpu(smp_processor_id(), &amu_cpus);
Ionela Voinescu4b9cf232020-11-06 12:53:32 +00001684 update_freq_counters_refs();
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001685 }
1686}
1687
1688static bool has_amu(const struct arm64_cpu_capabilities *cap,
1689 int __unused)
1690{
1691 /*
1692 * The AMU extension is a non-conflicting feature: the kernel can
1693 * safely run a mix of CPUs with and without support for the
1694 * activity monitors extension. Therefore, unconditionally enable
1695 * the capability to allow any late CPU to use the feature.
1696 *
1697 * With this feature unconditionally enabled, the cpu_enable
1698 * function will be called for all CPUs that match the criteria,
1699 * including secondary and hotplugged, marking this feature as
1700 * present on that respective CPU. The enable function will also
1701 * print a detection message.
1702 */
1703
1704 return true;
1705}
Ionela Voinescu68c5deb2020-11-06 12:53:34 +00001706#else
1707int get_cpu_with_amu_feat(void)
1708{
1709 return nr_cpu_ids;
1710}
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001711#endif
1712
Will Deacon12eb3692018-03-27 11:51:12 +01001713static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
1714{
1715 return is_kernel_in_hyp_mode();
1716}
1717
Dave Martinc0cda3b2018-03-26 15:12:28 +01001718static void cpu_copy_el2regs(const struct arm64_cpu_capabilities *__unused)
James Morse6d99b682018-01-08 15:38:06 +00001719{
1720 /*
1721 * Copy register values that aren't redirected by hardware.
1722 *
1723 * Before code patching, we only set tpidr_el1, all CPUs need to copy
1724 * this value to tpidr_el2 before we patch the code. Once we've done
1725 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
1726 * do anything here.
1727 */
Julien Thierrye9ab7a22019-01-31 14:58:52 +00001728 if (!alternative_is_applied(ARM64_HAS_VIRT_HOST_EXTN))
James Morse6d99b682018-01-08 15:38:06 +00001729 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
James Morse6d99b682018-01-08 15:38:06 +00001730}
1731
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001732static void cpu_has_fwb(const struct arm64_cpu_capabilities *__unused)
1733{
1734 u64 val = read_sysreg_s(SYS_CLIDR_EL1);
1735
1736 /* Check that CLIDR_EL1.LOU{U,IS} are both 0 */
1737 WARN_ON(val & (7 << 27 | 7 << 21));
1738}
1739
Will Deaconb8925ee2018-08-07 13:53:41 +01001740#ifdef CONFIG_ARM64_PAN
1741static void cpu_enable_pan(const struct arm64_cpu_capabilities *__unused)
1742{
1743 /*
1744 * We modify PSTATE. This won't work from irq context as the PSTATE
1745 * is discarded once we return from the exception.
1746 */
1747 WARN_ON_ONCE(in_interrupt());
1748
1749 sysreg_clear_set(sctlr_el1, SCTLR_EL1_SPAN, 0);
Mark Rutland515d5c82020-11-13 12:49:22 +00001750 set_pstate_pan(1);
Will Deaconb8925ee2018-08-07 13:53:41 +01001751}
1752#endif /* CONFIG_ARM64_PAN */
1753
1754#ifdef CONFIG_ARM64_RAS_EXTN
1755static void cpu_clear_disr(const struct arm64_cpu_capabilities *__unused)
1756{
1757 /* Firmware may have left a deferred SError in this register. */
1758 write_sysreg_s(0, SYS_DISR_EL1);
1759}
1760#endif /* CONFIG_ARM64_RAS_EXTN */
1761
Mark Rutland6984eb42018-12-07 18:39:24 +00001762#ifdef CONFIG_ARM64_PTR_AUTH
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05301763static bool has_address_auth_cpucap(const struct arm64_cpu_capabilities *entry, int scope)
Mark Rutland75031972018-12-07 18:39:25 +00001764{
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05301765 int boot_val, sec_val;
1766
1767 /* We don't expect to be called with SCOPE_SYSTEM */
1768 WARN_ON(scope == SCOPE_SYSTEM);
1769 /*
1770 * The ptr-auth feature levels are not intercompatible with lower
1771 * levels. Hence we must match ptr-auth feature level of the secondary
1772 * CPUs with that of the boot CPU. The level of boot cpu is fetched
1773 * from the sanitised register whereas direct register read is done for
1774 * the secondary CPUs.
1775 * The sanitised feature state is guaranteed to match that of the
1776 * boot CPU as a mismatched secondary CPU is parked before it gets
1777 * a chance to update the state, with the capability.
1778 */
1779 boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg),
1780 entry->field_pos, entry->sign);
1781 if (scope & SCOPE_BOOT_CPU)
1782 return boot_val >= entry->min_field_value;
1783 /* Now check for the secondary CPUs with SCOPE_LOCAL_CPU scope */
1784 sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg),
1785 entry->field_pos, entry->sign);
1786 return sec_val == boot_val;
1787}
1788
1789static bool has_address_auth_metacap(const struct arm64_cpu_capabilities *entry,
1790 int scope)
1791{
1792 return has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_ARCH], scope) ||
1793 has_address_auth_cpucap(cpu_hwcaps_ptrs[ARM64_HAS_ADDRESS_AUTH_IMP_DEF], scope);
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301794}
1795
1796static bool has_generic_auth(const struct arm64_cpu_capabilities *entry,
1797 int __unused)
1798{
1799 return __system_matches_cap(ARM64_HAS_GENERIC_AUTH_ARCH) ||
1800 __system_matches_cap(ARM64_HAS_GENERIC_AUTH_IMP_DEF);
Mark Rutland75031972018-12-07 18:39:25 +00001801}
Mark Rutland6984eb42018-12-07 18:39:24 +00001802#endif /* CONFIG_ARM64_PTR_AUTH */
1803
Mark Brown3e6c69a2019-12-09 18:12:14 +00001804#ifdef CONFIG_ARM64_E0PD
1805static void cpu_enable_e0pd(struct arm64_cpu_capabilities const *cap)
1806{
1807 if (this_cpu_has_cap(ARM64_HAS_E0PD))
1808 sysreg_clear_set(tcr_el1, 0, TCR_E0PD1);
1809}
1810#endif /* CONFIG_ARM64_E0PD */
1811
Julien Thierryb90d2b22019-01-31 14:58:42 +00001812#ifdef CONFIG_ARM64_PSEUDO_NMI
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001813static bool enable_pseudo_nmi;
1814
1815static int __init early_enable_pseudo_nmi(char *p)
1816{
1817 return strtobool(p, &enable_pseudo_nmi);
1818}
1819early_param("irqchip.gicv3_pseudo_nmi", early_enable_pseudo_nmi);
1820
Julien Thierryb90d2b22019-01-31 14:58:42 +00001821static bool can_use_gic_priorities(const struct arm64_cpu_capabilities *entry,
1822 int scope)
1823{
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001824 return enable_pseudo_nmi && has_useable_gicv3_cpuif(entry, scope);
Julien Thierryb90d2b22019-01-31 14:58:42 +00001825}
1826#endif
1827
Dave Martin8ef8f3602020-03-16 16:50:45 +00001828#ifdef CONFIG_ARM64_BTI
1829static void bti_enable(const struct arm64_cpu_capabilities *__unused)
1830{
1831 /*
1832 * Use of X16/X17 for tail-calls and trampolines that jump to
1833 * function entry points using BR is a requirement for
1834 * marking binaries with GNU_PROPERTY_AARCH64_FEATURE_1_BTI.
1835 * So, be strict and forbid other BRs using other registers to
1836 * jump onto a PACIxSP instruction:
1837 */
1838 sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_BT0 | SCTLR_EL1_BT1);
1839 isb();
1840}
1841#endif /* CONFIG_ARM64_BTI */
1842
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001843#ifdef CONFIG_ARM64_MTE
1844static void cpu_enable_mte(struct arm64_cpu_capabilities const *cap)
1845{
Yee Lee7a062ce2021-08-03 15:08:22 +08001846 sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_ATA | SCTLR_EL1_ATA0);
1847 isb();
1848
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001849 /*
1850 * Clear the tags in the zero page. This needs to be done via the
1851 * linear map which has the Tagged attribute.
1852 */
Catalin Marinas68d54ce2021-02-10 18:03:16 +00001853 if (!test_and_set_bit(PG_mte_tagged, &ZERO_PAGE(0)->flags))
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001854 mte_clear_page_tags(lm_alias(empty_zero_page));
Andrey Konovalov2e903b92020-12-22 12:02:10 -08001855
1856 kasan_init_hw_tags_cpu();
Catalin Marinas34bfeea2020-05-04 14:42:36 +01001857}
1858#endif /* CONFIG_ARM64_MTE */
1859
David Brazdil3eb681f2020-12-02 18:40:58 +00001860#ifdef CONFIG_KVM
1861static bool is_kvm_protected_mode(const struct arm64_cpu_capabilities *entry, int __unused)
1862{
1863 if (kvm_get_mode() != KVM_MODE_PROTECTED)
1864 return false;
1865
1866 if (is_kernel_in_hyp_mode()) {
1867 pr_warn("Protected KVM not available with VHE\n");
1868 return false;
1869 }
1870
1871 return true;
1872}
1873#endif /* CONFIG_KVM */
1874
Amit Daniel Kachhap8c176e12020-03-13 14:34:53 +05301875/* Internal helper functions to match cpu capability type */
1876static bool
1877cpucap_late_cpu_optional(const struct arm64_cpu_capabilities *cap)
1878{
1879 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU);
1880}
1881
1882static bool
1883cpucap_late_cpu_permitted(const struct arm64_cpu_capabilities *cap)
1884{
1885 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU);
1886}
1887
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05301888static bool
1889cpucap_panic_on_conflict(const struct arm64_cpu_capabilities *cap)
1890{
1891 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT);
1892}
1893
Marc Zyngier359b7062015-03-27 13:09:23 +00001894static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +01001895 {
1896 .desc = "GIC system register CPU interface",
1897 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Julien Thierryc9bfdf72019-01-31 14:58:41 +00001898 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngier963fcd42015-09-30 11:50:04 +01001899 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001900 .sys_reg = SYS_ID_AA64PFR0_EL1,
1901 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001902 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +01001903 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +01001904 },
James Morse338d4f42015-07-22 19:05:54 +01001905#ifdef CONFIG_ARM64_PAN
1906 {
1907 .desc = "Privileged Access Never",
1908 .capability = ARM64_HAS_PAN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001909 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001910 .matches = has_cpuid_feature,
1911 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1912 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001913 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +01001914 .min_field_value = 1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001915 .cpu_enable = cpu_enable_pan,
James Morse338d4f42015-07-22 19:05:54 +01001916 },
1917#endif /* CONFIG_ARM64_PAN */
Vladimir Murzin18107f82021-03-12 17:38:10 +00001918#ifdef CONFIG_ARM64_EPAN
1919 {
1920 .desc = "Enhanced Privileged Access Never",
1921 .capability = ARM64_HAS_EPAN,
1922 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1923 .matches = has_cpuid_feature,
1924 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1925 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
1926 .sign = FTR_UNSIGNED,
1927 .min_field_value = 3,
1928 },
1929#endif /* CONFIG_ARM64_EPAN */
Catalin Marinas395af862020-01-15 11:30:08 +00001930#ifdef CONFIG_ARM64_LSE_ATOMICS
Will Deacon2e94da12015-07-27 16:23:58 +01001931 {
1932 .desc = "LSE atomic instructions",
1933 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001934 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001935 .matches = has_cpuid_feature,
1936 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1937 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001938 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +01001939 .min_field_value = 2,
1940 },
Catalin Marinas395af862020-01-15 11:30:08 +00001941#endif /* CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +00001942 {
Will Deacond5370f72016-02-02 12:46:24 +00001943 .desc = "Software prefetching using PRFM",
1944 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose5c137712018-03-26 15:12:39 +01001945 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
Will Deacond5370f72016-02-02 12:46:24 +00001946 .matches = has_no_hw_prefetch,
1947 },
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001948 {
Marc Zyngierd88701b2015-01-29 11:24:05 +00001949 .desc = "Virtualization Host Extensions",
1950 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001951 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001952 .matches = runs_at_el2,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001953 .cpu_enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001954 },
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001955 {
Will Deacon2122a832021-06-08 19:02:55 +01001956 .capability = ARM64_HAS_32BIT_EL0_DO_NOT_USE,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001957 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Will Deacon2122a832021-06-08 19:02:55 +01001958 .matches = has_32bit_el0,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001959 .sys_reg = SYS_ID_AA64PFR0_EL1,
1960 .sign = FTR_UNSIGNED,
1961 .field_pos = ID_AA64PFR0_EL0_SHIFT,
1962 .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT,
1963 },
Will Deacon540f76d2020-04-21 15:29:17 +01001964#ifdef CONFIG_KVM
1965 {
1966 .desc = "32-bit EL1 Support",
1967 .capability = ARM64_HAS_32BIT_EL1,
1968 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1969 .matches = has_cpuid_feature,
1970 .sys_reg = SYS_ID_AA64PFR0_EL1,
1971 .sign = FTR_UNSIGNED,
1972 .field_pos = ID_AA64PFR0_EL1_SHIFT,
1973 .min_field_value = ID_AA64PFR0_EL1_32BIT_64BIT,
1974 },
David Brazdil3eb681f2020-12-02 18:40:58 +00001975 {
1976 .desc = "Protected KVM",
1977 .capability = ARM64_KVM_PROTECTED_MODE,
1978 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1979 .matches = is_kvm_protected_mode,
1980 },
Will Deacon540f76d2020-04-21 15:29:17 +01001981#endif
Will Deaconea1e3de2017-11-14 14:38:19 +00001982 {
Will Deacon179a56f2017-11-27 18:29:30 +00001983 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00001984 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001985 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
1986 /*
1987 * The ID feature fields below are used to indicate that
1988 * the CPU doesn't need KPTI. See unmap_kernel_at_el0 for
1989 * more details.
1990 */
1991 .sys_reg = SYS_ID_AA64PFR0_EL1,
1992 .field_pos = ID_AA64PFR0_CSV3_SHIFT,
1993 .min_field_value = 1,
Will Deaconea1e3de2017-11-14 14:38:19 +00001994 .matches = unmap_kernel_at_el0,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001995 .cpu_enable = kpti_install_ng_mappings,
Will Deaconea1e3de2017-11-14 14:38:19 +00001996 },
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001997 {
1998 /* FP/SIMD is not implemented */
1999 .capability = ARM64_HAS_NO_FPSIMD,
Suzuki K Poulose449443c2020-01-13 23:30:19 +00002000 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
Suzuki K Poulose82e01912016-11-08 13:56:21 +00002001 .min_field_value = 0,
2002 .matches = has_no_fpsimd,
2003 },
Robin Murphyd50e0712017-07-25 11:55:42 +01002004#ifdef CONFIG_ARM64_PMEM
2005 {
2006 .desc = "Data cache clean to Point of Persistence",
2007 .capability = ARM64_HAS_DCPOP,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002008 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Robin Murphyd50e0712017-07-25 11:55:42 +01002009 .matches = has_cpuid_feature,
2010 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2011 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
2012 .min_field_value = 1,
2013 },
Andrew Murrayb9585f52019-04-09 10:52:45 +01002014 {
2015 .desc = "Data cache clean to Point of Deep Persistence",
2016 .capability = ARM64_HAS_DCPODP,
2017 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2018 .matches = has_cpuid_feature,
2019 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2020 .sign = FTR_UNSIGNED,
2021 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
2022 .min_field_value = 2,
2023 },
Robin Murphyd50e0712017-07-25 11:55:42 +01002024#endif
Dave Martin43994d82017-10-31 15:51:19 +00002025#ifdef CONFIG_ARM64_SVE
2026 {
2027 .desc = "Scalable Vector Extension",
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002028 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Dave Martin43994d82017-10-31 15:51:19 +00002029 .capability = ARM64_SVE,
Dave Martin43994d82017-10-31 15:51:19 +00002030 .sys_reg = SYS_ID_AA64PFR0_EL1,
2031 .sign = FTR_UNSIGNED,
2032 .field_pos = ID_AA64PFR0_SVE_SHIFT,
2033 .min_field_value = ID_AA64PFR0_SVE,
2034 .matches = has_cpuid_feature,
Dave Martinc0cda3b2018-03-26 15:12:28 +01002035 .cpu_enable = sve_kernel_enable,
Dave Martin43994d82017-10-31 15:51:19 +00002036 },
2037#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00002038#ifdef CONFIG_ARM64_RAS_EXTN
2039 {
2040 .desc = "RAS Extension Support",
2041 .capability = ARM64_HAS_RAS_EXTN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002042 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Xie XiuQi64c02722018-01-15 19:38:56 +00002043 .matches = has_cpuid_feature,
2044 .sys_reg = SYS_ID_AA64PFR0_EL1,
2045 .sign = FTR_UNSIGNED,
2046 .field_pos = ID_AA64PFR0_RAS_SHIFT,
2047 .min_field_value = ID_AA64PFR0_RAS_V1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01002048 .cpu_enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00002049 },
2050#endif /* CONFIG_ARM64_RAS_EXTN */
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00002051#ifdef CONFIG_ARM64_AMU_EXTN
2052 {
2053 /*
2054 * The feature is enabled by default if CONFIG_ARM64_AMU_EXTN=y.
2055 * Therefore, don't provide .desc as we don't want the detection
2056 * message to be shown until at least one CPU is detected to
2057 * support the feature.
2058 */
2059 .capability = ARM64_HAS_AMU_EXTN,
2060 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
2061 .matches = has_amu,
2062 .sys_reg = SYS_ID_AA64PFR0_EL1,
2063 .sign = FTR_UNSIGNED,
2064 .field_pos = ID_AA64PFR0_AMU_SHIFT,
2065 .min_field_value = ID_AA64PFR0_AMU,
2066 .cpu_enable = cpu_amu_enable,
2067 },
2068#endif /* CONFIG_ARM64_AMU_EXTN */
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002069 {
2070 .desc = "Data cache clean to the PoU not required for I/D coherence",
2071 .capability = ARM64_HAS_CACHE_IDC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002072 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002073 .matches = has_cache_idc,
Suzuki K Poulose1602df02018-10-09 14:47:06 +01002074 .cpu_enable = cpu_emulate_effective_ctr,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002075 },
2076 {
2077 .desc = "Instruction cache invalidation not required for I/D coherence",
2078 .capability = ARM64_HAS_CACHE_DIC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01002079 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06002080 .matches = has_cache_dic,
2081 },
Marc Zyngiere48d53a2018-04-06 12:27:28 +01002082 {
2083 .desc = "Stage-2 Force Write-Back",
2084 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2085 .capability = ARM64_HAS_STAGE2_FWB,
2086 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2087 .sign = FTR_UNSIGNED,
2088 .field_pos = ID_AA64MMFR2_FWB_SHIFT,
2089 .min_field_value = 1,
2090 .matches = has_cpuid_feature,
2091 .cpu_enable = cpu_has_fwb,
2092 },
Marc Zyngier552ae762018-12-22 12:00:10 +00002093 {
2094 .desc = "ARMv8.4 Translation Table Level",
2095 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2096 .capability = ARM64_HAS_ARMv8_4_TTL,
2097 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2098 .sign = FTR_UNSIGNED,
2099 .field_pos = ID_AA64MMFR2_TTL_SHIFT,
2100 .min_field_value = 1,
2101 .matches = has_cpuid_feature,
2102 },
Zhenyu Yeb620ba52020-07-15 15:19:43 +08002103 {
2104 .desc = "TLB range maintenance instructions",
2105 .capability = ARM64_HAS_TLB_RANGE,
2106 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2107 .matches = has_cpuid_feature,
2108 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2109 .field_pos = ID_AA64ISAR0_TLB_SHIFT,
2110 .sign = FTR_UNSIGNED,
2111 .min_field_value = ID_AA64ISAR0_TLB_RANGE,
2112 },
Suzuki K Poulose05abb592018-03-26 15:12:48 +01002113#ifdef CONFIG_ARM64_HW_AFDBM
2114 {
2115 /*
2116 * Since we turn this on always, we don't want the user to
2117 * think that the feature is available when it may not be.
2118 * So hide the description.
2119 *
2120 * .desc = "Hardware pagetable Dirty Bit Management",
2121 *
2122 */
2123 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
2124 .capability = ARM64_HW_DBM,
2125 .sys_reg = SYS_ID_AA64MMFR1_EL1,
2126 .sign = FTR_UNSIGNED,
2127 .field_pos = ID_AA64MMFR1_HADBS_SHIFT,
2128 .min_field_value = 2,
2129 .matches = has_hw_dbm,
2130 .cpu_enable = cpu_enable_hw_dbm,
2131 },
2132#endif
Ard Biesheuvel86d0dd32018-08-27 13:02:43 +02002133 {
2134 .desc = "CRC32 instructions",
2135 .capability = ARM64_HAS_CRC32,
2136 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2137 .matches = has_cpuid_feature,
2138 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2139 .field_pos = ID_AA64ISAR0_CRC32_SHIFT,
2140 .min_field_value = 1,
2141 },
Will Deacond71be2b2018-06-15 11:37:34 +01002142 {
2143 .desc = "Speculative Store Bypassing Safe (SSBS)",
2144 .capability = ARM64_SSBS,
Will Deacon532d5812020-09-15 23:56:12 +01002145 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Will Deacond71be2b2018-06-15 11:37:34 +01002146 .matches = has_cpuid_feature,
2147 .sys_reg = SYS_ID_AA64PFR1_EL1,
2148 .field_pos = ID_AA64PFR1_SSBS_SHIFT,
2149 .sign = FTR_UNSIGNED,
2150 .min_field_value = ID_AA64PFR1_SSBS_PSTATE_ONLY,
2151 },
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002152#ifdef CONFIG_ARM64_CNP
2153 {
2154 .desc = "Common not Private translations",
2155 .capability = ARM64_HAS_CNP,
2156 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2157 .matches = has_useable_cnp,
2158 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2159 .sign = FTR_UNSIGNED,
2160 .field_pos = ID_AA64MMFR2_CNP_SHIFT,
2161 .min_field_value = 1,
2162 .cpu_enable = cpu_enable_cnp,
2163 },
2164#endif
Will Deaconbd4fb6d2018-06-14 11:21:34 +01002165 {
2166 .desc = "Speculation barrier (SB)",
2167 .capability = ARM64_HAS_SB,
2168 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2169 .matches = has_cpuid_feature,
2170 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2171 .field_pos = ID_AA64ISAR1_SB_SHIFT,
2172 .sign = FTR_UNSIGNED,
2173 .min_field_value = 1,
2174 },
Mark Rutland6984eb42018-12-07 18:39:24 +00002175#ifdef CONFIG_ARM64_PTR_AUTH
2176 {
2177 .desc = "Address authentication (architected algorithm)",
2178 .capability = ARM64_HAS_ADDRESS_AUTH_ARCH,
Kristina Martsenko69829342020-03-13 14:34:55 +05302179 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00002180 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2181 .sign = FTR_UNSIGNED,
2182 .field_pos = ID_AA64ISAR1_APA_SHIFT,
2183 .min_field_value = ID_AA64ISAR1_APA_ARCHITECTED,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302184 .matches = has_address_auth_cpucap,
Mark Rutland6984eb42018-12-07 18:39:24 +00002185 },
2186 {
2187 .desc = "Address authentication (IMP DEF algorithm)",
2188 .capability = ARM64_HAS_ADDRESS_AUTH_IMP_DEF,
Kristina Martsenko69829342020-03-13 14:34:55 +05302189 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00002190 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2191 .sign = FTR_UNSIGNED,
2192 .field_pos = ID_AA64ISAR1_API_SHIFT,
2193 .min_field_value = ID_AA64ISAR1_API_IMP_DEF,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302194 .matches = has_address_auth_cpucap,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05302195 },
2196 {
2197 .capability = ARM64_HAS_ADDRESS_AUTH,
Kristina Martsenko69829342020-03-13 14:34:55 +05302198 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Amit Daniel Kachhapba9d1d32020-09-14 14:06:54 +05302199 .matches = has_address_auth_metacap,
Mark Rutland6984eb42018-12-07 18:39:24 +00002200 },
2201 {
2202 .desc = "Generic authentication (architected algorithm)",
2203 .capability = ARM64_HAS_GENERIC_AUTH_ARCH,
2204 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2205 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2206 .sign = FTR_UNSIGNED,
2207 .field_pos = ID_AA64ISAR1_GPA_SHIFT,
2208 .min_field_value = ID_AA64ISAR1_GPA_ARCHITECTED,
2209 .matches = has_cpuid_feature,
2210 },
2211 {
2212 .desc = "Generic authentication (IMP DEF algorithm)",
2213 .capability = ARM64_HAS_GENERIC_AUTH_IMP_DEF,
2214 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2215 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2216 .sign = FTR_UNSIGNED,
2217 .field_pos = ID_AA64ISAR1_GPI_SHIFT,
2218 .min_field_value = ID_AA64ISAR1_GPI_IMP_DEF,
2219 .matches = has_cpuid_feature,
2220 },
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05302221 {
2222 .capability = ARM64_HAS_GENERIC_AUTH,
2223 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2224 .matches = has_generic_auth,
2225 },
Mark Rutland6984eb42018-12-07 18:39:24 +00002226#endif /* CONFIG_ARM64_PTR_AUTH */
Julien Thierryb90d2b22019-01-31 14:58:42 +00002227#ifdef CONFIG_ARM64_PSEUDO_NMI
2228 {
2229 /*
2230 * Depends on having GICv3
2231 */
2232 .desc = "IRQ priority masking",
2233 .capability = ARM64_HAS_IRQ_PRIO_MASKING,
2234 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2235 .matches = can_use_gic_priorities,
2236 .sys_reg = SYS_ID_AA64PFR0_EL1,
2237 .field_pos = ID_AA64PFR0_GIC_SHIFT,
2238 .sign = FTR_UNSIGNED,
2239 .min_field_value = 1,
2240 },
2241#endif
Mark Brown3e6c69a2019-12-09 18:12:14 +00002242#ifdef CONFIG_ARM64_E0PD
2243 {
2244 .desc = "E0PD",
2245 .capability = ARM64_HAS_E0PD,
2246 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2247 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2248 .sign = FTR_UNSIGNED,
2249 .field_pos = ID_AA64MMFR2_E0PD_SHIFT,
2250 .matches = has_cpuid_feature,
2251 .min_field_value = 1,
2252 .cpu_enable = cpu_enable_e0pd,
2253 },
2254#endif
Richard Henderson1a50ec02020-01-21 12:58:52 +00002255#ifdef CONFIG_ARCH_RANDOM
2256 {
2257 .desc = "Random Number Generator",
2258 .capability = ARM64_HAS_RNG,
2259 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2260 .matches = has_cpuid_feature,
2261 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2262 .field_pos = ID_AA64ISAR0_RNDR_SHIFT,
2263 .sign = FTR_UNSIGNED,
2264 .min_field_value = 1,
2265 },
2266#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002267#ifdef CONFIG_ARM64_BTI
2268 {
2269 .desc = "Branch Target Identification",
2270 .capability = ARM64_BTI,
Mark Brownc8027282020-05-06 20:51:31 +01002271#ifdef CONFIG_ARM64_BTI_KERNEL
2272 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2273#else
Dave Martin8ef8f3602020-03-16 16:50:45 +00002274 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Mark Brownc8027282020-05-06 20:51:31 +01002275#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002276 .matches = has_cpuid_feature,
2277 .cpu_enable = bti_enable,
2278 .sys_reg = SYS_ID_AA64PFR1_EL1,
2279 .field_pos = ID_AA64PFR1_BT_SHIFT,
2280 .min_field_value = ID_AA64PFR1_BT_BTI,
2281 .sign = FTR_UNSIGNED,
2282 },
2283#endif
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002284#ifdef CONFIG_ARM64_MTE
2285 {
2286 .desc = "Memory Tagging Extension",
2287 .capability = ARM64_MTE,
2288 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2289 .matches = has_cpuid_feature,
2290 .sys_reg = SYS_ID_AA64PFR1_EL1,
2291 .field_pos = ID_AA64PFR1_MTE_SHIFT,
2292 .min_field_value = ID_AA64PFR1_MTE,
2293 .sign = FTR_UNSIGNED,
Catalin Marinas34bfeea2020-05-04 14:42:36 +01002294 .cpu_enable = cpu_enable_mte,
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002295 },
2296#endif /* CONFIG_ARM64_MTE */
Will Deacon364a5a82020-06-30 14:02:22 +01002297 {
2298 .desc = "RCpc load-acquire (LDAPR)",
2299 .capability = ARM64_HAS_LDAPR,
2300 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2301 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2302 .sign = FTR_UNSIGNED,
2303 .field_pos = ID_AA64ISAR1_LRCPC_SHIFT,
2304 .matches = has_cpuid_feature,
2305 .min_field_value = 1,
2306 },
Marc Zyngier359b7062015-03-27 13:09:23 +00002307 {},
2308};
2309
Will Deacon1e013d02018-12-12 15:53:54 +00002310#define HWCAP_CPUID_MATCH(reg, field, s, min_value) \
2311 .matches = has_cpuid_feature, \
2312 .sys_reg = reg, \
2313 .field_pos = field, \
2314 .sign = s, \
2315 .min_field_value = min_value,
2316
2317#define __HWCAP_CAP(name, cap_type, cap) \
2318 .desc = name, \
2319 .type = ARM64_CPUCAP_SYSTEM_FEATURE, \
2320 .hwcap_type = cap_type, \
2321 .hwcap = cap, \
2322
2323#define HWCAP_CAP(reg, field, s, min_value, cap_type, cap) \
2324 { \
2325 __HWCAP_CAP(#cap, cap_type, cap) \
2326 HWCAP_CPUID_MATCH(reg, field, s, min_value) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002327 }
2328
Will Deacon1e013d02018-12-12 15:53:54 +00002329#define HWCAP_MULTI_CAP(list, cap_type, cap) \
2330 { \
2331 __HWCAP_CAP(#cap, cap_type, cap) \
2332 .matches = cpucap_multi_entry_cap_matches, \
2333 .match_list = list, \
2334 }
2335
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002336#define HWCAP_CAP_MATCH(match, cap_type, cap) \
2337 { \
2338 __HWCAP_CAP(#cap, cap_type, cap) \
2339 .matches = match, \
2340 }
2341
Will Deacon1e013d02018-12-12 15:53:54 +00002342#ifdef CONFIG_ARM64_PTR_AUTH
2343static const struct arm64_cpu_capabilities ptr_auth_hwcap_addr_matches[] = {
2344 {
2345 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_APA_SHIFT,
2346 FTR_UNSIGNED, ID_AA64ISAR1_APA_ARCHITECTED)
2347 },
2348 {
2349 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_API_SHIFT,
2350 FTR_UNSIGNED, ID_AA64ISAR1_API_IMP_DEF)
2351 },
2352 {},
2353};
2354
2355static const struct arm64_cpu_capabilities ptr_auth_hwcap_gen_matches[] = {
2356 {
2357 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPA_SHIFT,
2358 FTR_UNSIGNED, ID_AA64ISAR1_GPA_ARCHITECTED)
2359 },
2360 {
2361 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPI_SHIFT,
2362 FTR_UNSIGNED, ID_AA64ISAR1_GPI_IMP_DEF)
2363 },
2364 {},
2365};
2366#endif
2367
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002368static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Andrew Murrayaaba0982019-04-09 10:52:40 +01002369 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_PMULL),
2370 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_AES),
2371 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA1),
2372 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA2),
2373 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_SHA512),
2374 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_CRC32),
2375 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ATOMICS),
2376 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDRDM),
2377 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA3),
2378 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM3),
2379 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM4),
2380 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDDP),
2381 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDFHM),
2382 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_TS_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FLAGM),
Mark Brown12019372019-06-18 19:10:54 +01002383 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 +00002384 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 +01002385 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_FP),
2386 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP),
2387 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD),
2388 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP),
2389 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_DIT_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT),
2390 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DCPOP),
Andrew Murray671db582019-04-09 10:52:43 +01002391 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 +01002392 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT),
2393 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FCMA),
2394 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_LRCPC),
2395 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ILRCPC),
Mark Brownca9503f2019-06-18 19:10:55 +01002396 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 +01002397 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 +00002398 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_BF16_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_BF16),
2399 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DGH_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DGH),
2400 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_I8MM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_I8MM),
Andrew Murrayaaba0982019-04-09 10:52:40 +01002401 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 +00002402#ifdef CONFIG_ARM64_SVE
Andrew Murrayaaba0982019-04-09 10:52:40 +01002403 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 +01002404 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SVEVER_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SVEVER_SVE2, CAP_HWCAP, KERNEL_HWCAP_SVE2),
2405 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES, CAP_HWCAP, KERNEL_HWCAP_SVEAES),
2406 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES_PMULL, CAP_HWCAP, KERNEL_HWCAP_SVEPMULL),
2407 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_BITPERM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_BITPERM, CAP_HWCAP, KERNEL_HWCAP_SVEBITPERM),
Steven Priced4209d82019-12-16 11:33:37 +00002408 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 +01002409 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SHA3_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SHA3, CAP_HWCAP, KERNEL_HWCAP_SVESHA3),
2410 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SM4_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SM4, CAP_HWCAP, KERNEL_HWCAP_SVESM4),
Steven Priced4209d82019-12-16 11:33:37 +00002411 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_I8MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_I8MM, CAP_HWCAP, KERNEL_HWCAP_SVEI8MM),
2412 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F32MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F32MM, CAP_HWCAP, KERNEL_HWCAP_SVEF32MM),
2413 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F64MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F64MM, CAP_HWCAP, KERNEL_HWCAP_SVEF64MM),
Dave Martin43994d82017-10-31 15:51:19 +00002414#endif
Andrew Murrayaaba0982019-04-09 10:52:40 +01002415 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 +00002416#ifdef CONFIG_ARM64_BTI
2417 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_BT_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_BT_BTI, CAP_HWCAP, KERNEL_HWCAP_BTI),
2418#endif
Mark Rutland75031972018-12-07 18:39:25 +00002419#ifdef CONFIG_ARM64_PTR_AUTH
Andrew Murrayaaba0982019-04-09 10:52:40 +01002420 HWCAP_MULTI_CAP(ptr_auth_hwcap_addr_matches, CAP_HWCAP, KERNEL_HWCAP_PACA),
2421 HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG),
Mark Rutland75031972018-12-07 18:39:25 +00002422#endif
Vincenzo Frascino3b714d22019-09-06 10:58:01 +01002423#ifdef CONFIG_ARM64_MTE
2424 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_MTE_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_MTE, CAP_HWCAP, KERNEL_HWCAP_MTE),
2425#endif /* CONFIG_ARM64_MTE */
Suzuki K Poulose75283502016-04-18 10:28:33 +01002426 {},
2427};
2428
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002429#ifdef CONFIG_COMPAT
2430static bool compat_has_neon(const struct arm64_cpu_capabilities *cap, int scope)
2431{
2432 /*
2433 * Check that all of MVFR1_EL1.{SIMDSP, SIMDInt, SIMDLS} are available,
2434 * in line with that of arm32 as in vfp_init(). We make sure that the
2435 * check is future proof, by making sure value is non-zero.
2436 */
2437 u32 mvfr1;
2438
2439 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
2440 if (scope == SCOPE_SYSTEM)
2441 mvfr1 = read_sanitised_ftr_reg(SYS_MVFR1_EL1);
2442 else
2443 mvfr1 = read_sysreg_s(SYS_MVFR1_EL1);
2444
2445 return cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDSP_SHIFT) &&
2446 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDINT_SHIFT) &&
2447 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDLS_SHIFT);
2448}
2449#endif
2450
Suzuki K Poulose75283502016-04-18 10:28:33 +01002451static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002452#ifdef CONFIG_COMPAT
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002453 HWCAP_CAP_MATCH(compat_has_neon, CAP_COMPAT_HWCAP, COMPAT_HWCAP_NEON),
2454 HWCAP_CAP(SYS_MVFR1_EL1, MVFR1_SIMDFMAC_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv4),
2455 /* Arm v8 mandates MVFR0.FPDP == {0, 2}. So, piggy back on this for the presence of VFP support */
2456 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFP),
2457 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv3),
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00002458 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
2459 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
2460 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
2461 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
2462 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_CRC32),
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002463#endif
2464 {},
2465};
2466
Will Deacon2122a832021-06-08 19:02:55 +01002467static void cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002468{
2469 switch (cap->hwcap_type) {
2470 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002471 cpu_set_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002472 break;
2473#ifdef CONFIG_COMPAT
2474 case CAP_COMPAT_HWCAP:
2475 compat_elf_hwcap |= (u32)cap->hwcap;
2476 break;
2477 case CAP_COMPAT_HWCAP2:
2478 compat_elf_hwcap2 |= (u32)cap->hwcap;
2479 break;
2480#endif
2481 default:
2482 WARN_ON(1);
2483 break;
2484 }
2485}
2486
2487/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002488static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002489{
2490 bool rc;
2491
2492 switch (cap->hwcap_type) {
2493 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002494 rc = cpu_have_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002495 break;
2496#ifdef CONFIG_COMPAT
2497 case CAP_COMPAT_HWCAP:
2498 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
2499 break;
2500 case CAP_COMPAT_HWCAP2:
2501 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
2502 break;
2503#endif
2504 default:
2505 WARN_ON(1);
2506 rc = false;
2507 }
2508
2509 return rc;
2510}
2511
Will Deacon2122a832021-06-08 19:02:55 +01002512static void setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002513{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002514 /* We support emulation of accesses to CPU ID feature registers */
Andrew Murrayaaba0982019-04-09 10:52:40 +01002515 cpu_set_named_feature(CPUID);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002516 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose143ba052018-03-26 15:12:31 +01002517 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps)))
Suzuki K Poulose75283502016-04-18 10:28:33 +01002518 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002519}
2520
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002521static void update_cpu_capabilities(u16 scope_mask)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002522{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002523 int i;
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002524 const struct arm64_cpu_capabilities *caps;
2525
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002526 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002527 for (i = 0; i < ARM64_NCAPS; i++) {
2528 caps = cpu_hwcaps_ptrs[i];
2529 if (!caps || !(caps->type & scope_mask) ||
2530 cpus_have_cap(caps->capability) ||
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002531 !caps->matches(caps, cpucap_default_scope(caps)))
Marc Zyngier359b7062015-03-27 13:09:23 +00002532 continue;
2533
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002534 if (caps->desc)
2535 pr_info("detected: %s\n", caps->desc);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002536 cpus_set_cap(caps->capability);
Daniel Thompson0ceb0d52019-01-31 14:58:53 +00002537
2538 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU))
2539 set_bit(caps->capability, boot_capabilities);
Marc Zyngier359b7062015-03-27 13:09:23 +00002540 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002541}
James Morse1c076302015-07-21 13:23:28 +01002542
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002543/*
2544 * Enable all the available capabilities on this CPU. The capabilities
2545 * with BOOT_CPU scope are handled separately and hence skipped here.
2546 */
2547static int cpu_enable_non_boot_scope_capabilities(void *__unused)
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002548{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002549 int i;
2550 u16 non_boot_scope = SCOPE_ALL & ~SCOPE_BOOT_CPU;
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002551
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002552 for_each_available_cap(i) {
2553 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[i];
Dave Martinc0cda3b2018-03-26 15:12:28 +01002554
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002555 if (WARN_ON(!cap))
2556 continue;
2557
2558 if (!(cap->type & non_boot_scope))
2559 continue;
2560
2561 if (cap->cpu_enable)
2562 cap->cpu_enable(cap);
2563 }
Dave Martinc0cda3b2018-03-26 15:12:28 +01002564 return 0;
2565}
2566
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002567/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002568 * Run through the enabled capabilities and enable() it on all active
2569 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002570 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002571static void __init enable_cpu_capabilities(u16 scope_mask)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002572{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002573 int i;
2574 const struct arm64_cpu_capabilities *caps;
2575 bool boot_scope;
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002576
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002577 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2578 boot_scope = !!(scope_mask & SCOPE_BOOT_CPU);
2579
2580 for (i = 0; i < ARM64_NCAPS; i++) {
2581 unsigned int num;
2582
2583 caps = cpu_hwcaps_ptrs[i];
2584 if (!caps || !(caps->type & scope_mask))
2585 continue;
2586 num = caps->capability;
2587 if (!cpus_have_cap(num))
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002588 continue;
2589
2590 /* Ensure cpus_have_const_cap(num) works */
2591 static_branch_enable(&cpu_hwcap_keys[num]);
2592
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002593 if (boot_scope && caps->cpu_enable)
James Morse2a6dcb22016-10-18 11:27:46 +01002594 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002595 * Capabilities with SCOPE_BOOT_CPU scope are finalised
2596 * before any secondary CPU boots. Thus, each secondary
2597 * will enable the capability as appropriate via
2598 * check_local_cpu_capabilities(). The only exception is
2599 * the boot CPU, for which the capability must be
2600 * enabled here. This approach avoids costly
2601 * stop_machine() calls for this case.
James Morse2a6dcb22016-10-18 11:27:46 +01002602 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002603 caps->cpu_enable(caps);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002604 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002605
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002606 /*
2607 * For all non-boot scope capabilities, use stop_machine()
2608 * as it schedules the work allowing us to modify PSTATE,
2609 * instead of on_each_cpu() which uses an IPI, giving us a
2610 * PSTATE that disappears when we return.
2611 */
2612 if (!boot_scope)
2613 stop_machine(cpu_enable_non_boot_scope_capabilities,
2614 NULL, cpu_online_mask);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002615}
2616
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002617/*
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002618 * Run through the list of capabilities to check for conflicts.
2619 * If the system has already detected a capability, take necessary
2620 * action on this CPU.
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002621 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302622static void verify_local_cpu_caps(u16 scope_mask)
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002623{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002624 int i;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002625 bool cpu_has_cap, system_has_cap;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002626 const struct arm64_cpu_capabilities *caps;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002627
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002628 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2629
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002630 for (i = 0; i < ARM64_NCAPS; i++) {
2631 caps = cpu_hwcaps_ptrs[i];
2632 if (!caps || !(caps->type & scope_mask))
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002633 continue;
2634
Suzuki K Pouloseba7d9232018-03-26 15:12:46 +01002635 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002636 system_has_cap = cpus_have_cap(caps->capability);
2637
2638 if (system_has_cap) {
2639 /*
2640 * Check if the new CPU misses an advertised feature,
2641 * which is not safe to miss.
2642 */
2643 if (!cpu_has_cap && !cpucap_late_cpu_optional(caps))
2644 break;
2645 /*
2646 * We have to issue cpu_enable() irrespective of
2647 * whether the CPU has it or not, as it is enabeld
2648 * system wide. It is upto the call back to take
2649 * appropriate action on this CPU.
2650 */
2651 if (caps->cpu_enable)
2652 caps->cpu_enable(caps);
2653 } else {
2654 /*
2655 * Check if the CPU has this capability if it isn't
2656 * safe to have when the system doesn't.
2657 */
2658 if (cpu_has_cap && !cpucap_late_cpu_permitted(caps))
2659 break;
2660 }
2661 }
2662
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002663 if (i < ARM64_NCAPS) {
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002664 pr_crit("CPU%d: Detected conflict for capability %d (%s), System: %d, CPU: %d\n",
2665 smp_processor_id(), caps->capability,
2666 caps->desc, system_has_cap, cpu_has_cap);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002667
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302668 if (cpucap_panic_on_conflict(caps))
2669 cpu_panic_kernel();
2670 else
2671 cpu_die_early();
2672 }
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002673}
2674
2675/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002676 * Check for CPU features that are used in early boot
2677 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002678 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002679static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00002680{
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002681 verify_cpu_asid_bits();
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302682
2683 verify_local_cpu_caps(SCOPE_BOOT_CPU);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002684}
2685
Suzuki K Poulose75283502016-04-18 10:28:33 +01002686static void
Will Deacon2122a832021-06-08 19:02:55 +01002687__verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
Suzuki K Poulose75283502016-04-18 10:28:33 +01002688{
2689
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002690 for (; caps->matches; caps++)
2691 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01002692 pr_crit("CPU%d: missing HWCAP: %s\n",
2693 smp_processor_id(), caps->desc);
2694 cpu_die_early();
2695 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01002696}
2697
Will Deacon2122a832021-06-08 19:02:55 +01002698static void verify_local_elf_hwcaps(void)
2699{
2700 __verify_local_elf_hwcaps(arm64_elf_hwcaps);
2701
2702 if (id_aa64pfr0_32bit_el0(read_cpuid(ID_AA64PFR0_EL1)))
2703 __verify_local_elf_hwcaps(compat_elf_hwcaps);
2704}
2705
Dave Martin2e0f2472017-10-31 15:51:10 +00002706static void verify_sve_features(void)
2707{
2708 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
2709 u64 zcr = read_zcr_features();
2710
2711 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
2712 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
2713
2714 if (len < safe_len || sve_verify_vq_map()) {
Dave Martind06b76b2018-09-28 14:39:10 +01002715 pr_crit("CPU%d: SVE: vector length support mismatch\n",
Dave Martin2e0f2472017-10-31 15:51:10 +00002716 smp_processor_id());
2717 cpu_die_early();
2718 }
2719
2720 /* Add checks on other ZCR bits here if necessary */
2721}
2722
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302723static void verify_hyp_capabilities(void)
2724{
2725 u64 safe_mmfr1, mmfr0, mmfr1;
2726 int parange, ipa_max;
2727 unsigned int safe_vmid_bits, vmid_bits;
2728
Shannon Zhao45ba7b12021-01-04 19:38:44 +08002729 if (!IS_ENABLED(CONFIG_KVM))
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302730 return;
2731
2732 safe_mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
2733 mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
2734 mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
2735
2736 /* Verify VMID bits */
2737 safe_vmid_bits = get_vmid_bits(safe_mmfr1);
2738 vmid_bits = get_vmid_bits(mmfr1);
2739 if (vmid_bits < safe_vmid_bits) {
2740 pr_crit("CPU%d: VMID width mismatch\n", smp_processor_id());
2741 cpu_die_early();
2742 }
2743
2744 /* Verify IPA range */
Anshuman Khandualf73531f2020-05-13 14:33:34 +05302745 parange = cpuid_feature_extract_unsigned_field(mmfr0,
2746 ID_AA64MMFR0_PARANGE_SHIFT);
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302747 ipa_max = id_aa64mmfr0_parange_to_phys_shift(parange);
2748 if (ipa_max < get_kvm_ipa_limit()) {
2749 pr_crit("CPU%d: IPA range mismatch\n", smp_processor_id());
2750 cpu_die_early();
2751 }
2752}
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +01002753
2754/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002755 * Run through the enabled system capabilities and enable() it on this CPU.
2756 * The capabilities were decided based on the available CPUs at the boot time.
2757 * Any new CPU should match the system wide status of the capability. If the
2758 * new CPU doesn't have a capability which the system now has enabled, we
2759 * cannot do anything to fix it up and could cause unexpected failures. So
2760 * we park the CPU.
2761 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002762static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002763{
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002764 /*
2765 * The capabilities with SCOPE_BOOT_CPU are checked from
2766 * check_early_cpu_features(), as they need to be verified
2767 * on all secondary CPUs.
2768 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302769 verify_local_cpu_caps(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Will Deacon2122a832021-06-08 19:02:55 +01002770 verify_local_elf_hwcaps();
Dave Martin2e0f2472017-10-31 15:51:10 +00002771
2772 if (system_supports_sve())
2773 verify_sve_features();
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302774
2775 if (is_hyp_mode_available())
2776 verify_hyp_capabilities();
Marc Zyngier359b7062015-03-27 13:09:23 +00002777}
2778
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002779void check_local_cpu_capabilities(void)
2780{
2781 /*
2782 * All secondary CPUs should conform to the early CPU features
2783 * in use by the kernel based on boot CPU.
2784 */
2785 check_early_cpu_features();
2786
2787 /*
2788 * If we haven't finalised the system capabilities, this CPU gets
Suzuki K Poulosefbd890b2018-03-26 15:12:37 +01002789 * a chance to update the errata work arounds and local features.
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002790 * Otherwise, this CPU should verify that it has all the system
2791 * advertised capabilities.
2792 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002793 if (!system_capabilities_finalized())
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002794 update_cpu_capabilities(SCOPE_LOCAL_CPU);
2795 else
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002796 verify_local_cpu_capabilities();
2797}
2798
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002799static void __init setup_boot_cpu_capabilities(void)
2800{
2801 /* Detect capabilities with either SCOPE_BOOT_CPU or SCOPE_LOCAL_CPU */
2802 update_cpu_capabilities(SCOPE_BOOT_CPU | SCOPE_LOCAL_CPU);
2803 /* Enable the SCOPE_BOOT_CPU capabilities alone right away */
2804 enable_cpu_capabilities(SCOPE_BOOT_CPU);
2805}
2806
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002807bool this_cpu_has_cap(unsigned int n)
Marc Zyngier8f4137582017-01-30 15:39:52 +00002808{
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002809 if (!WARN_ON(preemptible()) && n < ARM64_NCAPS) {
2810 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2811
2812 if (cap)
2813 return cap->matches(cap, SCOPE_LOCAL_CPU);
2814 }
2815
2816 return false;
Marc Zyngier8f4137582017-01-30 15:39:52 +00002817}
2818
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302819/*
2820 * This helper function is used in a narrow window when,
2821 * - The system wide safe registers are set with all the SMP CPUs and,
2822 * - The SYSTEM_FEATURE cpu_hwcaps may not have been set.
2823 * In all other cases cpus_have_{const_}cap() should be used.
2824 */
Mark Rutland701f49062020-12-03 15:24:03 +00002825static bool __maybe_unused __system_matches_cap(unsigned int n)
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302826{
2827 if (n < ARM64_NCAPS) {
2828 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2829
2830 if (cap)
2831 return cap->matches(cap, SCOPE_SYSTEM);
2832 }
2833 return false;
2834}
2835
Andrew Murrayaec0bff2019-04-09 10:52:41 +01002836void cpu_set_feature(unsigned int num)
2837{
2838 WARN_ON(num >= MAX_CPU_FEATURES);
2839 elf_hwcap |= BIT(num);
2840}
2841EXPORT_SYMBOL_GPL(cpu_set_feature);
2842
2843bool cpu_have_feature(unsigned int num)
2844{
2845 WARN_ON(num >= MAX_CPU_FEATURES);
2846 return elf_hwcap & BIT(num);
2847}
2848EXPORT_SYMBOL_GPL(cpu_have_feature);
2849
2850unsigned long cpu_get_elf_hwcap(void)
2851{
2852 /*
2853 * We currently only populate the first 32 bits of AT_HWCAP. Please
2854 * note that for userspace compatibility we guarantee that bits 62
2855 * and 63 will always be returned as 0.
2856 */
2857 return lower_32_bits(elf_hwcap);
2858}
2859
2860unsigned long cpu_get_elf_hwcap2(void)
2861{
2862 return upper_32_bits(elf_hwcap);
2863}
2864
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002865static void __init setup_system_capabilities(void)
2866{
2867 /*
2868 * We have finalised the system-wide safe feature
2869 * registers, finalise the capabilities that depend
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002870 * on it. Also enable all the available capabilities,
2871 * that are not enabled already.
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002872 */
2873 update_cpu_capabilities(SCOPE_SYSTEM);
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002874 enable_cpu_capabilities(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002875}
2876
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002877void __init setup_cpu_features(void)
2878{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002879 u32 cwg;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002880
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002881 setup_system_capabilities();
Suzuki K Poulose75283502016-04-18 10:28:33 +01002882 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002883
2884 if (system_supports_32bit_el0())
2885 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002886
Kees Cook2e6f5492018-02-21 10:18:21 -08002887 if (system_uses_ttbr0_pan())
2888 pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
2889
Dave Martin2e0f2472017-10-31 15:51:10 +00002890 sve_setup();
Dave Martin94b07c12018-06-01 11:10:14 +01002891 minsigstksz_setup();
Dave Martin2e0f2472017-10-31 15:51:10 +00002892
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002893 /* Advertise that we have computed the system capabilities */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002894 finalize_system_capabilities();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002895
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002896 /*
2897 * Check for sane CTR_EL0.CWG value.
2898 */
2899 cwg = cache_type_cwg();
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002900 if (!cwg)
Catalin Marinasebc7e212018-05-11 13:33:12 +01002901 pr_warn("No Cache Writeback Granule information, assuming %d\n",
2902 ARCH_DMA_MINALIGN);
Marc Zyngier359b7062015-03-27 13:09:23 +00002903}
James Morse70544192016-02-05 14:58:50 +00002904
Will Deacon2122a832021-06-08 19:02:55 +01002905static int enable_mismatched_32bit_el0(unsigned int cpu)
2906{
2907 struct cpuinfo_arm64 *info = &per_cpu(cpu_data, cpu);
2908 bool cpu_32bit = id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0);
2909
2910 if (cpu_32bit) {
2911 cpumask_set_cpu(cpu, cpu_32bit_el0_mask);
2912 static_branch_enable_cpuslocked(&arm64_mismatched_32bit_el0);
2913 setup_elf_hwcaps(compat_elf_hwcaps);
2914 }
2915
2916 return 0;
2917}
2918
2919static int __init init_32bit_el0_mask(void)
2920{
2921 if (!allow_mismatched_32bit_el0)
2922 return 0;
2923
2924 if (!zalloc_cpumask_var(&cpu_32bit_el0_mask, GFP_KERNEL))
2925 return -ENOMEM;
2926
2927 return cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
2928 "arm64/mismatched_32bit_el0:online",
2929 enable_mismatched_32bit_el0, NULL);
2930}
2931subsys_initcall_sync(init_32bit_el0_mask);
2932
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002933static void __maybe_unused cpu_enable_cnp(struct arm64_cpu_capabilities const *cap)
2934{
2935 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
2936}
2937
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002938/*
2939 * We emulate only the following system register space.
2940 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
2941 * See Table C5-6 System instruction encodings for System register accesses,
2942 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
2943 */
2944static inline bool __attribute_const__ is_emulated(u32 id)
2945{
2946 return (sys_reg_Op0(id) == 0x3 &&
2947 sys_reg_CRn(id) == 0x0 &&
2948 sys_reg_Op1(id) == 0x0 &&
2949 (sys_reg_CRm(id) == 0 ||
2950 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
2951}
2952
2953/*
2954 * With CRm == 0, reg should be one of :
2955 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
2956 */
2957static inline int emulate_id_reg(u32 id, u64 *valp)
2958{
2959 switch (id) {
2960 case SYS_MIDR_EL1:
2961 *valp = read_cpuid_id();
2962 break;
2963 case SYS_MPIDR_EL1:
2964 *valp = SYS_MPIDR_SAFE_VAL;
2965 break;
2966 case SYS_REVIDR_EL1:
2967 /* IMPLEMENTATION DEFINED values are emulated with 0 */
2968 *valp = 0;
2969 break;
2970 default:
2971 return -EINVAL;
2972 }
2973
2974 return 0;
2975}
2976
2977static int emulate_sys_reg(u32 id, u64 *valp)
2978{
2979 struct arm64_ftr_reg *regp;
2980
2981 if (!is_emulated(id))
2982 return -EINVAL;
2983
2984 if (sys_reg_CRm(id) == 0)
2985 return emulate_id_reg(id, valp);
2986
Anshuman Khandual3577dd32020-05-27 15:34:36 +05302987 regp = get_arm64_ftr_reg_nowarn(id);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002988 if (regp)
2989 *valp = arm64_ftr_reg_user_value(regp);
2990 else
2991 /*
2992 * The untracked registers are either IMPLEMENTATION DEFINED
2993 * (e.g, ID_AFR0_EL1) or reserved RAZ.
2994 */
2995 *valp = 0;
2996 return 0;
2997}
2998
Anshuman Khandual520ad982018-09-20 09:36:20 +05302999int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt)
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003000{
3001 int rc;
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003002 u64 val;
3003
Anshuman Khandual520ad982018-09-20 09:36:20 +05303004 rc = emulate_sys_reg(sys_reg, &val);
3005 if (!rc) {
3006 pt_regs_write_reg(regs, rt, val);
3007 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
3008 }
3009 return rc;
3010}
3011
3012static int emulate_mrs(struct pt_regs *regs, u32 insn)
3013{
3014 u32 sys_reg, rt;
3015
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003016 /*
3017 * sys_reg values are defined as used in mrs/msr instruction.
3018 * shift the imm value to get the encoding.
3019 */
3020 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
Anshuman Khandual520ad982018-09-20 09:36:20 +05303021 rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
3022 return do_emulate_mrs(regs, sys_reg, rt);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003023}
3024
3025static struct undef_hook mrs_hook = {
Raphael Gaultcf292e92021-05-17 13:02:56 -05003026 .instr_mask = 0xffff0000,
3027 .instr_val = 0xd5380000,
Mark Rutlandd64567f2018-07-05 15:16:52 +01003028 .pstate_mask = PSR_AA32_MODE_MASK,
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00003029 .pstate_val = PSR_MODE_EL0t,
3030 .fn = emulate_mrs,
3031};
3032
3033static int __init enable_mrs_emulation(void)
3034{
3035 register_undef_hook(&mrs_hook);
3036 return 0;
3037}
3038
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01003039core_initcall(enable_mrs_emulation);
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003040
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003041enum mitigation_state arm64_get_meltdown_state(void)
3042{
3043 if (__meltdown_safe)
3044 return SPECTRE_UNAFFECTED;
3045
3046 if (arm64_kernel_unmapped_at_el0())
3047 return SPECTRE_MITIGATED;
3048
3049 return SPECTRE_VULNERABLE;
3050}
3051
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003052ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr,
3053 char *buf)
3054{
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003055 switch (arm64_get_meltdown_state()) {
3056 case SPECTRE_UNAFFECTED:
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003057 return sprintf(buf, "Not affected\n");
3058
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003059 case SPECTRE_MITIGATED:
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003060 return sprintf(buf, "Mitigation: PTI\n");
3061
Marc Zyngier7f43c2012020-11-26 17:25:30 +00003062 default:
3063 return sprintf(buf, "Vulnerable\n");
3064 }
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05003065}