blob: e877f56ff1ab9914cbdc96748b789980cbc2ecd1 [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),
Anshuman Khandual7cd51a52020-05-19 15:10:46 +0530182 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TLB_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000183 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_TS_SHIFT, 4, 0),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +0800184 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100185 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0),
186 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0),
187 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0),
188 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0),
189 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000190 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0),
191 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0),
192 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0),
193 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0),
194 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100195 ARM64_FTR_END,
196};
197
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000198static const struct arm64_ftr_bits ftr_id_aa64isar1[] = {
Steven Priced4209d82019-12-16 11:33:37 +0000199 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_I8MM_SHIFT, 4, 0),
200 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DGH_SHIFT, 4, 0),
201 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_BF16_SHIFT, 4, 0),
202 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SPECRES_SHIFT, 4, 0),
Will Deaconbd4fb6d2018-06-14 11:21:34 +0100203 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_SB_SHIFT, 4, 0),
Julien Grall7230f7e2019-10-03 12:12:08 +0100204 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FRINTTS_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000205 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
206 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPI_SHIFT, 4, 0),
207 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
208 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_GPA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100209 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0),
210 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0),
211 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0),
Mark Rutland6984eb42018-12-07 18:39:24 +0000212 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
213 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_API_SHIFT, 4, 0),
214 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH),
215 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_APA_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100216 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000217 ARM64_FTR_END,
218};
219
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100220static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = {
Will Deacon179a56f2017-11-27 18:29:30 +0000221 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0),
Will Deacon0f15adb2018-01-03 11:17:58 +0000222 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000223 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_DIT_SHIFT, 4, 0),
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +0000224 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_AMU_SHIFT, 4, 0),
Anshuman Khandual011e5f52020-05-19 15:10:47 +0530225 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_MPAM_SHIFT, 4, 0),
226 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SEL2_SHIFT, 4, 0),
Dave Martin3fab3992017-12-14 14:03:44 +0000227 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
228 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000229 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100230 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000231 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
232 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 +0100233 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
Will Deacon98448cd2020-04-21 15:29:21 +0100234 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
235 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY),
236 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 +0100237 ARM64_FTR_END,
238};
239
Will Deacond71be2b2018-06-15 11:37:34 +0100240static const struct arm64_ftr_bits ftr_id_aa64pfr1[] = {
Anshuman Khandual14e270f2020-05-19 15:10:48 +0530241 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_MPAMFRAC_SHIFT, 4, 0),
242 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_RASFRAC_SHIFT, 4, 0),
Will Deacond71be2b2018-06-15 11:37:34 +0100243 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_SSBS_SHIFT, 4, ID_AA64PFR1_SSBS_PSTATE_NI),
Dave Martin8ef8f3602020-03-16 16:50:45 +0000244 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_BTI),
245 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR1_BT_SHIFT, 4, 0),
Will Deacond71be2b2018-06-15 11:37:34 +0100246 ARM64_FTR_END,
247};
248
Dave Martin06a916f2019-04-18 18:41:38 +0100249static const struct arm64_ftr_bits ftr_id_aa64zfr0[] = {
Julien Grallec52c712019-10-14 11:21:13 +0100250 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000251 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F64MM_SHIFT, 4, 0),
252 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
253 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_F32MM_SHIFT, 4, 0),
254 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
255 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_I8MM_SHIFT, 4, 0),
256 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100257 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SM4_SHIFT, 4, 0),
258 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
259 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SHA3_SHIFT, 4, 0),
260 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Steven Priced4209d82019-12-16 11:33:37 +0000261 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BF16_SHIFT, 4, 0),
262 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
Julien Grallec52c712019-10-14 11:21:13 +0100263 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_BITPERM_SHIFT, 4, 0),
264 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
265 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_AES_SHIFT, 4, 0),
266 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
267 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ZFR0_SVEVER_SHIFT, 4, 0),
Dave Martin06a916f2019-04-18 18:41:38 +0100268 ARM64_FTR_END,
269};
270
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100271static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Will Deacon5717fe52019-08-12 16:02:25 +0100272 /*
Marc Zyngierb130a8f2020-05-28 14:12:58 +0100273 * Page size not being supported at Stage-2 is not fatal. You
274 * just give up KVM if PAGE_SIZE isn't supported there. Go fix
275 * your favourite nesting hypervisor.
276 *
277 * There is a small corner case where the hypervisor explicitly
278 * advertises a given granule size at Stage-2 (value 2) on some
279 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
280 * vCPUs. Although this is not forbidden by the architecture, it
281 * indicates that the hypervisor is being silly (or buggy).
282 *
283 * We make no effort to cope with this and pretend that if these
284 * fields are inconsistent across vCPUs, then it isn't worth
285 * trying to bring KVM up.
286 */
287 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN4_2_SHIFT, 4, 1),
288 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN64_2_SHIFT, 4, 1),
289 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64MMFR0_TGRAN16_2_SHIFT, 4, 1),
290 /*
Will Deacon5717fe52019-08-12 16:02:25 +0100291 * We already refuse to boot CPUs that don't support our configured
292 * page size, so we can only detect mismatches for a page size other
293 * than the one we're currently using. Unfortunately, SoCs like this
294 * exist in the wild so, even though we don't like it, we'll have to go
295 * along with it and treat them as non-strict.
296 */
297 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
298 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
299 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
300
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100301 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100302 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100303 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
304 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
305 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100306 /*
307 * Differing PARange is fine as long as all peripherals and memory are mapped
308 * within the minimum PARange of all CPUs
309 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000310 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100311 ARM64_FTR_END,
312};
313
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100314static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000315 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100316 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
317 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
318 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
319 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
320 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100321 ARM64_FTR_END,
322};
323
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100324static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Mark Brown3e6c69a2019-12-09 18:12:14 +0000325 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_E0PD_SHIFT, 4, 0),
Marc Zyngier552ae762018-12-22 12:00:10 +0000326 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_TTL_SHIFT, 4, 0),
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100327 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_FWB_SHIFT, 4, 0),
Suzuki K Poulose7206dc92018-03-12 10:04:14 +0000328 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_AT_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100329 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
Sai Prakash Ranjan9d3f8882020-04-21 15:29:15 +0100330 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100331 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
332 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
333 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000334 ARM64_FTR_END,
335};
336
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100337static const struct arm64_ftr_bits ftr_ctr[] = {
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600338 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */
339 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1),
340 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1),
Will Deacon147b9632019-07-30 15:40:20 +0100341 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_CWG_SHIFT, 4, 0),
342 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_OR_ZERO_SAFE, CTR_ERG_SHIFT, 4, 0),
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600343 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100344 /*
345 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100346 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000347 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100348 */
Will Deacon155433c2017-03-10 20:32:22 +0000349 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, 14, 2, ICACHE_POLICY_VIPT), /* L1Ip */
Suzuki K Poulose4c4a39d2018-07-04 23:07:45 +0100350 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IMINLINE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100351 ARM64_FTR_END,
352};
353
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100354struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
355 .name = "SYS_CTR_EL0",
356 .ftr_bits = ftr_ctr
357};
358
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100359static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100360 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0xf), /* InnerShr */
361 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0), /* FCSE */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000362 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, 20, 4, 0), /* AuxReg */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100363 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0), /* TCM */
364 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* ShareLvl */
365 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0xf), /* OuterShr */
366 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* PMSA */
367 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* VMSA */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100368 ARM64_FTR_END,
369};
370
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100371static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Anshuman Khanduale965bcb2020-05-19 15:10:40 +0530372 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 36, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000373 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
374 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
375 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
376 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100377 /*
378 * We can instantiate multiple PMU instances with different levels
379 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000380 */
381 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
382 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_TRACEVER_SHIFT, 4, 0),
383 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100384 ARM64_FTR_END,
385};
386
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100387static const struct arm64_ftr_bits ftr_mvfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100388 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* FPMisc */
389 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* SIMDMisc */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100390 ARM64_FTR_END,
391};
392
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100393static const struct arm64_ftr_bits ftr_dczid[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000394 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 4, 1, 1), /* DZP */
395 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* BS */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100396 ARM64_FTR_END,
397};
398
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530399static const struct arm64_ftr_bits ftr_id_isar0[] = {
400 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DIVIDE_SHIFT, 4, 0),
401 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_DEBUG_SHIFT, 4, 0),
402 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_COPROC_SHIFT, 4, 0),
403 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_CMPBRANCH_SHIFT, 4, 0),
404 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITFIELD_SHIFT, 4, 0),
405 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_BITCOUNT_SHIFT, 4, 0),
406 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR0_SWAP_SHIFT, 4, 0),
407 ARM64_FTR_END,
408};
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100409
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100410static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100411 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
412 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
413 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
414 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
415 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
416 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100417 ARM64_FTR_END,
418};
419
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100420static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530421 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_EVT_SHIFT, 4, 0),
422 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CCIDX_SHIFT, 4, 0),
423 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_LSM_SHIFT, 4, 0),
424 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_HPDS_SHIFT, 4, 0),
425 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_CNP_SHIFT, 4, 0),
426 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR4_XNX_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100427 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* ac2 */
Anshuman Khandualfcd65352020-05-19 15:10:45 +0530428 /*
429 * SpecSEI = 1 indicates that the PE might generate an SError on an
430 * external abort on speculative read. It is safe to assume that an
431 * SError might be generated than it will not be. Hence it has been
432 * classified as FTR_HIGHER_SAFE.
433 */
434 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_MMFR4_SPECSEI_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100435 ARM64_FTR_END,
436};
437
Will Deacon01133402020-04-21 15:29:16 +0100438static const struct arm64_ftr_bits ftr_id_isar4[] = {
439 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SWP_FRAC_SHIFT, 4, 0),
440 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_PSR_M_SHIFT, 4, 0),
441 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SYNCH_PRIM_FRAC_SHIFT, 4, 0),
442 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_BARRIER_SHIFT, 4, 0),
443 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_SMC_SHIFT, 4, 0),
444 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WRITEBACK_SHIFT, 4, 0),
445 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_WITHSHIFTS_SHIFT, 4, 0),
446 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR4_UNPRIV_SHIFT, 4, 0),
447 ARM64_FTR_END,
448};
449
Anshuman Khandual152accf82020-05-19 15:10:43 +0530450static const struct arm64_ftr_bits ftr_id_mmfr5[] = {
451 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_MMFR5_ETS_SHIFT, 4, 0),
452 ARM64_FTR_END,
453};
454
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530455static const struct arm64_ftr_bits ftr_id_isar6[] = {
456 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_I8MM_SHIFT, 4, 0),
457 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_BF16_SHIFT, 4, 0),
458 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SPECRES_SHIFT, 4, 0),
459 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_SB_SHIFT, 4, 0),
460 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_FHM_SHIFT, 4, 0),
461 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_DP_SHIFT, 4, 0),
462 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR6_JSCVT_SHIFT, 4, 0),
463 ARM64_FTR_END,
464};
465
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100466static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Anshuman Khandual0ae43a92020-05-19 15:10:44 +0530467 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR0_DIT_SHIFT, 4, 0),
468 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR0_CSV2_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100469 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* State3 */
470 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0), /* State2 */
471 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* State1 */
472 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* State0 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100473 ARM64_FTR_END,
474};
475
Will Deacon01133402020-04-21 15:29:16 +0100476static const struct arm64_ftr_bits ftr_id_pfr1[] = {
477 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GIC_SHIFT, 4, 0),
478 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRT_FRAC_SHIFT, 4, 0),
479 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SEC_FRAC_SHIFT, 4, 0),
480 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_GENTIMER_SHIFT, 4, 0),
481 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_VIRTUALIZATION_SHIFT, 4, 0),
482 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_MPROGMOD_SHIFT, 4, 0),
483 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_SECURITY_SHIFT, 4, 0),
484 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR1_PROGMOD_SHIFT, 4, 0),
485 ARM64_FTR_END,
486};
487
Anshuman Khandual16824082020-05-19 15:10:41 +0530488static const struct arm64_ftr_bits ftr_id_pfr2[] = {
489 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_PFR2_SSBS_SHIFT, 4, 0),
490 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_PFR2_CSV3_SHIFT, 4, 0),
491 ARM64_FTR_END,
492};
493
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100494static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Anshuman Khandual1ed1b902020-05-19 15:10:39 +0530495 /* [31:28] TraceFilt */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000496 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0xf), /* PerfMon */
497 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
498 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
499 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
500 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
501 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
502 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000503 ARM64_FTR_END,
504};
505
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530506static const struct arm64_ftr_bits ftr_id_dfr1[] = {
507 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_DFR1_MTPMU_SHIFT, 4, 0),
508 ARM64_FTR_END,
509};
510
Dave Martin2e0f2472017-10-31 15:51:10 +0000511static const struct arm64_ftr_bits ftr_zcr[] = {
512 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
513 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
514 ARM64_FTR_END,
515};
516
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100517/*
518 * Common ftr bits for a 32bit register with all hidden, strict
519 * attributes, with 4bit feature fields and a default safe value of
520 * 0. Covers the following 32bit registers:
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530521 * id_isar[1-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100522 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100523static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000524 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
525 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
526 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
527 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
528 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
529 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
530 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
531 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100532 ARM64_FTR_END,
533};
534
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000535/* Table for a single 32bit feature value */
536static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000537 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100538 ARM64_FTR_END,
539};
540
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000541static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100542 ARM64_FTR_END,
543};
544
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100545#define ARM64_FTR_REG(id, table) { \
546 .sys_id = id, \
547 .reg = &(struct arm64_ftr_reg){ \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100548 .name = #id, \
549 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100550 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100551
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100552static const struct __ftr_reg_entry {
553 u32 sys_id;
554 struct arm64_ftr_reg *reg;
555} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100556
557 /* Op1 = 0, CRn = 0, CRm = 1 */
558 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
Will Deacon01133402020-04-21 15:29:16 +0100559 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_id_pfr1),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000560 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100561 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
562 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
563 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
564 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
565
566 /* Op1 = 0, CRn = 0, CRm = 2 */
Anshuman Khandual2a5bc6c2020-05-19 15:10:38 +0530567 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_id_isar0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100568 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
569 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
570 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
Will Deacon01133402020-04-21 15:29:16 +0100571 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_id_isar4),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100572 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
573 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530574 ARM64_FTR_REG(SYS_ID_ISAR6_EL1, ftr_id_isar6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100575
576 /* Op1 = 0, CRn = 0, CRm = 3 */
577 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
578 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
579 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
Anshuman Khandual16824082020-05-19 15:10:41 +0530580 ARM64_FTR_REG(SYS_ID_PFR2_EL1, ftr_id_pfr2),
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530581 ARM64_FTR_REG(SYS_ID_DFR1_EL1, ftr_id_dfr1),
Anshuman Khandual152accf82020-05-19 15:10:43 +0530582 ARM64_FTR_REG(SYS_ID_MMFR5_EL1, ftr_id_mmfr5),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100583
584 /* Op1 = 0, CRn = 0, CRm = 4 */
585 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Will Deacond71be2b2018-06-15 11:37:34 +0100586 ARM64_FTR_REG(SYS_ID_AA64PFR1_EL1, ftr_id_aa64pfr1),
Dave Martin06a916f2019-04-18 18:41:38 +0100587 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_id_aa64zfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100588
589 /* Op1 = 0, CRn = 0, CRm = 5 */
590 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000591 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100592
593 /* Op1 = 0, CRn = 0, CRm = 6 */
594 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000595 ARM64_FTR_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100596
597 /* Op1 = 0, CRn = 0, CRm = 7 */
598 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
599 ARM64_FTR_REG(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1),
James Morse406e3082016-02-05 14:58:47 +0000600 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100601
Dave Martin2e0f2472017-10-31 15:51:10 +0000602 /* Op1 = 0, CRn = 1, CRm = 2 */
603 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
604
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100605 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100606 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100607 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
608
609 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000610 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100611};
612
613static int search_cmp_ftr_reg(const void *id, const void *regp)
614{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100615 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100616}
617
618/*
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530619 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
620 * its sys_reg() encoding. With the array arm64_ftr_regs sorted in the
621 * ascending order of sys_id, we use binary search to find a matching
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100622 * entry.
623 *
624 * returns - Upon success, matching ftr_reg entry for id.
625 * - NULL on failure. It is upto the caller to decide
626 * the impact of a failure.
627 */
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530628static struct arm64_ftr_reg *get_arm64_ftr_reg_nowarn(u32 sys_id)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100629{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100630 const struct __ftr_reg_entry *ret;
631
632 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100633 arm64_ftr_regs,
634 ARRAY_SIZE(arm64_ftr_regs),
635 sizeof(arm64_ftr_regs[0]),
636 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100637 if (ret)
638 return ret->reg;
639 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100640}
641
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530642/*
643 * get_arm64_ftr_reg - Looks up a feature register entry using
644 * its sys_reg() encoding. This calls get_arm64_ftr_reg_nowarn().
645 *
646 * returns - Upon success, matching ftr_reg entry for id.
647 * - NULL on failure but with an WARN_ON().
648 */
649static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
650{
651 struct arm64_ftr_reg *reg;
652
653 reg = get_arm64_ftr_reg_nowarn(sys_id);
654
655 /*
656 * Requesting a non-existent register search is an error. Warn
657 * and let the caller handle it.
658 */
659 WARN_ON(!reg);
660 return reg;
661}
662
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100663static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
664 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100665{
666 u64 mask = arm64_ftr_mask(ftrp);
667
668 reg &= ~mask;
669 reg |= (ftr_val << ftrp->shift) & mask;
670 return reg;
671}
672
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100673static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
674 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100675{
676 s64 ret = 0;
677
678 switch (ftrp->type) {
679 case FTR_EXACT:
680 ret = ftrp->safe_val;
681 break;
682 case FTR_LOWER_SAFE:
683 ret = new < cur ? new : cur;
684 break;
Will Deacon147b9632019-07-30 15:40:20 +0100685 case FTR_HIGHER_OR_ZERO_SAFE:
686 if (!cur || !new)
687 break;
688 /* Fallthrough */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100689 case FTR_HIGHER_SAFE:
690 ret = new > cur ? new : cur;
691 break;
692 default:
693 BUG();
694 }
695
696 return ret;
697}
698
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100699static void __init sort_ftr_regs(void)
700{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100701 int i;
702
703 /* Check that the array is sorted so that we can do the binary search */
704 for (i = 1; i < ARRAY_SIZE(arm64_ftr_regs); i++)
705 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100706}
707
708/*
709 * Initialise the CPU feature register from Boot CPU values.
710 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000711 * Any bits that are not covered by an arm64_ftr_bits entry are considered
712 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100713 */
714static void __init init_cpu_ftr_reg(u32 sys_reg, u64 new)
715{
716 u64 val = 0;
717 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000718 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000719 u64 valid_mask = 0;
720
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100721 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100722 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
723
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530724 if (!reg)
725 return;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100726
韩科才24b2cce2020-03-11 14:52:49 +0800727 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000728 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100729 s64 ftr_new = arm64_ftr_value(ftrp, new);
730
731 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000732
733 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100734 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000735 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000736 if (ftrp->visible)
737 user_mask |= ftr_mask;
738 else
739 reg->user_val = arm64_ftr_set_value(ftrp,
740 reg->user_val,
741 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100742 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000743
744 val &= valid_mask;
745
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100746 reg->sys_val = val;
747 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000748 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100749}
750
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100751extern const struct arm64_cpu_capabilities arm64_errata[];
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000752static const struct arm64_cpu_capabilities arm64_features[];
753
754static void __init
755init_cpu_hwcaps_indirect_list_from_array(const struct arm64_cpu_capabilities *caps)
756{
757 for (; caps->matches; caps++) {
758 if (WARN(caps->capability >= ARM64_NCAPS,
759 "Invalid capability %d\n", caps->capability))
760 continue;
761 if (WARN(cpu_hwcaps_ptrs[caps->capability],
762 "Duplicate entry for capability %d\n",
763 caps->capability))
764 continue;
765 cpu_hwcaps_ptrs[caps->capability] = caps;
766 }
767}
768
769static void __init init_cpu_hwcaps_indirect_list(void)
770{
771 init_cpu_hwcaps_indirect_list_from_array(arm64_features);
772 init_cpu_hwcaps_indirect_list_from_array(arm64_errata);
773}
774
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100775static void __init setup_boot_cpu_capabilities(void);
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +0100776
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100777void __init init_cpu_features(struct cpuinfo_arm64 *info)
778{
779 /* Before we start using the tables, make sure it is sorted */
780 sort_ftr_regs();
781
782 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
783 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
784 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
785 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
786 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
787 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
788 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
789 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
790 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000791 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100792 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
793 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000794 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100795
796 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
797 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530798 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100799 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
800 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
801 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
802 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
803 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
804 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +0530805 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100806 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
807 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
808 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
809 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
Anshuman Khandual858b8a82020-05-19 15:10:54 +0530810 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4);
Anshuman Khandual152accf82020-05-19 15:10:43 +0530811 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100812 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
813 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +0530814 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100815 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
816 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
817 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
818 }
819
Dave Martin2e0f2472017-10-31 15:51:10 +0000820 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
821 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
822 sve_init_vq_map();
823 }
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100824
825 /*
Suzuki K Poulose82a3a212018-11-30 17:18:03 +0000826 * Initialize the indirect array of CPU hwcaps capabilities pointers
827 * before we handle the boot CPU below.
828 */
829 init_cpu_hwcaps_indirect_list();
830
831 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100832 * Detect and enable early CPU capabilities based on the boot CPU,
833 * after we have initialised the CPU feature infrastructure.
Suzuki K Poulose5e911072018-03-26 15:12:29 +0100834 */
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +0100835 setup_boot_cpu_capabilities();
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100836}
837
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100838static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100839{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100840 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100841
842 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
843 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
844 s64 ftr_new = arm64_ftr_value(ftrp, new);
845
846 if (ftr_cur == ftr_new)
847 continue;
848 /* Find a safe value */
849 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
850 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
851 }
852
853}
854
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100855static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100856{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100857 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
858
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530859 if (!regp)
860 return 0;
861
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100862 update_cpu_ftr_reg(regp, val);
863 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
864 return 0;
865 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
866 regp->name, boot, cpu, val);
867 return 1;
868}
869
Will Deaconeab2f922020-04-21 15:29:20 +0100870static void relax_cpu_ftr_reg(u32 sys_id, int field)
871{
872 const struct arm64_ftr_bits *ftrp;
873 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
874
Anshuman Khandual3577dd32020-05-27 15:34:36 +0530875 if (!regp)
Will Deaconeab2f922020-04-21 15:29:20 +0100876 return;
877
878 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) {
879 if (ftrp->shift == field) {
880 regp->strict_mask &= ~arm64_ftr_mask(ftrp);
881 break;
882 }
883 }
884
885 /* Bogus field? */
886 WARN_ON(!ftrp->width);
887}
888
Will Deacon1efcfe72020-04-21 15:29:19 +0100889static int update_32bit_cpu_features(int cpu, struct cpuinfo_arm64 *info,
890 struct cpuinfo_arm64 *boot)
891{
892 int taint = 0;
893 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
894
895 /*
896 * If we don't have AArch32 at all then skip the checks entirely
897 * as the register values may be UNKNOWN and we're not going to be
898 * using them for anything.
899 */
900 if (!id_aa64pfr0_32bit_el0(pfr0))
901 return taint;
902
Will Deaconeab2f922020-04-21 15:29:20 +0100903 /*
904 * If we don't have AArch32 at EL1, then relax the strictness of
905 * EL1-dependent register fields to avoid spurious sanity check fails.
906 */
907 if (!id_aa64pfr0_32bit_el1(pfr0)) {
908 relax_cpu_ftr_reg(SYS_ID_ISAR4_EL1, ID_ISAR4_SMC_SHIFT);
909 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRT_FRAC_SHIFT);
910 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SEC_FRAC_SHIFT);
911 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_VIRTUALIZATION_SHIFT);
912 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_SECURITY_SHIFT);
913 relax_cpu_ftr_reg(SYS_ID_PFR1_EL1, ID_PFR1_PROGMOD_SHIFT);
914 }
915
Will Deacon1efcfe72020-04-21 15:29:19 +0100916 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
917 info->reg_id_dfr0, boot->reg_id_dfr0);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +0530918 taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu,
919 info->reg_id_dfr1, boot->reg_id_dfr1);
Will Deacon1efcfe72020-04-21 15:29:19 +0100920 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
921 info->reg_id_isar0, boot->reg_id_isar0);
922 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
923 info->reg_id_isar1, boot->reg_id_isar1);
924 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
925 info->reg_id_isar2, boot->reg_id_isar2);
926 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
927 info->reg_id_isar3, boot->reg_id_isar3);
928 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
929 info->reg_id_isar4, boot->reg_id_isar4);
930 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
931 info->reg_id_isar5, boot->reg_id_isar5);
932 taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu,
933 info->reg_id_isar6, boot->reg_id_isar6);
934
935 /*
936 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
937 * ACTLR formats could differ across CPUs and therefore would have to
938 * be trapped for virtualization anyway.
939 */
940 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
941 info->reg_id_mmfr0, boot->reg_id_mmfr0);
942 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
943 info->reg_id_mmfr1, boot->reg_id_mmfr1);
944 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
945 info->reg_id_mmfr2, boot->reg_id_mmfr2);
946 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
947 info->reg_id_mmfr3, boot->reg_id_mmfr3);
Anshuman Khandual858b8a82020-05-19 15:10:54 +0530948 taint |= check_update_ftr_reg(SYS_ID_MMFR4_EL1, cpu,
949 info->reg_id_mmfr4, boot->reg_id_mmfr4);
Anshuman Khandual152accf82020-05-19 15:10:43 +0530950 taint |= check_update_ftr_reg(SYS_ID_MMFR5_EL1, cpu,
951 info->reg_id_mmfr5, boot->reg_id_mmfr5);
Will Deacon1efcfe72020-04-21 15:29:19 +0100952 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
953 info->reg_id_pfr0, boot->reg_id_pfr0);
954 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
955 info->reg_id_pfr1, boot->reg_id_pfr1);
Anshuman Khandual16824082020-05-19 15:10:41 +0530956 taint |= check_update_ftr_reg(SYS_ID_PFR2_EL1, cpu,
957 info->reg_id_pfr2, boot->reg_id_pfr2);
Will Deacon1efcfe72020-04-21 15:29:19 +0100958 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
959 info->reg_mvfr0, boot->reg_mvfr0);
960 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
961 info->reg_mvfr1, boot->reg_mvfr1);
962 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
963 info->reg_mvfr2, boot->reg_mvfr2);
964
965 return taint;
966}
967
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100968/*
969 * Update system wide CPU feature registers with the values from a
970 * non-boot CPU. Also performs SANITY checks to make sure that there
971 * aren't any insane variations from that of the boot CPU.
972 */
973void update_cpu_features(int cpu,
974 struct cpuinfo_arm64 *info,
975 struct cpuinfo_arm64 *boot)
976{
977 int taint = 0;
978
979 /*
980 * The kernel can handle differing I-cache policies, but otherwise
981 * caches should look identical. Userspace JITs will make use of
982 * *minLine.
983 */
984 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
985 info->reg_ctr, boot->reg_ctr);
986
987 /*
988 * Userspace may perform DC ZVA instructions. Mismatched block sizes
989 * could result in too much or too little memory being zeroed if a
990 * process is preempted and migrated between CPUs.
991 */
992 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
993 info->reg_dczid, boot->reg_dczid);
994
995 /* If different, timekeeping will be broken (especially with KVM) */
996 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
997 info->reg_cntfrq, boot->reg_cntfrq);
998
999 /*
1000 * The kernel uses self-hosted debug features and expects CPUs to
1001 * support identical debug features. We presently need CTX_CMPs, WRPs,
1002 * and BRPs to be identical.
1003 * ID_AA64DFR1 is currently RES0.
1004 */
1005 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
1006 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
1007 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
1008 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
1009 /*
1010 * Even in big.LITTLE, processors should be identical instruction-set
1011 * wise.
1012 */
1013 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
1014 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
1015 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
1016 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
1017
1018 /*
1019 * Differing PARange support is fine as long as all peripherals and
1020 * memory are mapped within the minimum PARange of all CPUs.
1021 * Linux should not care about secure memory.
1022 */
1023 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
1024 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
1025 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
1026 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +00001027 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
1028 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001029
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001030 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
1031 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
1032 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
1033 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
1034
Dave Martin2e0f2472017-10-31 15:51:10 +00001035 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
1036 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
1037
Dave Martin2e0f2472017-10-31 15:51:10 +00001038 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
1039 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
1040 info->reg_zcr, boot->reg_zcr);
1041
1042 /* Probe vector lengths, unless we already gave up on SVE */
1043 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00001044 !system_capabilities_finalized())
Dave Martin2e0f2472017-10-31 15:51:10 +00001045 sve_update_vq_map();
1046 }
1047
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001048 /*
Will Deacon1efcfe72020-04-21 15:29:19 +01001049 * This relies on a sanitised view of the AArch64 ID registers
1050 * (e.g. SYS_ID_AA64PFR0_EL1), so we call it last.
1051 */
1052 taint |= update_32bit_cpu_features(cpu, info, boot);
1053
1054 /*
Suzuki K. Poulose3086d392015-10-19 14:24:46 +01001055 * Mismatched CPU features are a recipe for disaster. Don't even
1056 * pretend to support them.
1057 */
Will Deacon8dd0ee62017-06-05 11:40:23 +01001058 if (taint) {
1059 pr_warn_once("Unsupported CPU feature variation detected.\n");
1060 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
1061 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +01001062}
1063
Dave Martin46823dd2017-03-23 15:14:39 +00001064u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001065{
1066 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
1067
Anshuman Khandual3577dd32020-05-27 15:34:36 +05301068 if (!regp)
1069 return 0;
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +01001070 return regp->sys_val;
1071}
Marc Zyngier359b7062015-03-27 13:09:23 +00001072
Mark Rutland965861d2017-02-02 17:32:15 +00001073#define read_sysreg_case(r) \
1074 case r: return read_sysreg_s(r)
1075
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001076/*
Dave Martin46823dd2017-03-23 15:14:39 +00001077 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001078 * Read the system register on the current CPU
1079 */
Dave Martin46823dd2017-03-23 15:14:39 +00001080static u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001081{
1082 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +00001083 read_sysreg_case(SYS_ID_PFR0_EL1);
1084 read_sysreg_case(SYS_ID_PFR1_EL1);
Anshuman Khandual16824082020-05-19 15:10:41 +05301085 read_sysreg_case(SYS_ID_PFR2_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001086 read_sysreg_case(SYS_ID_DFR0_EL1);
Anshuman Khandualdd35ec02020-05-19 15:10:42 +05301087 read_sysreg_case(SYS_ID_DFR1_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001088 read_sysreg_case(SYS_ID_MMFR0_EL1);
1089 read_sysreg_case(SYS_ID_MMFR1_EL1);
1090 read_sysreg_case(SYS_ID_MMFR2_EL1);
1091 read_sysreg_case(SYS_ID_MMFR3_EL1);
Anshuman Khandual858b8a82020-05-19 15:10:54 +05301092 read_sysreg_case(SYS_ID_MMFR4_EL1);
Anshuman Khandual152accf82020-05-19 15:10:43 +05301093 read_sysreg_case(SYS_ID_MMFR5_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001094 read_sysreg_case(SYS_ID_ISAR0_EL1);
1095 read_sysreg_case(SYS_ID_ISAR1_EL1);
1096 read_sysreg_case(SYS_ID_ISAR2_EL1);
1097 read_sysreg_case(SYS_ID_ISAR3_EL1);
1098 read_sysreg_case(SYS_ID_ISAR4_EL1);
1099 read_sysreg_case(SYS_ID_ISAR5_EL1);
Anshuman Khandual8e3747b2019-12-17 20:17:32 +05301100 read_sysreg_case(SYS_ID_ISAR6_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001101 read_sysreg_case(SYS_MVFR0_EL1);
1102 read_sysreg_case(SYS_MVFR1_EL1);
1103 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001104
Mark Rutland965861d2017-02-02 17:32:15 +00001105 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
1106 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
Dave Martin78ed70b2019-06-03 16:35:02 +01001107 read_sysreg_case(SYS_ID_AA64ZFR0_EL1);
Mark Rutland965861d2017-02-02 17:32:15 +00001108 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
1109 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
1110 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
1111 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
1112 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
1113 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
1114 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001115
Mark Rutland965861d2017-02-02 17:32:15 +00001116 read_sysreg_case(SYS_CNTFRQ_EL0);
1117 read_sysreg_case(SYS_CTR_EL0);
1118 read_sysreg_case(SYS_DCZID_EL0);
1119
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001120 default:
1121 BUG();
1122 return 0;
1123 }
1124}
1125
Marc Zyngier963fcd42015-09-30 11:50:04 +01001126#include <linux/irqchip/arm-gic-v3.h>
1127
Marc Zyngier94a9e042015-06-12 12:06:36 +01001128static bool
James Morse18ffa042015-07-21 13:23:29 +01001129feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
1130{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +00001131 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +01001132
1133 return val >= entry->min_field_value;
1134}
1135
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001136static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001137has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001138{
1139 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +01001140
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001141 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
1142 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +00001143 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001144 else
Dave Martin46823dd2017-03-23 15:14:39 +00001145 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001146
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001147 return feature_matches(val, entry);
1148}
James Morse338d4f42015-07-22 19:05:54 +01001149
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001150static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +01001151{
1152 bool has_sre;
1153
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001154 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +01001155 return false;
1156
1157 has_sre = gic_enable_sre();
1158 if (!has_sre)
1159 pr_warn_once("%s present but disabled by higher exception level\n",
1160 entry->desc);
1161
1162 return has_sre;
1163}
1164
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001165static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +00001166{
1167 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +00001168
1169 /* Cavium ThunderX pass 1.x and 2.x */
Qian Caib99286b2019-08-05 23:05:03 -04001170 return midr_is_cpu_model_range(midr, MIDR_THUNDERX,
Robert Richterfa5ce3d2017-01-13 14:12:09 +01001171 MIDR_CPU_VAR_REV(0, 0),
1172 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +00001173}
1174
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001175static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
1176{
Dave Martin46823dd2017-03-23 15:14:39 +00001177 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001178
1179 return cpuid_feature_extract_signed_field(pfr0,
1180 ID_AA64PFR0_FP_SHIFT) < 0;
1181}
1182
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001183static bool has_cache_idc(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001184 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001185{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001186 u64 ctr;
1187
1188 if (scope == SCOPE_SYSTEM)
1189 ctr = arm64_ftr_reg_ctrel0.sys_val;
1190 else
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001191 ctr = read_cpuid_effective_cachetype();
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001192
1193 return ctr & BIT(CTR_IDC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001194}
1195
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001196static void cpu_emulate_effective_ctr(const struct arm64_cpu_capabilities *__unused)
1197{
1198 /*
1199 * If the CPU exposes raw CTR_EL0.IDC = 0, while effectively
1200 * CTR_EL0.IDC = 1 (from CLIDR values), we need to trap accesses
1201 * to the CTR_EL0 on this CPU and emulate it with the real/safe
1202 * value.
1203 */
1204 if (!(read_cpuid_cachetype() & BIT(CTR_IDC_SHIFT)))
1205 sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCT, 0);
1206}
1207
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001208static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001209 int scope)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001210{
Suzuki K Poulose8ab66cb2018-10-09 14:47:05 +01001211 u64 ctr;
1212
1213 if (scope == SCOPE_SYSTEM)
1214 ctr = arm64_ftr_reg_ctrel0.sys_val;
1215 else
1216 ctr = read_cpuid_cachetype();
1217
1218 return ctr & BIT(CTR_DIC_SHIFT);
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001219}
1220
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001221static bool __maybe_unused
1222has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope)
1223{
1224 /*
1225 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP
1226 * may share TLB entries with a CPU stuck in the crashed
1227 * kernel.
1228 */
1229 if (is_kdump_kernel())
1230 return false;
1231
1232 return has_cpuid_feature(entry, scope);
1233}
1234
Mark Brown09e3c222019-12-09 18:12:17 +00001235/*
1236 * This check is triggered during the early boot before the cpufeature
1237 * is initialised. Checking the status on the local CPU allows the boot
1238 * CPU to detect the need for non-global mappings and thus avoiding a
1239 * pagetable re-write after all the CPUs are booted. This check will be
1240 * anyway run on individual CPUs, allowing us to get the consistent
1241 * state once the SMP CPUs are up and thus make the switch to non-global
1242 * mappings if required.
1243 */
1244bool kaslr_requires_kpti(void)
1245{
Mark Brown09e3c222019-12-09 18:12:17 +00001246 if (!IS_ENABLED(CONFIG_RANDOMIZE_BASE))
1247 return false;
1248
1249 /*
1250 * E0PD does a similar job to KPTI so can be used instead
1251 * where available.
1252 */
1253 if (IS_ENABLED(CONFIG_ARM64_E0PD)) {
Will Deacona569f5f2020-01-15 14:06:37 +00001254 u64 mmfr2 = read_sysreg_s(SYS_ID_AA64MMFR2_EL1);
1255 if (cpuid_feature_extract_unsigned_field(mmfr2,
1256 ID_AA64MMFR2_E0PD_SHIFT))
Mark Brown09e3c222019-12-09 18:12:17 +00001257 return false;
1258 }
1259
1260 /*
1261 * Systems affected by Cavium erratum 24756 are incompatible
1262 * with KPTI.
1263 */
Will Deaconebac96e2020-01-15 13:59:58 +00001264 if (IS_ENABLED(CONFIG_CAVIUM_ERRATUM_27456)) {
Mark Brown09e3c222019-12-09 18:12:17 +00001265 extern const struct midr_range cavium_erratum_27456_cpus[];
1266
Will Deaconebac96e2020-01-15 13:59:58 +00001267 if (is_midr_in_range_list(read_cpuid_id(),
1268 cavium_erratum_27456_cpus))
1269 return false;
Mark Brown09e3c222019-12-09 18:12:17 +00001270 }
Mark Brown09e3c222019-12-09 18:12:17 +00001271
1272 return kaslr_offset() > 0;
1273}
1274
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001275static bool __meltdown_safe = true;
Will Deaconea1e3de2017-11-14 14:38:19 +00001276static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
1277
1278static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001279 int scope)
Will Deaconea1e3de2017-11-14 14:38:19 +00001280{
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001281 /* List of CPUs that are not vulnerable and don't need KPTI */
1282 static const struct midr_range kpti_safe_list[] = {
1283 MIDR_ALL_VERSIONS(MIDR_CAVIUM_THUNDERX2),
1284 MIDR_ALL_VERSIONS(MIDR_BRCM_VULCAN),
Florian Fainelli31d868c2020-01-06 14:54:12 -08001285 MIDR_ALL_VERSIONS(MIDR_BRAHMA_B53),
Will Deacon2a355ec2018-12-13 13:47:38 +00001286 MIDR_ALL_VERSIONS(MIDR_CORTEX_A35),
1287 MIDR_ALL_VERSIONS(MIDR_CORTEX_A53),
1288 MIDR_ALL_VERSIONS(MIDR_CORTEX_A55),
1289 MIDR_ALL_VERSIONS(MIDR_CORTEX_A57),
1290 MIDR_ALL_VERSIONS(MIDR_CORTEX_A72),
1291 MIDR_ALL_VERSIONS(MIDR_CORTEX_A73),
Hanjun Guo0ecc4712019-03-05 21:40:58 +08001292 MIDR_ALL_VERSIONS(MIDR_HISI_TSV110),
Rich Wiley918e1942019-11-05 10:45:10 -08001293 MIDR_ALL_VERSIONS(MIDR_NVIDIA_CARMEL),
Sai Prakash Ranjanf4617be2020-06-24 18:04:06 +05301294 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_3XX_SILVER),
1295 MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_4XX_SILVER),
Mark Rutland71c751f2018-04-23 11:41:33 +01001296 { /* sentinel */ }
Suzuki K Poulosebe5b2992018-03-26 15:12:45 +01001297 };
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001298 char const *str = "kpti command line option";
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001299 bool meltdown_safe;
1300
1301 meltdown_safe = is_midr_in_range_list(read_cpuid_id(), kpti_safe_list);
1302
1303 /* Defer to CPU feature registers */
1304 if (has_cpuid_feature(entry, scope))
1305 meltdown_safe = true;
1306
1307 if (!meltdown_safe)
1308 __meltdown_safe = false;
Will Deacon179a56f2017-11-27 18:29:30 +00001309
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001310 /*
1311 * For reasons that aren't entirely clear, enabling KPTI on Cavium
1312 * ThunderX leads to apparent I-cache corruption of kernel text, which
1313 * ends as well as you might imagine. Don't even try.
1314 */
1315 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456)) {
1316 str = "ARM64_WORKAROUND_CAVIUM_27456";
1317 __kpti_forced = -1;
1318 }
1319
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001320 /* Useful for KASLR robustness */
Mark Brownc2d92352019-12-09 18:12:15 +00001321 if (kaslr_requires_kpti()) {
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001322 if (!__kpti_forced) {
1323 str = "KASLR";
1324 __kpti_forced = 1;
1325 }
1326 }
1327
Josh Poimboeufa111b7c2019-04-12 15:39:32 -05001328 if (cpu_mitigations_off() && !__kpti_forced) {
1329 str = "mitigations=off";
1330 __kpti_forced = -1;
1331 }
1332
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001333 if (!IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0)) {
1334 pr_info_once("kernel page table isolation disabled by kernel configuration\n");
1335 return false;
1336 }
1337
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001338 /* Forced? */
Will Deaconea1e3de2017-11-14 14:38:19 +00001339 if (__kpti_forced) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +00001340 pr_info_once("kernel page table isolation forced %s by %s\n",
1341 __kpti_forced > 0 ? "ON" : "OFF", str);
Will Deaconea1e3de2017-11-14 14:38:19 +00001342 return __kpti_forced > 0;
1343 }
1344
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001345 return !meltdown_safe;
Will Deaconea1e3de2017-11-14 14:38:19 +00001346}
1347
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001348#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Dave Martinc0cda3b2018-03-26 15:12:28 +01001349static void
1350kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
Will Deaconf992b4d2018-02-06 22:22:50 +00001351{
1352 typedef void (kpti_remap_fn)(int, int, phys_addr_t);
1353 extern kpti_remap_fn idmap_kpti_install_ng_mappings;
1354 kpti_remap_fn *remap_fn;
1355
Will Deaconf992b4d2018-02-06 22:22:50 +00001356 int cpu = smp_processor_id();
1357
Will Deaconb89d82e2019-01-08 16:19:01 +00001358 /*
1359 * We don't need to rewrite the page-tables if either we've done
1360 * it already or we have KASLR enabled and therefore have not
1361 * created any global mappings at all.
1362 */
Mark Brown09e3c222019-12-09 18:12:17 +00001363 if (arm64_use_ng_mappings)
Dave Martinc0cda3b2018-03-26 15:12:28 +01001364 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001365
1366 remap_fn = (void *)__pa_symbol(idmap_kpti_install_ng_mappings);
1367
1368 cpu_install_idmap();
1369 remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));
1370 cpu_uninstall_idmap();
1371
1372 if (!cpu)
Mark Brown09e3c222019-12-09 18:12:17 +00001373 arm64_use_ng_mappings = true;
Will Deaconf992b4d2018-02-06 22:22:50 +00001374
Dave Martinc0cda3b2018-03-26 15:12:28 +01001375 return;
Will Deaconf992b4d2018-02-06 22:22:50 +00001376}
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05001377#else
1378static void
1379kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
1380{
1381}
1382#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
Will Deaconf992b4d2018-02-06 22:22:50 +00001383
Will Deaconea1e3de2017-11-14 14:38:19 +00001384static int __init parse_kpti(char *str)
1385{
1386 bool enabled;
1387 int ret = strtobool(str, &enabled);
1388
1389 if (ret)
1390 return ret;
1391
1392 __kpti_forced = enabled ? 1 : -1;
1393 return 0;
1394}
Will Deaconb5b7dd62018-06-22 10:25:25 +01001395early_param("kpti", parse_kpti);
Will Deaconea1e3de2017-11-14 14:38:19 +00001396
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001397#ifdef CONFIG_ARM64_HW_AFDBM
1398static inline void __cpu_enable_hw_dbm(void)
1399{
1400 u64 tcr = read_sysreg(tcr_el1) | TCR_HD;
1401
1402 write_sysreg(tcr, tcr_el1);
1403 isb();
1404}
1405
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001406static bool cpu_has_broken_dbm(void)
1407{
1408 /* List of CPUs which have broken DBM support. */
1409 static const struct midr_range cpus[] = {
1410#ifdef CONFIG_ARM64_ERRATUM_1024718
1411 MIDR_RANGE(MIDR_CORTEX_A55, 0, 0, 1, 0), // A55 r0p0 -r1p0
1412#endif
1413 {},
1414 };
1415
1416 return is_midr_in_range_list(read_cpuid_id(), cpus);
1417}
1418
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001419static bool cpu_can_use_dbm(const struct arm64_cpu_capabilities *cap)
1420{
Suzuki K Pouloseece13972018-03-26 15:12:49 +01001421 return has_cpuid_feature(cap, SCOPE_LOCAL_CPU) &&
1422 !cpu_has_broken_dbm();
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001423}
1424
1425static void cpu_enable_hw_dbm(struct arm64_cpu_capabilities const *cap)
1426{
1427 if (cpu_can_use_dbm(cap))
1428 __cpu_enable_hw_dbm();
1429}
1430
1431static bool has_hw_dbm(const struct arm64_cpu_capabilities *cap,
1432 int __unused)
1433{
1434 static bool detected = false;
1435 /*
1436 * DBM is a non-conflicting feature. i.e, the kernel can safely
1437 * run a mix of CPUs with and without the feature. So, we
1438 * unconditionally enable the capability to allow any late CPU
1439 * to use the feature. We only enable the control bits on the
1440 * CPU, if it actually supports.
1441 *
1442 * We have to make sure we print the "feature" detection only
1443 * when at least one CPU actually uses it. So check if this CPU
1444 * can actually use it and print the message exactly once.
1445 *
1446 * This is safe as all CPUs (including secondary CPUs - due to the
1447 * LOCAL_CPU scope - and the hotplugged CPUs - via verification)
1448 * goes through the "matches" check exactly once. Also if a CPU
1449 * matches the criteria, it is guaranteed that the CPU will turn
1450 * the DBM on, as the capability is unconditionally enabled.
1451 */
1452 if (!detected && cpu_can_use_dbm(cap)) {
1453 detected = true;
1454 pr_info("detected: Hardware dirty bit management\n");
1455 }
1456
1457 return true;
1458}
1459
1460#endif
1461
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001462#ifdef CONFIG_ARM64_AMU_EXTN
1463
1464/*
1465 * The "amu_cpus" cpumask only signals that the CPU implementation for the
1466 * flagged CPUs supports the Activity Monitors Unit (AMU) but does not provide
1467 * information regarding all the events that it supports. When a CPU bit is
1468 * set in the cpumask, the user of this feature can only rely on the presence
1469 * of the 4 fixed counters for that CPU. But this does not guarantee that the
1470 * counters are enabled or access to these counters is enabled by code
1471 * executed at higher exception levels (firmware).
1472 */
1473static struct cpumask amu_cpus __read_mostly;
1474
1475bool cpu_has_amu_feat(int cpu)
1476{
1477 return cpumask_test_cpu(cpu, &amu_cpus);
1478}
1479
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001480/* Initialize the use of AMU counters for frequency invariance */
1481extern void init_cpu_freq_invariance_counters(void);
1482
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001483static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap)
1484{
1485 if (has_cpuid_feature(cap, SCOPE_LOCAL_CPU)) {
1486 pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n",
1487 smp_processor_id());
1488 cpumask_set_cpu(smp_processor_id(), &amu_cpus);
Ionela Voinescucd0ed032020-03-05 09:06:26 +00001489 init_cpu_freq_invariance_counters();
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001490 }
1491}
1492
1493static bool has_amu(const struct arm64_cpu_capabilities *cap,
1494 int __unused)
1495{
1496 /*
1497 * The AMU extension is a non-conflicting feature: the kernel can
1498 * safely run a mix of CPUs with and without support for the
1499 * activity monitors extension. Therefore, unconditionally enable
1500 * the capability to allow any late CPU to use the feature.
1501 *
1502 * With this feature unconditionally enabled, the cpu_enable
1503 * function will be called for all CPUs that match the criteria,
1504 * including secondary and hotplugged, marking this feature as
1505 * present on that respective CPU. The enable function will also
1506 * print a detection message.
1507 */
1508
1509 return true;
1510}
1511#endif
1512
Will Deacon12eb3692018-03-27 11:51:12 +01001513#ifdef CONFIG_ARM64_VHE
1514static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
1515{
1516 return is_kernel_in_hyp_mode();
1517}
1518
Dave Martinc0cda3b2018-03-26 15:12:28 +01001519static void cpu_copy_el2regs(const struct arm64_cpu_capabilities *__unused)
James Morse6d99b682018-01-08 15:38:06 +00001520{
1521 /*
1522 * Copy register values that aren't redirected by hardware.
1523 *
1524 * Before code patching, we only set tpidr_el1, all CPUs need to copy
1525 * this value to tpidr_el2 before we patch the code. Once we've done
1526 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
1527 * do anything here.
1528 */
Julien Thierrye9ab7a22019-01-31 14:58:52 +00001529 if (!alternative_is_applied(ARM64_HAS_VIRT_HOST_EXTN))
James Morse6d99b682018-01-08 15:38:06 +00001530 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
James Morse6d99b682018-01-08 15:38:06 +00001531}
Will Deacon12eb3692018-03-27 11:51:12 +01001532#endif
James Morse6d99b682018-01-08 15:38:06 +00001533
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001534static void cpu_has_fwb(const struct arm64_cpu_capabilities *__unused)
1535{
1536 u64 val = read_sysreg_s(SYS_CLIDR_EL1);
1537
1538 /* Check that CLIDR_EL1.LOU{U,IS} are both 0 */
1539 WARN_ON(val & (7 << 27 | 7 << 21));
1540}
1541
Will Deacon8f04e8e2018-08-07 13:47:06 +01001542#ifdef CONFIG_ARM64_SSBD
1543static int ssbs_emulation_handler(struct pt_regs *regs, u32 instr)
1544{
1545 if (user_mode(regs))
1546 return 1;
1547
Suzuki K Poulose74e24822018-09-16 23:17:23 +01001548 if (instr & BIT(PSTATE_Imm_shift))
Will Deacon8f04e8e2018-08-07 13:47:06 +01001549 regs->pstate |= PSR_SSBS_BIT;
1550 else
1551 regs->pstate &= ~PSR_SSBS_BIT;
1552
1553 arm64_skip_faulting_instruction(regs, 4);
1554 return 0;
1555}
1556
1557static struct undef_hook ssbs_emulation_hook = {
Suzuki K Poulose74e24822018-09-16 23:17:23 +01001558 .instr_mask = ~(1U << PSTATE_Imm_shift),
1559 .instr_val = 0xd500401f | PSTATE_SSBS,
Will Deacon8f04e8e2018-08-07 13:47:06 +01001560 .fn = ssbs_emulation_handler,
1561};
1562
1563static void cpu_enable_ssbs(const struct arm64_cpu_capabilities *__unused)
1564{
1565 static bool undef_hook_registered = false;
Julien Grall27e6e7d2019-05-30 12:30:58 +01001566 static DEFINE_RAW_SPINLOCK(hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001567
Julien Grall27e6e7d2019-05-30 12:30:58 +01001568 raw_spin_lock(&hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001569 if (!undef_hook_registered) {
1570 register_undef_hook(&ssbs_emulation_hook);
1571 undef_hook_registered = true;
1572 }
Julien Grall27e6e7d2019-05-30 12:30:58 +01001573 raw_spin_unlock(&hook_lock);
Will Deacon8f04e8e2018-08-07 13:47:06 +01001574
1575 if (arm64_get_ssbd_state() == ARM64_SSBD_FORCE_DISABLE) {
1576 sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_DSSBS);
1577 arm64_set_ssbd_mitigation(false);
1578 } else {
1579 arm64_set_ssbd_mitigation(true);
1580 }
1581}
1582#endif /* CONFIG_ARM64_SSBD */
1583
Will Deaconb8925ee2018-08-07 13:53:41 +01001584#ifdef CONFIG_ARM64_PAN
1585static void cpu_enable_pan(const struct arm64_cpu_capabilities *__unused)
1586{
1587 /*
1588 * We modify PSTATE. This won't work from irq context as the PSTATE
1589 * is discarded once we return from the exception.
1590 */
1591 WARN_ON_ONCE(in_interrupt());
1592
1593 sysreg_clear_set(sctlr_el1, SCTLR_EL1_SPAN, 0);
1594 asm(SET_PSTATE_PAN(1));
1595}
1596#endif /* CONFIG_ARM64_PAN */
1597
1598#ifdef CONFIG_ARM64_RAS_EXTN
1599static void cpu_clear_disr(const struct arm64_cpu_capabilities *__unused)
1600{
1601 /* Firmware may have left a deferred SError in this register. */
1602 write_sysreg_s(0, SYS_DISR_EL1);
1603}
1604#endif /* CONFIG_ARM64_RAS_EXTN */
1605
Mark Rutland6984eb42018-12-07 18:39:24 +00001606#ifdef CONFIG_ARM64_PTR_AUTH
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301607static bool has_address_auth(const struct arm64_cpu_capabilities *entry,
1608 int __unused)
Mark Rutland75031972018-12-07 18:39:25 +00001609{
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301610 return __system_matches_cap(ARM64_HAS_ADDRESS_AUTH_ARCH) ||
1611 __system_matches_cap(ARM64_HAS_ADDRESS_AUTH_IMP_DEF);
1612}
1613
1614static bool has_generic_auth(const struct arm64_cpu_capabilities *entry,
1615 int __unused)
1616{
1617 return __system_matches_cap(ARM64_HAS_GENERIC_AUTH_ARCH) ||
1618 __system_matches_cap(ARM64_HAS_GENERIC_AUTH_IMP_DEF);
Mark Rutland75031972018-12-07 18:39:25 +00001619}
Mark Rutland6984eb42018-12-07 18:39:24 +00001620#endif /* CONFIG_ARM64_PTR_AUTH */
1621
Mark Brown3e6c69a2019-12-09 18:12:14 +00001622#ifdef CONFIG_ARM64_E0PD
1623static void cpu_enable_e0pd(struct arm64_cpu_capabilities const *cap)
1624{
1625 if (this_cpu_has_cap(ARM64_HAS_E0PD))
1626 sysreg_clear_set(tcr_el1, 0, TCR_E0PD1);
1627}
1628#endif /* CONFIG_ARM64_E0PD */
1629
Julien Thierryb90d2b22019-01-31 14:58:42 +00001630#ifdef CONFIG_ARM64_PSEUDO_NMI
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001631static bool enable_pseudo_nmi;
1632
1633static int __init early_enable_pseudo_nmi(char *p)
1634{
1635 return strtobool(p, &enable_pseudo_nmi);
1636}
1637early_param("irqchip.gicv3_pseudo_nmi", early_enable_pseudo_nmi);
1638
Julien Thierryb90d2b22019-01-31 14:58:42 +00001639static bool can_use_gic_priorities(const struct arm64_cpu_capabilities *entry,
1640 int scope)
1641{
Julien Thierrybc3c03c2019-01-31 14:59:03 +00001642 return enable_pseudo_nmi && has_useable_gicv3_cpuif(entry, scope);
Julien Thierryb90d2b22019-01-31 14:58:42 +00001643}
1644#endif
1645
Dave Martin8ef8f3602020-03-16 16:50:45 +00001646#ifdef CONFIG_ARM64_BTI
1647static void bti_enable(const struct arm64_cpu_capabilities *__unused)
1648{
1649 /*
1650 * Use of X16/X17 for tail-calls and trampolines that jump to
1651 * function entry points using BR is a requirement for
1652 * marking binaries with GNU_PROPERTY_AARCH64_FEATURE_1_BTI.
1653 * So, be strict and forbid other BRs using other registers to
1654 * jump onto a PACIxSP instruction:
1655 */
1656 sysreg_clear_set(sctlr_el1, 0, SCTLR_EL1_BT0 | SCTLR_EL1_BT1);
1657 isb();
1658}
1659#endif /* CONFIG_ARM64_BTI */
1660
Amit Daniel Kachhap8c176e12020-03-13 14:34:53 +05301661/* Internal helper functions to match cpu capability type */
1662static bool
1663cpucap_late_cpu_optional(const struct arm64_cpu_capabilities *cap)
1664{
1665 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU);
1666}
1667
1668static bool
1669cpucap_late_cpu_permitted(const struct arm64_cpu_capabilities *cap)
1670{
1671 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU);
1672}
1673
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05301674static bool
1675cpucap_panic_on_conflict(const struct arm64_cpu_capabilities *cap)
1676{
1677 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT);
1678}
1679
Marc Zyngier359b7062015-03-27 13:09:23 +00001680static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +01001681 {
1682 .desc = "GIC system register CPU interface",
1683 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Julien Thierryc9bfdf72019-01-31 14:58:41 +00001684 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngier963fcd42015-09-30 11:50:04 +01001685 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001686 .sys_reg = SYS_ID_AA64PFR0_EL1,
1687 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001688 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +01001689 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +01001690 },
James Morse338d4f42015-07-22 19:05:54 +01001691#ifdef CONFIG_ARM64_PAN
1692 {
1693 .desc = "Privileged Access Never",
1694 .capability = ARM64_HAS_PAN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001695 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001696 .matches = has_cpuid_feature,
1697 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1698 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001699 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +01001700 .min_field_value = 1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001701 .cpu_enable = cpu_enable_pan,
James Morse338d4f42015-07-22 19:05:54 +01001702 },
1703#endif /* CONFIG_ARM64_PAN */
Catalin Marinas395af862020-01-15 11:30:08 +00001704#ifdef CONFIG_ARM64_LSE_ATOMICS
Will Deacon2e94da12015-07-27 16:23:58 +01001705 {
1706 .desc = "LSE atomic instructions",
1707 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001708 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +01001709 .matches = has_cpuid_feature,
1710 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1711 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001712 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +01001713 .min_field_value = 2,
1714 },
Catalin Marinas395af862020-01-15 11:30:08 +00001715#endif /* CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +00001716 {
Will Deacond5370f72016-02-02 12:46:24 +00001717 .desc = "Software prefetching using PRFM",
1718 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose5c137712018-03-26 15:12:39 +01001719 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
Will Deacond5370f72016-02-02 12:46:24 +00001720 .matches = has_no_hw_prefetch,
1721 },
James Morse57f49592016-02-05 14:58:48 +00001722#ifdef CONFIG_ARM64_UAO
1723 {
1724 .desc = "User Access Override",
1725 .capability = ARM64_HAS_UAO,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001726 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
James Morse57f49592016-02-05 14:58:48 +00001727 .matches = has_cpuid_feature,
1728 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1729 .field_pos = ID_AA64MMFR2_UAO_SHIFT,
1730 .min_field_value = 1,
James Morsec8b06e32017-01-09 18:14:02 +00001731 /*
1732 * We rely on stop_machine() calling uao_thread_switch() to set
1733 * UAO immediately after patching.
1734 */
James Morse57f49592016-02-05 14:58:48 +00001735 },
1736#endif /* CONFIG_ARM64_UAO */
James Morse70544192016-02-05 14:58:50 +00001737#ifdef CONFIG_ARM64_PAN
1738 {
1739 .capability = ARM64_ALT_PAN_NOT_UAO,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001740 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
James Morse70544192016-02-05 14:58:50 +00001741 .matches = cpufeature_pan_not_uao,
1742 },
1743#endif /* CONFIG_ARM64_PAN */
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001744#ifdef CONFIG_ARM64_VHE
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001745 {
Marc Zyngierd88701b2015-01-29 11:24:05 +00001746 .desc = "Virtualization Host Extensions",
1747 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001748 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001749 .matches = runs_at_el2,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001750 .cpu_enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001751 },
Suzuki K Poulose830dcc92018-03-26 15:12:42 +01001752#endif /* CONFIG_ARM64_VHE */
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001753 {
1754 .desc = "32-bit EL0 Support",
1755 .capability = ARM64_HAS_32BIT_EL0,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001756 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001757 .matches = has_cpuid_feature,
1758 .sys_reg = SYS_ID_AA64PFR0_EL1,
1759 .sign = FTR_UNSIGNED,
1760 .field_pos = ID_AA64PFR0_EL0_SHIFT,
1761 .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT,
1762 },
Will Deacon540f76d2020-04-21 15:29:17 +01001763#ifdef CONFIG_KVM
1764 {
1765 .desc = "32-bit EL1 Support",
1766 .capability = ARM64_HAS_32BIT_EL1,
1767 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1768 .matches = has_cpuid_feature,
1769 .sys_reg = SYS_ID_AA64PFR0_EL1,
1770 .sign = FTR_UNSIGNED,
1771 .field_pos = ID_AA64PFR0_EL1_SHIFT,
1772 .min_field_value = ID_AA64PFR0_EL1_32BIT_64BIT,
1773 },
1774#endif
Will Deaconea1e3de2017-11-14 14:38:19 +00001775 {
Will Deacon179a56f2017-11-27 18:29:30 +00001776 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00001777 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
Suzuki K Poulosed3aec8a2018-03-26 15:12:40 +01001778 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
1779 /*
1780 * The ID feature fields below are used to indicate that
1781 * the CPU doesn't need KPTI. See unmap_kernel_at_el0 for
1782 * more details.
1783 */
1784 .sys_reg = SYS_ID_AA64PFR0_EL1,
1785 .field_pos = ID_AA64PFR0_CSV3_SHIFT,
1786 .min_field_value = 1,
Will Deaconea1e3de2017-11-14 14:38:19 +00001787 .matches = unmap_kernel_at_el0,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001788 .cpu_enable = kpti_install_ng_mappings,
Will Deaconea1e3de2017-11-14 14:38:19 +00001789 },
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001790 {
1791 /* FP/SIMD is not implemented */
1792 .capability = ARM64_HAS_NO_FPSIMD,
Suzuki K Poulose449443c2020-01-13 23:30:19 +00001793 .type = ARM64_CPUCAP_BOOT_RESTRICTED_CPU_LOCAL_FEATURE,
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001794 .min_field_value = 0,
1795 .matches = has_no_fpsimd,
1796 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001797#ifdef CONFIG_ARM64_PMEM
1798 {
1799 .desc = "Data cache clean to Point of Persistence",
1800 .capability = ARM64_HAS_DCPOP,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001801 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Robin Murphyd50e0712017-07-25 11:55:42 +01001802 .matches = has_cpuid_feature,
1803 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1804 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1805 .min_field_value = 1,
1806 },
Andrew Murrayb9585f52019-04-09 10:52:45 +01001807 {
1808 .desc = "Data cache clean to Point of Deep Persistence",
1809 .capability = ARM64_HAS_DCPODP,
1810 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1811 .matches = has_cpuid_feature,
1812 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1813 .sign = FTR_UNSIGNED,
1814 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1815 .min_field_value = 2,
1816 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001817#endif
Dave Martin43994d82017-10-31 15:51:19 +00001818#ifdef CONFIG_ARM64_SVE
1819 {
1820 .desc = "Scalable Vector Extension",
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001821 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Dave Martin43994d82017-10-31 15:51:19 +00001822 .capability = ARM64_SVE,
Dave Martin43994d82017-10-31 15:51:19 +00001823 .sys_reg = SYS_ID_AA64PFR0_EL1,
1824 .sign = FTR_UNSIGNED,
1825 .field_pos = ID_AA64PFR0_SVE_SHIFT,
1826 .min_field_value = ID_AA64PFR0_SVE,
1827 .matches = has_cpuid_feature,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001828 .cpu_enable = sve_kernel_enable,
Dave Martin43994d82017-10-31 15:51:19 +00001829 },
1830#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00001831#ifdef CONFIG_ARM64_RAS_EXTN
1832 {
1833 .desc = "RAS Extension Support",
1834 .capability = ARM64_HAS_RAS_EXTN,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001835 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Xie XiuQi64c02722018-01-15 19:38:56 +00001836 .matches = has_cpuid_feature,
1837 .sys_reg = SYS_ID_AA64PFR0_EL1,
1838 .sign = FTR_UNSIGNED,
1839 .field_pos = ID_AA64PFR0_RAS_SHIFT,
1840 .min_field_value = ID_AA64PFR0_RAS_V1,
Dave Martinc0cda3b2018-03-26 15:12:28 +01001841 .cpu_enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00001842 },
1843#endif /* CONFIG_ARM64_RAS_EXTN */
Ionela Voinescu2c9d45b2020-03-05 09:06:21 +00001844#ifdef CONFIG_ARM64_AMU_EXTN
1845 {
1846 /*
1847 * The feature is enabled by default if CONFIG_ARM64_AMU_EXTN=y.
1848 * Therefore, don't provide .desc as we don't want the detection
1849 * message to be shown until at least one CPU is detected to
1850 * support the feature.
1851 */
1852 .capability = ARM64_HAS_AMU_EXTN,
1853 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1854 .matches = has_amu,
1855 .sys_reg = SYS_ID_AA64PFR0_EL1,
1856 .sign = FTR_UNSIGNED,
1857 .field_pos = ID_AA64PFR0_AMU_SHIFT,
1858 .min_field_value = ID_AA64PFR0_AMU,
1859 .cpu_enable = cpu_amu_enable,
1860 },
1861#endif /* CONFIG_ARM64_AMU_EXTN */
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001862 {
1863 .desc = "Data cache clean to the PoU not required for I/D coherence",
1864 .capability = ARM64_HAS_CACHE_IDC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001865 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001866 .matches = has_cache_idc,
Suzuki K Poulose1602df02018-10-09 14:47:06 +01001867 .cpu_enable = cpu_emulate_effective_ctr,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001868 },
1869 {
1870 .desc = "Instruction cache invalidation not required for I/D coherence",
1871 .capability = ARM64_HAS_CACHE_DIC,
Suzuki K Poulose5b4747c2018-03-26 15:12:32 +01001872 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001873 .matches = has_cache_dic,
1874 },
Marc Zyngiere48d53a2018-04-06 12:27:28 +01001875 {
1876 .desc = "Stage-2 Force Write-Back",
1877 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1878 .capability = ARM64_HAS_STAGE2_FWB,
1879 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1880 .sign = FTR_UNSIGNED,
1881 .field_pos = ID_AA64MMFR2_FWB_SHIFT,
1882 .min_field_value = 1,
1883 .matches = has_cpuid_feature,
1884 .cpu_enable = cpu_has_fwb,
1885 },
Marc Zyngier552ae762018-12-22 12:00:10 +00001886 {
1887 .desc = "ARMv8.4 Translation Table Level",
1888 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1889 .capability = ARM64_HAS_ARMv8_4_TTL,
1890 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1891 .sign = FTR_UNSIGNED,
1892 .field_pos = ID_AA64MMFR2_TTL_SHIFT,
1893 .min_field_value = 1,
1894 .matches = has_cpuid_feature,
1895 },
Suzuki K Poulose05abb592018-03-26 15:12:48 +01001896#ifdef CONFIG_ARM64_HW_AFDBM
1897 {
1898 /*
1899 * Since we turn this on always, we don't want the user to
1900 * think that the feature is available when it may not be.
1901 * So hide the description.
1902 *
1903 * .desc = "Hardware pagetable Dirty Bit Management",
1904 *
1905 */
1906 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1907 .capability = ARM64_HW_DBM,
1908 .sys_reg = SYS_ID_AA64MMFR1_EL1,
1909 .sign = FTR_UNSIGNED,
1910 .field_pos = ID_AA64MMFR1_HADBS_SHIFT,
1911 .min_field_value = 2,
1912 .matches = has_hw_dbm,
1913 .cpu_enable = cpu_enable_hw_dbm,
1914 },
1915#endif
Ard Biesheuvel86d0dd32018-08-27 13:02:43 +02001916 {
1917 .desc = "CRC32 instructions",
1918 .capability = ARM64_HAS_CRC32,
1919 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1920 .matches = has_cpuid_feature,
1921 .sys_reg = SYS_ID_AA64ISAR0_EL1,
1922 .field_pos = ID_AA64ISAR0_CRC32_SHIFT,
1923 .min_field_value = 1,
1924 },
Will Deacon4f9f4962018-11-21 15:07:00 +00001925#ifdef CONFIG_ARM64_SSBD
Will Deacond71be2b2018-06-15 11:37:34 +01001926 {
1927 .desc = "Speculative Store Bypassing Safe (SSBS)",
1928 .capability = ARM64_SSBS,
1929 .type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
1930 .matches = has_cpuid_feature,
1931 .sys_reg = SYS_ID_AA64PFR1_EL1,
1932 .field_pos = ID_AA64PFR1_SSBS_SHIFT,
1933 .sign = FTR_UNSIGNED,
1934 .min_field_value = ID_AA64PFR1_SSBS_PSTATE_ONLY,
Will Deacon8f04e8e2018-08-07 13:47:06 +01001935 .cpu_enable = cpu_enable_ssbs,
Will Deacond71be2b2018-06-15 11:37:34 +01001936 },
Will Deacon8f04e8e2018-08-07 13:47:06 +01001937#endif
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01001938#ifdef CONFIG_ARM64_CNP
1939 {
1940 .desc = "Common not Private translations",
1941 .capability = ARM64_HAS_CNP,
1942 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1943 .matches = has_useable_cnp,
1944 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1945 .sign = FTR_UNSIGNED,
1946 .field_pos = ID_AA64MMFR2_CNP_SHIFT,
1947 .min_field_value = 1,
1948 .cpu_enable = cpu_enable_cnp,
1949 },
1950#endif
Will Deaconbd4fb6d2018-06-14 11:21:34 +01001951 {
1952 .desc = "Speculation barrier (SB)",
1953 .capability = ARM64_HAS_SB,
1954 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1955 .matches = has_cpuid_feature,
1956 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1957 .field_pos = ID_AA64ISAR1_SB_SHIFT,
1958 .sign = FTR_UNSIGNED,
1959 .min_field_value = 1,
1960 },
Mark Rutland6984eb42018-12-07 18:39:24 +00001961#ifdef CONFIG_ARM64_PTR_AUTH
1962 {
1963 .desc = "Address authentication (architected algorithm)",
1964 .capability = ARM64_HAS_ADDRESS_AUTH_ARCH,
Kristina Martsenko69829342020-03-13 14:34:55 +05301965 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00001966 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1967 .sign = FTR_UNSIGNED,
1968 .field_pos = ID_AA64ISAR1_APA_SHIFT,
1969 .min_field_value = ID_AA64ISAR1_APA_ARCHITECTED,
1970 .matches = has_cpuid_feature,
1971 },
1972 {
1973 .desc = "Address authentication (IMP DEF algorithm)",
1974 .capability = ARM64_HAS_ADDRESS_AUTH_IMP_DEF,
Kristina Martsenko69829342020-03-13 14:34:55 +05301975 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Mark Rutland6984eb42018-12-07 18:39:24 +00001976 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1977 .sign = FTR_UNSIGNED,
1978 .field_pos = ID_AA64ISAR1_API_SHIFT,
1979 .min_field_value = ID_AA64ISAR1_API_IMP_DEF,
1980 .matches = has_cpuid_feature,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301981 },
1982 {
1983 .capability = ARM64_HAS_ADDRESS_AUTH,
Kristina Martsenko69829342020-03-13 14:34:55 +05301984 .type = ARM64_CPUCAP_BOOT_CPU_FEATURE,
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05301985 .matches = has_address_auth,
Mark Rutland6984eb42018-12-07 18:39:24 +00001986 },
1987 {
1988 .desc = "Generic authentication (architected algorithm)",
1989 .capability = ARM64_HAS_GENERIC_AUTH_ARCH,
1990 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
1991 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1992 .sign = FTR_UNSIGNED,
1993 .field_pos = ID_AA64ISAR1_GPA_SHIFT,
1994 .min_field_value = ID_AA64ISAR1_GPA_ARCHITECTED,
1995 .matches = has_cpuid_feature,
1996 },
1997 {
1998 .desc = "Generic authentication (IMP DEF algorithm)",
1999 .capability = ARM64_HAS_GENERIC_AUTH_IMP_DEF,
2000 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2001 .sys_reg = SYS_ID_AA64ISAR1_EL1,
2002 .sign = FTR_UNSIGNED,
2003 .field_pos = ID_AA64ISAR1_GPI_SHIFT,
2004 .min_field_value = ID_AA64ISAR1_GPI_IMP_DEF,
2005 .matches = has_cpuid_feature,
2006 },
Kristina Martsenkocfef06b2020-03-13 14:34:49 +05302007 {
2008 .capability = ARM64_HAS_GENERIC_AUTH,
2009 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2010 .matches = has_generic_auth,
2011 },
Mark Rutland6984eb42018-12-07 18:39:24 +00002012#endif /* CONFIG_ARM64_PTR_AUTH */
Julien Thierryb90d2b22019-01-31 14:58:42 +00002013#ifdef CONFIG_ARM64_PSEUDO_NMI
2014 {
2015 /*
2016 * Depends on having GICv3
2017 */
2018 .desc = "IRQ priority masking",
2019 .capability = ARM64_HAS_IRQ_PRIO_MASKING,
2020 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2021 .matches = can_use_gic_priorities,
2022 .sys_reg = SYS_ID_AA64PFR0_EL1,
2023 .field_pos = ID_AA64PFR0_GIC_SHIFT,
2024 .sign = FTR_UNSIGNED,
2025 .min_field_value = 1,
2026 },
2027#endif
Mark Brown3e6c69a2019-12-09 18:12:14 +00002028#ifdef CONFIG_ARM64_E0PD
2029 {
2030 .desc = "E0PD",
2031 .capability = ARM64_HAS_E0PD,
2032 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2033 .sys_reg = SYS_ID_AA64MMFR2_EL1,
2034 .sign = FTR_UNSIGNED,
2035 .field_pos = ID_AA64MMFR2_E0PD_SHIFT,
2036 .matches = has_cpuid_feature,
2037 .min_field_value = 1,
2038 .cpu_enable = cpu_enable_e0pd,
2039 },
2040#endif
Richard Henderson1a50ec02020-01-21 12:58:52 +00002041#ifdef CONFIG_ARCH_RANDOM
2042 {
2043 .desc = "Random Number Generator",
2044 .capability = ARM64_HAS_RNG,
2045 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
2046 .matches = has_cpuid_feature,
2047 .sys_reg = SYS_ID_AA64ISAR0_EL1,
2048 .field_pos = ID_AA64ISAR0_RNDR_SHIFT,
2049 .sign = FTR_UNSIGNED,
2050 .min_field_value = 1,
2051 },
2052#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002053#ifdef CONFIG_ARM64_BTI
2054 {
2055 .desc = "Branch Target Identification",
2056 .capability = ARM64_BTI,
Mark Brownc8027282020-05-06 20:51:31 +01002057#ifdef CONFIG_ARM64_BTI_KERNEL
2058 .type = ARM64_CPUCAP_STRICT_BOOT_CPU_FEATURE,
2059#else
Dave Martin8ef8f3602020-03-16 16:50:45 +00002060 .type = ARM64_CPUCAP_SYSTEM_FEATURE,
Mark Brownc8027282020-05-06 20:51:31 +01002061#endif
Dave Martin8ef8f3602020-03-16 16:50:45 +00002062 .matches = has_cpuid_feature,
2063 .cpu_enable = bti_enable,
2064 .sys_reg = SYS_ID_AA64PFR1_EL1,
2065 .field_pos = ID_AA64PFR1_BT_SHIFT,
2066 .min_field_value = ID_AA64PFR1_BT_BTI,
2067 .sign = FTR_UNSIGNED,
2068 },
2069#endif
Marc Zyngier359b7062015-03-27 13:09:23 +00002070 {},
2071};
2072
Will Deacon1e013d02018-12-12 15:53:54 +00002073#define HWCAP_CPUID_MATCH(reg, field, s, min_value) \
2074 .matches = has_cpuid_feature, \
2075 .sys_reg = reg, \
2076 .field_pos = field, \
2077 .sign = s, \
2078 .min_field_value = min_value,
2079
2080#define __HWCAP_CAP(name, cap_type, cap) \
2081 .desc = name, \
2082 .type = ARM64_CPUCAP_SYSTEM_FEATURE, \
2083 .hwcap_type = cap_type, \
2084 .hwcap = cap, \
2085
2086#define HWCAP_CAP(reg, field, s, min_value, cap_type, cap) \
2087 { \
2088 __HWCAP_CAP(#cap, cap_type, cap) \
2089 HWCAP_CPUID_MATCH(reg, field, s, min_value) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002090 }
2091
Will Deacon1e013d02018-12-12 15:53:54 +00002092#define HWCAP_MULTI_CAP(list, cap_type, cap) \
2093 { \
2094 __HWCAP_CAP(#cap, cap_type, cap) \
2095 .matches = cpucap_multi_entry_cap_matches, \
2096 .match_list = list, \
2097 }
2098
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002099#define HWCAP_CAP_MATCH(match, cap_type, cap) \
2100 { \
2101 __HWCAP_CAP(#cap, cap_type, cap) \
2102 .matches = match, \
2103 }
2104
Will Deacon1e013d02018-12-12 15:53:54 +00002105#ifdef CONFIG_ARM64_PTR_AUTH
2106static const struct arm64_cpu_capabilities ptr_auth_hwcap_addr_matches[] = {
2107 {
2108 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_APA_SHIFT,
2109 FTR_UNSIGNED, ID_AA64ISAR1_APA_ARCHITECTED)
2110 },
2111 {
2112 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_API_SHIFT,
2113 FTR_UNSIGNED, ID_AA64ISAR1_API_IMP_DEF)
2114 },
2115 {},
2116};
2117
2118static const struct arm64_cpu_capabilities ptr_auth_hwcap_gen_matches[] = {
2119 {
2120 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPA_SHIFT,
2121 FTR_UNSIGNED, ID_AA64ISAR1_GPA_ARCHITECTED)
2122 },
2123 {
2124 HWCAP_CPUID_MATCH(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_GPI_SHIFT,
2125 FTR_UNSIGNED, ID_AA64ISAR1_GPI_IMP_DEF)
2126 },
2127 {},
2128};
2129#endif
2130
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002131static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Andrew Murrayaaba0982019-04-09 10:52:40 +01002132 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_PMULL),
2133 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_AES),
2134 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA1),
2135 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA2),
2136 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_SHA512),
2137 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_CRC32),
2138 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, KERNEL_HWCAP_ATOMICS),
2139 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDRDM),
2140 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SHA3),
2141 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM3),
2142 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_SM4),
2143 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDDP),
2144 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDFHM),
2145 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 +01002146 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 +00002147 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 +01002148 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_FP),
2149 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FPHP),
2150 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, KERNEL_HWCAP_ASIMD),
2151 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_ASIMDHP),
2152 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_DIT_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DIT),
2153 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 +01002154 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 +01002155 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_JSCVT),
2156 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_FCMA),
2157 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_LRCPC),
2158 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 +01002159 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 +01002160 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 +00002161 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_BF16_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_BF16),
2162 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DGH_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, KERNEL_HWCAP_DGH),
2163 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 +01002164 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 +00002165#ifdef CONFIG_ARM64_SVE
Andrew Murrayaaba0982019-04-09 10:52:40 +01002166 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 +01002167 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SVEVER_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SVEVER_SVE2, CAP_HWCAP, KERNEL_HWCAP_SVE2),
2168 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES, CAP_HWCAP, KERNEL_HWCAP_SVEAES),
2169 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_AES_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_AES_PMULL, CAP_HWCAP, KERNEL_HWCAP_SVEPMULL),
2170 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 +00002171 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 +01002172 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_SHA3_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_SHA3, CAP_HWCAP, KERNEL_HWCAP_SVESHA3),
2173 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 +00002174 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_I8MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_I8MM, CAP_HWCAP, KERNEL_HWCAP_SVEI8MM),
2175 HWCAP_CAP(SYS_ID_AA64ZFR0_EL1, ID_AA64ZFR0_F32MM_SHIFT, FTR_UNSIGNED, ID_AA64ZFR0_F32MM, CAP_HWCAP, KERNEL_HWCAP_SVEF32MM),
2176 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 +00002177#endif
Andrew Murrayaaba0982019-04-09 10:52:40 +01002178 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_SSBS_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_SSBS_PSTATE_INSNS, CAP_HWCAP, KERNEL_HWCAP_SSBS),
Dave Martin8ef8f3602020-03-16 16:50:45 +00002179#ifdef CONFIG_ARM64_BTI
2180 HWCAP_CAP(SYS_ID_AA64PFR1_EL1, ID_AA64PFR1_BT_SHIFT, FTR_UNSIGNED, ID_AA64PFR1_BT_BTI, CAP_HWCAP, KERNEL_HWCAP_BTI),
2181#endif
Mark Rutland75031972018-12-07 18:39:25 +00002182#ifdef CONFIG_ARM64_PTR_AUTH
Andrew Murrayaaba0982019-04-09 10:52:40 +01002183 HWCAP_MULTI_CAP(ptr_auth_hwcap_addr_matches, CAP_HWCAP, KERNEL_HWCAP_PACA),
2184 HWCAP_MULTI_CAP(ptr_auth_hwcap_gen_matches, CAP_HWCAP, KERNEL_HWCAP_PACG),
Mark Rutland75031972018-12-07 18:39:25 +00002185#endif
Suzuki K Poulose75283502016-04-18 10:28:33 +01002186 {},
2187};
2188
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002189#ifdef CONFIG_COMPAT
2190static bool compat_has_neon(const struct arm64_cpu_capabilities *cap, int scope)
2191{
2192 /*
2193 * Check that all of MVFR1_EL1.{SIMDSP, SIMDInt, SIMDLS} are available,
2194 * in line with that of arm32 as in vfp_init(). We make sure that the
2195 * check is future proof, by making sure value is non-zero.
2196 */
2197 u32 mvfr1;
2198
2199 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
2200 if (scope == SCOPE_SYSTEM)
2201 mvfr1 = read_sanitised_ftr_reg(SYS_MVFR1_EL1);
2202 else
2203 mvfr1 = read_sysreg_s(SYS_MVFR1_EL1);
2204
2205 return cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDSP_SHIFT) &&
2206 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDINT_SHIFT) &&
2207 cpuid_feature_extract_unsigned_field(mvfr1, MVFR1_SIMDLS_SHIFT);
2208}
2209#endif
2210
Suzuki K Poulose75283502016-04-18 10:28:33 +01002211static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002212#ifdef CONFIG_COMPAT
Suzuki K Poulose7559950a2020-01-13 23:30:20 +00002213 HWCAP_CAP_MATCH(compat_has_neon, CAP_COMPAT_HWCAP, COMPAT_HWCAP_NEON),
2214 HWCAP_CAP(SYS_MVFR1_EL1, MVFR1_SIMDFMAC_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFPv4),
2215 /* Arm v8 mandates MVFR0.FPDP == {0, 2}. So, piggy back on this for the presence of VFP support */
2216 HWCAP_CAP(SYS_MVFR0_EL1, MVFR0_FPDP_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP, COMPAT_HWCAP_VFP),
2217 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 +00002218 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
2219 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
2220 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
2221 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
2222 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 +01002223#endif
2224 {},
2225};
2226
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002227static void __init cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002228{
2229 switch (cap->hwcap_type) {
2230 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002231 cpu_set_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002232 break;
2233#ifdef CONFIG_COMPAT
2234 case CAP_COMPAT_HWCAP:
2235 compat_elf_hwcap |= (u32)cap->hwcap;
2236 break;
2237 case CAP_COMPAT_HWCAP2:
2238 compat_elf_hwcap2 |= (u32)cap->hwcap;
2239 break;
2240#endif
2241 default:
2242 WARN_ON(1);
2243 break;
2244 }
2245}
2246
2247/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01002248static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002249{
2250 bool rc;
2251
2252 switch (cap->hwcap_type) {
2253 case CAP_HWCAP:
Andrew Murrayaaba0982019-04-09 10:52:40 +01002254 rc = cpu_have_feature(cap->hwcap);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002255 break;
2256#ifdef CONFIG_COMPAT
2257 case CAP_COMPAT_HWCAP:
2258 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
2259 break;
2260 case CAP_COMPAT_HWCAP2:
2261 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
2262 break;
2263#endif
2264 default:
2265 WARN_ON(1);
2266 rc = false;
2267 }
2268
2269 return rc;
2270}
2271
Suzuki K Poulose75283502016-04-18 10:28:33 +01002272static void __init setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002273{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002274 /* We support emulation of accesses to CPU ID feature registers */
Andrew Murrayaaba0982019-04-09 10:52:40 +01002275 cpu_set_named_feature(CPUID);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002276 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose143ba052018-03-26 15:12:31 +01002277 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps)))
Suzuki K Poulose75283502016-04-18 10:28:33 +01002278 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01002279}
2280
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002281static void update_cpu_capabilities(u16 scope_mask)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002282{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002283 int i;
Suzuki K Poulose67948af2018-01-09 16:12:18 +00002284 const struct arm64_cpu_capabilities *caps;
2285
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002286 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002287 for (i = 0; i < ARM64_NCAPS; i++) {
2288 caps = cpu_hwcaps_ptrs[i];
2289 if (!caps || !(caps->type & scope_mask) ||
2290 cpus_have_cap(caps->capability) ||
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002291 !caps->matches(caps, cpucap_default_scope(caps)))
Marc Zyngier359b7062015-03-27 13:09:23 +00002292 continue;
2293
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002294 if (caps->desc)
2295 pr_info("detected: %s\n", caps->desc);
Suzuki K Poulose75283502016-04-18 10:28:33 +01002296 cpus_set_cap(caps->capability);
Daniel Thompson0ceb0d52019-01-31 14:58:53 +00002297
2298 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU))
2299 set_bit(caps->capability, boot_capabilities);
Marc Zyngier359b7062015-03-27 13:09:23 +00002300 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002301}
James Morse1c076302015-07-21 13:23:28 +01002302
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002303/*
2304 * Enable all the available capabilities on this CPU. The capabilities
2305 * with BOOT_CPU scope are handled separately and hence skipped here.
2306 */
2307static int cpu_enable_non_boot_scope_capabilities(void *__unused)
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002308{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002309 int i;
2310 u16 non_boot_scope = SCOPE_ALL & ~SCOPE_BOOT_CPU;
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002311
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002312 for_each_available_cap(i) {
2313 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[i];
Dave Martinc0cda3b2018-03-26 15:12:28 +01002314
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002315 if (WARN_ON(!cap))
2316 continue;
2317
2318 if (!(cap->type & non_boot_scope))
2319 continue;
2320
2321 if (cap->cpu_enable)
2322 cap->cpu_enable(cap);
2323 }
Dave Martinc0cda3b2018-03-26 15:12:28 +01002324 return 0;
2325}
2326
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002327/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002328 * Run through the enabled capabilities and enable() it on all active
2329 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002330 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002331static void __init enable_cpu_capabilities(u16 scope_mask)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01002332{
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002333 int i;
2334 const struct arm64_cpu_capabilities *caps;
2335 bool boot_scope;
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002336
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002337 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2338 boot_scope = !!(scope_mask & SCOPE_BOOT_CPU);
2339
2340 for (i = 0; i < ARM64_NCAPS; i++) {
2341 unsigned int num;
2342
2343 caps = cpu_hwcaps_ptrs[i];
2344 if (!caps || !(caps->type & scope_mask))
2345 continue;
2346 num = caps->capability;
2347 if (!cpus_have_cap(num))
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002348 continue;
2349
2350 /* Ensure cpus_have_const_cap(num) works */
2351 static_branch_enable(&cpu_hwcap_keys[num]);
2352
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002353 if (boot_scope && caps->cpu_enable)
James Morse2a6dcb22016-10-18 11:27:46 +01002354 /*
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002355 * Capabilities with SCOPE_BOOT_CPU scope are finalised
2356 * before any secondary CPU boots. Thus, each secondary
2357 * will enable the capability as appropriate via
2358 * check_local_cpu_capabilities(). The only exception is
2359 * the boot CPU, for which the capability must be
2360 * enabled here. This approach avoids costly
2361 * stop_machine() calls for this case.
James Morse2a6dcb22016-10-18 11:27:46 +01002362 */
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002363 caps->cpu_enable(caps);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01002364 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002365
Suzuki K Poulose0b587c842018-11-30 17:18:06 +00002366 /*
2367 * For all non-boot scope capabilities, use stop_machine()
2368 * as it schedules the work allowing us to modify PSTATE,
2369 * instead of on_each_cpu() which uses an IPI, giving us a
2370 * PSTATE that disappears when we return.
2371 */
2372 if (!boot_scope)
2373 stop_machine(cpu_enable_non_boot_scope_capabilities,
2374 NULL, cpu_online_mask);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002375}
2376
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002377/*
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002378 * Run through the list of capabilities to check for conflicts.
2379 * If the system has already detected a capability, take necessary
2380 * action on this CPU.
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002381 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302382static void verify_local_cpu_caps(u16 scope_mask)
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002383{
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002384 int i;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002385 bool cpu_has_cap, system_has_cap;
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002386 const struct arm64_cpu_capabilities *caps;
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002387
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002388 scope_mask &= ARM64_CPUCAP_SCOPE_MASK;
2389
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002390 for (i = 0; i < ARM64_NCAPS; i++) {
2391 caps = cpu_hwcaps_ptrs[i];
2392 if (!caps || !(caps->type & scope_mask))
Suzuki K Poulosecce360b2018-03-26 15:12:34 +01002393 continue;
2394
Suzuki K Pouloseba7d9232018-03-26 15:12:46 +01002395 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002396 system_has_cap = cpus_have_cap(caps->capability);
2397
2398 if (system_has_cap) {
2399 /*
2400 * Check if the new CPU misses an advertised feature,
2401 * which is not safe to miss.
2402 */
2403 if (!cpu_has_cap && !cpucap_late_cpu_optional(caps))
2404 break;
2405 /*
2406 * We have to issue cpu_enable() irrespective of
2407 * whether the CPU has it or not, as it is enabeld
2408 * system wide. It is upto the call back to take
2409 * appropriate action on this CPU.
2410 */
2411 if (caps->cpu_enable)
2412 caps->cpu_enable(caps);
2413 } else {
2414 /*
2415 * Check if the CPU has this capability if it isn't
2416 * safe to have when the system doesn't.
2417 */
2418 if (cpu_has_cap && !cpucap_late_cpu_permitted(caps))
2419 break;
2420 }
2421 }
2422
Suzuki K Poulose606f8e72018-11-30 17:18:05 +00002423 if (i < ARM64_NCAPS) {
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002424 pr_crit("CPU%d: Detected conflict for capability %d (%s), System: %d, CPU: %d\n",
2425 smp_processor_id(), caps->capability,
2426 caps->desc, system_has_cap, cpu_has_cap);
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002427
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302428 if (cpucap_panic_on_conflict(caps))
2429 cpu_panic_kernel();
2430 else
2431 cpu_die_early();
2432 }
Suzuki K Pouloseeaac4d82018-03-26 15:12:33 +01002433}
2434
2435/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002436 * Check for CPU features that are used in early boot
2437 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002438 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002439static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00002440{
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00002441 verify_cpu_asid_bits();
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302442
2443 verify_local_cpu_caps(SCOPE_BOOT_CPU);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002444}
2445
Suzuki K Poulose75283502016-04-18 10:28:33 +01002446static void
2447verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
2448{
2449
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002450 for (; caps->matches; caps++)
2451 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01002452 pr_crit("CPU%d: missing HWCAP: %s\n",
2453 smp_processor_id(), caps->desc);
2454 cpu_die_early();
2455 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01002456}
2457
Dave Martin2e0f2472017-10-31 15:51:10 +00002458static void verify_sve_features(void)
2459{
2460 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
2461 u64 zcr = read_zcr_features();
2462
2463 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
2464 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
2465
2466 if (len < safe_len || sve_verify_vq_map()) {
Dave Martind06b76b2018-09-28 14:39:10 +01002467 pr_crit("CPU%d: SVE: vector length support mismatch\n",
Dave Martin2e0f2472017-10-31 15:51:10 +00002468 smp_processor_id());
2469 cpu_die_early();
2470 }
2471
2472 /* Add checks on other ZCR bits here if necessary */
2473}
2474
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302475static void verify_hyp_capabilities(void)
2476{
2477 u64 safe_mmfr1, mmfr0, mmfr1;
2478 int parange, ipa_max;
2479 unsigned int safe_vmid_bits, vmid_bits;
2480
2481 if (!IS_ENABLED(CONFIG_KVM) || !IS_ENABLED(CONFIG_KVM_ARM_HOST))
2482 return;
2483
2484 safe_mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
2485 mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
2486 mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
2487
2488 /* Verify VMID bits */
2489 safe_vmid_bits = get_vmid_bits(safe_mmfr1);
2490 vmid_bits = get_vmid_bits(mmfr1);
2491 if (vmid_bits < safe_vmid_bits) {
2492 pr_crit("CPU%d: VMID width mismatch\n", smp_processor_id());
2493 cpu_die_early();
2494 }
2495
2496 /* Verify IPA range */
Anshuman Khandualf73531f2020-05-13 14:33:34 +05302497 parange = cpuid_feature_extract_unsigned_field(mmfr0,
2498 ID_AA64MMFR0_PARANGE_SHIFT);
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302499 ipa_max = id_aa64mmfr0_parange_to_phys_shift(parange);
2500 if (ipa_max < get_kvm_ipa_limit()) {
2501 pr_crit("CPU%d: IPA range mismatch\n", smp_processor_id());
2502 cpu_die_early();
2503 }
2504}
Suzuki K Poulose1e89bae2018-03-26 15:12:30 +01002505
2506/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002507 * Run through the enabled system capabilities and enable() it on this CPU.
2508 * The capabilities were decided based on the available CPUs at the boot time.
2509 * Any new CPU should match the system wide status of the capability. If the
2510 * new CPU doesn't have a capability which the system now has enabled, we
2511 * cannot do anything to fix it up and could cause unexpected failures. So
2512 * we park the CPU.
2513 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002514static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002515{
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002516 /*
2517 * The capabilities with SCOPE_BOOT_CPU are checked from
2518 * check_early_cpu_features(), as they need to be verified
2519 * on all secondary CPUs.
2520 */
Kristina Martsenkodeeaac52020-03-13 14:34:54 +05302521 verify_local_cpu_caps(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002522
Suzuki K Poulose75283502016-04-18 10:28:33 +01002523 verify_local_elf_hwcaps(arm64_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00002524
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002525 if (system_supports_32bit_el0())
2526 verify_local_elf_hwcaps(compat_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00002527
2528 if (system_supports_sve())
2529 verify_sve_features();
Anshuman Khandualc73433f2020-05-12 07:27:27 +05302530
2531 if (is_hyp_mode_available())
2532 verify_hyp_capabilities();
Marc Zyngier359b7062015-03-27 13:09:23 +00002533}
2534
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002535void check_local_cpu_capabilities(void)
2536{
2537 /*
2538 * All secondary CPUs should conform to the early CPU features
2539 * in use by the kernel based on boot CPU.
2540 */
2541 check_early_cpu_features();
2542
2543 /*
2544 * If we haven't finalised the system capabilities, this CPU gets
Suzuki K Poulosefbd890b2018-03-26 15:12:37 +01002545 * a chance to update the errata work arounds and local features.
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002546 * Otherwise, this CPU should verify that it has all the system
2547 * advertised capabilities.
2548 */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002549 if (!system_capabilities_finalized())
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002550 update_cpu_capabilities(SCOPE_LOCAL_CPU);
2551 else
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01002552 verify_local_cpu_capabilities();
2553}
2554
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002555static void __init setup_boot_cpu_capabilities(void)
2556{
2557 /* Detect capabilities with either SCOPE_BOOT_CPU or SCOPE_LOCAL_CPU */
2558 update_cpu_capabilities(SCOPE_BOOT_CPU | SCOPE_LOCAL_CPU);
2559 /* Enable the SCOPE_BOOT_CPU capabilities alone right away */
2560 enable_cpu_capabilities(SCOPE_BOOT_CPU);
2561}
2562
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002563bool this_cpu_has_cap(unsigned int n)
Marc Zyngier8f4137582017-01-30 15:39:52 +00002564{
Suzuki K Poulosef7bfc142018-11-30 17:18:04 +00002565 if (!WARN_ON(preemptible()) && n < ARM64_NCAPS) {
2566 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2567
2568 if (cap)
2569 return cap->matches(cap, SCOPE_LOCAL_CPU);
2570 }
2571
2572 return false;
Marc Zyngier8f4137582017-01-30 15:39:52 +00002573}
2574
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302575/*
2576 * This helper function is used in a narrow window when,
2577 * - The system wide safe registers are set with all the SMP CPUs and,
2578 * - The SYSTEM_FEATURE cpu_hwcaps may not have been set.
2579 * In all other cases cpus_have_{const_}cap() should be used.
2580 */
2581static bool __system_matches_cap(unsigned int n)
2582{
2583 if (n < ARM64_NCAPS) {
2584 const struct arm64_cpu_capabilities *cap = cpu_hwcaps_ptrs[n];
2585
2586 if (cap)
2587 return cap->matches(cap, SCOPE_SYSTEM);
2588 }
2589 return false;
2590}
2591
Andrew Murrayaec0bff2019-04-09 10:52:41 +01002592void cpu_set_feature(unsigned int num)
2593{
2594 WARN_ON(num >= MAX_CPU_FEATURES);
2595 elf_hwcap |= BIT(num);
2596}
2597EXPORT_SYMBOL_GPL(cpu_set_feature);
2598
2599bool cpu_have_feature(unsigned int num)
2600{
2601 WARN_ON(num >= MAX_CPU_FEATURES);
2602 return elf_hwcap & BIT(num);
2603}
2604EXPORT_SYMBOL_GPL(cpu_have_feature);
2605
2606unsigned long cpu_get_elf_hwcap(void)
2607{
2608 /*
2609 * We currently only populate the first 32 bits of AT_HWCAP. Please
2610 * note that for userspace compatibility we guarantee that bits 62
2611 * and 63 will always be returned as 0.
2612 */
2613 return lower_32_bits(elf_hwcap);
2614}
2615
2616unsigned long cpu_get_elf_hwcap2(void)
2617{
2618 return upper_32_bits(elf_hwcap);
2619}
2620
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002621static void __init setup_system_capabilities(void)
2622{
2623 /*
2624 * We have finalised the system-wide safe feature
2625 * registers, finalise the capabilities that depend
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002626 * on it. Also enable all the available capabilities,
2627 * that are not enabled already.
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002628 */
2629 update_cpu_capabilities(SCOPE_SYSTEM);
Suzuki K Poulosefd9d63d2018-03-26 15:12:41 +01002630 enable_cpu_capabilities(SCOPE_ALL & ~SCOPE_BOOT_CPU);
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002631}
2632
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002633void __init setup_cpu_features(void)
2634{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002635 u32 cwg;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002636
Suzuki K Pouloseed478b32018-03-26 15:12:38 +01002637 setup_system_capabilities();
Suzuki K Poulose75283502016-04-18 10:28:33 +01002638 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01002639
2640 if (system_supports_32bit_el0())
2641 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002642
Kees Cook2e6f5492018-02-21 10:18:21 -08002643 if (system_uses_ttbr0_pan())
2644 pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
2645
Dave Martin2e0f2472017-10-31 15:51:10 +00002646 sve_setup();
Dave Martin94b07c12018-06-01 11:10:14 +01002647 minsigstksz_setup();
Dave Martin2e0f2472017-10-31 15:51:10 +00002648
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002649 /* Advertise that we have computed the system capabilities */
Suzuki K Pouloseb51c6ac2020-01-13 23:30:17 +00002650 finalize_system_capabilities();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01002651
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002652 /*
2653 * Check for sane CTR_EL0.CWG value.
2654 */
2655 cwg = cache_type_cwg();
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01002656 if (!cwg)
Catalin Marinasebc7e212018-05-11 13:33:12 +01002657 pr_warn("No Cache Writeback Granule information, assuming %d\n",
2658 ARCH_DMA_MINALIGN);
Marc Zyngier359b7062015-03-27 13:09:23 +00002659}
James Morse70544192016-02-05 14:58:50 +00002660
2661static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +01002662cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused)
James Morse70544192016-02-05 14:58:50 +00002663{
Amit Daniel Kachhap3ff047f2020-03-13 14:34:48 +05302664 return (__system_matches_cap(ARM64_HAS_PAN) && !__system_matches_cap(ARM64_HAS_UAO));
James Morse70544192016-02-05 14:58:50 +00002665}
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002666
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +01002667static void __maybe_unused cpu_enable_cnp(struct arm64_cpu_capabilities const *cap)
2668{
2669 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
2670}
2671
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002672/*
2673 * We emulate only the following system register space.
2674 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
2675 * See Table C5-6 System instruction encodings for System register accesses,
2676 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
2677 */
2678static inline bool __attribute_const__ is_emulated(u32 id)
2679{
2680 return (sys_reg_Op0(id) == 0x3 &&
2681 sys_reg_CRn(id) == 0x0 &&
2682 sys_reg_Op1(id) == 0x0 &&
2683 (sys_reg_CRm(id) == 0 ||
2684 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
2685}
2686
2687/*
2688 * With CRm == 0, reg should be one of :
2689 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
2690 */
2691static inline int emulate_id_reg(u32 id, u64 *valp)
2692{
2693 switch (id) {
2694 case SYS_MIDR_EL1:
2695 *valp = read_cpuid_id();
2696 break;
2697 case SYS_MPIDR_EL1:
2698 *valp = SYS_MPIDR_SAFE_VAL;
2699 break;
2700 case SYS_REVIDR_EL1:
2701 /* IMPLEMENTATION DEFINED values are emulated with 0 */
2702 *valp = 0;
2703 break;
2704 default:
2705 return -EINVAL;
2706 }
2707
2708 return 0;
2709}
2710
2711static int emulate_sys_reg(u32 id, u64 *valp)
2712{
2713 struct arm64_ftr_reg *regp;
2714
2715 if (!is_emulated(id))
2716 return -EINVAL;
2717
2718 if (sys_reg_CRm(id) == 0)
2719 return emulate_id_reg(id, valp);
2720
Anshuman Khandual3577dd32020-05-27 15:34:36 +05302721 regp = get_arm64_ftr_reg_nowarn(id);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002722 if (regp)
2723 *valp = arm64_ftr_reg_user_value(regp);
2724 else
2725 /*
2726 * The untracked registers are either IMPLEMENTATION DEFINED
2727 * (e.g, ID_AFR0_EL1) or reserved RAZ.
2728 */
2729 *valp = 0;
2730 return 0;
2731}
2732
Anshuman Khandual520ad982018-09-20 09:36:20 +05302733int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt)
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002734{
2735 int rc;
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002736 u64 val;
2737
Anshuman Khandual520ad982018-09-20 09:36:20 +05302738 rc = emulate_sys_reg(sys_reg, &val);
2739 if (!rc) {
2740 pt_regs_write_reg(regs, rt, val);
2741 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
2742 }
2743 return rc;
2744}
2745
2746static int emulate_mrs(struct pt_regs *regs, u32 insn)
2747{
2748 u32 sys_reg, rt;
2749
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002750 /*
2751 * sys_reg values are defined as used in mrs/msr instruction.
2752 * shift the imm value to get the encoding.
2753 */
2754 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
Anshuman Khandual520ad982018-09-20 09:36:20 +05302755 rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
2756 return do_emulate_mrs(regs, sys_reg, rt);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002757}
2758
2759static struct undef_hook mrs_hook = {
2760 .instr_mask = 0xfff00000,
2761 .instr_val = 0xd5300000,
Mark Rutlandd64567f2018-07-05 15:16:52 +01002762 .pstate_mask = PSR_AA32_MODE_MASK,
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00002763 .pstate_val = PSR_MODE_EL0t,
2764 .fn = emulate_mrs,
2765};
2766
2767static int __init enable_mrs_emulation(void)
2768{
2769 register_undef_hook(&mrs_hook);
2770 return 0;
2771}
2772
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01002773core_initcall(enable_mrs_emulation);
Jeremy Linton1b3ccf42019-04-15 16:21:22 -05002774
2775ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr,
2776 char *buf)
2777{
2778 if (__meltdown_safe)
2779 return sprintf(buf, "Not affected\n");
2780
2781 if (arm64_kernel_unmapped_at_el0())
2782 return sprintf(buf, "Mitigation: PTI\n");
2783
2784 return sprintf(buf, "Vulnerable\n");
2785}