blob: bdab5522386613b8365d21cd52ebb761b4f24f7d [file] [log] [blame]
Marc Zyngier359b7062015-03-27 13:09:23 +00001/*
2 * Contains CPU feature definitions
3 *
4 * Copyright (C) 2015 ARM Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010019#define pr_fmt(fmt) "CPU features: " fmt
Marc Zyngier359b7062015-03-27 13:09:23 +000020
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010021#include <linux/bsearch.h>
James Morse2a6dcb22016-10-18 11:27:46 +010022#include <linux/cpumask.h>
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010023#include <linux/sort.h>
James Morse2a6dcb22016-10-18 11:27:46 +010024#include <linux/stop_machine.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000025#include <linux/types.h>
Laura Abbott2077be62017-01-10 13:35:49 -080026#include <linux/mm.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000027#include <asm/cpu.h>
28#include <asm/cpufeature.h>
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +010029#include <asm/cpu_ops.h>
Dave Martin2e0f2472017-10-31 15:51:10 +000030#include <asm/fpsimd.h>
Suzuki K Poulose13f417f2016-02-23 10:31:45 +000031#include <asm/mmu_context.h>
James Morse338d4f42015-07-22 19:05:54 +010032#include <asm/processor.h>
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +010033#include <asm/sysreg.h>
Suzuki K Poulose77c97b42017-01-09 17:28:31 +000034#include <asm/traps.h>
Marc Zyngierd88701b2015-01-29 11:24:05 +000035#include <asm/virt.h>
Marc Zyngier359b7062015-03-27 13:09:23 +000036
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010037unsigned long elf_hwcap __read_mostly;
38EXPORT_SYMBOL_GPL(elf_hwcap);
39
40#ifdef CONFIG_COMPAT
41#define COMPAT_ELF_HWCAP_DEFAULT \
42 (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
43 COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
44 COMPAT_HWCAP_TLS|COMPAT_HWCAP_VFP|\
45 COMPAT_HWCAP_VFPv3|COMPAT_HWCAP_VFPv4|\
46 COMPAT_HWCAP_NEON|COMPAT_HWCAP_IDIV|\
47 COMPAT_HWCAP_LPAE)
48unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT;
49unsigned int compat_elf_hwcap2 __read_mostly;
50#endif
51
52DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
Catalin Marinas4b65a5d2016-07-01 16:53:00 +010053EXPORT_SYMBOL(cpu_hwcaps);
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +010054
Dave Martin8f1eec52017-10-31 15:51:09 +000055/*
56 * Flag to indicate if we have computed the system wide
57 * capabilities based on the boot time active CPUs. This
58 * will be used to determine if a new booting CPU should
59 * go through the verification process to make sure that it
60 * supports the system capabilities, without using a hotplug
61 * notifier.
62 */
63static bool sys_caps_initialised;
64
65static inline void set_sys_caps_initialised(void)
66{
67 sys_caps_initialised = true;
68}
69
Mark Rutland8effeaa2017-06-21 18:11:23 +010070static int dump_cpu_hwcaps(struct notifier_block *self, unsigned long v, void *p)
71{
72 /* file-wide pr_fmt adds "CPU features: " prefix */
73 pr_emerg("0x%*pb\n", ARM64_NCAPS, &cpu_hwcaps);
74 return 0;
75}
76
77static struct notifier_block cpu_hwcaps_notifier = {
78 .notifier_call = dump_cpu_hwcaps
79};
80
81static int __init register_cpu_hwcaps_dumper(void)
82{
83 atomic_notifier_chain_register(&panic_notifier_list,
84 &cpu_hwcaps_notifier);
85 return 0;
86}
87__initcall(register_cpu_hwcaps_dumper);
88
Catalin Marinasefd9e032016-09-05 18:25:48 +010089DEFINE_STATIC_KEY_ARRAY_FALSE(cpu_hwcap_keys, ARM64_NCAPS);
90EXPORT_SYMBOL(cpu_hwcap_keys);
91
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +000092#define __ARM64_FTR_BITS(SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010093 { \
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +000094 .sign = SIGNED, \
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +000095 .visible = VISIBLE, \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +010096 .strict = STRICT, \
97 .type = TYPE, \
98 .shift = SHIFT, \
99 .width = WIDTH, \
100 .safe_val = SAFE_VAL, \
101 }
102
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000103/* Define a feature with unsigned values */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000104#define ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
105 __ARM64_FTR_BITS(FTR_UNSIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K. Poulose4f0a6062015-11-18 17:08:57 +0000106
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000107/* Define a feature with a signed value */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000108#define S_ARM64_FTR_BITS(VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL) \
109 __ARM64_FTR_BITS(FTR_SIGNED, VISIBLE, STRICT, TYPE, SHIFT, WIDTH, SAFE_VAL)
Suzuki K Poulose0710cfd2016-01-26 10:58:14 +0000110
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100111#define ARM64_FTR_END \
112 { \
113 .width = 0, \
114 }
115
James Morse70544192016-02-05 14:58:50 +0000116/* meta feature for alternatives */
117static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100118cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused);
119
James Morse70544192016-02-05 14:58:50 +0000120
Suzuki K Poulose4aa8a472017-01-09 17:28:32 +0000121/*
122 * NOTE: Any changes to the visibility of features should be kept in
123 * sync with the documentation of the CPU feature register ABI.
124 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100125static const struct arm64_ftr_bits ftr_id_aa64isar0[] = {
Dongjiu Geng3b3b6812017-12-13 18:13:56 +0800126 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_FHM_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100127 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_DP_SHIFT, 4, 0),
128 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM4_SHIFT, 4, 0),
129 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SM3_SHIFT, 4, 0),
130 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA3_SHIFT, 4, 0),
131 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_RDM_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000132 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_ATOMICS_SHIFT, 4, 0),
133 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_CRC32_SHIFT, 4, 0),
134 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA2_SHIFT, 4, 0),
135 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_SHA1_SHIFT, 4, 0),
136 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR0_AES_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100137 ARM64_FTR_END,
138};
139
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000140static const struct arm64_ftr_bits ftr_id_aa64isar1[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100141 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_LRCPC_SHIFT, 4, 0),
142 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_FCMA_SHIFT, 4, 0),
143 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_JSCVT_SHIFT, 4, 0),
144 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR1_DPB_SHIFT, 4, 0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000145 ARM64_FTR_END,
146};
147
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100148static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = {
Will Deacon179a56f2017-11-27 18:29:30 +0000149 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0),
Will Deacon0f15adb2018-01-03 11:17:58 +0000150 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0),
Dave Martin3fab3992017-12-14 14:03:44 +0000151 ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_SVE),
152 FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000153 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100154 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000155 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
156 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_FP_SHIFT, 4, ID_AA64PFR0_FP_NI),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100157 /* Linux doesn't care about the EL3 */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100158 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
159 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
160 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY),
161 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL0_SHIFT, 4, ID_AA64PFR0_EL0_64BIT_ONLY),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100162 ARM64_FTR_END,
163};
164
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100165static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100166 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
167 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
168 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
169 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100170 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100171 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
172 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
173 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100174 /*
175 * Differing PARange is fine as long as all peripherals and memory are mapped
176 * within the minimum PARange of all CPUs
177 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000178 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100179 ARM64_FTR_END,
180};
181
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100182static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000183 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100184 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
185 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
186 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
187 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
188 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100189 ARM64_FTR_END,
190};
191
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100192static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100193 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
194 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
195 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
196 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
197 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000198 ARM64_FTR_END,
199};
200
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100201static const struct arm64_ftr_bits ftr_ctr[] = {
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600202 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RES1 */
203 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DIC_SHIFT, 1, 1),
204 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_IDC_SHIFT, 1, 1),
205 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_SAFE, CTR_CWG_SHIFT, 4, 0),
206 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_SAFE, CTR_ERG_SHIFT, 4, 0),
207 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, CTR_DMINLINE_SHIFT, 4, 1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100208 /*
209 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100210 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000211 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100212 */
Will Deacon155433c2017-03-10 20:32:22 +0000213 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, 14, 2, ICACHE_POLICY_VIPT), /* L1Ip */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000214 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* IminLine */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100215 ARM64_FTR_END,
216};
217
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100218struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
219 .name = "SYS_CTR_EL0",
220 .ftr_bits = ftr_ctr
221};
222
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100223static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100224 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0xf), /* InnerShr */
225 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0), /* FCSE */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000226 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, 20, 4, 0), /* AuxReg */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100227 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0), /* TCM */
228 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* ShareLvl */
229 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0xf), /* OuterShr */
230 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* PMSA */
231 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* VMSA */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100232 ARM64_FTR_END,
233};
234
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100235static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000236 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 36, 28, 0),
237 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
238 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
239 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
240 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100241 /*
242 * We can instantiate multiple PMU instances with different levels
243 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000244 */
245 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
246 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_TRACEVER_SHIFT, 4, 0),
247 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100248 ARM64_FTR_END,
249};
250
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100251static const struct arm64_ftr_bits ftr_mvfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100252 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* FPMisc */
253 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* SIMDMisc */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100254 ARM64_FTR_END,
255};
256
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100257static const struct arm64_ftr_bits ftr_dczid[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000258 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 4, 1, 1), /* DZP */
259 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* BS */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100260 ARM64_FTR_END,
261};
262
263
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100264static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100265 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
266 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
267 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
268 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
269 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
270 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100271 ARM64_FTR_END,
272};
273
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100274static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100275 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* ac2 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100276 ARM64_FTR_END,
277};
278
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100279static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100280 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* State3 */
281 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0), /* State2 */
282 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* State1 */
283 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* State0 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100284 ARM64_FTR_END,
285};
286
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100287static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000288 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
289 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0xf), /* PerfMon */
290 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
291 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
292 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
293 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
294 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
295 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000296 ARM64_FTR_END,
297};
298
Dave Martin2e0f2472017-10-31 15:51:10 +0000299static const struct arm64_ftr_bits ftr_zcr[] = {
300 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
301 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
302 ARM64_FTR_END,
303};
304
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100305/*
306 * Common ftr bits for a 32bit register with all hidden, strict
307 * attributes, with 4bit feature fields and a default safe value of
308 * 0. Covers the following 32bit registers:
309 * id_isar[0-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
310 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100311static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000312 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
313 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
314 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
315 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
316 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
317 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
318 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
319 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100320 ARM64_FTR_END,
321};
322
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000323/* Table for a single 32bit feature value */
324static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000325 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100326 ARM64_FTR_END,
327};
328
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000329static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100330 ARM64_FTR_END,
331};
332
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100333#define ARM64_FTR_REG(id, table) { \
334 .sys_id = id, \
335 .reg = &(struct arm64_ftr_reg){ \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100336 .name = #id, \
337 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100338 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100339
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100340static const struct __ftr_reg_entry {
341 u32 sys_id;
342 struct arm64_ftr_reg *reg;
343} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100344
345 /* Op1 = 0, CRn = 0, CRm = 1 */
346 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
347 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_generic_32bits),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000348 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100349 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
350 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
351 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
352 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
353
354 /* Op1 = 0, CRn = 0, CRm = 2 */
355 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_generic_32bits),
356 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
357 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
358 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
359 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_generic_32bits),
360 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
361 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
362
363 /* Op1 = 0, CRn = 0, CRm = 3 */
364 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
365 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
366 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
367
368 /* Op1 = 0, CRn = 0, CRm = 4 */
369 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000370 ARM64_FTR_REG(SYS_ID_AA64PFR1_EL1, ftr_raz),
Dave Martin2e0f2472017-10-31 15:51:10 +0000371 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100372
373 /* Op1 = 0, CRn = 0, CRm = 5 */
374 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000375 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100376
377 /* Op1 = 0, CRn = 0, CRm = 6 */
378 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000379 ARM64_FTR_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100380
381 /* Op1 = 0, CRn = 0, CRm = 7 */
382 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
383 ARM64_FTR_REG(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1),
James Morse406e3082016-02-05 14:58:47 +0000384 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100385
Dave Martin2e0f2472017-10-31 15:51:10 +0000386 /* Op1 = 0, CRn = 1, CRm = 2 */
387 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
388
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100389 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100390 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100391 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
392
393 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000394 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100395};
396
397static int search_cmp_ftr_reg(const void *id, const void *regp)
398{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100399 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100400}
401
402/*
403 * get_arm64_ftr_reg - Lookup a feature register entry using its
404 * sys_reg() encoding. With the array arm64_ftr_regs sorted in the
405 * ascending order of sys_id , we use binary search to find a matching
406 * entry.
407 *
408 * returns - Upon success, matching ftr_reg entry for id.
409 * - NULL on failure. It is upto the caller to decide
410 * the impact of a failure.
411 */
412static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
413{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100414 const struct __ftr_reg_entry *ret;
415
416 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100417 arm64_ftr_regs,
418 ARRAY_SIZE(arm64_ftr_regs),
419 sizeof(arm64_ftr_regs[0]),
420 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100421 if (ret)
422 return ret->reg;
423 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100424}
425
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100426static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
427 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100428{
429 u64 mask = arm64_ftr_mask(ftrp);
430
431 reg &= ~mask;
432 reg |= (ftr_val << ftrp->shift) & mask;
433 return reg;
434}
435
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100436static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
437 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100438{
439 s64 ret = 0;
440
441 switch (ftrp->type) {
442 case FTR_EXACT:
443 ret = ftrp->safe_val;
444 break;
445 case FTR_LOWER_SAFE:
446 ret = new < cur ? new : cur;
447 break;
448 case FTR_HIGHER_SAFE:
449 ret = new > cur ? new : cur;
450 break;
451 default:
452 BUG();
453 }
454
455 return ret;
456}
457
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100458static void __init sort_ftr_regs(void)
459{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100460 int i;
461
462 /* Check that the array is sorted so that we can do the binary search */
463 for (i = 1; i < ARRAY_SIZE(arm64_ftr_regs); i++)
464 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100465}
466
467/*
468 * Initialise the CPU feature register from Boot CPU values.
469 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000470 * Any bits that are not covered by an arm64_ftr_bits entry are considered
471 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100472 */
473static void __init init_cpu_ftr_reg(u32 sys_reg, u64 new)
474{
475 u64 val = 0;
476 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000477 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000478 u64 valid_mask = 0;
479
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100480 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100481 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
482
483 BUG_ON(!reg);
484
485 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000486 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100487 s64 ftr_new = arm64_ftr_value(ftrp, new);
488
489 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000490
491 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100492 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000493 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000494 if (ftrp->visible)
495 user_mask |= ftr_mask;
496 else
497 reg->user_val = arm64_ftr_set_value(ftrp,
498 reg->user_val,
499 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100500 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000501
502 val &= valid_mask;
503
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100504 reg->sys_val = val;
505 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000506 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100507}
508
509void __init init_cpu_features(struct cpuinfo_arm64 *info)
510{
511 /* Before we start using the tables, make sure it is sorted */
512 sort_ftr_regs();
513
514 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
515 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
516 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
517 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
518 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
519 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
520 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
521 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
522 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000523 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100524 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
525 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000526 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100527
528 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
529 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
530 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
531 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
532 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
533 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
534 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
535 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
536 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
537 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
538 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
539 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
540 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
541 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
542 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
543 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
544 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
545 }
546
Dave Martin2e0f2472017-10-31 15:51:10 +0000547 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
548 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
549 sve_init_vq_map();
550 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100551}
552
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100553static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100554{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100555 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100556
557 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
558 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
559 s64 ftr_new = arm64_ftr_value(ftrp, new);
560
561 if (ftr_cur == ftr_new)
562 continue;
563 /* Find a safe value */
564 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
565 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
566 }
567
568}
569
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100570static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100571{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100572 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
573
574 BUG_ON(!regp);
575 update_cpu_ftr_reg(regp, val);
576 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
577 return 0;
578 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
579 regp->name, boot, cpu, val);
580 return 1;
581}
582
583/*
584 * Update system wide CPU feature registers with the values from a
585 * non-boot CPU. Also performs SANITY checks to make sure that there
586 * aren't any insane variations from that of the boot CPU.
587 */
588void update_cpu_features(int cpu,
589 struct cpuinfo_arm64 *info,
590 struct cpuinfo_arm64 *boot)
591{
592 int taint = 0;
593
594 /*
595 * The kernel can handle differing I-cache policies, but otherwise
596 * caches should look identical. Userspace JITs will make use of
597 * *minLine.
598 */
599 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
600 info->reg_ctr, boot->reg_ctr);
601
602 /*
603 * Userspace may perform DC ZVA instructions. Mismatched block sizes
604 * could result in too much or too little memory being zeroed if a
605 * process is preempted and migrated between CPUs.
606 */
607 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
608 info->reg_dczid, boot->reg_dczid);
609
610 /* If different, timekeeping will be broken (especially with KVM) */
611 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
612 info->reg_cntfrq, boot->reg_cntfrq);
613
614 /*
615 * The kernel uses self-hosted debug features and expects CPUs to
616 * support identical debug features. We presently need CTX_CMPs, WRPs,
617 * and BRPs to be identical.
618 * ID_AA64DFR1 is currently RES0.
619 */
620 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
621 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
622 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
623 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
624 /*
625 * Even in big.LITTLE, processors should be identical instruction-set
626 * wise.
627 */
628 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
629 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
630 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
631 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
632
633 /*
634 * Differing PARange support is fine as long as all peripherals and
635 * memory are mapped within the minimum PARange of all CPUs.
636 * Linux should not care about secure memory.
637 */
638 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
639 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
640 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
641 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000642 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
643 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100644
645 /*
646 * EL3 is not our concern.
647 * ID_AA64PFR1 is currently RES0.
648 */
649 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
650 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
651 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
652 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
653
Dave Martin2e0f2472017-10-31 15:51:10 +0000654 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
655 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
656
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100657 /*
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100658 * If we have AArch32, we care about 32-bit features for compat.
659 * If the system doesn't support AArch32, don't update them.
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100660 */
Dave Martin46823dd2017-03-23 15:14:39 +0000661 if (id_aa64pfr0_32bit_el0(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100662 id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
663
664 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100665 info->reg_id_dfr0, boot->reg_id_dfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100666 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100667 info->reg_id_isar0, boot->reg_id_isar0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100668 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100669 info->reg_id_isar1, boot->reg_id_isar1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100670 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100671 info->reg_id_isar2, boot->reg_id_isar2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100672 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100673 info->reg_id_isar3, boot->reg_id_isar3);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100674 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100675 info->reg_id_isar4, boot->reg_id_isar4);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100676 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100677 info->reg_id_isar5, boot->reg_id_isar5);
678
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100679 /*
680 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
681 * ACTLR formats could differ across CPUs and therefore would have to
682 * be trapped for virtualization anyway.
683 */
684 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100685 info->reg_id_mmfr0, boot->reg_id_mmfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100686 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100687 info->reg_id_mmfr1, boot->reg_id_mmfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100688 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100689 info->reg_id_mmfr2, boot->reg_id_mmfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100690 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100691 info->reg_id_mmfr3, boot->reg_id_mmfr3);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100692 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100693 info->reg_id_pfr0, boot->reg_id_pfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100694 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100695 info->reg_id_pfr1, boot->reg_id_pfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100696 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100697 info->reg_mvfr0, boot->reg_mvfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100698 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100699 info->reg_mvfr1, boot->reg_mvfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100700 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100701 info->reg_mvfr2, boot->reg_mvfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100702 }
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100703
Dave Martin2e0f2472017-10-31 15:51:10 +0000704 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
705 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
706 info->reg_zcr, boot->reg_zcr);
707
708 /* Probe vector lengths, unless we already gave up on SVE */
709 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
710 !sys_caps_initialised)
711 sve_update_vq_map();
712 }
713
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100714 /*
715 * Mismatched CPU features are a recipe for disaster. Don't even
716 * pretend to support them.
717 */
Will Deacon8dd0ee62017-06-05 11:40:23 +0100718 if (taint) {
719 pr_warn_once("Unsupported CPU feature variation detected.\n");
720 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
721 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100722}
723
Dave Martin46823dd2017-03-23 15:14:39 +0000724u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +0100725{
726 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
727
728 /* We shouldn't get a request for an unsupported register */
729 BUG_ON(!regp);
730 return regp->sys_val;
731}
Marc Zyngier359b7062015-03-27 13:09:23 +0000732
Mark Rutland965861d2017-02-02 17:32:15 +0000733#define read_sysreg_case(r) \
734 case r: return read_sysreg_s(r)
735
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100736/*
Dave Martin46823dd2017-03-23 15:14:39 +0000737 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100738 * Read the system register on the current CPU
739 */
Dave Martin46823dd2017-03-23 15:14:39 +0000740static u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100741{
742 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +0000743 read_sysreg_case(SYS_ID_PFR0_EL1);
744 read_sysreg_case(SYS_ID_PFR1_EL1);
745 read_sysreg_case(SYS_ID_DFR0_EL1);
746 read_sysreg_case(SYS_ID_MMFR0_EL1);
747 read_sysreg_case(SYS_ID_MMFR1_EL1);
748 read_sysreg_case(SYS_ID_MMFR2_EL1);
749 read_sysreg_case(SYS_ID_MMFR3_EL1);
750 read_sysreg_case(SYS_ID_ISAR0_EL1);
751 read_sysreg_case(SYS_ID_ISAR1_EL1);
752 read_sysreg_case(SYS_ID_ISAR2_EL1);
753 read_sysreg_case(SYS_ID_ISAR3_EL1);
754 read_sysreg_case(SYS_ID_ISAR4_EL1);
755 read_sysreg_case(SYS_ID_ISAR5_EL1);
756 read_sysreg_case(SYS_MVFR0_EL1);
757 read_sysreg_case(SYS_MVFR1_EL1);
758 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100759
Mark Rutland965861d2017-02-02 17:32:15 +0000760 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
761 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
762 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
763 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
764 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
765 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
766 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
767 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
768 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100769
Mark Rutland965861d2017-02-02 17:32:15 +0000770 read_sysreg_case(SYS_CNTFRQ_EL0);
771 read_sysreg_case(SYS_CTR_EL0);
772 read_sysreg_case(SYS_DCZID_EL0);
773
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100774 default:
775 BUG();
776 return 0;
777 }
778}
779
Marc Zyngier963fcd42015-09-30 11:50:04 +0100780#include <linux/irqchip/arm-gic-v3.h>
781
Marc Zyngier94a9e042015-06-12 12:06:36 +0100782static bool
James Morse18ffa042015-07-21 13:23:29 +0100783feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
784{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +0000785 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +0100786
787 return val >= entry->min_field_value;
788}
789
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100790static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100791has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100792{
793 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +0100794
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100795 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
796 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +0000797 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100798 else
Dave Martin46823dd2017-03-23 15:14:39 +0000799 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100800
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100801 return feature_matches(val, entry);
802}
James Morse338d4f42015-07-22 19:05:54 +0100803
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100804static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +0100805{
806 bool has_sre;
807
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100808 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +0100809 return false;
810
811 has_sre = gic_enable_sre();
812 if (!has_sre)
813 pr_warn_once("%s present but disabled by higher exception level\n",
814 entry->desc);
815
816 return has_sre;
817}
818
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100819static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +0000820{
821 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +0000822
823 /* Cavium ThunderX pass 1.x and 2.x */
Robert Richterfa5ce3d2017-01-13 14:12:09 +0100824 return MIDR_IS_CPU_MODEL_RANGE(midr, MIDR_THUNDERX,
825 MIDR_CPU_VAR_REV(0, 0),
826 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +0000827}
828
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100829static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
Marc Zyngierd88701b2015-01-29 11:24:05 +0000830{
831 return is_kernel_in_hyp_mode();
832}
833
Marc Zyngierd1745912016-06-30 18:40:42 +0100834static bool hyp_offset_low(const struct arm64_cpu_capabilities *entry,
835 int __unused)
836{
Laura Abbott2077be62017-01-10 13:35:49 -0800837 phys_addr_t idmap_addr = __pa_symbol(__hyp_idmap_text_start);
Marc Zyngierd1745912016-06-30 18:40:42 +0100838
839 /*
840 * Activate the lower HYP offset only if:
841 * - the idmap doesn't clash with it,
842 * - the kernel is not running at EL2.
843 */
844 return idmap_addr > GENMASK(VA_BITS - 2, 0) && !is_kernel_in_hyp_mode();
845}
846
Suzuki K Poulose82e01912016-11-08 13:56:21 +0000847static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
848{
Dave Martin46823dd2017-03-23 15:14:39 +0000849 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +0000850
851 return cpuid_feature_extract_signed_field(pfr0,
852 ID_AA64PFR0_FP_SHIFT) < 0;
853}
854
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600855static bool has_cache_idc(const struct arm64_cpu_capabilities *entry,
856 int __unused)
857{
858 return read_sanitised_ftr_reg(SYS_CTR_EL0) & BIT(CTR_IDC_SHIFT);
859}
860
861static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
862 int __unused)
863{
864 return read_sanitised_ftr_reg(SYS_CTR_EL0) & BIT(CTR_DIC_SHIFT);
865}
866
Will Deaconea1e3de2017-11-14 14:38:19 +0000867#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
868static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
869
870static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
871 int __unused)
872{
Marc Zyngier6dc52b12018-01-29 11:59:56 +0000873 char const *str = "command line option";
Will Deacon179a56f2017-11-27 18:29:30 +0000874 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
875
Marc Zyngier6dc52b12018-01-29 11:59:56 +0000876 /*
877 * For reasons that aren't entirely clear, enabling KPTI on Cavium
878 * ThunderX leads to apparent I-cache corruption of kernel text, which
879 * ends as well as you might imagine. Don't even try.
880 */
881 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_27456)) {
882 str = "ARM64_WORKAROUND_CAVIUM_27456";
883 __kpti_forced = -1;
884 }
885
886 /* Forced? */
Will Deaconea1e3de2017-11-14 14:38:19 +0000887 if (__kpti_forced) {
Marc Zyngier6dc52b12018-01-29 11:59:56 +0000888 pr_info_once("kernel page table isolation forced %s by %s\n",
889 __kpti_forced > 0 ? "ON" : "OFF", str);
Will Deaconea1e3de2017-11-14 14:38:19 +0000890 return __kpti_forced > 0;
891 }
892
893 /* Useful for KASLR robustness */
894 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE))
895 return true;
896
Jayachandran C0ba2e292018-01-19 04:22:48 -0800897 /* Don't force KPTI for CPUs that are not vulnerable */
898 switch (read_cpuid_id() & MIDR_CPU_MODEL_MASK) {
899 case MIDR_CAVIUM_THUNDERX2:
900 case MIDR_BRCM_VULCAN:
901 return false;
902 }
903
Will Deacon179a56f2017-11-27 18:29:30 +0000904 /* Defer to CPU feature registers */
905 return !cpuid_feature_extract_unsigned_field(pfr0,
906 ID_AA64PFR0_CSV3_SHIFT);
Will Deaconea1e3de2017-11-14 14:38:19 +0000907}
908
Will Deaconf992b4d2018-02-06 22:22:50 +0000909static int kpti_install_ng_mappings(void *__unused)
910{
911 typedef void (kpti_remap_fn)(int, int, phys_addr_t);
912 extern kpti_remap_fn idmap_kpti_install_ng_mappings;
913 kpti_remap_fn *remap_fn;
914
915 static bool kpti_applied = false;
916 int cpu = smp_processor_id();
917
918 if (kpti_applied)
919 return 0;
920
921 remap_fn = (void *)__pa_symbol(idmap_kpti_install_ng_mappings);
922
923 cpu_install_idmap();
924 remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));
925 cpu_uninstall_idmap();
926
927 if (!cpu)
928 kpti_applied = true;
929
930 return 0;
931}
932
Will Deaconea1e3de2017-11-14 14:38:19 +0000933static int __init parse_kpti(char *str)
934{
935 bool enabled;
936 int ret = strtobool(str, &enabled);
937
938 if (ret)
939 return ret;
940
941 __kpti_forced = enabled ? 1 : -1;
942 return 0;
943}
944__setup("kpti=", parse_kpti);
945#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
946
James Morse6d99b682018-01-08 15:38:06 +0000947static int cpu_copy_el2regs(void *__unused)
948{
949 /*
950 * Copy register values that aren't redirected by hardware.
951 *
952 * Before code patching, we only set tpidr_el1, all CPUs need to copy
953 * this value to tpidr_el2 before we patch the code. Once we've done
954 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
955 * do anything here.
956 */
957 if (!alternatives_applied)
958 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
959
960 return 0;
961}
962
Marc Zyngier359b7062015-03-27 13:09:23 +0000963static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +0100964 {
965 .desc = "GIC system register CPU interface",
966 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100967 .def_scope = SCOPE_SYSTEM,
Marc Zyngier963fcd42015-09-30 11:50:04 +0100968 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100969 .sys_reg = SYS_ID_AA64PFR0_EL1,
970 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000971 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +0100972 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +0100973 },
James Morse338d4f42015-07-22 19:05:54 +0100974#ifdef CONFIG_ARM64_PAN
975 {
976 .desc = "Privileged Access Never",
977 .capability = ARM64_HAS_PAN,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100978 .def_scope = SCOPE_SYSTEM,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100979 .matches = has_cpuid_feature,
980 .sys_reg = SYS_ID_AA64MMFR1_EL1,
981 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000982 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +0100983 .min_field_value = 1,
984 .enable = cpu_enable_pan,
985 },
986#endif /* CONFIG_ARM64_PAN */
Will Deacon2e94da12015-07-27 16:23:58 +0100987#if defined(CONFIG_AS_LSE) && defined(CONFIG_ARM64_LSE_ATOMICS)
988 {
989 .desc = "LSE atomic instructions",
990 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100991 .def_scope = SCOPE_SYSTEM,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100992 .matches = has_cpuid_feature,
993 .sys_reg = SYS_ID_AA64ISAR0_EL1,
994 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000995 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +0100996 .min_field_value = 2,
997 },
998#endif /* CONFIG_AS_LSE && CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +0000999 {
Will Deacond5370f72016-02-02 12:46:24 +00001000 .desc = "Software prefetching using PRFM",
1001 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001002 .def_scope = SCOPE_SYSTEM,
Will Deacond5370f72016-02-02 12:46:24 +00001003 .matches = has_no_hw_prefetch,
1004 },
James Morse57f49592016-02-05 14:58:48 +00001005#ifdef CONFIG_ARM64_UAO
1006 {
1007 .desc = "User Access Override",
1008 .capability = ARM64_HAS_UAO,
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001009 .def_scope = SCOPE_SYSTEM,
James Morse57f49592016-02-05 14:58:48 +00001010 .matches = has_cpuid_feature,
1011 .sys_reg = SYS_ID_AA64MMFR2_EL1,
1012 .field_pos = ID_AA64MMFR2_UAO_SHIFT,
1013 .min_field_value = 1,
James Morsec8b06e32017-01-09 18:14:02 +00001014 /*
1015 * We rely on stop_machine() calling uao_thread_switch() to set
1016 * UAO immediately after patching.
1017 */
James Morse57f49592016-02-05 14:58:48 +00001018 },
1019#endif /* CONFIG_ARM64_UAO */
James Morse70544192016-02-05 14:58:50 +00001020#ifdef CONFIG_ARM64_PAN
1021 {
1022 .capability = ARM64_ALT_PAN_NOT_UAO,
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001023 .def_scope = SCOPE_SYSTEM,
James Morse70544192016-02-05 14:58:50 +00001024 .matches = cpufeature_pan_not_uao,
1025 },
1026#endif /* CONFIG_ARM64_PAN */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001027 {
Marc Zyngierd88701b2015-01-29 11:24:05 +00001028 .desc = "Virtualization Host Extensions",
1029 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001030 .def_scope = SCOPE_SYSTEM,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001031 .matches = runs_at_el2,
James Morse6d99b682018-01-08 15:38:06 +00001032 .enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +00001033 },
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001034 {
1035 .desc = "32-bit EL0 Support",
1036 .capability = ARM64_HAS_32BIT_EL0,
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001037 .def_scope = SCOPE_SYSTEM,
Suzuki K Poulose042446a2016-04-18 10:28:36 +01001038 .matches = has_cpuid_feature,
1039 .sys_reg = SYS_ID_AA64PFR0_EL1,
1040 .sign = FTR_UNSIGNED,
1041 .field_pos = ID_AA64PFR0_EL0_SHIFT,
1042 .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT,
1043 },
Marc Zyngierd1745912016-06-30 18:40:42 +01001044 {
1045 .desc = "Reduced HYP mapping offset",
1046 .capability = ARM64_HYP_OFFSET_LOW,
1047 .def_scope = SCOPE_SYSTEM,
1048 .matches = hyp_offset_low,
1049 },
Will Deaconea1e3de2017-11-14 14:38:19 +00001050#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1051 {
Will Deacon179a56f2017-11-27 18:29:30 +00001052 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00001053 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
1054 .def_scope = SCOPE_SYSTEM,
1055 .matches = unmap_kernel_at_el0,
Will Deaconf992b4d2018-02-06 22:22:50 +00001056 .enable = kpti_install_ng_mappings,
Will Deaconea1e3de2017-11-14 14:38:19 +00001057 },
1058#endif
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001059 {
1060 /* FP/SIMD is not implemented */
1061 .capability = ARM64_HAS_NO_FPSIMD,
1062 .def_scope = SCOPE_SYSTEM,
1063 .min_field_value = 0,
1064 .matches = has_no_fpsimd,
1065 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001066#ifdef CONFIG_ARM64_PMEM
1067 {
1068 .desc = "Data cache clean to Point of Persistence",
1069 .capability = ARM64_HAS_DCPOP,
1070 .def_scope = SCOPE_SYSTEM,
1071 .matches = has_cpuid_feature,
1072 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1073 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1074 .min_field_value = 1,
1075 },
1076#endif
Dave Martin43994d82017-10-31 15:51:19 +00001077#ifdef CONFIG_ARM64_SVE
1078 {
1079 .desc = "Scalable Vector Extension",
1080 .capability = ARM64_SVE,
1081 .def_scope = SCOPE_SYSTEM,
1082 .sys_reg = SYS_ID_AA64PFR0_EL1,
1083 .sign = FTR_UNSIGNED,
1084 .field_pos = ID_AA64PFR0_SVE_SHIFT,
1085 .min_field_value = ID_AA64PFR0_SVE,
1086 .matches = has_cpuid_feature,
1087 .enable = sve_kernel_enable,
1088 },
1089#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00001090#ifdef CONFIG_ARM64_RAS_EXTN
1091 {
1092 .desc = "RAS Extension Support",
1093 .capability = ARM64_HAS_RAS_EXTN,
1094 .def_scope = SCOPE_SYSTEM,
1095 .matches = has_cpuid_feature,
1096 .sys_reg = SYS_ID_AA64PFR0_EL1,
1097 .sign = FTR_UNSIGNED,
1098 .field_pos = ID_AA64PFR0_RAS_SHIFT,
1099 .min_field_value = ID_AA64PFR0_RAS_V1,
James Morse68ddbf02018-01-15 19:38:59 +00001100 .enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00001101 },
1102#endif /* CONFIG_ARM64_RAS_EXTN */
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -06001103 {
1104 .desc = "Data cache clean to the PoU not required for I/D coherence",
1105 .capability = ARM64_HAS_CACHE_IDC,
1106 .def_scope = SCOPE_SYSTEM,
1107 .matches = has_cache_idc,
1108 },
1109 {
1110 .desc = "Instruction cache invalidation not required for I/D coherence",
1111 .capability = ARM64_HAS_CACHE_DIC,
1112 .def_scope = SCOPE_SYSTEM,
1113 .matches = has_cache_dic,
1114 },
Marc Zyngier359b7062015-03-27 13:09:23 +00001115 {},
1116};
1117
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001118#define HWCAP_CAP(reg, field, s, min_value, type, cap) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001119 { \
1120 .desc = #cap, \
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001121 .def_scope = SCOPE_SYSTEM, \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001122 .matches = has_cpuid_feature, \
1123 .sys_reg = reg, \
1124 .field_pos = field, \
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001125 .sign = s, \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001126 .min_field_value = min_value, \
1127 .hwcap_type = type, \
1128 .hwcap = cap, \
1129 }
1130
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001131static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001132 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, HWCAP_PMULL),
1133 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_AES),
1134 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SHA1),
1135 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SHA2),
Suzuki K Poulosef5e035f2017-10-11 14:01:02 +01001136 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA2_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, HWCAP_SHA512),
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001137 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_CRC32),
1138 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_ATOMICS_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, HWCAP_ATOMICS),
Suzuki K Poulosef92f5ce02017-01-12 16:37:28 +00001139 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_RDM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_ASIMDRDM),
Suzuki K Poulosef5e035f2017-10-11 14:01:02 +01001140 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SHA3),
1141 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SM3),
1142 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SM4),
1143 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_ASIMDDP),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +08001144 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_FHM_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_ASIMDFHM),
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001145 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, HWCAP_FP),
Suzuki K Poulosebf500612016-01-26 15:52:46 +00001146 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_FP_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, HWCAP_FPHP),
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001147 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 0, CAP_HWCAP, HWCAP_ASIMD),
Suzuki K Poulosebf500612016-01-26 15:52:46 +00001148 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, HWCAP_ASIMDHP),
Robin Murphy7aac4052017-07-25 11:55:40 +01001149 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_DPB_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_DCPOP),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +00001150 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_JSCVT_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_JSCVT),
Suzuki K Poulosecb567e72017-03-14 18:13:26 +00001151 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_FCMA_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_FCMA),
Suzuki K Poulosec651aae2017-03-14 18:13:27 +00001152 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_LRCPC),
Dave Martin43994d82017-10-31 15:51:19 +00001153#ifdef CONFIG_ARM64_SVE
1154 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_SVE_SHIFT, FTR_UNSIGNED, ID_AA64PFR0_SVE, CAP_HWCAP, HWCAP_SVE),
1155#endif
Suzuki K Poulose75283502016-04-18 10:28:33 +01001156 {},
1157};
1158
1159static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001160#ifdef CONFIG_COMPAT
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001161 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
1162 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
1163 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
1164 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
1165 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 +01001166#endif
1167 {},
1168};
1169
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001170static void __init cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001171{
1172 switch (cap->hwcap_type) {
1173 case CAP_HWCAP:
1174 elf_hwcap |= cap->hwcap;
1175 break;
1176#ifdef CONFIG_COMPAT
1177 case CAP_COMPAT_HWCAP:
1178 compat_elf_hwcap |= (u32)cap->hwcap;
1179 break;
1180 case CAP_COMPAT_HWCAP2:
1181 compat_elf_hwcap2 |= (u32)cap->hwcap;
1182 break;
1183#endif
1184 default:
1185 WARN_ON(1);
1186 break;
1187 }
1188}
1189
1190/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001191static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001192{
1193 bool rc;
1194
1195 switch (cap->hwcap_type) {
1196 case CAP_HWCAP:
1197 rc = (elf_hwcap & cap->hwcap) != 0;
1198 break;
1199#ifdef CONFIG_COMPAT
1200 case CAP_COMPAT_HWCAP:
1201 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
1202 break;
1203 case CAP_COMPAT_HWCAP2:
1204 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
1205 break;
1206#endif
1207 default:
1208 WARN_ON(1);
1209 rc = false;
1210 }
1211
1212 return rc;
1213}
1214
Suzuki K Poulose75283502016-04-18 10:28:33 +01001215static void __init setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001216{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001217 /* We support emulation of accesses to CPU ID feature registers */
1218 elf_hwcap |= HWCAP_CPUID;
Suzuki K Poulose75283502016-04-18 10:28:33 +01001219 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001220 if (hwcaps->matches(hwcaps, hwcaps->def_scope))
Suzuki K Poulose75283502016-04-18 10:28:33 +01001221 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001222}
1223
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001224/*
1225 * Check if the current CPU has a given feature capability.
1226 * Should be called from non-preemptible context.
1227 */
1228static bool __this_cpu_has_cap(const struct arm64_cpu_capabilities *cap_array,
1229 unsigned int cap)
1230{
1231 const struct arm64_cpu_capabilities *caps;
1232
1233 if (WARN_ON(preemptible()))
1234 return false;
1235
James Morseedf298c2018-01-15 19:38:54 +00001236 for (caps = cap_array; caps->matches; caps++)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001237 if (caps->capability == cap &&
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001238 caps->matches(caps, SCOPE_LOCAL_CPU))
1239 return true;
1240 return false;
1241}
1242
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001243void update_cpu_capabilities(const struct arm64_cpu_capabilities *caps,
Marc Zyngier359b7062015-03-27 13:09:23 +00001244 const char *info)
1245{
Suzuki K Poulose75283502016-04-18 10:28:33 +01001246 for (; caps->matches; caps++) {
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001247 if (!caps->matches(caps, caps->def_scope))
Marc Zyngier359b7062015-03-27 13:09:23 +00001248 continue;
1249
Suzuki K Poulose75283502016-04-18 10:28:33 +01001250 if (!cpus_have_cap(caps->capability) && caps->desc)
1251 pr_info("%s %s\n", info, caps->desc);
1252 cpus_set_cap(caps->capability);
Marc Zyngier359b7062015-03-27 13:09:23 +00001253 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001254}
James Morse1c076302015-07-21 13:23:28 +01001255
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001256/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001257 * Run through the enabled capabilities and enable() it on all active
1258 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001259 */
Andre Przywara8e231852016-06-28 18:07:30 +01001260void __init enable_cpu_capabilities(const struct arm64_cpu_capabilities *caps)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001261{
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001262 for (; caps->matches; caps++) {
1263 unsigned int num = caps->capability;
1264
1265 if (!cpus_have_cap(num))
1266 continue;
1267
1268 /* Ensure cpus_have_const_cap(num) works */
1269 static_branch_enable(&cpu_hwcap_keys[num]);
1270
1271 if (caps->enable) {
James Morse2a6dcb22016-10-18 11:27:46 +01001272 /*
1273 * Use stop_machine() as it schedules the work allowing
1274 * us to modify PSTATE, instead of on_each_cpu() which
1275 * uses an IPI, giving us a PSTATE that disappears when
1276 * we return.
1277 */
Will Deacon0a0d111d2018-01-02 21:37:25 +00001278 stop_machine(caps->enable, (void *)caps, cpu_online_mask);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001279 }
1280 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001281}
1282
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001283/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001284 * Check for CPU features that are used in early boot
1285 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001286 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001287static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00001288{
Suzuki K Pouloseac1ad202016-04-13 14:41:33 +01001289 verify_cpu_run_el();
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001290 verify_cpu_asid_bits();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001291}
1292
Suzuki K Poulose75283502016-04-18 10:28:33 +01001293static void
1294verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
1295{
1296
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001297 for (; caps->matches; caps++)
1298 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01001299 pr_crit("CPU%d: missing HWCAP: %s\n",
1300 smp_processor_id(), caps->desc);
1301 cpu_die_early();
1302 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01001303}
1304
1305static void
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001306verify_local_cpu_features(const struct arm64_cpu_capabilities *caps_list)
Suzuki K Poulose75283502016-04-18 10:28:33 +01001307{
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001308 const struct arm64_cpu_capabilities *caps = caps_list;
Suzuki K Poulose75283502016-04-18 10:28:33 +01001309 for (; caps->matches; caps++) {
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001310 if (!cpus_have_cap(caps->capability))
Suzuki K Poulose75283502016-04-18 10:28:33 +01001311 continue;
1312 /*
1313 * If the new CPU misses an advertised feature, we cannot proceed
1314 * further, park the cpu.
1315 */
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001316 if (!__this_cpu_has_cap(caps_list, caps->capability)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01001317 pr_crit("CPU%d: missing feature: %s\n",
1318 smp_processor_id(), caps->desc);
1319 cpu_die_early();
1320 }
1321 if (caps->enable)
Will Deacon0a0d111d2018-01-02 21:37:25 +00001322 caps->enable((void *)caps);
Suzuki K Poulose75283502016-04-18 10:28:33 +01001323 }
1324}
1325
Dave Martin2e0f2472017-10-31 15:51:10 +00001326static void verify_sve_features(void)
1327{
1328 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
1329 u64 zcr = read_zcr_features();
1330
1331 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
1332 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
1333
1334 if (len < safe_len || sve_verify_vq_map()) {
1335 pr_crit("CPU%d: SVE: required vector length(s) missing\n",
1336 smp_processor_id());
1337 cpu_die_early();
1338 }
1339
1340 /* Add checks on other ZCR bits here if necessary */
1341}
1342
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001343/*
1344 * Run through the enabled system capabilities and enable() it on this CPU.
1345 * The capabilities were decided based on the available CPUs at the boot time.
1346 * Any new CPU should match the system wide status of the capability. If the
1347 * new CPU doesn't have a capability which the system now has enabled, we
1348 * cannot do anything to fix it up and could cause unexpected failures. So
1349 * we park the CPU.
1350 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01001351static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001352{
Suzuki K Poulose89ba2642016-09-09 14:07:09 +01001353 verify_local_cpu_errata_workarounds();
Suzuki K Poulose75283502016-04-18 10:28:33 +01001354 verify_local_cpu_features(arm64_features);
1355 verify_local_elf_hwcaps(arm64_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00001356
Suzuki K Poulose643d7032016-04-18 10:28:37 +01001357 if (system_supports_32bit_el0())
1358 verify_local_elf_hwcaps(compat_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00001359
1360 if (system_supports_sve())
1361 verify_sve_features();
Marc Zyngier359b7062015-03-27 13:09:23 +00001362}
1363
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01001364void check_local_cpu_capabilities(void)
1365{
1366 /*
1367 * All secondary CPUs should conform to the early CPU features
1368 * in use by the kernel based on boot CPU.
1369 */
1370 check_early_cpu_features();
1371
1372 /*
1373 * If we haven't finalised the system capabilities, this CPU gets
1374 * a chance to update the errata work arounds.
1375 * Otherwise, this CPU should verify that it has all the system
1376 * advertised capabilities.
1377 */
1378 if (!sys_caps_initialised)
1379 update_cpu_errata_workarounds();
1380 else
1381 verify_local_cpu_capabilities();
1382}
1383
Jisheng Zhanga7c61a32015-11-20 17:59:10 +08001384static void __init setup_feature_capabilities(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00001385{
Kees Cooke0f6429d2018-02-21 10:18:22 -08001386 update_cpu_capabilities(arm64_features, "detected:");
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001387 enable_cpu_capabilities(arm64_features);
Marc Zyngier359b7062015-03-27 13:09:23 +00001388}
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001389
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001390DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready);
1391EXPORT_SYMBOL(arm64_const_caps_ready);
1392
1393static void __init mark_const_caps_ready(void)
1394{
1395 static_branch_enable(&arm64_const_caps_ready);
1396}
1397
Marc Zyngier8f4137582017-01-30 15:39:52 +00001398extern const struct arm64_cpu_capabilities arm64_errata[];
1399
1400bool this_cpu_has_cap(unsigned int cap)
1401{
1402 return (__this_cpu_has_cap(arm64_features, cap) ||
1403 __this_cpu_has_cap(arm64_errata, cap));
1404}
1405
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001406void __init setup_cpu_features(void)
1407{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001408 u32 cwg;
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001409
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001410 /* Set the CPU feature capabilies */
1411 setup_feature_capabilities();
Andre Przywara8e231852016-06-28 18:07:30 +01001412 enable_errata_workarounds();
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001413 mark_const_caps_ready();
Suzuki K Poulose75283502016-04-18 10:28:33 +01001414 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01001415
1416 if (system_supports_32bit_el0())
1417 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001418
Kees Cook2e6f5492018-02-21 10:18:21 -08001419 if (system_uses_ttbr0_pan())
1420 pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
1421
Dave Martin2e0f2472017-10-31 15:51:10 +00001422 sve_setup();
1423
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001424 /* Advertise that we have computed the system capabilities */
1425 set_sys_caps_initialised();
1426
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001427 /*
1428 * Check for sane CTR_EL0.CWG value.
1429 */
1430 cwg = cache_type_cwg();
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001431 if (!cwg)
Catalin Marinas1f85b422018-02-28 18:47:20 +00001432 pr_warn("No Cache Writeback Granule information, assuming %d\n",
1433 ARCH_DMA_MINALIGN);
Marc Zyngier359b7062015-03-27 13:09:23 +00001434}
James Morse70544192016-02-05 14:58:50 +00001435
1436static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001437cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused)
James Morse70544192016-02-05 14:58:50 +00001438{
Suzuki K Poulosea4023f682016-11-08 13:56:20 +00001439 return (cpus_have_const_cap(ARM64_HAS_PAN) && !cpus_have_const_cap(ARM64_HAS_UAO));
James Morse70544192016-02-05 14:58:50 +00001440}
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001441
1442/*
1443 * We emulate only the following system register space.
1444 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
1445 * See Table C5-6 System instruction encodings for System register accesses,
1446 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
1447 */
1448static inline bool __attribute_const__ is_emulated(u32 id)
1449{
1450 return (sys_reg_Op0(id) == 0x3 &&
1451 sys_reg_CRn(id) == 0x0 &&
1452 sys_reg_Op1(id) == 0x0 &&
1453 (sys_reg_CRm(id) == 0 ||
1454 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
1455}
1456
1457/*
1458 * With CRm == 0, reg should be one of :
1459 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
1460 */
1461static inline int emulate_id_reg(u32 id, u64 *valp)
1462{
1463 switch (id) {
1464 case SYS_MIDR_EL1:
1465 *valp = read_cpuid_id();
1466 break;
1467 case SYS_MPIDR_EL1:
1468 *valp = SYS_MPIDR_SAFE_VAL;
1469 break;
1470 case SYS_REVIDR_EL1:
1471 /* IMPLEMENTATION DEFINED values are emulated with 0 */
1472 *valp = 0;
1473 break;
1474 default:
1475 return -EINVAL;
1476 }
1477
1478 return 0;
1479}
1480
1481static int emulate_sys_reg(u32 id, u64 *valp)
1482{
1483 struct arm64_ftr_reg *regp;
1484
1485 if (!is_emulated(id))
1486 return -EINVAL;
1487
1488 if (sys_reg_CRm(id) == 0)
1489 return emulate_id_reg(id, valp);
1490
1491 regp = get_arm64_ftr_reg(id);
1492 if (regp)
1493 *valp = arm64_ftr_reg_user_value(regp);
1494 else
1495 /*
1496 * The untracked registers are either IMPLEMENTATION DEFINED
1497 * (e.g, ID_AFR0_EL1) or reserved RAZ.
1498 */
1499 *valp = 0;
1500 return 0;
1501}
1502
1503static int emulate_mrs(struct pt_regs *regs, u32 insn)
1504{
1505 int rc;
1506 u32 sys_reg, dst;
1507 u64 val;
1508
1509 /*
1510 * sys_reg values are defined as used in mrs/msr instruction.
1511 * shift the imm value to get the encoding.
1512 */
1513 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
1514 rc = emulate_sys_reg(sys_reg, &val);
1515 if (!rc) {
1516 dst = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
Mark Rutland521c6462017-02-09 15:19:20 +00001517 pt_regs_write_reg(regs, dst, val);
Julien Thierry6436bee2017-10-25 10:04:33 +01001518 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001519 }
1520
1521 return rc;
1522}
1523
1524static struct undef_hook mrs_hook = {
1525 .instr_mask = 0xfff00000,
1526 .instr_val = 0xd5300000,
1527 .pstate_mask = COMPAT_PSR_MODE_MASK,
1528 .pstate_val = PSR_MODE_EL0t,
1529 .fn = emulate_mrs,
1530};
1531
1532static int __init enable_mrs_emulation(void)
1533{
1534 register_undef_hook(&mrs_hook);
1535 return 0;
1536}
1537
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01001538core_initcall(enable_mrs_emulation);
James Morse68ddbf02018-01-15 19:38:59 +00001539
1540int cpu_clear_disr(void *__unused)
1541{
1542 /* Firmware may have left a deferred SError in this register. */
1543 write_sysreg_s(0, SYS_DISR_EL1);
1544
1545 return 0;
1546}