blob: b81b74d6dc20260ba23a7450358bab1a66b21501 [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>
Laura Abbott2077be62017-01-10 13:35:49 -080071#include <linux/mm.h>
Josh Poimboeufa111b7c2019-04-12 15:39:32 -050072#include <linux/cpu.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000073#include <asm/cpu.h>
74#include <asm/cpufeature.h>
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +010075#include <asm/cpu_ops.h>
Dave Martin2e0f2472017-10-31 15:51:10 +000076#include <asm/fpsimd.h>
Suzuki K Poulose13f417f2016-02-23 10:31:45 +000077#include <asm/mmu_context.h>
James Morse338d4f42015-07-22 19:05:54 +010078#include <asm/processor.h>
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +010079#include <asm/sysreg.h>
Suzuki K Poulose77c97b42017-01-09 17:28:31 +000080#include <asm/traps.h>
Marc Zyngierd88701b2015-01-29 11:24:05 +000081#include <asm/virt.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000082
Andrew Murrayaec0bff2019-04-09 10:52:41 +010083/* Kernel representation of AT_HWCAP and AT_HWCAP2 */
84static unsigned long elf_hwcap __read_mostly;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010085
86#ifdef CONFIG_COMPAT
87#define COMPAT_ELF_HWCAP_DEFAULT \
88 (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
89 COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
Suzuki K Poulose7559950a2020-01-13 23:30:20 +000090 COMPAT_HWCAP_TLS|COMPAT_HWCAP_IDIV|\
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010091 COMPAT_HWCAP_LPAE)
92unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT;
93unsigned int compat_elf_hwcap2 __read_mostly;
94#endif
95
96DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
Catalin Marinas4b65a5d2016-07-01 16:53:00 +010097EXPORT_SYMBOL(cpu_hwcaps);
Suzuki K Poulose82a3a212018-11-30 17:18:03 +000098static struct arm64_cpu_capabilities const __ro_after_init *cpu_hwcaps_ptrs[ARM64_NCAPS];
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010099
Daniel Thompson0ceb0d52019-01-31 14:58:53 +0000100/* Need also bit for ARM64_CB_PATCH */
101DECLARE_BITMAP(boot_capabilities, ARM64_NPATCHABLE);
102
Mark Brown09e3c222019-12-09 18:12:17 +0000103bool arm64_use_ng_mappings = false;
104EXPORT_SYMBOL(arm64_use_ng_mappings);
105
Dave Martin8f1eec52017-10-31 15:51:09 +0000106/*
107 * Flag to indicate if we have computed the system wide
108 * capabilities based on the boot time active CPUs. This
109 * will be used to determine if a new booting CPU should
110 * go through the verification process to make sure that it
111 * supports the system capabilities, without using a hotplug
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000112 * notifier. This is also used to decide if we could use
113 * the fast path for checking constant CPU caps.
Dave Martin8f1eec52017-10-31 15:51:09 +0000114 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000115DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready);
116EXPORT_SYMBOL(arm64_const_caps_ready);
117static inline void finalize_system_capabilities(void)
Dave Martin8f1eec52017-10-31 15:51:09 +0000118{
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000119 static_branch_enable(&arm64_const_caps_ready);
Dave Martin8f1eec52017-10-31 15:51:09 +0000120}
121
Mark Rutland8effeaa2017-06-21 18:11:23 +0100122static int dump_cpu_hwcaps(struct notifier_block *self, unsigned long v, void *p)
123{
124 /* file-wide pr_fmt adds "CPU features: " prefix */
125 pr_emerg("0x%*pb\n", ARM64_NCAPS, &cpu_hwcaps);
126 return 0;
127}
128
129static struct notifier_block cpu_hwcaps_notifier = {
130 .notifier_call = dump_cpu_hwcaps
131};
132
133static int __init register_cpu_hwcaps_dumper(void)
134{
135 atomic_notifier_chain_register(&panic_notifier_list,
136 &cpu_hwcaps_notifier);
137 return 0;
138}
139__initcall(register_cpu_hwcaps_dumper);
140
Catalin Marinasefd9e032016-09-05 18:25:48 +0100141DEFINE_STATIC_KEY_ARRAY_FALSE(cpu_hwcap_keys, ARM64_NCAPS);
142EXPORT_SYMBOL(cpu_hwcap_keys);
143
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000144#define __ARM64_FTR_BITS(SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100145 { \
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000146 .sign = SIGNED, \
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000147 .visible = VISIBLE, \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100148 .strict = STRICT, \
149 .type = TYPE, \
150 .shift = SHIFT, \
151 .width = WIDTH, \
152 .safe_val = SAFE_VAL, \
153 }
154
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000155/* Define a feature with unsigned values */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000156#define ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
157 __ARM64_FTR_BITS(FTR_UNSIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000158
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000159/* Define a feature with a signed value */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000160#define S_ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
161 __ARM64_FTR_BITS(FTR_SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000162
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100163#define ARM64_FTR_END \
164 { \
165 .width = 0, \
166 }
167
James Morse70544192016-02-05 14:58:50 +0000168/* meta feature for alternatives */
169static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100170cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused);
171
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +0100172static void cpu_enable_cnp(struct arm64_cpu_capabilities const *cap);
James Morse70544192016-02-05 14:58:50 +0000173
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +0530174static bool __system_matches_cap(unsigned int n);
175
Suzuki K Poulose4aa8a472017-01-09 17:28:32 +0000176/*
177 * NOTE: Any changes to the visibility of features should be kept in
178 * sync with the documentation of the CPU feature register ABI.
179 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100180static const struct arm64_ftr_bits ftr_id_aa64isar0[] = {
Richard Henderson1a50ec02020-01-21 12:58:52 +0000181 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RNDR_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000182 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TS_SHIFT, 4, 0),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +0800183 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100184 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0),
185 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0),
186 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0),
187 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0),
188 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000189 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0),
190 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0),
191 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0),
192 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0),
193 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100194 ARM64_FTR_END,
195};
196
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000197static const struct arm64_ftr_bits ftr_id_aa64isar1[] = {
Steven Priced4209d82019-12-16 11:33:37 +0000198 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_I8MM_SHIFT, 4, 0),
199 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DGH_SHIFT, 4, 0),
200 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_BF16_SHIFT, 4, 0),
201 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SPECRES_SHIFT, 4, 0),
Will Deaconbd4fb6d2018-06-14 11:21:34 +0100202 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SB_SHIFT, 4, 0),
Julien Grall7230f7e2019-10-03 12:12:08 +0100203 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FRINTTS_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000204 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
205 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPI_SHIFT, 4, 0),
206 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
207 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100208 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0),
209 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0),
210 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000211 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
212 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_API_SHIFT, 4, 0),
213 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
214 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_APA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100215 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000216 ARM64_FTR_END,
217};
218
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100219static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = {
Will Deacon179a56f2017-11-27 18:29:30 +0000220 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0),
Will Deacon0f15adb2018-01-03 11:17:58 +0000221 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000222 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_DIT_SHIFT, 4, 0),
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +0000223 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_AMU_SHIFT, 4, 0),
Dave Martin3fab3992017-12-14 14:03:44 +0000224 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
225 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000226 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100227 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000228 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
229 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 +0100230 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
Will Deacon98448cd2020-04-21 15:29:21 +0100231 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
232 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY),
233 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 +0100234 ARM64_FTR_END,
235};
236
Will Deacond71be2b2018-06-15 11:37:34 +0100237static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = {
238 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_SSBS_SHIFT, 4, ID_AA64PFR1_SSBS_PSTATE_NI),
239 ARM64_FTR_END,
240};
241
Dave Martin06a916f2019-04-18 18:41:38 +0100242static const struct arm64_ftr_bits ftr_id_aa64zfr0[] = {
Julien Grallec52c712019-10-14 11:21:13 +0100243 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000244 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F64MM_SHIFT, 4, 0),
245 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
246 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F32MM_SHIFT, 4, 0),
247 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
248 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_I8MM_SHIFT, 4, 0),
249 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100250 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SM4_SHIFT, 4, 0),
251 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
252 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SHA3_SHIFT, 4, 0),
253 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000254 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BF16_SHIFT, 4, 0),
255 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100256 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BITPERM_SHIFT, 4, 0),
257 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
258 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_AES_SHIFT, 4, 0),
259 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
260 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SVEVER_SHIFT, 4, 0),
Dave Martin06a916f2019-04-18 18:41:38 +0100261 ARM64_FTR_END,
262};
263
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100264static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Will Deacon5717fe52019-08-12 16:02:25 +0100265 /*
266 * We already refuse to boot CPUs that don't support our configured
267 * page size, so we can only detect mismatches for a page size other
268 * than the one we're currently using. Unfortunately, SoCs like this
269 * exist in the wild so, even though we don't like it, we'll have to go
270 * along with it and treat them as non-strict.
271 */
272 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
273 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
274 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
275
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100276 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100277 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100278 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
279 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
280 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100281 /*
282 * Differing PARange is fine as long as all peripherals and memory are mapped
283 * within the minimum PARange of all CPUs
284 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000285 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100286 ARM64_FTR_END,
287};
288
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100289static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000290 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100291 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
292 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
293 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
294 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
295 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100296 ARM64_FTR_END,
297};
298
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100299static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Mark Brown3e6c69a2019-12-09 18:12:14 +0000300 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_E0PD_SHIFT, 4, 0),
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100301 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_FWB_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000302 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_AT_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100303 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
Sai Prakash Ranjan9d3f8882020-04-21 15:29:15 +0100304 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100305 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
306 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
307 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000308 ARM64_FTR_END,
309};
310
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100311static const struct arm64_ftr_bits ftr_ctr[] = {
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600312 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */
313 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1),
314 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1),
Will Deacon147b9632019-07-30 15:40:20 +0100315 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_CWG_SHIFT, 4, 0),
316 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_ERG_SHIFT, 4, 0),
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600317 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100318 /*
319 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100320 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000321 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100322 */
Will Deacon155433c2017-03-10 20:32:22 +0000323 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, 14, 2, ICACHE_POLICY_VIPT), /* L1Ip */
Suzuki K Poulose4c4a39d2018-07-04 23:07:45 +0100324 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IMINLINE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100325 ARM64_FTR_END,
326};
327
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100328struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
329 .name = "SYS_CTR_EL0",
330 .ftr_bits = ftr_ctr
331};
332
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100333static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100334 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0xf), /* InnerShr */
335 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0), /* FCSE */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000336 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, 20, 4, 0), /* AuxReg */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100337 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0), /* TCM */
338 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* ShareLvl */
339 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0xf), /* OuterShr */
340 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* PMSA */
341 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* VMSA */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100342 ARM64_FTR_END,
343};
344
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100345static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Anshuman Khanduale965bcb2020-05-19 15:10:40 +0530346 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 36, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000347 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
348 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
349 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
350 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100351 /*
352 * We can instantiate multiple PMU instances with different levels
353 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000354 */
355 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
356 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_TRACEVER_SHIFT, 4, 0),
357 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100358 ARM64_FTR_END,
359};
360
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100361static const struct arm64_ftr_bits ftr_mvfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100362 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* FPMisc */
363 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* SIMDMisc */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100364 ARM64_FTR_END,
365};
366
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100367static const struct arm64_ftr_bits ftr_dczid[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000368 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 4, 1, 1), /* DZP */
369 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* BS */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100370 ARM64_FTR_END,
371};
372
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530373static const struct arm64_ftr_bits ftr_id_isar0[] = {
374 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DIVIDE_SHIFT, 4, 0),
375 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DEBUG_SHIFT, 4, 0),
376 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_COPROC_SHIFT, 4, 0),
377 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_CMPBRANCH_SHIFT, 4, 0),
378 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITFIELD_SHIFT, 4, 0),
379 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITCOUNT_SHIFT, 4, 0),
380 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_SWAP_SHIFT, 4, 0),
381 ARM64_FTR_END,
382};
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100383
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100384static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100385 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
386 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
387 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
388 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
389 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
390 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100391 ARM64_FTR_END,
392};
393
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100394static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100395 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* ac2 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100396 ARM64_FTR_END,
397};
398
Will Deacon01133402020-04-21 15:29:16 +0100399static const struct arm64_ftr_bits ftr_id_isar4[] = {
400 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SWP_FRAC_SHIFT, 4, 0),
401 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_PSR_M_SHIFT, 4, 0),
402 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SYNCH_PRIM_FRAC_SHIFT, 4, 0),
403 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_BARRIER_SHIFT, 4, 0),
404 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SMC_SHIFT, 4, 0),
405 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WRITEBACK_SHIFT, 4, 0),
406 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WITHSHIFTS_SHIFT, 4, 0),
407 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_UNPRIV_SHIFT, 4, 0),
408 ARM64_FTR_END,
409};
410
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530411static const struct arm64_ftr_bits ftr_id_isar6[] = {
412 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_I8MM_SHIFT, 4, 0),
413 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_BF16_SHIFT, 4, 0),
414 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SPECRES_SHIFT, 4, 0),
415 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SB_SHIFT, 4, 0),
416 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_FHM_SHIFT, 4, 0),
417 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_DP_SHIFT, 4, 0),
418 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_JSCVT_SHIFT, 4, 0),
419 ARM64_FTR_END,
420};
421
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100422static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100423 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* State3 */
424 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0), /* State2 */
425 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* State1 */
426 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* State0 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100427 ARM64_FTR_END,
428};
429
Will Deacon01133402020-04-21 15:29:16 +0100430static const struct arm64_ftr_bits ftr_id_pfr1[] = {
431 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GIC_SHIFT, 4, 0),
432 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRT_FRAC_SHIFT, 4, 0),
433 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SEC_FRAC_SHIFT, 4, 0),
434 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GENTIMER_SHIFT, 4, 0),
435 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRTUALIZATION_SHIFT, 4, 0),
436 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_MPROGMOD_SHIFT, 4, 0),
437 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SECURITY_SHIFT, 4, 0),
438 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_PROGMOD_SHIFT, 4, 0),
439 ARM64_FTR_END,
440};
441
Anshuman Khandual16824082020-05-19 15:10:41 +0530442static const struct arm64_ftr_bits ftr_id_pfr2[] = {
443 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR2_SSBS_SHIFT, 4, 0),
444 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_CSV3_SHIFT, 4, 0),
445 ARM64_FTR_END,
446};
447
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100448static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Anshuman Khandual1ed1b902020-05-19 15:10:39 +0530449 /* [31:28] TraceFilt */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000450 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0xf), /* PerfMon */
451 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
452 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
453 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
454 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
455 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
456 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000457 ARM64_FTR_END,
458};
459
Dave Martin2e0f2472017-10-31 15:51:10 +0000460static const struct arm64_ftr_bits ftr_zcr[] = {
461 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
462 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
463 ARM64_FTR_END,
464};
465
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100466/*
467 * Common ftr bits for a 32bit register with all hidden, strict
468 * attributes, with 4bit feature fields and a default safe value of
469 * 0. Covers the following 32bit registers:
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530470 * id_isar[1-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100471 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100472static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000473 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
474 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
475 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
476 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
477 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
478 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
479 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
480 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100481 ARM64_FTR_END,
482};
483
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000484/* Table for a single 32bit feature value */
485static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000486 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100487 ARM64_FTR_END,
488};
489
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000490static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100491 ARM64_FTR_END,
492};
493
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100494#define ARM64_FTR_REG(id, table) { \
495 .sys_id = id, \
496 .reg = &(struct arm64_ftr_reg){ \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100497 .name = #id, \
498 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100499 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100500
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100501static const struct __ftr_reg_entry {
502 u32 sys_id;
503 struct arm64_ftr_reg *reg;
504} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100505
506 /* Op1 = 0, CRn = 0, CRm = 1 */
507 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
Will Deacon01133402020-04-21 15:29:16 +0100508 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_id_pfr1),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000509 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100510 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
511 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
512 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
513 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
514
515 /* Op1 = 0, CRn = 0, CRm = 2 */
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530516 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_id_isar0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100517 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
518 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
519 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
Will Deacon01133402020-04-21 15:29:16 +0100520 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_id_isar4),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100521 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
522 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530523 ARM64_FTR_REG(SYS_ID_ISAR6_EL1, ftr_id_isar6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100524
525 /* Op1 = 0, CRn = 0, CRm = 3 */
526 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
527 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
528 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
Anshuman Khandual16824082020-05-19 15:10:41 +0530529 ARM64_FTR_REG(SYS_ID_PFR2_EL1, ftr_id_pfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100530
531 /* Op1 = 0, CRn = 0, CRm = 4 */
532 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Will Deacond71be2b2018-06-15 11:37:34 +0100533 ARM64_FTR_REG(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1),
Dave Martin06a916f2019-04-18 18:41:38 +0100534 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_id_aa64zfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100535
536 /* Op1 = 0, CRn = 0, CRm = 5 */
537 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000538 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100539
540 /* Op1 = 0, CRn = 0, CRm = 6 */
541 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000542 ARM64_FTR_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100543
544 /* Op1 = 0, CRn = 0, CRm = 7 */
545 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
546 ARM64_FTR_REG(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1),
James Morse406e3082016-02-05 14:58:47 +0000547 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100548
Dave Martin2e0f2472017-10-31 15:51:10 +0000549 /* Op1 = 0, CRn = 1, CRm = 2 */
550 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
551
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100552 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100553 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100554 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
555
556 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000557 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100558};
559
560static int search_cmp_ftr_reg(const void *id, const void *regp)
561{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100562 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100563}
564
565/*
566 * get_arm64_ftr_reg - Lookup a feature register entry using its
567 * sys_reg() encoding. With the array arm64_ftr_regs sorted in the
568 * ascending order of sys_id , we use binary search to find a matching
569 * entry.
570 *
571 * returns - Upon success, matching ftr_reg entry for id.
572 * - NULL on failure. It is upto the caller to decide
573 * the impact of a failure.
574 */
575static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
576{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100577 const struct __ftr_reg_entry *ret;
578
579 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100580 arm64_ftr_regs,
581 ARRAY_SIZE(arm64_ftr_regs),
582 sizeof(arm64_ftr_regs[0]),
583 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100584 if (ret)
585 return ret->reg;
586 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100587}
588
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100589static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
590 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100591{
592 u64 mask = arm64_ftr_mask(ftrp);
593
594 reg &= ~mask;
595 reg |= (ftr_val << ftrp->shift) & mask;
596 return reg;
597}
598
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100599static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
600 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100601{
602 s64 ret = 0;
603
604 switch (ftrp->type) {
605 case FTR_EXACT:
606 ret = ftrp->safe_val;
607 break;
608 case FTR_LOWER_SAFE:
609 ret = new < cur ? new : cur;
610 break;
Will Deacon147b9632019-07-30 15:40:20 +0100611 case FTR_HIGHER_OR_ZERO_SAFE:
612 if (!cur || !new)
613 break;
614 /* Fallthrough */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100615 case FTR_HIGHER_SAFE:
616 ret = new > cur ? new : cur;
617 break;
618 default:
619 BUG();
620 }
621
622 return ret;
623}
624
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100625static void __init sort_ftr_regs(void)
626{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100627 int i;
628
629 /* Check that the array is sorted so that we can do the binary search */
630 for (i = 1; i < ARRAY_SIZE(arm64_ftr_regs); i++)
631 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100632}
633
634/*
635 * Initialise the CPU feature register from Boot CPU values.
636 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000637 * Any bits that are not covered by an arm64_ftr_bits entry are considered
638 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100639 */
640static void __init init_cpu_ftr_reg(u32 sys_reg, u64 new)
641{
642 u64 val = 0;
643 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000644 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000645 u64 valid_mask = 0;
646
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100647 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100648 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
649
650 BUG_ON(!reg);
651
韩科才24b2cce2020-03-11 14:52:49 +0800652 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000653 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100654 s64 ftr_new = arm64_ftr_value(ftrp, new);
655
656 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000657
658 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100659 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000660 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000661 if (ftrp->visible)
662 user_mask |= ftr_mask;
663 else
664 reg->user_val = arm64_ftr_set_value(ftrp,
665 reg->user_val,
666 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100667 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000668
669 val &= valid_mask;
670
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100671 reg->sys_val = val;
672 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000673 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100674}
675
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100676extern const struct arm64_cpu_capabilities arm64_errata[];
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000677static const struct arm64_cpu_capabilities arm64_features[];
678
679static void __init
680init_cpu_hwcaps_indirect_list_from_array(const struct arm64_cpu_capabilities *caps)
681{
682 for (; caps->matches; caps++) {
683 if (WARN(caps->capability >= ARM64_NCAPS,
684 "Invalid capability %d\n", caps->capability))
685 continue;
686 if (WARN(cpu_hwcaps_ptrs[caps->capability],
687 "Duplicate entry for capability %d\n",
688 caps->capability))
689 continue;
690 cpu_hwcaps_ptrs[caps->capability] = caps;
691 }
692}
693
694static void __init init_cpu_hwcaps_indirect_list(void)
695{
696 init_cpu_hwcaps_indirect_list_from_array(arm64_features);
697 init_cpu_hwcaps_indirect_list_from_array(arm64_errata);
698}
699
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100700static void __init setup_boot_cpu_capabilities(void);
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100701
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100702void __init init_cpu_features(struct cpuinfo_arm64 *info)
703{
704 /* Before we start using the tables, make sure it is sorted */
705 sort_ftr_regs();
706
707 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
708 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
709 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
710 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
711 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
712 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
713 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
714 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
715 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000716 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100717 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
718 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000719 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100720
721 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
722 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
723 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
724 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
725 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
726 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
727 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
728 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530729 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100730 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
731 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
732 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
733 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
734 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
735 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +0530736 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100737 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
738 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
739 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
740 }
741
Dave Martin2e0f2472017-10-31 15:51:10 +0000742 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
743 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
744 sve_init_vq_map();
745 }
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100746
747 /*
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000748 * Initialize the indirect array of CPU hwcaps capabilities pointers
749 * before we handle the boot CPU below.
750 */
751 init_cpu_hwcaps_indirect_list();
752
753 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100754 * Detect and enable early CPU capabilities based on the boot CPU,
755 * after we have initialised the CPU feature infrastructure.
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100756 */
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100757 setup_boot_cpu_capabilities();
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100758}
759
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100760static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100761{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100762 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100763
764 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
765 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
766 s64 ftr_new = arm64_ftr_value(ftrp, new);
767
768 if (ftr_cur == ftr_new)
769 continue;
770 /* Find a safe value */
771 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
772 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
773 }
774
775}
776
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100777static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100778{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100779 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
780
781 BUG_ON(!regp);
782 update_cpu_ftr_reg(regp, val);
783 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
784 return 0;
785 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
786 regp->name, boot, cpu, val);
787 return 1;
788}
789
Will Deaconeab2f922020-04-21 15:29:20 +0100790static void relax_cpu_ftr_reg(u32 sys_id, int field)
791{
792 const struct arm64_ftr_bits *ftrp;
793 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
794
795 if (WARN_ON(!regp))
796 return;
797
798 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) {
799 if (ftrp->shift == field) {
800 regp->strict_mask &= ~arm64_ftr_mask(ftrp);
801 break;
802 }
803 }
804
805 /* Bogus field? */
806 WARN_ON(!ftrp->width);
807}
808
Will Deacon1efcfe72020-04-21 15:29:19 +0100809static int update_32bit_cpu_features(int cpu, struct cpuinfo_arm64 *info,
810 struct cpuinfo_arm64 *boot)
811{
812 int taint = 0;
813 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
814
815 /*
816 * If we don't have AArch32 at all then skip the checks entirely
817 * as the register values may be UNKNOWN and we're not going to be
818 * using them for anything.
819 */
820 if (!id_aa64pfr0_32bit_el0(pfr0))
821 return taint;
822
Will Deaconeab2f922020-04-21 15:29:20 +0100823 /*
824 * If we don't have AArch32 at EL1, then relax the strictness of
825 * EL1-dependent register fields to avoid spurious sanity check fails.
826 */
827 if (!id_aa64pfr0_32bit_el1(pfr0)) {
828 relax_cpu_ftr_reg(SYS_ID_ISAR4_EL1, ID_ISAR4_SMC_SHIFT);
829 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRT_FRAC_SHIFT);
830 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SEC_FRAC_SHIFT);
831 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRTUALIZATION_SHIFT);
832 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SECURITY_SHIFT);
833 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_PROGMOD_SHIFT);
834 }
835
Will Deacon1efcfe72020-04-21 15:29:19 +0100836 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
837 info->reg_id_dfr0, boot->reg_id_dfr0);
838 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
839 info->reg_id_isar0, boot->reg_id_isar0);
840 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
841 info->reg_id_isar1, boot->reg_id_isar1);
842 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
843 info->reg_id_isar2, boot->reg_id_isar2);
844 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
845 info->reg_id_isar3, boot->reg_id_isar3);
846 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
847 info->reg_id_isar4, boot->reg_id_isar4);
848 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
849 info->reg_id_isar5, boot->reg_id_isar5);
850 taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu,
851 info->reg_id_isar6, boot->reg_id_isar6);
852
853 /*
854 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
855 * ACTLR formats could differ across CPUs and therefore would have to
856 * be trapped for virtualization anyway.
857 */
858 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
859 info->reg_id_mmfr0, boot->reg_id_mmfr0);
860 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
861 info->reg_id_mmfr1, boot->reg_id_mmfr1);
862 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
863 info->reg_id_mmfr2, boot->reg_id_mmfr2);
864 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
865 info->reg_id_mmfr3, boot->reg_id_mmfr3);
866 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
867 info->reg_id_pfr0, boot->reg_id_pfr0);
868 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
869 info->reg_id_pfr1, boot->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +0530870 taint |= check_update_ftr_reg(SYS_ID_PFR2_EL1, cpu,
871 info->reg_id_pfr2, boot->reg_id_pfr2);
Will Deacon1efcfe72020-04-21 15:29:19 +0100872 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
873 info->reg_mvfr0, boot->reg_mvfr0);
874 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
875 info->reg_mvfr1, boot->reg_mvfr1);
876 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
877 info->reg_mvfr2, boot->reg_mvfr2);
878
879 return taint;
880}
881
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100882/*
883 * Update system wide CPU feature registers with the values from a
884 * non-boot CPU. Also performs SANITY checks to make sure that there
885 * aren't any insane variations from that of the boot CPU.
886 */
887void update_cpu_features(int cpu,
888 struct cpuinfo_arm64 *info,
889 struct cpuinfo_arm64 *boot)
890{
891 int taint = 0;
892
893 /*
894 * The kernel can handle differing I-cache policies, but otherwise
895 * caches should look identical. Userspace JITs will make use of
896 * *minLine.
897 */
898 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
899 info->reg_ctr, boot->reg_ctr);
900
901 /*
902 * Userspace may perform DC ZVA instructions. Mismatched block sizes
903 * could result in too much or too little memory being zeroed if a
904 * process is preempted and migrated between CPUs.
905 */
906 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
907 info->reg_dczid, boot->reg_dczid);
908
909 /* If different, timekeeping will be broken (especially with KVM) */
910 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
911 info->reg_cntfrq, boot->reg_cntfrq);
912
913 /*
914 * The kernel uses self-hosted debug features and expects CPUs to
915 * support identical debug features. We presently need CTX_CMPs, WRPs,
916 * and BRPs to be identical.
917 * ID_AA64DFR1 is currently RES0.
918 */
919 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
920 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
921 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
922 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
923 /*
924 * Even in big.LITTLE, processors should be identical instruction-set
925 * wise.
926 */
927 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
928 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
929 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
930 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
931
932 /*
933 * Differing PARange support is fine as long as all peripherals and
934 * memory are mapped within the minimum PARange of all CPUs.
935 * Linux should not care about secure memory.
936 */
937 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
938 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
939 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
940 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000941 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
942 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100943
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100944 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
945 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
946 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
947 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
948
Dave Martin2e0f2472017-10-31 15:51:10 +0000949 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
950 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
951
Dave Martin2e0f2472017-10-31 15:51:10 +0000952 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
953 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
954 info->reg_zcr, boot->reg_zcr);
955
956 /* Probe vector lengths, unless we already gave up on SVE */
957 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +0000958 !system_capabilities_finalized())
Dave Martin2e0f2472017-10-31 15:51:10 +0000959 sve_update_vq_map();
960 }
961
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100962 /*
Will Deacon1efcfe72020-04-21 15:29:19 +0100963 * This relies on a sanitised view of the AArch64 ID registers
964 * (e.g. SYS_ID_AA64PFR0_EL1), so we call it last.
965 */
966 taint |= update_32bit_cpu_features(cpu, info, boot);
967
968 /*
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100969 * Mismatched CPU features are a recipe for disaster. Don't even
970 * pretend to support them.
971 */
Will Deacon8dd0ee62017-06-05 11:40:23 +0100972 if (taint) {
973 pr_warn_once("Unsupported CPU feature variation detected.\n");
974 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
975 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100976}
977
Dave Martin46823dd2017-03-23 15:14:39 +0000978u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +0100979{
980 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
981
982 /* We shouldn't get a request for an unsupported register */
983 BUG_ON(!regp);
984 return regp->sys_val;
985}
Marc Zyngier359b7062015-03-27 13:09:23 +0000986
Mark Rutland965861d2017-02-02 17:32:15 +0000987#define read_sysreg_case(r) \
988 case r: return read_sysreg_s(r)
989
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100990/*
Dave Martin46823dd2017-03-23 15:14:39 +0000991 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100992 * Read the system register on the current CPU
993 */
Dave Martin46823dd2017-03-23 15:14:39 +0000994static u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100995{
996 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +0000997 read_sysreg_case(SYS_ID_PFR0_EL1);
998 read_sysreg_case(SYS_ID_PFR1_EL1);
Anshuman Khandual16824082020-05-19 15:10:41 +0530999 read_sysreg_case(SYS_ID_PFR2_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001000 read_sysreg_case(SYS_ID_DFR0_EL1);
1001 read_sysreg_case(SYS_ID_MMFR0_EL1);
1002 read_sysreg_case(SYS_ID_MMFR1_EL1);
1003 read_sysreg_case(SYS_ID_MMFR2_EL1);
1004 read_sysreg_case(SYS_ID_MMFR3_EL1);
1005 read_sysreg_case(SYS_ID_ISAR0_EL1);
1006 read_sysreg_case(SYS_ID_ISAR1_EL1);
1007 read_sysreg_case(SYS_ID_ISAR2_EL1);
1008 read_sysreg_case(SYS_ID_ISAR3_EL1);
1009 read_sysreg_case(SYS_ID_ISAR4_EL1);
1010 read_sysreg_case(SYS_ID_ISAR5_EL1);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +05301011 read_sysreg_case(SYS_ID_ISAR6_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001012 read_sysreg_case(SYS_MVFR0_EL1);
1013 read_sysreg_case(SYS_MVFR1_EL1);
1014 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001015
Mark Rutland965861d2017-02-02 17:32:15 +00001016 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
1017 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
Dave Martin78ed70b2019-06-03 16:35:02 +01001018 read_sysreg_case(SYS_ID_AA64ZFR0_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001019 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
1020 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
1021 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
1022 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
1023 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
1024 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
1025 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001026
Mark Rutland965861d2017-02-02 17:32:15 +00001027 read_sysreg_case(SYS_CNTFRQ_EL0);
1028 read_sysreg_case(SYS_CTR_EL0);
1029 read_sysreg_case(SYS_DCZID_EL0);
1030
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001031 default:
1032 BUG();
1033 return 0;
1034 }
1035}
1036
Marc Zyngier963fcd42015-09-30 11:50:04 +01001037#include <linux/irqchip/arm-gic-v3.h>
1038
Marc Zyngier94a9e042015-06-12 12:06:36 +01001039static bool
James Morse18ffa042015-07-21 13:23:29 +01001040feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
1041{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +00001042 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +01001043
1044 return val >= entry->min_field_value;
1045}
1046
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001047static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001048has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001049{
1050 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +01001051
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001052 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
1053 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +00001054 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001055 else
Dave Martin46823dd2017-03-23 15:14:39 +00001056 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001057
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001058 return feature_matches(val, entry);
1059}
James Morse338d4f42015-07-22 19:05:54 +01001060
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001061static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +01001062{
1063 bool has_sre;
1064
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001065 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +01001066 return false;
1067
1068 has_sre = gic_enable_sre();
1069 if (!has_sre)
1070 pr_warn_once("%s present but disabled by higher exception level\n",
1071 entry->desc);
1072
1073 return has_sre;
1074}
1075
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001076static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +00001077{
1078 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +00001079
1080 /* Cavium ThunderX pass 1.x and 2.x */
Qian Caib99286b2019-08-05 23:05:03 -04001081 return midr_is_cpu_model_range(midr, MIDR_THUNDERX,
Robert Richterfa5ce3d2017-01-13 14:12:09 +01001082 MIDR_CPU_VAR_REV(0, 0),
1083 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +00001084}
1085
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001086static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
1087{
Dave Martin46823dd2017-03-23 15:14:39 +00001088 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001089
1090 return cpuid_feature_extract_signed_field(pfr0,
1091 ID_AA64PFR0_FP_SHIFT) < 0;
1092}
1093
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001094static bool has_cache_idc(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001095 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001096{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001097 u64 ctr;
1098
1099 if (scope == SCOPE_SYSTEM)
1100 ctr = arm64_ftr_reg_ctrel0.sys_val;
1101 else
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001102 ctr = read_cpuid_effective_cachetype();
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001103
1104 return ctr & BIT(CTR_IDC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001105}
1106
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001107static void cpu_emulate_effective_ctr(const struct arm64_cpu_capabilities *__unused)
1108{
1109 /*
1110 * If the CPU exposes raw CTR_EL0.IDC = 0, while effectively
1111 * CTR_EL0.IDC = 1 (from CLIDR values), we need to trap accesses
1112 * to the CTR_EL0 on this CPU and emulate it with the real/safe
1113 * value.
1114 */
1115 if (!(read_cpuid_cachetype() & BIT(CTR_IDC_SHIFT)))
1116 sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCT, 0);
1117}
1118
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001119static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001120 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001121{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001122 u64 ctr;
1123
1124 if (scope == SCOPE_SYSTEM)
1125 ctr = arm64_ftr_reg_ctrel0.sys_val;
1126 else
1127 ctr = read_cpuid_cachetype();
1128
1129 return ctr & BIT(CTR_DIC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001130}
1131
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001132static bool __maybe_unused
1133has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope)
1134{
1135 /*
1136 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP
1137 * may share TLB entries with a CPU stuck in the crashed
1138 * kernel.
1139 */
1140 if (is_kdump_kernel())
1141 return false;
1142
1143 return has_cpuid_feature(entry, scope);
1144}
1145
Mark Brown09e3c222019-12-09 18:12:17 +00001146/*
1147 * This check is triggered during the early boot before the cpufeature
1148 * is initialised. Checking the status on the local CPU allows the boot
1149 * CPU to detect the need for non-global mappings and thus avoiding a
1150 * pagetable re-write after all the CPUs are booted. This check will be
1151 * anyway run on individual CPUs, allowing us to get the consistent
1152 * state once the SMP CPUs are up and thus make the switch to non-global
1153 * mappings if required.
1154 */
1155bool kaslr_requires_kpti(void)
1156{
Mark Brown09e3c222019-12-09 18:12:17 +00001157 if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE))
1158 return false;
1159
1160 /*
1161 * E0PD does a similar job to KPTI so can be used instead
1162 * where available.
1163 */
1164 if (IS_ENABLED(CONFIG_ARM64_E0PD)) {
Will Deacona569f5f2020-01-15 14:06:37 +00001165 u64 mmfr2 = read_sysreg_s(SYS_ID_AA64MMFR2_EL1);
1166 if (cpuid_feature_extract_unsigned_field(mmfr2,
1167 ID_AA64MMFR2_E0PD_SHIFT))
Mark Brown09e3c222019-12-09 18:12:17 +00001168 return false;
1169 }
1170
1171 /*
1172 * Systems affected by Cavium erratum 24756 are incompatible
1173 * with KPTI.
1174 */
Will Deaconebac96e2020-01-15 13:59:58 +00001175 if (IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) {
Mark Brown09e3c222019-12-09 18:12:17 +00001176 extern const struct midr_range cavium_erratum_27456_cpus[];
1177
Will Deaconebac96e2020-01-15 13:59:58 +00001178 if (is_midr_in_range_list(read_cpuid_id(),
1179 cavium_erratum_27456_cpus))
1180 return false;
Mark Brown09e3c222019-12-09 18:12:17 +00001181 }
Mark Brown09e3c222019-12-09 18:12:17 +00001182
1183 return kaslr_offset() > 0;
1184}
1185
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001186static bool __meltdown_safe = true;
Will Deaconea1e3de2017-11-14 14:38:19 +00001187static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
1188
1189static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001190 int scope)
Will Deaconea1e3de2017-11-14 14:38:19 +00001191{
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001192 /* List of CPUs that are not vulnerable and don't need KPTI */
1193 static const struct midr_range kpti_safe_list[] = {
1194 MIDR_ALL_VERSIONS(MIDR_CAVIUM_THUNDERX2),
1195 MIDR_ALL_VERSIONS(MIDR_BRCM_VULCAN),
Florian Fainelli31d868c2020-01-06 14:54:12 -08001196 MIDR_ALL_VERSIONS(MIDR_BRAHMA_B53),
Will Deacon2a355ec2018-12-13 13:47:38 +00001197 MIDR_ALL_VERSIONS(MIDR_CORTEX_A35),
1198 MIDR_ALL_VERSIONS(MIDR_CORTEX_A53),
1199 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
1200 MIDR_ALL_VERSIONS(MIDR_CORTEX_A57),
1201 MIDR_ALL_VERSIONS(MIDR_CORTEX_A72),
1202 MIDR_ALL_VERSIONS(MIDR_CORTEX_A73),
Hanjun Guo0ecc4712019-03-05 21:40:58 +08001203 MIDR_ALL_VERSIONS(MIDR_HISI_TSV110),
Rich Wiley918e1942019-11-05 10:45:10 -08001204 MIDR_ALL_VERSIONS(MIDR_NVIDIA_CARMEL),
Mark Rutland71c751f2018-04-23 11:41:33 +01001205 { /* sentinel */ }
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001206 };
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001207 char const *str = "kpti command line option";
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001208 bool meltdown_safe;
1209
1210 meltdown_safe = is_midr_in_range_list(read_cpuid_id(), kpti_safe_list);
1211
1212 /* Defer to CPU feature registers */
1213 if (has_cpuid_feature(entry, scope))
1214 meltdown_safe = true;
1215
1216 if (!meltdown_safe)
1217 __meltdown_safe = false;
Will Deacon179a56f2017-11-27 18:29:30 +00001218
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001219 /*
1220 * For reasons that aren't entirely clear, enabling KPTI on Cavium
1221 * ThunderX leads to apparent I-cache corruption of kernel text, which
1222 * ends as well as you might imagine. Don't even try.
1223 */
1224 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456)) {
1225 str = "ARM64_WORKAROUND_CAVIUM_27456";
1226 __kpti_forced = -1;
1227 }
1228
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001229 /* Useful for KASLR robustness */
Mark Brownc2d92352019-12-09 18:12:15 +00001230 if (kaslr_requires_kpti()) {
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001231 if (!__kpti_forced) {
1232 str = "KASLR";
1233 __kpti_forced = 1;
1234 }
1235 }
1236
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001237 if (cpu_mitigations_off() && !__kpti_forced) {
1238 str = "mitigations=off";
1239 __kpti_forced = -1;
1240 }
1241
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001242 if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) {
1243 pr_info_once("kernel page table isolation disabled by kernel configuration\n");
1244 return false;
1245 }
1246
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001247 /* Forced? */
Will Deaconea1e3de2017-11-14 14:38:19 +00001248 if (__kpti_forced) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001249 pr_info_once("kernel page table isolation forced %s by %s\n",
1250 __kpti_forced > 0 ? "ON" : "OFF", str);
Will Deaconea1e3de2017-11-14 14:38:19 +00001251 return __kpti_forced > 0;
1252 }
1253
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001254 return !meltdown_safe;
Will Deaconea1e3de2017-11-14 14:38:19 +00001255}
1256
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001257#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Dave Martinc0cda3b2018-03-26 15:12:28 +01001258static void
1259kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
Will Deaconf992b4d2018-02-06 22:22:50 +00001260{
1261 typedef void (kpti_remap_fn)(int, int, phys_addr_t);
1262 extern kpti_remap_fn idmap_kpti_install_ng_mappings;
1263 kpti_remap_fn *remap_fn;
1264
Will Deaconf992b4d2018-02-06 22:22:50 +00001265 int cpu = smp_processor_id();
1266
Will Deaconb89d82e2019-01-08 16:19:01 +00001267 /*
1268 * We don't need to rewrite the page-tables if either we've done
1269 * it already or we have KASLR enabled and therefore have not
1270 * created any global mappings at all.
1271 */
Mark Brown09e3c222019-12-09 18:12:17 +00001272 if (arm64_use_ng_mappings)
Dave Martinc0cda3b2018-03-26 15:12:28 +01001273 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001274
1275 remap_fn = (void *)__pa_symbol(idmap_kpti_install_ng_mappings);
1276
1277 cpu_install_idmap();
1278 remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));
1279 cpu_uninstall_idmap();
1280
1281 if (!cpu)
Mark Brown09e3c222019-12-09 18:12:17 +00001282 arm64_use_ng_mappings = true;
Will Deaconf992b4d2018-02-06 22:22:50 +00001283
Dave Martinc0cda3b2018-03-26 15:12:28 +01001284 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001285}
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001286#else
1287static void
1288kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
1289{
1290}
1291#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
Will Deaconf992b4d2018-02-06 22:22:50 +00001292
Will Deaconea1e3de2017-11-14 14:38:19 +00001293static int __init parse_kpti(char *str)
1294{
1295 bool enabled;
1296 int ret = strtobool(str, &enabled);
1297
1298 if (ret)
1299 return ret;
1300
1301 __kpti_forced = enabled ? 1 : -1;
1302 return 0;
1303}
Will Deaconb5b7dd62018-06-22 10:25:25 +01001304early_param("kpti", parse_kpti);
Will Deaconea1e3de2017-11-14 14:38:19 +00001305
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001306#ifdef CONFIG_ARM64_HW_AFDBM
1307static inline void __cpu_enable_hw_dbm(void)
1308{
1309 u64 tcr = read_sysreg(tcr_el1) | TCR_HD;
1310
1311 write_sysreg(tcr, tcr_el1);
1312 isb();
1313}
1314
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001315static bool cpu_has_broken_dbm(void)
1316{
1317 /* List of CPUs which have broken DBM support. */
1318 static const struct midr_range cpus[] = {
1319#ifdef CONFIG_ARM64_ERRATUM_1024718
1320 MIDR_RANGE(MIDR_CORTEX_A55, 0, 0, 1, 0), // A55 r0p0 -r1p0
1321#endif
1322 {},
1323 };
1324
1325 return is_midr_in_range_list(read_cpuid_id(), cpus);
1326}
1327
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001328static bool cpu_can_use_dbm(const struct arm64_cpu_capabilities *cap)
1329{
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001330 return has_cpuid_feature(cap, SCOPE_LOCAL_CPU) &&
1331 !cpu_has_broken_dbm();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001332}
1333
1334static void cpu_enable_hw_dbm(struct arm64_cpu_capabilities const *cap)
1335{
1336 if (cpu_can_use_dbm(cap))
1337 __cpu_enable_hw_dbm();
1338}
1339
1340static bool has_hw_dbm(const struct arm64_cpu_capabilities *cap,
1341 int __unused)
1342{
1343 static bool detected = false;
1344 /*
1345 * DBM is a non-conflicting feature. i.e, the kernel can safely
1346 * run a mix of CPUs with and without the feature. So, we
1347 * unconditionally enable the capability to allow any late CPU
1348 * to use the feature. We only enable the control bits on the
1349 * CPU, if it actually supports.
1350 *
1351 * We have to make sure we print the "feature" detection only
1352 * when at least one CPU actually uses it. So check if this CPU
1353 * can actually use it and print the message exactly once.
1354 *
1355 * This is safe as all CPUs (including secondary CPUs - due to the
1356 * LOCAL_CPU scope - and the hotplugged CPUs - via verification)
1357 * goes through the "matches" check exactly once. Also if a CPU
1358 * matches the criteria, it is guaranteed that the CPU will turn
1359 * the DBM on, as the capability is unconditionally enabled.
1360 */
1361 if (!detected && cpu_can_use_dbm(cap)) {
1362 detected = true;
1363 pr_info("detected: Hardware dirty bit management\n");
1364 }
1365
1366 return true;
1367}
1368
1369#endif
1370
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001371#ifdef CONFIG_ARM64_AMU_EXTN
1372
1373/*
1374 * The "amu_cpus" cpumask only signals that the CPU implementation for the
1375 * flagged CPUs supports the Activity Monitors Unit (AMU) but does not provide
1376 * information regarding all the events that it supports. When a CPU bit is
1377 * set in the cpumask, the user of this feature can only rely on the presence
1378 * of the 4 fixed counters for that CPU. But this does not guarantee that the
1379 * counters are enabled or access to these counters is enabled by code
1380 * executed at higher exception levels (firmware).
1381 */
1382static struct cpumask amu_cpus __read_mostly;
1383
1384bool cpu_has_amu_feat(int cpu)
1385{
1386 return cpumask_test_cpu(cpu, &amu_cpus);
1387}
1388
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001389/* Initialize the use of AMU counters for frequency invariance */
1390extern void init_cpu_freq_invariance_counters(void);
1391
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001392static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap)
1393{
1394 if (has_cpuid_feature(cap, SCOPE_LOCAL_CPU)) {
1395 pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n",
1396 smp_processor_id());
1397 cpumask_set_cpu(smp_processor_id(), &amu_cpus);
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001398 init_cpu_freq_invariance_counters();
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001399 }
1400}
1401
1402static bool has_amu(const struct arm64_cpu_capabilities *cap,
1403 int __unused)
1404{
1405 /*
1406 * The AMU extension is a non-conflicting feature: the kernel can
1407 * safely run a mix of CPUs with and without support for the
1408 * activity monitors extension. Therefore, unconditionally enable
1409 * the capability to allow any late CPU to use the feature.
1410 *
1411 * With this feature unconditionally enabled, the cpu_enable
1412 * function will be called for all CPUs that match the criteria,
1413 * including secondary and hotplugged, marking this feature as
1414 * present on that respective CPU. The enable function will also
1415 * print a detection message.
1416 */
1417
1418 return true;
1419}
1420#endif
1421
Will Deacon12eb3692018-03-27 11:51:12 +01001422#ifdef CONFIG_ARM64_VHE
1423static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
1424{
1425 return is_kernel_in_hyp_mode();
1426}
1427
Dave Martinc0cda3b2018-03-26 15:12:28 +01001428static void cpu_copy_el2regs(const struct arm64_cpu_capabilities *__unused)
James Morse6d99b682018-01-08 15:38:06 +00001429{
1430 /*
1431 * Copy register values that aren't redirected by hardware.
1432 *
1433 * Before code patching, we only set tpidr_el1, all CPUs need to copy
1434 * this value to tpidr_el2 before we patch the code. Once we've done
1435 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
1436 * do anything here.
1437 */
Julien Thierrye9ab7a22019-01-31 14:58:52 +00001438 if (!alternative_is_applied(ARM64_HAS_VIRT_HOST_EXTN))
James Morse6d99b682018-01-08 15:38:06 +00001439 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
James Morse6d99b682018-01-08 15:38:06 +00001440}
Will Deacon12eb3692018-03-27 11:51:12 +01001441#endif
James Morse6d99b682018-01-08 15:38:06 +00001442
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001443static void cpu_has_fwb(const struct arm64_cpu_capabilities *__unused)
1444{
1445 u64 val = read_sysreg_s(SYS_CLIDR_EL1);
1446
1447 /* Check that CLIDR_EL1.LOU{U,IS} are both 0 */
1448 WARN_ON(val & (7 << 27 | 7 << 21));
1449}
1450
Will Deacon8f04e8e2018-08-07 13:47:06 +01001451#ifdef CONFIG_ARM64_SSBD
1452static int ssbs_emulation_handler(struct pt_regs *regs, u32 instr)
1453{
1454 if (user_mode(regs))
1455 return 1;
1456
Suzuki K Poulose74e24822018-09-16 23:17:23 +01001457 if (instr & BIT(PSTATE_Imm_shift))
Will Deacon8f04e8e2018-08-07 13:47:06 +01001458 regs->pstate |= PSR_SSBS_BIT;
1459 else
1460 regs->pstate &= ~PSR_SSBS_BIT;
1461
1462 arm64_skip_faulting_instruction(regs, 4);
1463 return 0;
1464}
1465
1466static struct undef_hook ssbs_emulation_hook = {
Suzuki K Poulose74e24822018-09-16 23:17:23 +01001467 .instr_mask = ~(1U << PSTATE_Imm_shift),
1468 .instr_val = 0xd500401f | PSTATE_SSBS,
Will Deacon8f04e8e2018-08-07 13:47:06 +01001469 .fn = ssbs_emulation_handler,
1470};
1471
1472static void cpu_enable_ssbs(const struct arm64_cpu_capabilities *__unused)
1473{
1474 static bool undef_hook_registered = false;
Julien Grall27e6e7d2019-05-30 12:30:58 +01001475 static DEFINE_RAW_SPINLOCK(hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001476
Julien Grall27e6e7d2019-05-30 12:30:58 +01001477 raw_spin_lock(&hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001478 if (!undef_hook_registered) {
1479 register_undef_hook(&ssbs_emulation_hook);
1480 undef_hook_registered = true;
1481 }
Julien Grall27e6e7d2019-05-30 12:30:58 +01001482 raw_spin_unlock(&hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001483
1484 if (arm64_get_ssbd_state() == ARM64_SSBD_FORCE_DISABLE) {
1485 sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_DSSBS);
1486 arm64_set_ssbd_mitigation(false);
1487 } else {
1488 arm64_set_ssbd_mitigation(true);
1489 }
1490}
1491#endif /* CONFIG_ARM64_SSBD */
1492
Will Deaconb8925ee2018-08-07 13:53:41 +01001493#ifdef CONFIG_ARM64_PAN
1494static void cpu_enable_pan(const struct arm64_cpu_capabilities *__unused)
1495{
1496 /*
1497 * We modify PSTATE. This won't work from irq context as the PSTATE
1498 * is discarded once we return from the exception.
1499 */
1500 WARN_ON_ONCE(in_interrupt());
1501
1502 sysreg_clear_set(sctlr_el1, SCTLR_EL1_SPAN, 0);
1503 asm(SET_PSTATE_PAN(1));
1504}
1505#endif /* CONFIG_ARM64_PAN */
1506
1507#ifdef CONFIG_ARM64_RAS_EXTN
1508static void cpu_clear_disr(const struct arm64_cpu_capabilities *__unused)
1509{
1510 /* Firmware may have left a deferred SError in this register. */
1511 write_sysreg_s(0, SYS_DISR_EL1);
1512}
1513#endif /* CONFIG_ARM64_RAS_EXTN */
1514
Mark Rutland6984eb42018-12-07 18:39:24 +00001515#ifdef CONFIG_ARM64_PTR_AUTH
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301516static bool has_address_auth(const struct arm64_cpu_capabilities *entry,
1517 int __unused)
Mark Rutland75031972018-12-07 18:39:25 +00001518{
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301519 return __system_matches_cap(ARM64_HAS_ADDRESS_AUTH_ARCH) ||
1520 __system_matches_cap(ARM64_HAS_ADDRESS_AUTH_IMP_DEF);
1521}
1522
1523static bool has_generic_auth(const struct arm64_cpu_capabilities *entry,
1524 int __unused)
1525{
1526 return __system_matches_cap(ARM64_HAS_GENERIC_AUTH_ARCH) ||
1527 __system_matches_cap(ARM64_HAS_GENERIC_AUTH_IMP_DEF);
Mark Rutland75031972018-12-07 18:39:25 +00001528}
Mark Rutland6984eb42018-12-07 18:39:24 +00001529#endif /* CONFIG_ARM64_PTR_AUTH */
1530
Mark Brown3e6c69a2019-12-09 18:12:14 +00001531#ifdef CONFIG_ARM64_E0PD
1532static void cpu_enable_e0pd(struct arm64_cpu_capabilities const *cap)
1533{
1534 if (this_cpu_has_cap(ARM64_HAS_E0PD))
1535 sysreg_clear_set(tcr_el1, 0, TCR_E0PD1);
1536}
1537#endif /* CONFIG_ARM64_E0PD */
1538
Julien Thierryb90d2b22019-01-31 14:58:42 +00001539#ifdef CONFIG_ARM64_PSEUDO_NMI
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001540static bool enable_pseudo_nmi;
1541
1542static int __init early_enable_pseudo_nmi(char *p)
1543{
1544 return strtobool(p, &enable_pseudo_nmi);
1545}
1546early_param("irqchip.gicv3_pseudo_nmi", early_enable_pseudo_nmi);
1547
Julien Thierryb90d2b22019-01-31 14:58:42 +00001548static bool can_use_gic_priorities(const struct arm64_cpu_capabilities *entry,
1549 int scope)
1550{
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001551 return enable_pseudo_nmi && has_useable_gicv3_cpuif(entry, scope);
Julien Thierryb90d2b22019-01-31 14:58:42 +00001552}
1553#endif
1554
Amit Daniel Kachhap8c176e12020-03-13 14:34:53 +05301555/* Internal helper functions to match cpu capability type */
1556static bool
1557cpucap_late_cpu_optional(const struct arm64_cpu_capabilities *cap)
1558{
1559 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU);
1560}
1561
1562static bool
1563cpucap_late_cpu_permitted(const struct arm64_cpu_capabilities *cap)
1564{
1565 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU);
1566}
1567
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05301568static bool
1569cpucap_panic_on_conflict(const struct arm64_cpu_capabilities *cap)
1570{
1571 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT);
1572}
1573
Marc Zyngier359b7062015-03-27 13:09:23 +00001574static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +01001575 {
1576 .desc = "GIC system register CPU interface",
1577 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Julien Thierryc9bfdf72019-01-31 14:58:41 +00001578 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngier963fcd42015-09-30 11:50:04 +01001579 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001580 .sys_reg = SYS_ID_AA64PFR0_EL1,
1581 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001582 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +01001583 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +01001584 },
James Morse338d4f42015-07-22 19:05:54 +01001585#ifdef CONFIG_ARM64_PAN
1586 {
1587 .desc = "Privileged Access Never",
1588 .capability = ARM64_HAS_PAN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001589 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001590 .matches = has_cpuid_feature,
1591 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1592 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001593 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +01001594 .min_field_value = 1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001595 .cpu_enable = cpu_enable_pan,
James Morse338d4f42015-07-22 19:05:54 +01001596 },
1597#endif /* CONFIG_ARM64_PAN */
Catalin Marinas395af862020-01-15 11:30:08 +00001598#ifdef CONFIG_ARM64_LSE_ATOMICS
Will Deacon2e94da12015-07-27 16:23:58 +01001599 {
1600 .desc = "LSE atomic instructions",
1601 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001602 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001603 .matches = has_cpuid_feature,
1604 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1605 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001606 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +01001607 .min_field_value = 2,
1608 },
Catalin Marinas395af862020-01-15 11:30:08 +00001609#endif /* CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +00001610 {
Will Deacond5370f72016-02-02 12:46:24 +00001611 .desc = "Software prefetching using PRFM",
1612 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose5c137712018-03-26 15:12:39 +01001613 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
Will Deacond5370f72016-02-02 12:46:24 +00001614 .matches = has_no_hw_prefetch,
1615 },
James Morse57f49592016-02-05 14:58:48 +00001616#ifdef CONFIG_ARM64_UAO
1617 {
1618 .desc = "User Access Override",
1619 .capability = ARM64_HAS_UAO,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001620 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
James Morse57f49592016-02-05 14:58:48 +00001621 .matches = has_cpuid_feature,
1622 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1623 .field_pos = ID_AA64MMFR2_UAO_SHIFT,
1624 .min_field_value = 1,
James Morsec8b06e32017-01-09 18:14:02 +00001625 /*
1626 * We rely on stop_machine() calling uao_thread_switch() to set
1627 * UAO immediately after patching.
1628 */
James Morse57f49592016-02-05 14:58:48 +00001629 },
1630#endif /* CONFIG_ARM64_UAO */
James Morse70544192016-02-05 14:58:50 +00001631#ifdef CONFIG_ARM64_PAN
1632 {
1633 .capability = ARM64_ALT_PAN_NOT_UAO,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001634 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
James Morse70544192016-02-05 14:58:50 +00001635 .matches = cpufeature_pan_not_uao,
1636 },
1637#endif /* CONFIG_ARM64_PAN */
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001638#ifdef CONFIG_ARM64_VHE
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001639 {
Marc Zyngierd88701b2015-01-29 11:24:05 +00001640 .desc = "Virtualization Host Extensions",
1641 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001642 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001643 .matches = runs_at_el2,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001644 .cpu_enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001645 },
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001646#endif /* CONFIG_ARM64_VHE */
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001647 {
1648 .desc = "32-bit EL0 Support",
1649 .capability = ARM64_HAS_32BIT_EL0,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001650 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001651 .matches = has_cpuid_feature,
1652 .sys_reg = SYS_ID_AA64PFR0_EL1,
1653 .sign = FTR_UNSIGNED,
1654 .field_pos = ID_AA64PFR0_EL0_SHIFT,
1655 .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT,
1656 },
Will Deacon540f76d2020-04-21 15:29:17 +01001657#ifdef CONFIG_KVM
1658 {
1659 .desc = "32-bit EL1 Support",
1660 .capability = ARM64_HAS_32BIT_EL1,
1661 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1662 .matches = has_cpuid_feature,
1663 .sys_reg = SYS_ID_AA64PFR0_EL1,
1664 .sign = FTR_UNSIGNED,
1665 .field_pos = ID_AA64PFR0_EL1_SHIFT,
1666 .min_field_value = ID_AA64PFR0_EL1_32BIT_64BIT,
1667 },
1668#endif
Will Deaconea1e3de2017-11-14 14:38:19 +00001669 {
Will Deacon179a56f2017-11-27 18:29:30 +00001670 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00001671 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001672 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
1673 /*
1674 * The ID feature fields below are used to indicate that
1675 * the CPU doesn't need KPTI. See unmap_kernel_at_el0 for
1676 * more details.
1677 */
1678 .sys_reg = SYS_ID_AA64PFR0_EL1,
1679 .field_pos = ID_AA64PFR0_CSV3_SHIFT,
1680 .min_field_value = 1,
Will Deaconea1e3de2017-11-14 14:38:19 +00001681 .matches = unmap_kernel_at_el0,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001682 .cpu_enable = kpti_install_ng_mappings,
Will Deaconea1e3de2017-11-14 14:38:19 +00001683 },
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001684 {
1685 /* FP/SIMD is not implemented */
1686 .capability = ARM64_HAS_NO_FPSIMD,
Suzuki K Poulose449443c2020-01-13 23:30:19 +00001687 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001688 .min_field_value = 0,
1689 .matches = has_no_fpsimd,
1690 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001691#ifdef CONFIG_ARM64_PMEM
1692 {
1693 .desc = "Data cache clean to Point of Persistence",
1694 .capability = ARM64_HAS_DCPOP,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001695 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Robin Murphyd50e0712017-07-25 11:55:42 +01001696 .matches = has_cpuid_feature,
1697 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1698 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1699 .min_field_value = 1,
1700 },
Andrew Murrayb9585f52019-04-09 10:52:45 +01001701 {
1702 .desc = "Data cache clean to Point of Deep Persistence",
1703 .capability = ARM64_HAS_DCPODP,
1704 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1705 .matches = has_cpuid_feature,
1706 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1707 .sign = FTR_UNSIGNED,
1708 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1709 .min_field_value = 2,
1710 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001711#endif
Dave Martin43994d82017-10-31 15:51:19 +00001712#ifdef CONFIG_ARM64_SVE
1713 {
1714 .desc = "Scalable Vector Extension",
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001715 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Dave Martin43994d82017-10-31 15:51:19 +00001716 .capability = ARM64_SVE,
Dave Martin43994d82017-10-31 15:51:19 +00001717 .sys_reg = SYS_ID_AA64PFR0_EL1,
1718 .sign = FTR_UNSIGNED,
1719 .field_pos = ID_AA64PFR0_SVE_SHIFT,
1720 .min_field_value = ID_AA64PFR0_SVE,
1721 .matches = has_cpuid_feature,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001722 .cpu_enable = sve_kernel_enable,
Dave Martin43994d82017-10-31 15:51:19 +00001723 },
1724#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00001725#ifdef CONFIG_ARM64_RAS_EXTN
1726 {
1727 .desc = "RAS Extension Support",
1728 .capability = ARM64_HAS_RAS_EXTN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001729 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Xie XiuQi64c02722018-01-15 19:38:56 +00001730 .matches = has_cpuid_feature,
1731 .sys_reg = SYS_ID_AA64PFR0_EL1,
1732 .sign = FTR_UNSIGNED,
1733 .field_pos = ID_AA64PFR0_RAS_SHIFT,
1734 .min_field_value = ID_AA64PFR0_RAS_V1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001735 .cpu_enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00001736 },
1737#endif /* CONFIG_ARM64_RAS_EXTN */
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001738#ifdef CONFIG_ARM64_AMU_EXTN
1739 {
1740 /*
1741 * The feature is enabled by default if CONFIG_ARM64_AMU_EXTN=y.
1742 * Therefore, don't provide .desc as we don't want the detection
1743 * message to be shown until at least one CPU is detected to
1744 * support the feature.
1745 */
1746 .capability = ARM64_HAS_AMU_EXTN,
1747 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1748 .matches = has_amu,
1749 .sys_reg = SYS_ID_AA64PFR0_EL1,
1750 .sign = FTR_UNSIGNED,
1751 .field_pos = ID_AA64PFR0_AMU_SHIFT,
1752 .min_field_value = ID_AA64PFR0_AMU,
1753 .cpu_enable = cpu_amu_enable,
1754 },
1755#endif /* CONFIG_ARM64_AMU_EXTN */
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001756 {
1757 .desc = "Data cache clean to the PoU not required for I/D coherence",
1758 .capability = ARM64_HAS_CACHE_IDC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001759 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001760 .matches = has_cache_idc,
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001761 .cpu_enable = cpu_emulate_effective_ctr,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001762 },
1763 {
1764 .desc = "Instruction cache invalidation not required for I/D coherence",
1765 .capability = ARM64_HAS_CACHE_DIC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001766 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001767 .matches = has_cache_dic,
1768 },
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001769 {
1770 .desc = "Stage-2 Force Write-Back",
1771 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1772 .capability = ARM64_HAS_STAGE2_FWB,
1773 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1774 .sign = FTR_UNSIGNED,
1775 .field_pos = ID_AA64MMFR2_FWB_SHIFT,
1776 .min_field_value = 1,
1777 .matches = has_cpuid_feature,
1778 .cpu_enable = cpu_has_fwb,
1779 },
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001780#ifdef CONFIG_ARM64_HW_AFDBM
1781 {
1782 /*
1783 * Since we turn this on always, we don't want the user to
1784 * think that the feature is available when it may not be.
1785 * So hide the description.
1786 *
1787 * .desc = "Hardware pagetable Dirty Bit Management",
1788 *
1789 */
1790 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1791 .capability = ARM64_HW_DBM,
1792 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1793 .sign = FTR_UNSIGNED,
1794 .field_pos = ID_AA64MMFR1_HADBS_SHIFT,
1795 .min_field_value = 2,
1796 .matches = has_hw_dbm,
1797 .cpu_enable = cpu_enable_hw_dbm,
1798 },
1799#endif
Ard Biesheuvel86d0dd32018-08-27 13:02:43 +02001800 {
1801 .desc = "CRC32 instructions",
1802 .capability = ARM64_HAS_CRC32,
1803 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1804 .matches = has_cpuid_feature,
1805 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1806 .field_pos = ID_AA64ISAR0_CRC32_SHIFT,
1807 .min_field_value = 1,
1808 },
Will Deacon4f9f4962018-11-21 15:07:00 +00001809#ifdef CONFIG_ARM64_SSBD
Will Deacond71be2b2018-06-15 11:37:34 +01001810 {
1811 .desc = "Speculative Store Bypassing Safe (SSBS)",
1812 .capability = ARM64_SSBS,
1813 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1814 .matches = has_cpuid_feature,
1815 .sys_reg = SYS_ID_AA64PFR1_EL1,
1816 .field_pos = ID_AA64PFR1_SSBS_SHIFT,
1817 .sign = FTR_UNSIGNED,
1818 .min_field_value = ID_AA64PFR1_SSBS_PSTATE_ONLY,
Will Deacon8f04e8e2018-08-07 13:47:06 +01001819 .cpu_enable = cpu_enable_ssbs,
Will Deacond71be2b2018-06-15 11:37:34 +01001820 },
Will Deacon8f04e8e2018-08-07 13:47:06 +01001821#endif
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001822#ifdef CONFIG_ARM64_CNP
1823 {
1824 .desc = "Common not Private translations",
1825 .capability = ARM64_HAS_CNP,
1826 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1827 .matches = has_useable_cnp,
1828 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1829 .sign = FTR_UNSIGNED,
1830 .field_pos = ID_AA64MMFR2_CNP_SHIFT,
1831 .min_field_value = 1,
1832 .cpu_enable = cpu_enable_cnp,
1833 },
1834#endif
Will Deaconbd4fb6d2018-06-14 11:21:34 +01001835 {
1836 .desc = "Speculation barrier (SB)",
1837 .capability = ARM64_HAS_SB,
1838 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1839 .matches = has_cpuid_feature,
1840 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1841 .field_pos = ID_AA64ISAR1_SB_SHIFT,
1842 .sign = FTR_UNSIGNED,
1843 .min_field_value = 1,
1844 },
Mark Rutland6984eb42018-12-07 18:39:24 +00001845#ifdef CONFIG_ARM64_PTR_AUTH
1846 {
1847 .desc = "Address authentication (architected algorithm)",
1848 .capability = ARM64_HAS_ADDRESS_AUTH_ARCH,
Kristina Martsenko69829342020-03-13 14:34:55 +05301849 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00001850 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1851 .sign = FTR_UNSIGNED,
1852 .field_pos = ID_AA64ISAR1_APA_SHIFT,
1853 .min_field_value = ID_AA64ISAR1_APA_ARCHITECTED,
1854 .matches = has_cpuid_feature,
1855 },
1856 {
1857 .desc = "Address authentication (IMP DEF algorithm)",
1858 .capability = ARM64_HAS_ADDRESS_AUTH_IMP_DEF,
Kristina Martsenko69829342020-03-13 14:34:55 +05301859 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00001860 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1861 .sign = FTR_UNSIGNED,
1862 .field_pos = ID_AA64ISAR1_API_SHIFT,
1863 .min_field_value = ID_AA64ISAR1_API_IMP_DEF,
1864 .matches = has_cpuid_feature,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301865 },
1866 {
1867 .capability = ARM64_HAS_ADDRESS_AUTH,
Kristina Martsenko69829342020-03-13 14:34:55 +05301868 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301869 .matches = has_address_auth,
Mark Rutland6984eb42018-12-07 18:39:24 +00001870 },
1871 {
1872 .desc = "Generic authentication (architected algorithm)",
1873 .capability = ARM64_HAS_GENERIC_AUTH_ARCH,
1874 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1875 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1876 .sign = FTR_UNSIGNED,
1877 .field_pos = ID_AA64ISAR1_GPA_SHIFT,
1878 .min_field_value = ID_AA64ISAR1_GPA_ARCHITECTED,
1879 .matches = has_cpuid_feature,
1880 },
1881 {
1882 .desc = "Generic authentication (IMP DEF algorithm)",
1883 .capability = ARM64_HAS_GENERIC_AUTH_IMP_DEF,
1884 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1885 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1886 .sign = FTR_UNSIGNED,
1887 .field_pos = ID_AA64ISAR1_GPI_SHIFT,
1888 .min_field_value = ID_AA64ISAR1_GPI_IMP_DEF,
1889 .matches = has_cpuid_feature,
1890 },
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301891 {
1892 .capability = ARM64_HAS_GENERIC_AUTH,
1893 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1894 .matches = has_generic_auth,
1895 },
Mark Rutland6984eb42018-12-07 18:39:24 +00001896#endif /* CONFIG_ARM64_PTR_AUTH */
Julien Thierryb90d2b22019-01-31 14:58:42 +00001897#ifdef CONFIG_ARM64_PSEUDO_NMI
1898 {
1899 /*
1900 * Depends on having GICv3
1901 */
1902 .desc = "IRQ priority masking",
1903 .capability = ARM64_HAS_IRQ_PRIO_MASKING,
1904 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
1905 .matches = can_use_gic_priorities,
1906 .sys_reg = SYS_ID_AA64PFR0_EL1,
1907 .field_pos = ID_AA64PFR0_GIC_SHIFT,
1908 .sign = FTR_UNSIGNED,
1909 .min_field_value = 1,
1910 },
1911#endif
Mark Brown3e6c69a2019-12-09 18:12:14 +00001912#ifdef CONFIG_ARM64_E0PD
1913 {
1914 .desc = "E0PD",
1915 .capability = ARM64_HAS_E0PD,
1916 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1917 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1918 .sign = FTR_UNSIGNED,
1919 .field_pos = ID_AA64MMFR2_E0PD_SHIFT,
1920 .matches = has_cpuid_feature,
1921 .min_field_value = 1,
1922 .cpu_enable = cpu_enable_e0pd,
1923 },
1924#endif
Richard Henderson1a50ec02020-01-21 12:58:52 +00001925#ifdef CONFIG_ARCH_RANDOM
1926 {
1927 .desc = "Random Number Generator",
1928 .capability = ARM64_HAS_RNG,
1929 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1930 .matches = has_cpuid_feature,
1931 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1932 .field_pos = ID_AA64ISAR0_RNDR_SHIFT,
1933 .sign = FTR_UNSIGNED,
1934 .min_field_value = 1,
1935 },
1936#endif
Marc Zyngier359b7062015-03-27 13:09:23 +00001937 {},
1938};
1939
Will Deacon1e013d02018-12-12 15:53:54 +00001940#define HWCAP_CPUID_MATCH(reg, field, s, min_value) \
1941 .matches = has_cpuid_feature, \
1942 .sys_reg = reg, \
1943 .field_pos = field, \
1944 .sign = s, \
1945 .min_field_value = min_value,
1946
1947#define __HWCAP_CAP(name, cap_type, cap) \
1948 .desc = name, \
1949 .type = ARM64_CPUCAP_SYSTEM_FEATURE, \
1950 .hwcap_type = cap_type, \
1951 .hwcap = cap, \
1952
1953#define HWCAP_CAP(reg, field, s, min_value, cap_type, cap) \
1954 { \
1955 __HWCAP_CAP(#cap, cap_type, cap) \
1956 HWCAP_CPUID_MATCH(reg, field, s, min_value) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001957 }
1958
Will Deacon1e013d02018-12-12 15:53:54 +00001959#define HWCAP_MULTI_CAP(list, cap_type, cap) \
1960 { \
1961 __HWCAP_CAP(#cap, cap_type, cap) \
1962 .matches = cpucap_multi_entry_cap_matches, \
1963 .match_list = list, \
1964 }
1965
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00001966#define HWCAP_CAP_MATCH(match, cap_type, cap) \
1967 { \
1968 __HWCAP_CAP(#cap, cap_type, cap) \
1969 .matches = match, \
1970 }
1971
Will Deacon1e013d02018-12-12 15:53:54 +00001972#ifdef CONFIG_ARM64_PTR_AUTH
1973static const struct arm64_cpu_capabilities ptr_auth_hwcap_addr_matches[] = {
1974 {
1975 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_APA_SHIFT,
1976 FTR_UNSIGNED, ID_AA64ISAR1_APA_ARCHITECTED)
1977 },
1978 {
1979 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_API_SHIFT,
1980 FTR_UNSIGNED, ID_AA64ISAR1_API_IMP_DEF)
1981 },
1982 {},
1983};
1984
1985static const struct arm64_cpu_capabilities ptr_auth_hwcap_gen_matches[] = {
1986 {
1987 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPA_SHIFT,
1988 FTR_UNSIGNED, ID_AA64ISAR1_GPA_ARCHITECTED)
1989 },
1990 {
1991 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPI_SHIFT,
1992 FTR_UNSIGNED, ID_AA64ISAR1_GPI_IMP_DEF)
1993 },
1994 {},
1995};
1996#endif
1997
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001998static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Andrew Murrayaaba0982019-04-09 10:52:40 +01001999 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_PMULL),
2000 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_AES),
2001 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA1),
2002 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA2),
2003 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_SHA512),
2004 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_CRC32),
2005 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ATOMICS),
2006 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDRDM),
2007 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA3),
2008 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM3),
2009 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM4),
2010 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDDP),
2011 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDFHM),
2012 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 +01002013 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 +00002014 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 +01002015 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_FP),
2016 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP),
2017 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD),
2018 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP),
2019 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_DIT_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT),
2020 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 +01002021 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 +01002022 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT),
2023 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FCMA),
2024 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_LRCPC),
2025 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 +01002026 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 +01002027 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 +00002028 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_BF16_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_BF16),
2029 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DGH_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DGH),
2030 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 +01002031 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 +00002032#ifdef CONFIG_ARM64_SVE
Andrew Murrayaaba0982019-04-09 10:52:40 +01002033 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 +01002034 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SVEVER_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SVEVER_SVE2, CAP_HWCAP, KERNEL_HWCAP_SVE2),
2035 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES, CAP_HWCAP, KERNEL_HWCAP_SVEAES),
2036 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES_PMULL, CAP_HWCAP, KERNEL_HWCAP_SVEPMULL),
2037 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 +00002038 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 +01002039 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SHA3_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SHA3, CAP_HWCAP, KERNEL_HWCAP_SVESHA3),
2040 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 +00002041 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_I8MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_I8MM, CAP_HWCAP, KERNEL_HWCAP_SVEI8MM),
2042 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F32MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F32MM, CAP_HWCAP, KERNEL_HWCAP_SVEF32MM),
2043 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 +00002044#endif
Andrew Murrayaaba0982019-04-09 10:52:40 +01002045 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_SSBS_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_SSBS_PSTATE_INSNS, CAP_HWCAP, KERNEL_HWCAP_SSBS),
Mark Rutland75031972018-12-07 18:39:25 +00002046#ifdef CONFIG_ARM64_PTR_AUTH
Andrew Murrayaaba0982019-04-09 10:52:40 +01002047 HWCAP_MULTI_CAP(ptr_auth_hwcap_addr_matches, CAP_HWCAP, KERNEL_HWCAP_PACA),
2048 HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG),
Mark Rutland75031972018-12-07 18:39:25 +00002049#endif
Suzuki K Poulose75283502016-04-18 10:28:33 +01002050 {},
2051};
2052
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002053#ifdef CONFIG_COMPAT
2054static bool compat_has_neon(const struct arm64_cpu_capabilities *cap, int scope)
2055{
2056 /*
2057 * Check that all of MVFR1_EL1.{SIMDSP, SIMDInt, SIMDLS} are available,
2058 * in line with that of arm32 as in vfp_init(). We make sure that the
2059 * check is future proof, by making sure value is non-zero.
2060 */
2061 u32 mvfr1;
2062
2063 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
2064 if (scope == SCOPE_SYSTEM)
2065 mvfr1 = read_sanitised_ftr_reg(SYS_MVFR1_EL1);
2066 else
2067 mvfr1 = read_sysreg_s(SYS_MVFR1_EL1);
2068
2069 return cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDSP_SHIFT) &&
2070 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDINT_SHIFT) &&
2071 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDLS_SHIFT);
2072}
2073#endif
2074
Suzuki K Poulose75283502016-04-18 10:28:33 +01002075static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002076#ifdef CONFIG_COMPAT
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002077 HWCAP_CAP_MATCH(compat_has_neon, CAP_COMPAT_HWCAP, COMPAT_HWCAP_NEON),
2078 HWCAP_CAP(SYS_MVFR1_EL1, MVFR1_SIMDFMAC_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv4),
2079 /* Arm v8 mandates MVFR0.FPDP == {0, 2}. So, piggy back on this for the presence of VFP support */
2080 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFP),
2081 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 +00002082 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
2083 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
2084 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
2085 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
2086 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 +01002087#endif
2088 {},
2089};
2090
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002091static void __init cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002092{
2093 switch (cap->hwcap_type) {
2094 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002095 cpu_set_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002096 break;
2097#ifdef CONFIG_COMPAT
2098 case CAP_COMPAT_HWCAP:
2099 compat_elf_hwcap |= (u32)cap->hwcap;
2100 break;
2101 case CAP_COMPAT_HWCAP2:
2102 compat_elf_hwcap2 |= (u32)cap->hwcap;
2103 break;
2104#endif
2105 default:
2106 WARN_ON(1);
2107 break;
2108 }
2109}
2110
2111/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002112static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002113{
2114 bool rc;
2115
2116 switch (cap->hwcap_type) {
2117 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002118 rc = cpu_have_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002119 break;
2120#ifdef CONFIG_COMPAT
2121 case CAP_COMPAT_HWCAP:
2122 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
2123 break;
2124 case CAP_COMPAT_HWCAP2:
2125 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
2126 break;
2127#endif
2128 default:
2129 WARN_ON(1);
2130 rc = false;
2131 }
2132
2133 return rc;
2134}
2135
Suzuki K Poulose75283502016-04-18 10:28:33 +01002136static void __init setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002137{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002138 /* We support emulation of accesses to CPU ID feature registers */
Andrew Murrayaaba0982019-04-09 10:52:40 +01002139 cpu_set_named_feature(CPUID);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002140 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose143ba052018-03-26 15:12:31 +01002141 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps)))
Suzuki K Poulose75283502016-04-18 10:28:33 +01002142 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002143}
2144
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002145static void update_cpu_capabilities(u16 scope_mask)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002146{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002147 int i;
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002148 const struct arm64_cpu_capabilities *caps;
2149
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002150 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002151 for (i = 0; i < ARM64_NCAPS; i++) {
2152 caps = cpu_hwcaps_ptrs[i];
2153 if (!caps || !(caps->type & scope_mask) ||
2154 cpus_have_cap(caps->capability) ||
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002155 !caps->matches(caps, cpucap_default_scope(caps)))
Marc Zyngier359b7062015-03-27 13:09:23 +00002156 continue;
2157
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002158 if (caps->desc)
2159 pr_info("detected: %s\n", caps->desc);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002160 cpus_set_cap(caps->capability);
Daniel Thompson0ceb0d52019-01-31 14:58:53 +00002161
2162 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU))
2163 set_bit(caps->capability, boot_capabilities);
Marc Zyngier359b7062015-03-27 13:09:23 +00002164 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002165}
James Morse1c076302015-07-21 13:23:28 +01002166
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002167/*
2168 * Enable all the available capabilities on this CPU. The capabilities
2169 * with BOOT_CPU scope are handled separately and hence skipped here.
2170 */
2171static int cpu_enable_non_boot_scope_capabilities(void *__unused)
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002172{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002173 int i;
2174 u16 non_boot_scope = SCOPE_ALL & ~SCOPE_BOOT_CPU;
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002175
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002176 for_each_available_cap(i) {
2177 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[i];
Dave Martinc0cda3b2018-03-26 15:12:28 +01002178
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002179 if (WARN_ON(!cap))
2180 continue;
2181
2182 if (!(cap->type & non_boot_scope))
2183 continue;
2184
2185 if (cap->cpu_enable)
2186 cap->cpu_enable(cap);
2187 }
Dave Martinc0cda3b2018-03-26 15:12:28 +01002188 return 0;
2189}
2190
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002191/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002192 * Run through the enabled capabilities and enable() it on all active
2193 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002194 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002195static void __init enable_cpu_capabilities(u16 scope_mask)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002196{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002197 int i;
2198 const struct arm64_cpu_capabilities *caps;
2199 bool boot_scope;
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002200
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002201 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2202 boot_scope = !!(scope_mask & SCOPE_BOOT_CPU);
2203
2204 for (i = 0; i < ARM64_NCAPS; i++) {
2205 unsigned int num;
2206
2207 caps = cpu_hwcaps_ptrs[i];
2208 if (!caps || !(caps->type & scope_mask))
2209 continue;
2210 num = caps->capability;
2211 if (!cpus_have_cap(num))
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002212 continue;
2213
2214 /* Ensure cpus_have_const_cap(num) works */
2215 static_branch_enable(&cpu_hwcap_keys[num]);
2216
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002217 if (boot_scope && caps->cpu_enable)
James Morse2a6dcb22016-10-18 11:27:46 +01002218 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002219 * Capabilities with SCOPE_BOOT_CPU scope are finalised
2220 * before any secondary CPU boots. Thus, each secondary
2221 * will enable the capability as appropriate via
2222 * check_local_cpu_capabilities(). The only exception is
2223 * the boot CPU, for which the capability must be
2224 * enabled here. This approach avoids costly
2225 * stop_machine() calls for this case.
James Morse2a6dcb22016-10-18 11:27:46 +01002226 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002227 caps->cpu_enable(caps);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002228 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002229
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002230 /*
2231 * For all non-boot scope capabilities, use stop_machine()
2232 * as it schedules the work allowing us to modify PSTATE,
2233 * instead of on_each_cpu() which uses an IPI, giving us a
2234 * PSTATE that disappears when we return.
2235 */
2236 if (!boot_scope)
2237 stop_machine(cpu_enable_non_boot_scope_capabilities,
2238 NULL, cpu_online_mask);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002239}
2240
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002241/*
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002242 * Run through the list of capabilities to check for conflicts.
2243 * If the system has already detected a capability, take necessary
2244 * action on this CPU.
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002245 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302246static void verify_local_cpu_caps(u16 scope_mask)
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002247{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002248 int i;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002249 bool cpu_has_cap, system_has_cap;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002250 const struct arm64_cpu_capabilities *caps;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002251
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002252 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2253
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002254 for (i = 0; i < ARM64_NCAPS; i++) {
2255 caps = cpu_hwcaps_ptrs[i];
2256 if (!caps || !(caps->type & scope_mask))
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002257 continue;
2258
Suzuki K Pouloseba7d9232018-03-26 15:12:46 +01002259 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002260 system_has_cap = cpus_have_cap(caps->capability);
2261
2262 if (system_has_cap) {
2263 /*
2264 * Check if the new CPU misses an advertised feature,
2265 * which is not safe to miss.
2266 */
2267 if (!cpu_has_cap && !cpucap_late_cpu_optional(caps))
2268 break;
2269 /*
2270 * We have to issue cpu_enable() irrespective of
2271 * whether the CPU has it or not, as it is enabeld
2272 * system wide. It is upto the call back to take
2273 * appropriate action on this CPU.
2274 */
2275 if (caps->cpu_enable)
2276 caps->cpu_enable(caps);
2277 } else {
2278 /*
2279 * Check if the CPU has this capability if it isn't
2280 * safe to have when the system doesn't.
2281 */
2282 if (cpu_has_cap && !cpucap_late_cpu_permitted(caps))
2283 break;
2284 }
2285 }
2286
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002287 if (i < ARM64_NCAPS) {
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002288 pr_crit("CPU%d: Detected conflict for capability %d (%s), System: %d, CPU: %d\n",
2289 smp_processor_id(), caps->capability,
2290 caps->desc, system_has_cap, cpu_has_cap);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002291
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302292 if (cpucap_panic_on_conflict(caps))
2293 cpu_panic_kernel();
2294 else
2295 cpu_die_early();
2296 }
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002297}
2298
2299/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002300 * Check for CPU features that are used in early boot
2301 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002302 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002303static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00002304{
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002305 verify_cpu_asid_bits();
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302306
2307 verify_local_cpu_caps(SCOPE_BOOT_CPU);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002308}
2309
Suzuki K Poulose75283502016-04-18 10:28:33 +01002310static void
2311verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
2312{
2313
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002314 for (; caps->matches; caps++)
2315 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01002316 pr_crit("CPU%d: missing HWCAP: %s\n",
2317 smp_processor_id(), caps->desc);
2318 cpu_die_early();
2319 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01002320}
2321
Dave Martin2e0f2472017-10-31 15:51:10 +00002322static void verify_sve_features(void)
2323{
2324 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
2325 u64 zcr = read_zcr_features();
2326
2327 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
2328 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
2329
2330 if (len < safe_len || sve_verify_vq_map()) {
Dave Martind06b76b2018-09-28 14:39:10 +01002331 pr_crit("CPU%d: SVE: vector length support mismatch\n",
Dave Martin2e0f2472017-10-31 15:51:10 +00002332 smp_processor_id());
2333 cpu_die_early();
2334 }
2335
2336 /* Add checks on other ZCR bits here if necessary */
2337}
2338
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302339static void verify_hyp_capabilities(void)
2340{
2341 u64 safe_mmfr1, mmfr0, mmfr1;
2342 int parange, ipa_max;
2343 unsigned int safe_vmid_bits, vmid_bits;
2344
2345 if (!IS_ENABLED(CONFIG_KVM) || !IS_ENABLED(CONFIG_KVM_ARM_HOST))
2346 return;
2347
2348 safe_mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
2349 mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
2350 mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
2351
2352 /* Verify VMID bits */
2353 safe_vmid_bits = get_vmid_bits(safe_mmfr1);
2354 vmid_bits = get_vmid_bits(mmfr1);
2355 if (vmid_bits < safe_vmid_bits) {
2356 pr_crit("CPU%d: VMID width mismatch\n", smp_processor_id());
2357 cpu_die_early();
2358 }
2359
2360 /* Verify IPA range */
Anshuman Khandualf73531f2020-05-13 14:33:34 +05302361 parange = cpuid_feature_extract_unsigned_field(mmfr0,
2362 ID_AA64MMFR0_PARANGE_SHIFT);
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302363 ipa_max = id_aa64mmfr0_parange_to_phys_shift(parange);
2364 if (ipa_max < get_kvm_ipa_limit()) {
2365 pr_crit("CPU%d: IPA range mismatch\n", smp_processor_id());
2366 cpu_die_early();
2367 }
2368}
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +01002369
2370/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002371 * Run through the enabled system capabilities and enable() it on this CPU.
2372 * The capabilities were decided based on the available CPUs at the boot time.
2373 * Any new CPU should match the system wide status of the capability. If the
2374 * new CPU doesn't have a capability which the system now has enabled, we
2375 * cannot do anything to fix it up and could cause unexpected failures. So
2376 * we park the CPU.
2377 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002378static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002379{
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002380 /*
2381 * The capabilities with SCOPE_BOOT_CPU are checked from
2382 * check_early_cpu_features(), as they need to be verified
2383 * on all secondary CPUs.
2384 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302385 verify_local_cpu_caps(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002386
Suzuki K Poulose75283502016-04-18 10:28:33 +01002387 verify_local_elf_hwcaps(arm64_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00002388
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002389 if (system_supports_32bit_el0())
2390 verify_local_elf_hwcaps(compat_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00002391
2392 if (system_supports_sve())
2393 verify_sve_features();
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302394
2395 if (is_hyp_mode_available())
2396 verify_hyp_capabilities();
Marc Zyngier359b7062015-03-27 13:09:23 +00002397}
2398
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002399void check_local_cpu_capabilities(void)
2400{
2401 /*
2402 * All secondary CPUs should conform to the early CPU features
2403 * in use by the kernel based on boot CPU.
2404 */
2405 check_early_cpu_features();
2406
2407 /*
2408 * If we haven't finalised the system capabilities, this CPU gets
Suzuki K Poulosefbd890b2018-03-26 15:12:37 +01002409 * a chance to update the errata work arounds and local features.
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002410 * Otherwise, this CPU should verify that it has all the system
2411 * advertised capabilities.
2412 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002413 if (!system_capabilities_finalized())
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002414 update_cpu_capabilities(SCOPE_LOCAL_CPU);
2415 else
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002416 verify_local_cpu_capabilities();
2417}
2418
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002419static void __init setup_boot_cpu_capabilities(void)
2420{
2421 /* Detect capabilities with either SCOPE_BOOT_CPU or SCOPE_LOCAL_CPU */
2422 update_cpu_capabilities(SCOPE_BOOT_CPU | SCOPE_LOCAL_CPU);
2423 /* Enable the SCOPE_BOOT_CPU capabilities alone right away */
2424 enable_cpu_capabilities(SCOPE_BOOT_CPU);
2425}
2426
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002427bool this_cpu_has_cap(unsigned int n)
Marc Zyngier8f4137582017-01-30 15:39:52 +00002428{
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002429 if (!WARN_ON(preemptible()) && n < ARM64_NCAPS) {
2430 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2431
2432 if (cap)
2433 return cap->matches(cap, SCOPE_LOCAL_CPU);
2434 }
2435
2436 return false;
Marc Zyngier8f4137582017-01-30 15:39:52 +00002437}
2438
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302439/*
2440 * This helper function is used in a narrow window when,
2441 * - The system wide safe registers are set with all the SMP CPUs and,
2442 * - The SYSTEM_FEATURE cpu_hwcaps may not have been set.
2443 * In all other cases cpus_have_{const_}cap() should be used.
2444 */
2445static bool __system_matches_cap(unsigned int n)
2446{
2447 if (n < ARM64_NCAPS) {
2448 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2449
2450 if (cap)
2451 return cap->matches(cap, SCOPE_SYSTEM);
2452 }
2453 return false;
2454}
2455
Andrew Murrayaec0bff2019-04-09 10:52:41 +01002456void cpu_set_feature(unsigned int num)
2457{
2458 WARN_ON(num >= MAX_CPU_FEATURES);
2459 elf_hwcap |= BIT(num);
2460}
2461EXPORT_SYMBOL_GPL(cpu_set_feature);
2462
2463bool cpu_have_feature(unsigned int num)
2464{
2465 WARN_ON(num >= MAX_CPU_FEATURES);
2466 return elf_hwcap & BIT(num);
2467}
2468EXPORT_SYMBOL_GPL(cpu_have_feature);
2469
2470unsigned long cpu_get_elf_hwcap(void)
2471{
2472 /*
2473 * We currently only populate the first 32 bits of AT_HWCAP. Please
2474 * note that for userspace compatibility we guarantee that bits 62
2475 * and 63 will always be returned as 0.
2476 */
2477 return lower_32_bits(elf_hwcap);
2478}
2479
2480unsigned long cpu_get_elf_hwcap2(void)
2481{
2482 return upper_32_bits(elf_hwcap);
2483}
2484
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002485static void __init setup_system_capabilities(void)
2486{
2487 /*
2488 * We have finalised the system-wide safe feature
2489 * registers, finalise the capabilities that depend
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002490 * on it. Also enable all the available capabilities,
2491 * that are not enabled already.
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002492 */
2493 update_cpu_capabilities(SCOPE_SYSTEM);
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002494 enable_cpu_capabilities(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002495}
2496
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002497void __init setup_cpu_features(void)
2498{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002499 u32 cwg;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002500
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002501 setup_system_capabilities();
Suzuki K Poulose75283502016-04-18 10:28:33 +01002502 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002503
2504 if (system_supports_32bit_el0())
2505 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002506
Kees Cook2e6f5492018-02-21 10:18:21 -08002507 if (system_uses_ttbr0_pan())
2508 pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
2509
Dave Martin2e0f2472017-10-31 15:51:10 +00002510 sve_setup();
Dave Martin94b07c12018-06-01 11:10:14 +01002511 minsigstksz_setup();
Dave Martin2e0f2472017-10-31 15:51:10 +00002512
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002513 /* Advertise that we have computed the system capabilities */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002514 finalize_system_capabilities();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002515
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002516 /*
2517 * Check for sane CTR_EL0.CWG value.
2518 */
2519 cwg = cache_type_cwg();
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002520 if (!cwg)
Catalin Marinasebc7e212018-05-11 13:33:12 +01002521 pr_warn("No Cache Writeback Granule information, assuming %d\n",
2522 ARCH_DMA_MINALIGN);
Marc Zyngier359b7062015-03-27 13:09:23 +00002523}
James Morse70544192016-02-05 14:58:50 +00002524
2525static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002526cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused)
James Morse70544192016-02-05 14:58:50 +00002527{
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302528 return (__system_matches_cap(ARM64_HAS_PAN) && !__system_matches_cap(ARM64_HAS_UAO));
James Morse70544192016-02-05 14:58:50 +00002529}
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002530
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002531static void __maybe_unused cpu_enable_cnp(struct arm64_cpu_capabilities const *cap)
2532{
2533 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
2534}
2535
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002536/*
2537 * We emulate only the following system register space.
2538 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
2539 * See Table C5-6 System instruction encodings for System register accesses,
2540 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
2541 */
2542static inline bool __attribute_const__ is_emulated(u32 id)
2543{
2544 return (sys_reg_Op0(id) == 0x3 &&
2545 sys_reg_CRn(id) == 0x0 &&
2546 sys_reg_Op1(id) == 0x0 &&
2547 (sys_reg_CRm(id) == 0 ||
2548 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
2549}
2550
2551/*
2552 * With CRm == 0, reg should be one of :
2553 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
2554 */
2555static inline int emulate_id_reg(u32 id, u64 *valp)
2556{
2557 switch (id) {
2558 case SYS_MIDR_EL1:
2559 *valp = read_cpuid_id();
2560 break;
2561 case SYS_MPIDR_EL1:
2562 *valp = SYS_MPIDR_SAFE_VAL;
2563 break;
2564 case SYS_REVIDR_EL1:
2565 /* IMPLEMENTATION DEFINED values are emulated with 0 */
2566 *valp = 0;
2567 break;
2568 default:
2569 return -EINVAL;
2570 }
2571
2572 return 0;
2573}
2574
2575static int emulate_sys_reg(u32 id, u64 *valp)
2576{
2577 struct arm64_ftr_reg *regp;
2578
2579 if (!is_emulated(id))
2580 return -EINVAL;
2581
2582 if (sys_reg_CRm(id) == 0)
2583 return emulate_id_reg(id, valp);
2584
2585 regp = get_arm64_ftr_reg(id);
2586 if (regp)
2587 *valp = arm64_ftr_reg_user_value(regp);
2588 else
2589 /*
2590 * The untracked registers are either IMPLEMENTATION DEFINED
2591 * (e.g, ID_AFR0_EL1) or reserved RAZ.
2592 */
2593 *valp = 0;
2594 return 0;
2595}
2596
Anshuman Khandual520ad982018-09-20 09:36:20 +05302597int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt)
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002598{
2599 int rc;
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002600 u64 val;
2601
Anshuman Khandual520ad982018-09-20 09:36:20 +05302602 rc = emulate_sys_reg(sys_reg, &val);
2603 if (!rc) {
2604 pt_regs_write_reg(regs, rt, val);
2605 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
2606 }
2607 return rc;
2608}
2609
2610static int emulate_mrs(struct pt_regs *regs, u32 insn)
2611{
2612 u32 sys_reg, rt;
2613
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002614 /*
2615 * sys_reg values are defined as used in mrs/msr instruction.
2616 * shift the imm value to get the encoding.
2617 */
2618 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
Anshuman Khandual520ad982018-09-20 09:36:20 +05302619 rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
2620 return do_emulate_mrs(regs, sys_reg, rt);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002621}
2622
2623static struct undef_hook mrs_hook = {
2624 .instr_mask = 0xfff00000,
2625 .instr_val = 0xd5300000,
Mark Rutlandd64567f2018-07-05 15:16:52 +01002626 .pstate_mask = PSR_AA32_MODE_MASK,
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002627 .pstate_val = PSR_MODE_EL0t,
2628 .fn = emulate_mrs,
2629};
2630
2631static int __init enable_mrs_emulation(void)
2632{
2633 register_undef_hook(&mrs_hook);
2634 return 0;
2635}
2636
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01002637core_initcall(enable_mrs_emulation);
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05002638
2639ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr,
2640 char *buf)
2641{
2642 if (__meltdown_safe)
2643 return sprintf(buf, "Not affected\n");
2644
2645 if (arm64_kernel_unmapped_at_el0())
2646 return sprintf(buf, "Mitigation: PTI\n");
2647
2648 return sprintf(buf, "Vulnerable\n");
2649}