blob: 4b6f9051cf0c2b2c33454f1504e417286cc803f5 [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 Martin43994d82017-10-31 15:51:19 +0000151 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_SVE_SHIFT, 4, 0),
Xie XiuQi64c02722018-01-15 19:38:56 +0000152 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_RAS_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100153 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_GIC_SHIFT, 4, 0),
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000154 S_ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_ASIMD_SHIFT, 4, ID_AA64PFR0_ASIMD_NI),
155 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 +0100156 /* Linux doesn't care about the EL3 */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100157 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL3_SHIFT, 4, 0),
158 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL2_SHIFT, 4, 0),
159 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64PFR0_EL1_SHIFT, 4, ID_AA64PFR0_EL1_64BIT_ONLY),
160 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 +0100161 ARM64_FTR_END,
162};
163
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100164static const struct arm64_ftr_bits ftr_id_aa64mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100165 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN4_SHIFT, 4, ID_AA64MMFR0_TGRAN4_NI),
166 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN64_SHIFT, 4, ID_AA64MMFR0_TGRAN64_NI),
167 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_TGRAN16_SHIFT, 4, ID_AA64MMFR0_TGRAN16_NI),
168 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL0_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100169 /* Linux shouldn't care about secure memory */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100170 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_SNSMEM_SHIFT, 4, 0),
171 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_BIGENDEL_SHIFT, 4, 0),
172 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_ASID_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100173 /*
174 * Differing PARange is fine as long as all peripherals and memory are mapped
175 * within the minimum PARange of all CPUs
176 */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000177 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64MMFR0_PARANGE_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100178 ARM64_FTR_END,
179};
180
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100181static const struct arm64_ftr_bits ftr_id_aa64mmfr1[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000182 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_PAN_SHIFT, 4, 0),
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100183 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_LOR_SHIFT, 4, 0),
184 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HPD_SHIFT, 4, 0),
185 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VHE_SHIFT, 4, 0),
186 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_VMIDBITS_SHIFT, 4, 0),
187 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR1_HADBS_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100188 ARM64_FTR_END,
189};
190
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100191static const struct arm64_ftr_bits ftr_id_aa64mmfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100192 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LVA_SHIFT, 4, 0),
193 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_IESB_SHIFT, 4, 0),
194 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_LSM_SHIFT, 4, 0),
195 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_UAO_SHIFT, 4, 0),
196 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64MMFR2_CNP_SHIFT, 4, 0),
James Morse406e3082016-02-05 14:58:47 +0000197 ARM64_FTR_END,
198};
199
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100200static const struct arm64_ftr_bits ftr_ctr[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000201 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 31, 1, 1), /* RAO */
202 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_HIGHER_SAFE, 24, 4, 0), /* CWG */
203 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0), /* ERG */
204 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 1), /* DminLine */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100205 /*
206 * Linux can handle differing I-cache policies. Userspace JITs will
Suzuki K Pouloseee7bc632016-09-09 14:07:08 +0100207 * make use of *minLine.
Will Deacon155433c2017-03-10 20:32:22 +0000208 * If we have differing I-cache policies, report it as the weakest - VIPT.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100209 */
Will Deacon155433c2017-03-10 20:32:22 +0000210 ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_EXACT, 14, 2, ICACHE_POLICY_VIPT), /* L1Ip */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000211 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* IminLine */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100212 ARM64_FTR_END,
213};
214
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100215struct arm64_ftr_reg arm64_ftr_reg_ctrel0 = {
216 .name = "SYS_CTR_EL0",
217 .ftr_bits = ftr_ctr
218};
219
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100220static const struct arm64_ftr_bits ftr_id_mmfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100221 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0xf), /* InnerShr */
222 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0), /* FCSE */
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000223 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, 20, 4, 0), /* AuxReg */
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100224 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0), /* TCM */
225 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* ShareLvl */
226 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0xf), /* OuterShr */
227 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* PMSA */
228 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* VMSA */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100229 ARM64_FTR_END,
230};
231
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100232static const struct arm64_ftr_bits ftr_id_aa64dfr0[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000233 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 36, 28, 0),
234 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64DFR0_PMSVER_SHIFT, 4, 0),
235 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_CTX_CMPS_SHIFT, 4, 0),
236 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_WRPS_SHIFT, 4, 0),
237 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64DFR0_BRPS_SHIFT, 4, 0),
Will Deaconb20d1ba2016-07-25 16:17:52 +0100238 /*
239 * We can instantiate multiple PMU instances with different levels
240 * of support.
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000241 */
242 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_EXACT, ID_AA64DFR0_PMUVER_SHIFT, 4, 0),
243 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_TRACEVER_SHIFT, 4, 0),
244 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, ID_AA64DFR0_DEBUGVER_SHIFT, 4, 0x6),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100245 ARM64_FTR_END,
246};
247
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100248static const struct arm64_ftr_bits ftr_mvfr2[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100249 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* FPMisc */
250 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* SIMDMisc */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100251 ARM64_FTR_END,
252};
253
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100254static const struct arm64_ftr_bits ftr_dczid[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000255 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, 4, 1, 1), /* DZP */
256 ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* BS */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100257 ARM64_FTR_END,
258};
259
260
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100261static const struct arm64_ftr_bits ftr_id_isar5[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100262 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_RDM_SHIFT, 4, 0),
263 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_CRC32_SHIFT, 4, 0),
264 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA2_SHIFT, 4, 0),
265 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SHA1_SHIFT, 4, 0),
266 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_AES_SHIFT, 4, 0),
267 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_ISAR5_SEVL_SHIFT, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100268 ARM64_FTR_END,
269};
270
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100271static const struct arm64_ftr_bits ftr_id_mmfr4[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100272 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* ac2 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100273 ARM64_FTR_END,
274};
275
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100276static const struct arm64_ftr_bits ftr_id_pfr0[] = {
Suzuki K Poulose5bdecb72017-10-19 16:39:02 +0100277 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0), /* State3 */
278 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0), /* State2 */
279 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0), /* State1 */
280 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0), /* State0 */
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100281 ARM64_FTR_END,
282};
283
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100284static const struct arm64_ftr_bits ftr_id_dfr0[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000285 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
286 S_ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0xf), /* PerfMon */
287 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
288 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
289 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
290 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
291 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
292 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000293 ARM64_FTR_END,
294};
295
Dave Martin2e0f2472017-10-31 15:51:10 +0000296static const struct arm64_ftr_bits ftr_zcr[] = {
297 ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE,
298 ZCR_ELx_LEN_SHIFT, ZCR_ELx_LEN_SIZE, 0), /* LEN */
299 ARM64_FTR_END,
300};
301
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100302/*
303 * Common ftr bits for a 32bit register with all hidden, strict
304 * attributes, with 4bit feature fields and a default safe value of
305 * 0. Covers the following 32bit registers:
306 * id_isar[0-4], id_mmfr[1-3], id_pfr1, mvfr[0-1]
307 */
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100308static const struct arm64_ftr_bits ftr_generic_32bits[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000309 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 28, 4, 0),
310 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 24, 4, 0),
311 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 20, 4, 0),
312 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 16, 4, 0),
313 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 12, 4, 0),
314 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 8, 4, 0),
315 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 4, 4, 0),
316 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, 0, 4, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100317 ARM64_FTR_END,
318};
319
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000320/* Table for a single 32bit feature value */
321static const struct arm64_ftr_bits ftr_single32[] = {
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000322 ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_EXACT, 0, 32, 0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100323 ARM64_FTR_END,
324};
325
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000326static const struct arm64_ftr_bits ftr_raz[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100327 ARM64_FTR_END,
328};
329
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100330#define ARM64_FTR_REG(id, table) { \
331 .sys_id = id, \
332 .reg = &(struct arm64_ftr_reg){ \
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100333 .name = #id, \
334 .ftr_bits = &((table)[0]), \
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100335 }}
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100336
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100337static const struct __ftr_reg_entry {
338 u32 sys_id;
339 struct arm64_ftr_reg *reg;
340} arm64_ftr_regs[] = {
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100341
342 /* Op1 = 0, CRn = 0, CRm = 1 */
343 ARM64_FTR_REG(SYS_ID_PFR0_EL1, ftr_id_pfr0),
344 ARM64_FTR_REG(SYS_ID_PFR1_EL1, ftr_generic_32bits),
Suzuki K Poulosee5343502016-01-26 10:58:13 +0000345 ARM64_FTR_REG(SYS_ID_DFR0_EL1, ftr_id_dfr0),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100346 ARM64_FTR_REG(SYS_ID_MMFR0_EL1, ftr_id_mmfr0),
347 ARM64_FTR_REG(SYS_ID_MMFR1_EL1, ftr_generic_32bits),
348 ARM64_FTR_REG(SYS_ID_MMFR2_EL1, ftr_generic_32bits),
349 ARM64_FTR_REG(SYS_ID_MMFR3_EL1, ftr_generic_32bits),
350
351 /* Op1 = 0, CRn = 0, CRm = 2 */
352 ARM64_FTR_REG(SYS_ID_ISAR0_EL1, ftr_generic_32bits),
353 ARM64_FTR_REG(SYS_ID_ISAR1_EL1, ftr_generic_32bits),
354 ARM64_FTR_REG(SYS_ID_ISAR2_EL1, ftr_generic_32bits),
355 ARM64_FTR_REG(SYS_ID_ISAR3_EL1, ftr_generic_32bits),
356 ARM64_FTR_REG(SYS_ID_ISAR4_EL1, ftr_generic_32bits),
357 ARM64_FTR_REG(SYS_ID_ISAR5_EL1, ftr_id_isar5),
358 ARM64_FTR_REG(SYS_ID_MMFR4_EL1, ftr_id_mmfr4),
359
360 /* Op1 = 0, CRn = 0, CRm = 3 */
361 ARM64_FTR_REG(SYS_MVFR0_EL1, ftr_generic_32bits),
362 ARM64_FTR_REG(SYS_MVFR1_EL1, ftr_generic_32bits),
363 ARM64_FTR_REG(SYS_MVFR2_EL1, ftr_mvfr2),
364
365 /* Op1 = 0, CRn = 0, CRm = 4 */
366 ARM64_FTR_REG(SYS_ID_AA64PFR0_EL1, ftr_id_aa64pfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000367 ARM64_FTR_REG(SYS_ID_AA64PFR1_EL1, ftr_raz),
Dave Martin2e0f2472017-10-31 15:51:10 +0000368 ARM64_FTR_REG(SYS_ID_AA64ZFR0_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100369
370 /* Op1 = 0, CRn = 0, CRm = 5 */
371 ARM64_FTR_REG(SYS_ID_AA64DFR0_EL1, ftr_id_aa64dfr0),
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000372 ARM64_FTR_REG(SYS_ID_AA64DFR1_EL1, ftr_raz),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100373
374 /* Op1 = 0, CRn = 0, CRm = 6 */
375 ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0),
Suzuki K Poulosec8c37982017-03-14 18:13:25 +0000376 ARM64_FTR_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100377
378 /* Op1 = 0, CRn = 0, CRm = 7 */
379 ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0),
380 ARM64_FTR_REG(SYS_ID_AA64MMFR1_EL1, ftr_id_aa64mmfr1),
James Morse406e3082016-02-05 14:58:47 +0000381 ARM64_FTR_REG(SYS_ID_AA64MMFR2_EL1, ftr_id_aa64mmfr2),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100382
Dave Martin2e0f2472017-10-31 15:51:10 +0000383 /* Op1 = 0, CRn = 1, CRm = 2 */
384 ARM64_FTR_REG(SYS_ZCR_EL1, ftr_zcr),
385
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100386 /* Op1 = 3, CRn = 0, CRm = 0 */
Ard Biesheuvel675b0562016-08-31 11:31:10 +0100387 { SYS_CTR_EL0, &arm64_ftr_reg_ctrel0 },
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100388 ARM64_FTR_REG(SYS_DCZID_EL0, ftr_dczid),
389
390 /* Op1 = 3, CRn = 14, CRm = 0 */
Suzuki K Pouloseeab43e82017-01-09 17:28:26 +0000391 ARM64_FTR_REG(SYS_CNTFRQ_EL0, ftr_single32),
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100392};
393
394static int search_cmp_ftr_reg(const void *id, const void *regp)
395{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100396 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100397}
398
399/*
400 * get_arm64_ftr_reg - Lookup a feature register entry using its
401 * sys_reg() encoding. With the array arm64_ftr_regs sorted in the
402 * ascending order of sys_id , we use binary search to find a matching
403 * entry.
404 *
405 * returns - Upon success, matching ftr_reg entry for id.
406 * - NULL on failure. It is upto the caller to decide
407 * the impact of a failure.
408 */
409static struct arm64_ftr_reg *get_arm64_ftr_reg(u32 sys_id)
410{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100411 const struct __ftr_reg_entry *ret;
412
413 ret = bsearch((const void *)(unsigned long)sys_id,
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100414 arm64_ftr_regs,
415 ARRAY_SIZE(arm64_ftr_regs),
416 sizeof(arm64_ftr_regs[0]),
417 search_cmp_ftr_reg);
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100418 if (ret)
419 return ret->reg;
420 return NULL;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100421}
422
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100423static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg,
424 s64 ftr_val)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100425{
426 u64 mask = arm64_ftr_mask(ftrp);
427
428 reg &= ~mask;
429 reg |= (ftr_val << ftrp->shift) & mask;
430 return reg;
431}
432
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100433static s64 arm64_ftr_safe_value(const struct arm64_ftr_bits *ftrp, s64 new,
434 s64 cur)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100435{
436 s64 ret = 0;
437
438 switch (ftrp->type) {
439 case FTR_EXACT:
440 ret = ftrp->safe_val;
441 break;
442 case FTR_LOWER_SAFE:
443 ret = new < cur ? new : cur;
444 break;
445 case FTR_HIGHER_SAFE:
446 ret = new > cur ? new : cur;
447 break;
448 default:
449 BUG();
450 }
451
452 return ret;
453}
454
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100455static void __init sort_ftr_regs(void)
456{
Ard Biesheuvel6f2b7ee2016-08-31 11:31:09 +0100457 int i;
458
459 /* Check that the array is sorted so that we can do the binary search */
460 for (i = 1; i < ARRAY_SIZE(arm64_ftr_regs); i++)
461 BUG_ON(arm64_ftr_regs[i].sys_id < arm64_ftr_regs[i - 1].sys_id);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100462}
463
464/*
465 * Initialise the CPU feature register from Boot CPU values.
466 * Also initiliases the strict_mask for the register.
Mark Rutlandb389d792017-01-09 17:28:24 +0000467 * Any bits that are not covered by an arm64_ftr_bits entry are considered
468 * RES0 for the system-wide value, and must strictly match.
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100469 */
470static void __init init_cpu_ftr_reg(u32 sys_reg, u64 new)
471{
472 u64 val = 0;
473 u64 strict_mask = ~0x0ULL;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000474 u64 user_mask = 0;
Mark Rutlandb389d792017-01-09 17:28:24 +0000475 u64 valid_mask = 0;
476
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100477 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100478 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg);
479
480 BUG_ON(!reg);
481
482 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
Mark Rutlandb389d792017-01-09 17:28:24 +0000483 u64 ftr_mask = arm64_ftr_mask(ftrp);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100484 s64 ftr_new = arm64_ftr_value(ftrp, new);
485
486 val = arm64_ftr_set_value(ftrp, val, ftr_new);
Mark Rutlandb389d792017-01-09 17:28:24 +0000487
488 valid_mask |= ftr_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100489 if (!ftrp->strict)
Mark Rutlandb389d792017-01-09 17:28:24 +0000490 strict_mask &= ~ftr_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000491 if (ftrp->visible)
492 user_mask |= ftr_mask;
493 else
494 reg->user_val = arm64_ftr_set_value(ftrp,
495 reg->user_val,
496 ftrp->safe_val);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100497 }
Mark Rutlandb389d792017-01-09 17:28:24 +0000498
499 val &= valid_mask;
500
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100501 reg->sys_val = val;
502 reg->strict_mask = strict_mask;
Suzuki K Poulosefe4fbdb2017-01-09 17:28:30 +0000503 reg->user_mask = user_mask;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100504}
505
506void __init init_cpu_features(struct cpuinfo_arm64 *info)
507{
508 /* Before we start using the tables, make sure it is sorted */
509 sort_ftr_regs();
510
511 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr);
512 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid);
513 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq);
514 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0);
515 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1);
516 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0);
517 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1);
518 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0);
519 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000520 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2);
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100521 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0);
522 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1);
Dave Martin2e0f2472017-10-31 15:51:10 +0000523 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100524
525 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
526 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0);
527 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0);
528 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1);
529 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2);
530 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3);
531 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4);
532 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5);
533 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0);
534 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1);
535 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2);
536 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3);
537 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0);
538 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1);
539 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0);
540 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1);
541 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2);
542 }
543
Dave Martin2e0f2472017-10-31 15:51:10 +0000544 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
545 init_cpu_ftr_reg(SYS_ZCR_EL1, info->reg_zcr);
546 sve_init_vq_map();
547 }
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100548}
549
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100550static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new)
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100551{
Ard Biesheuvel5e49d732016-08-31 11:31:08 +0100552 const struct arm64_ftr_bits *ftrp;
Suzuki K. Poulose3c739b52015-10-19 14:24:45 +0100553
554 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
555 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val);
556 s64 ftr_new = arm64_ftr_value(ftrp, new);
557
558 if (ftr_cur == ftr_new)
559 continue;
560 /* Find a safe value */
561 ftr_new = arm64_ftr_safe_value(ftrp, ftr_new, ftr_cur);
562 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new);
563 }
564
565}
566
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100567static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot)
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100568{
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100569 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(sys_id);
570
571 BUG_ON(!regp);
572 update_cpu_ftr_reg(regp, val);
573 if ((boot & regp->strict_mask) == (val & regp->strict_mask))
574 return 0;
575 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n",
576 regp->name, boot, cpu, val);
577 return 1;
578}
579
580/*
581 * Update system wide CPU feature registers with the values from a
582 * non-boot CPU. Also performs SANITY checks to make sure that there
583 * aren't any insane variations from that of the boot CPU.
584 */
585void update_cpu_features(int cpu,
586 struct cpuinfo_arm64 *info,
587 struct cpuinfo_arm64 *boot)
588{
589 int taint = 0;
590
591 /*
592 * The kernel can handle differing I-cache policies, but otherwise
593 * caches should look identical. Userspace JITs will make use of
594 * *minLine.
595 */
596 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu,
597 info->reg_ctr, boot->reg_ctr);
598
599 /*
600 * Userspace may perform DC ZVA instructions. Mismatched block sizes
601 * could result in too much or too little memory being zeroed if a
602 * process is preempted and migrated between CPUs.
603 */
604 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu,
605 info->reg_dczid, boot->reg_dczid);
606
607 /* If different, timekeeping will be broken (especially with KVM) */
608 taint |= check_update_ftr_reg(SYS_CNTFRQ_EL0, cpu,
609 info->reg_cntfrq, boot->reg_cntfrq);
610
611 /*
612 * The kernel uses self-hosted debug features and expects CPUs to
613 * support identical debug features. We presently need CTX_CMPs, WRPs,
614 * and BRPs to be identical.
615 * ID_AA64DFR1 is currently RES0.
616 */
617 taint |= check_update_ftr_reg(SYS_ID_AA64DFR0_EL1, cpu,
618 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0);
619 taint |= check_update_ftr_reg(SYS_ID_AA64DFR1_EL1, cpu,
620 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1);
621 /*
622 * Even in big.LITTLE, processors should be identical instruction-set
623 * wise.
624 */
625 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR0_EL1, cpu,
626 info->reg_id_aa64isar0, boot->reg_id_aa64isar0);
627 taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu,
628 info->reg_id_aa64isar1, boot->reg_id_aa64isar1);
629
630 /*
631 * Differing PARange support is fine as long as all peripherals and
632 * memory are mapped within the minimum PARange of all CPUs.
633 * Linux should not care about secure memory.
634 */
635 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR0_EL1, cpu,
636 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0);
637 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR1_EL1, cpu,
638 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1);
James Morse406e3082016-02-05 14:58:47 +0000639 taint |= check_update_ftr_reg(SYS_ID_AA64MMFR2_EL1, cpu,
640 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2);
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100641
642 /*
643 * EL3 is not our concern.
644 * ID_AA64PFR1 is currently RES0.
645 */
646 taint |= check_update_ftr_reg(SYS_ID_AA64PFR0_EL1, cpu,
647 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0);
648 taint |= check_update_ftr_reg(SYS_ID_AA64PFR1_EL1, cpu,
649 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1);
650
Dave Martin2e0f2472017-10-31 15:51:10 +0000651 taint |= check_update_ftr_reg(SYS_ID_AA64ZFR0_EL1, cpu,
652 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0);
653
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100654 /*
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100655 * If we have AArch32, we care about 32-bit features for compat.
656 * If the system doesn't support AArch32, don't update them.
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100657 */
Dave Martin46823dd2017-03-23 15:14:39 +0000658 if (id_aa64pfr0_32bit_el0(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100659 id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) {
660
661 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100662 info->reg_id_dfr0, boot->reg_id_dfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100663 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100664 info->reg_id_isar0, boot->reg_id_isar0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100665 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100666 info->reg_id_isar1, boot->reg_id_isar1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100667 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100668 info->reg_id_isar2, boot->reg_id_isar2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100669 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100670 info->reg_id_isar3, boot->reg_id_isar3);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100671 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100672 info->reg_id_isar4, boot->reg_id_isar4);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100673 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100674 info->reg_id_isar5, boot->reg_id_isar5);
675
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100676 /*
677 * Regardless of the value of the AuxReg field, the AIFSR, ADFSR, and
678 * ACTLR formats could differ across CPUs and therefore would have to
679 * be trapped for virtualization anyway.
680 */
681 taint |= check_update_ftr_reg(SYS_ID_MMFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100682 info->reg_id_mmfr0, boot->reg_id_mmfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100683 taint |= check_update_ftr_reg(SYS_ID_MMFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100684 info->reg_id_mmfr1, boot->reg_id_mmfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100685 taint |= check_update_ftr_reg(SYS_ID_MMFR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100686 info->reg_id_mmfr2, boot->reg_id_mmfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100687 taint |= check_update_ftr_reg(SYS_ID_MMFR3_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100688 info->reg_id_mmfr3, boot->reg_id_mmfr3);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100689 taint |= check_update_ftr_reg(SYS_ID_PFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100690 info->reg_id_pfr0, boot->reg_id_pfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100691 taint |= check_update_ftr_reg(SYS_ID_PFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100692 info->reg_id_pfr1, boot->reg_id_pfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100693 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100694 info->reg_mvfr0, boot->reg_mvfr0);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100695 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100696 info->reg_mvfr1, boot->reg_mvfr1);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100697 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu,
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100698 info->reg_mvfr2, boot->reg_mvfr2);
Suzuki K Poulosea6dc3cd2016-04-18 10:28:35 +0100699 }
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100700
Dave Martin2e0f2472017-10-31 15:51:10 +0000701 if (id_aa64pfr0_sve(info->reg_id_aa64pfr0)) {
702 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu,
703 info->reg_zcr, boot->reg_zcr);
704
705 /* Probe vector lengths, unless we already gave up on SVE */
706 if (id_aa64pfr0_sve(read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1)) &&
707 !sys_caps_initialised)
708 sve_update_vq_map();
709 }
710
Suzuki K. Poulose3086d392015-10-19 14:24:46 +0100711 /*
712 * Mismatched CPU features are a recipe for disaster. Don't even
713 * pretend to support them.
714 */
Will Deacon8dd0ee62017-06-05 11:40:23 +0100715 if (taint) {
716 pr_warn_once("Unsupported CPU feature variation detected.\n");
717 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
718 }
Suzuki K. Poulosecdcf8172015-10-19 14:24:42 +0100719}
720
Dave Martin46823dd2017-03-23 15:14:39 +0000721u64 read_sanitised_ftr_reg(u32 id)
Suzuki K. Pouloseb3f15372015-10-19 14:24:47 +0100722{
723 struct arm64_ftr_reg *regp = get_arm64_ftr_reg(id);
724
725 /* We shouldn't get a request for an unsupported register */
726 BUG_ON(!regp);
727 return regp->sys_val;
728}
Marc Zyngier359b7062015-03-27 13:09:23 +0000729
Mark Rutland965861d2017-02-02 17:32:15 +0000730#define read_sysreg_case(r) \
731 case r: return read_sysreg_s(r)
732
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100733/*
Dave Martin46823dd2017-03-23 15:14:39 +0000734 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100735 * Read the system register on the current CPU
736 */
Dave Martin46823dd2017-03-23 15:14:39 +0000737static u64 __read_sysreg_by_encoding(u32 sys_id)
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100738{
739 switch (sys_id) {
Mark Rutland965861d2017-02-02 17:32:15 +0000740 read_sysreg_case(SYS_ID_PFR0_EL1);
741 read_sysreg_case(SYS_ID_PFR1_EL1);
742 read_sysreg_case(SYS_ID_DFR0_EL1);
743 read_sysreg_case(SYS_ID_MMFR0_EL1);
744 read_sysreg_case(SYS_ID_MMFR1_EL1);
745 read_sysreg_case(SYS_ID_MMFR2_EL1);
746 read_sysreg_case(SYS_ID_MMFR3_EL1);
747 read_sysreg_case(SYS_ID_ISAR0_EL1);
748 read_sysreg_case(SYS_ID_ISAR1_EL1);
749 read_sysreg_case(SYS_ID_ISAR2_EL1);
750 read_sysreg_case(SYS_ID_ISAR3_EL1);
751 read_sysreg_case(SYS_ID_ISAR4_EL1);
752 read_sysreg_case(SYS_ID_ISAR5_EL1);
753 read_sysreg_case(SYS_MVFR0_EL1);
754 read_sysreg_case(SYS_MVFR1_EL1);
755 read_sysreg_case(SYS_MVFR2_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100756
Mark Rutland965861d2017-02-02 17:32:15 +0000757 read_sysreg_case(SYS_ID_AA64PFR0_EL1);
758 read_sysreg_case(SYS_ID_AA64PFR1_EL1);
759 read_sysreg_case(SYS_ID_AA64DFR0_EL1);
760 read_sysreg_case(SYS_ID_AA64DFR1_EL1);
761 read_sysreg_case(SYS_ID_AA64MMFR0_EL1);
762 read_sysreg_case(SYS_ID_AA64MMFR1_EL1);
763 read_sysreg_case(SYS_ID_AA64MMFR2_EL1);
764 read_sysreg_case(SYS_ID_AA64ISAR0_EL1);
765 read_sysreg_case(SYS_ID_AA64ISAR1_EL1);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100766
Mark Rutland965861d2017-02-02 17:32:15 +0000767 read_sysreg_case(SYS_CNTFRQ_EL0);
768 read_sysreg_case(SYS_CTR_EL0);
769 read_sysreg_case(SYS_DCZID_EL0);
770
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100771 default:
772 BUG();
773 return 0;
774 }
775}
776
Marc Zyngier963fcd42015-09-30 11:50:04 +0100777#include <linux/irqchip/arm-gic-v3.h>
778
Marc Zyngier94a9e042015-06-12 12:06:36 +0100779static bool
James Morse18ffa042015-07-21 13:23:29 +0100780feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
781{
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +0000782 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign);
James Morse18ffa042015-07-21 13:23:29 +0100783
784 return val >= entry->min_field_value;
785}
786
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100787static bool
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100788has_cpuid_feature(const struct arm64_cpu_capabilities *entry, int scope)
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100789{
790 u64 val;
Marc Zyngier94a9e042015-06-12 12:06:36 +0100791
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100792 WARN_ON(scope == SCOPE_LOCAL_CPU && preemptible());
793 if (scope == SCOPE_SYSTEM)
Dave Martin46823dd2017-03-23 15:14:39 +0000794 val = read_sanitised_ftr_reg(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100795 else
Dave Martin46823dd2017-03-23 15:14:39 +0000796 val = __read_sysreg_by_encoding(entry->sys_reg);
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100797
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100798 return feature_matches(val, entry);
799}
James Morse338d4f42015-07-22 19:05:54 +0100800
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100801static bool has_useable_gicv3_cpuif(const struct arm64_cpu_capabilities *entry, int scope)
Marc Zyngier963fcd42015-09-30 11:50:04 +0100802{
803 bool has_sre;
804
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100805 if (!has_cpuid_feature(entry, scope))
Marc Zyngier963fcd42015-09-30 11:50:04 +0100806 return false;
807
808 has_sre = gic_enable_sre();
809 if (!has_sre)
810 pr_warn_once("%s present but disabled by higher exception level\n",
811 entry->desc);
812
813 return has_sre;
814}
815
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100816static bool has_no_hw_prefetch(const struct arm64_cpu_capabilities *entry, int __unused)
Will Deacond5370f72016-02-02 12:46:24 +0000817{
818 u32 midr = read_cpuid_id();
Will Deacond5370f72016-02-02 12:46:24 +0000819
820 /* Cavium ThunderX pass 1.x and 2.x */
Robert Richterfa5ce3d2017-01-13 14:12:09 +0100821 return MIDR_IS_CPU_MODEL_RANGE(midr, MIDR_THUNDERX,
822 MIDR_CPU_VAR_REV(0, 0),
823 MIDR_CPU_VAR_REV(1, MIDR_REVISION_MASK));
Will Deacond5370f72016-02-02 12:46:24 +0000824}
825
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100826static bool runs_at_el2(const struct arm64_cpu_capabilities *entry, int __unused)
Marc Zyngierd88701b2015-01-29 11:24:05 +0000827{
828 return is_kernel_in_hyp_mode();
829}
830
Marc Zyngierd1745912016-06-30 18:40:42 +0100831static bool hyp_offset_low(const struct arm64_cpu_capabilities *entry,
832 int __unused)
833{
Laura Abbott2077be62017-01-10 13:35:49 -0800834 phys_addr_t idmap_addr = __pa_symbol(__hyp_idmap_text_start);
Marc Zyngierd1745912016-06-30 18:40:42 +0100835
836 /*
837 * Activate the lower HYP offset only if:
838 * - the idmap doesn't clash with it,
839 * - the kernel is not running at EL2.
840 */
841 return idmap_addr > GENMASK(VA_BITS - 2, 0) && !is_kernel_in_hyp_mode();
842}
843
Suzuki K Poulose82e01912016-11-08 13:56:21 +0000844static bool has_no_fpsimd(const struct arm64_cpu_capabilities *entry, int __unused)
845{
Dave Martin46823dd2017-03-23 15:14:39 +0000846 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
Suzuki K Poulose82e01912016-11-08 13:56:21 +0000847
848 return cpuid_feature_extract_signed_field(pfr0,
849 ID_AA64PFR0_FP_SHIFT) < 0;
850}
851
Will Deaconea1e3de2017-11-14 14:38:19 +0000852#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
853static int __kpti_forced; /* 0: not forced, >0: forced on, <0: forced off */
854
855static bool unmap_kernel_at_el0(const struct arm64_cpu_capabilities *entry,
856 int __unused)
857{
Will Deacon179a56f2017-11-27 18:29:30 +0000858 u64 pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
859
Will Deaconea1e3de2017-11-14 14:38:19 +0000860 /* Forced on command line? */
861 if (__kpti_forced) {
862 pr_info_once("kernel page table isolation forced %s by command line option\n",
863 __kpti_forced > 0 ? "ON" : "OFF");
864 return __kpti_forced > 0;
865 }
866
867 /* Useful for KASLR robustness */
868 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE))
869 return true;
870
Jayachandran C0ba2e292018-01-19 04:22:48 -0800871 /* Don't force KPTI for CPUs that are not vulnerable */
872 switch (read_cpuid_id() & MIDR_CPU_MODEL_MASK) {
873 case MIDR_CAVIUM_THUNDERX2:
874 case MIDR_BRCM_VULCAN:
875 return false;
876 }
877
Will Deacon179a56f2017-11-27 18:29:30 +0000878 /* Defer to CPU feature registers */
879 return !cpuid_feature_extract_unsigned_field(pfr0,
880 ID_AA64PFR0_CSV3_SHIFT);
Will Deaconea1e3de2017-11-14 14:38:19 +0000881}
882
883static int __init parse_kpti(char *str)
884{
885 bool enabled;
886 int ret = strtobool(str, &enabled);
887
888 if (ret)
889 return ret;
890
891 __kpti_forced = enabled ? 1 : -1;
892 return 0;
893}
894__setup("kpti=", parse_kpti);
895#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
896
James Morse6d99b682018-01-08 15:38:06 +0000897static int cpu_copy_el2regs(void *__unused)
898{
899 /*
900 * Copy register values that aren't redirected by hardware.
901 *
902 * Before code patching, we only set tpidr_el1, all CPUs need to copy
903 * this value to tpidr_el2 before we patch the code. Once we've done
904 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to
905 * do anything here.
906 */
907 if (!alternatives_applied)
908 write_sysreg(read_sysreg(tpidr_el1), tpidr_el2);
909
910 return 0;
911}
912
Marc Zyngier359b7062015-03-27 13:09:23 +0000913static const struct arm64_cpu_capabilities arm64_features[] = {
Marc Zyngier94a9e042015-06-12 12:06:36 +0100914 {
915 .desc = "GIC system register CPU interface",
916 .capability = ARM64_HAS_SYSREG_GIC_CPUIF,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100917 .def_scope = SCOPE_SYSTEM,
Marc Zyngier963fcd42015-09-30 11:50:04 +0100918 .matches = has_useable_gicv3_cpuif,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100919 .sys_reg = SYS_ID_AA64PFR0_EL1,
920 .field_pos = ID_AA64PFR0_GIC_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000921 .sign = FTR_UNSIGNED,
James Morse18ffa042015-07-21 13:23:29 +0100922 .min_field_value = 1,
Marc Zyngier94a9e042015-06-12 12:06:36 +0100923 },
James Morse338d4f42015-07-22 19:05:54 +0100924#ifdef CONFIG_ARM64_PAN
925 {
926 .desc = "Privileged Access Never",
927 .capability = ARM64_HAS_PAN,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100928 .def_scope = SCOPE_SYSTEM,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100929 .matches = has_cpuid_feature,
930 .sys_reg = SYS_ID_AA64MMFR1_EL1,
931 .field_pos = ID_AA64MMFR1_PAN_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000932 .sign = FTR_UNSIGNED,
James Morse338d4f42015-07-22 19:05:54 +0100933 .min_field_value = 1,
934 .enable = cpu_enable_pan,
935 },
936#endif /* CONFIG_ARM64_PAN */
Will Deacon2e94da12015-07-27 16:23:58 +0100937#if defined(CONFIG_AS_LSE) && defined(CONFIG_ARM64_LSE_ATOMICS)
938 {
939 .desc = "LSE atomic instructions",
940 .capability = ARM64_HAS_LSE_ATOMICS,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100941 .def_scope = SCOPE_SYSTEM,
Suzuki K. Pouloseda8d02d2015-10-19 14:24:51 +0100942 .matches = has_cpuid_feature,
943 .sys_reg = SYS_ID_AA64ISAR0_EL1,
944 .field_pos = ID_AA64ISAR0_ATOMICS_SHIFT,
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +0000945 .sign = FTR_UNSIGNED,
Will Deacon2e94da12015-07-27 16:23:58 +0100946 .min_field_value = 2,
947 },
948#endif /* CONFIG_AS_LSE && CONFIG_ARM64_LSE_ATOMICS */
Marc Zyngierd88701b2015-01-29 11:24:05 +0000949 {
Will Deacond5370f72016-02-02 12:46:24 +0000950 .desc = "Software prefetching using PRFM",
951 .capability = ARM64_HAS_NO_HW_PREFETCH,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100952 .def_scope = SCOPE_SYSTEM,
Will Deacond5370f72016-02-02 12:46:24 +0000953 .matches = has_no_hw_prefetch,
954 },
James Morse57f49592016-02-05 14:58:48 +0000955#ifdef CONFIG_ARM64_UAO
956 {
957 .desc = "User Access Override",
958 .capability = ARM64_HAS_UAO,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100959 .def_scope = SCOPE_SYSTEM,
James Morse57f49592016-02-05 14:58:48 +0000960 .matches = has_cpuid_feature,
961 .sys_reg = SYS_ID_AA64MMFR2_EL1,
962 .field_pos = ID_AA64MMFR2_UAO_SHIFT,
963 .min_field_value = 1,
James Morsec8b06e32017-01-09 18:14:02 +0000964 /*
965 * We rely on stop_machine() calling uao_thread_switch() to set
966 * UAO immediately after patching.
967 */
James Morse57f49592016-02-05 14:58:48 +0000968 },
969#endif /* CONFIG_ARM64_UAO */
James Morse70544192016-02-05 14:58:50 +0000970#ifdef CONFIG_ARM64_PAN
971 {
972 .capability = ARM64_ALT_PAN_NOT_UAO,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100973 .def_scope = SCOPE_SYSTEM,
James Morse70544192016-02-05 14:58:50 +0000974 .matches = cpufeature_pan_not_uao,
975 },
976#endif /* CONFIG_ARM64_PAN */
Linus Torvalds588ab3f2016-03-17 20:03:47 -0700977 {
Marc Zyngierd88701b2015-01-29 11:24:05 +0000978 .desc = "Virtualization Host Extensions",
979 .capability = ARM64_HAS_VIRT_HOST_EXTN,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100980 .def_scope = SCOPE_SYSTEM,
Marc Zyngierd88701b2015-01-29 11:24:05 +0000981 .matches = runs_at_el2,
James Morse6d99b682018-01-08 15:38:06 +0000982 .enable = cpu_copy_el2regs,
Marc Zyngierd88701b2015-01-29 11:24:05 +0000983 },
Suzuki K Poulose042446a2016-04-18 10:28:36 +0100984 {
985 .desc = "32-bit EL0 Support",
986 .capability = ARM64_HAS_32BIT_EL0,
Suzuki K Poulose92406f02016-04-22 12:25:31 +0100987 .def_scope = SCOPE_SYSTEM,
Suzuki K Poulose042446a2016-04-18 10:28:36 +0100988 .matches = has_cpuid_feature,
989 .sys_reg = SYS_ID_AA64PFR0_EL1,
990 .sign = FTR_UNSIGNED,
991 .field_pos = ID_AA64PFR0_EL0_SHIFT,
992 .min_field_value = ID_AA64PFR0_EL0_32BIT_64BIT,
993 },
Marc Zyngierd1745912016-06-30 18:40:42 +0100994 {
995 .desc = "Reduced HYP mapping offset",
996 .capability = ARM64_HYP_OFFSET_LOW,
997 .def_scope = SCOPE_SYSTEM,
998 .matches = hyp_offset_low,
999 },
Will Deaconea1e3de2017-11-14 14:38:19 +00001000#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1001 {
Will Deacon179a56f2017-11-27 18:29:30 +00001002 .desc = "Kernel page table isolation (KPTI)",
Will Deaconea1e3de2017-11-14 14:38:19 +00001003 .capability = ARM64_UNMAP_KERNEL_AT_EL0,
1004 .def_scope = SCOPE_SYSTEM,
1005 .matches = unmap_kernel_at_el0,
1006 },
1007#endif
Suzuki K Poulose82e01912016-11-08 13:56:21 +00001008 {
1009 /* FP/SIMD is not implemented */
1010 .capability = ARM64_HAS_NO_FPSIMD,
1011 .def_scope = SCOPE_SYSTEM,
1012 .min_field_value = 0,
1013 .matches = has_no_fpsimd,
1014 },
Robin Murphyd50e0712017-07-25 11:55:42 +01001015#ifdef CONFIG_ARM64_PMEM
1016 {
1017 .desc = "Data cache clean to Point of Persistence",
1018 .capability = ARM64_HAS_DCPOP,
1019 .def_scope = SCOPE_SYSTEM,
1020 .matches = has_cpuid_feature,
1021 .sys_reg = SYS_ID_AA64ISAR1_EL1,
1022 .field_pos = ID_AA64ISAR1_DPB_SHIFT,
1023 .min_field_value = 1,
1024 },
1025#endif
Dave Martin43994d82017-10-31 15:51:19 +00001026#ifdef CONFIG_ARM64_SVE
1027 {
1028 .desc = "Scalable Vector Extension",
1029 .capability = ARM64_SVE,
1030 .def_scope = SCOPE_SYSTEM,
1031 .sys_reg = SYS_ID_AA64PFR0_EL1,
1032 .sign = FTR_UNSIGNED,
1033 .field_pos = ID_AA64PFR0_SVE_SHIFT,
1034 .min_field_value = ID_AA64PFR0_SVE,
1035 .matches = has_cpuid_feature,
1036 .enable = sve_kernel_enable,
1037 },
1038#endif /* CONFIG_ARM64_SVE */
Xie XiuQi64c02722018-01-15 19:38:56 +00001039#ifdef CONFIG_ARM64_RAS_EXTN
1040 {
1041 .desc = "RAS Extension Support",
1042 .capability = ARM64_HAS_RAS_EXTN,
1043 .def_scope = SCOPE_SYSTEM,
1044 .matches = has_cpuid_feature,
1045 .sys_reg = SYS_ID_AA64PFR0_EL1,
1046 .sign = FTR_UNSIGNED,
1047 .field_pos = ID_AA64PFR0_RAS_SHIFT,
1048 .min_field_value = ID_AA64PFR0_RAS_V1,
James Morse68ddbf02018-01-15 19:38:59 +00001049 .enable = cpu_clear_disr,
Xie XiuQi64c02722018-01-15 19:38:56 +00001050 },
1051#endif /* CONFIG_ARM64_RAS_EXTN */
Marc Zyngier359b7062015-03-27 13:09:23 +00001052 {},
1053};
1054
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001055#define HWCAP_CAP(reg, field, s, min_value, type, cap) \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001056 { \
1057 .desc = #cap, \
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001058 .def_scope = SCOPE_SYSTEM, \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001059 .matches = has_cpuid_feature, \
1060 .sys_reg = reg, \
1061 .field_pos = field, \
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001062 .sign = s, \
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001063 .min_field_value = min_value, \
1064 .hwcap_type = type, \
1065 .hwcap = cap, \
1066 }
1067
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001068static const struct arm64_cpu_capabilities arm64_elf_hwcaps[] = {
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001069 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 2, CAP_HWCAP, HWCAP_PMULL),
1070 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_AES_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_AES),
1071 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SHA1),
1072 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 +01001073 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 +00001074 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_CRC32_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_CRC32),
1075 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 +00001076 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 +01001077 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SHA3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SHA3),
1078 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM3_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SM3),
1079 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_SM4_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_SM4),
1080 HWCAP_CAP(SYS_ID_AA64ISAR0_EL1, ID_AA64ISAR0_DP_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_ASIMDDP),
Dongjiu Geng3b3b6812017-12-13 18:13:56 +08001081 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 +00001082 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 +00001083 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 +00001084 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 +00001085 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_ASIMD_SHIFT, FTR_SIGNED, 1, CAP_HWCAP, HWCAP_ASIMDHP),
Robin Murphy7aac4052017-07-25 11:55:40 +01001086 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 +00001087 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 +00001088 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 +00001089 HWCAP_CAP(SYS_ID_AA64ISAR1_EL1, ID_AA64ISAR1_LRCPC_SHIFT, FTR_UNSIGNED, 1, CAP_HWCAP, HWCAP_LRCPC),
Dave Martin43994d82017-10-31 15:51:19 +00001090#ifdef CONFIG_ARM64_SVE
1091 HWCAP_CAP(SYS_ID_AA64PFR0_EL1, ID_AA64PFR0_SVE_SHIFT, FTR_UNSIGNED, ID_AA64PFR0_SVE, CAP_HWCAP, HWCAP_SVE),
1092#endif
Suzuki K Poulose75283502016-04-18 10:28:33 +01001093 {},
1094};
1095
1096static const struct arm64_cpu_capabilities compat_elf_hwcaps[] = {
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001097#ifdef CONFIG_COMPAT
Suzuki K Pouloseff96f7b2016-01-26 10:58:15 +00001098 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 2, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_PMULL),
1099 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_AES_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_AES),
1100 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA1_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA1),
1101 HWCAP_CAP(SYS_ID_ISAR5_EL1, ID_ISAR5_SHA2_SHIFT, FTR_UNSIGNED, 1, CAP_COMPAT_HWCAP2, COMPAT_HWCAP2_SHA2),
1102 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 +01001103#endif
1104 {},
1105};
1106
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001107static void __init cap_set_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001108{
1109 switch (cap->hwcap_type) {
1110 case CAP_HWCAP:
1111 elf_hwcap |= cap->hwcap;
1112 break;
1113#ifdef CONFIG_COMPAT
1114 case CAP_COMPAT_HWCAP:
1115 compat_elf_hwcap |= (u32)cap->hwcap;
1116 break;
1117 case CAP_COMPAT_HWCAP2:
1118 compat_elf_hwcap2 |= (u32)cap->hwcap;
1119 break;
1120#endif
1121 default:
1122 WARN_ON(1);
1123 break;
1124 }
1125}
1126
1127/* Check if we have a particular HWCAP enabled */
Suzuki K Poulosef3efb672016-04-18 10:28:32 +01001128static bool cpus_have_elf_hwcap(const struct arm64_cpu_capabilities *cap)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001129{
1130 bool rc;
1131
1132 switch (cap->hwcap_type) {
1133 case CAP_HWCAP:
1134 rc = (elf_hwcap & cap->hwcap) != 0;
1135 break;
1136#ifdef CONFIG_COMPAT
1137 case CAP_COMPAT_HWCAP:
1138 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0;
1139 break;
1140 case CAP_COMPAT_HWCAP2:
1141 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0;
1142 break;
1143#endif
1144 default:
1145 WARN_ON(1);
1146 rc = false;
1147 }
1148
1149 return rc;
1150}
1151
Suzuki K Poulose75283502016-04-18 10:28:33 +01001152static void __init setup_elf_hwcaps(const struct arm64_cpu_capabilities *hwcaps)
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001153{
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001154 /* We support emulation of accesses to CPU ID feature registers */
1155 elf_hwcap |= HWCAP_CPUID;
Suzuki K Poulose75283502016-04-18 10:28:33 +01001156 for (; hwcaps->matches; hwcaps++)
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001157 if (hwcaps->matches(hwcaps, hwcaps->def_scope))
Suzuki K Poulose75283502016-04-18 10:28:33 +01001158 cap_set_elf_hwcap(hwcaps);
Suzuki K. Poulose37b01d532015-10-19 14:24:52 +01001159}
1160
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001161/*
1162 * Check if the current CPU has a given feature capability.
1163 * Should be called from non-preemptible context.
1164 */
1165static bool __this_cpu_has_cap(const struct arm64_cpu_capabilities *cap_array,
1166 unsigned int cap)
1167{
1168 const struct arm64_cpu_capabilities *caps;
1169
1170 if (WARN_ON(preemptible()))
1171 return false;
1172
James Morseedf298c2018-01-15 19:38:54 +00001173 for (caps = cap_array; caps->matches; caps++)
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001174 if (caps->capability == cap &&
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001175 caps->matches(caps, SCOPE_LOCAL_CPU))
1176 return true;
1177 return false;
1178}
1179
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001180void update_cpu_capabilities(const struct arm64_cpu_capabilities *caps,
Marc Zyngier359b7062015-03-27 13:09:23 +00001181 const char *info)
1182{
Suzuki K Poulose75283502016-04-18 10:28:33 +01001183 for (; caps->matches; caps++) {
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001184 if (!caps->matches(caps, caps->def_scope))
Marc Zyngier359b7062015-03-27 13:09:23 +00001185 continue;
1186
Suzuki K Poulose75283502016-04-18 10:28:33 +01001187 if (!cpus_have_cap(caps->capability) && caps->desc)
1188 pr_info("%s %s\n", info, caps->desc);
1189 cpus_set_cap(caps->capability);
Marc Zyngier359b7062015-03-27 13:09:23 +00001190 }
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001191}
James Morse1c076302015-07-21 13:23:28 +01001192
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001193/*
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001194 * Run through the enabled capabilities and enable() it on all active
1195 * CPUs
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001196 */
Andre Przywara8e231852016-06-28 18:07:30 +01001197void __init enable_cpu_capabilities(const struct arm64_cpu_capabilities *caps)
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001198{
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001199 for (; caps->matches; caps++) {
1200 unsigned int num = caps->capability;
1201
1202 if (!cpus_have_cap(num))
1203 continue;
1204
1205 /* Ensure cpus_have_const_cap(num) works */
1206 static_branch_enable(&cpu_hwcap_keys[num]);
1207
1208 if (caps->enable) {
James Morse2a6dcb22016-10-18 11:27:46 +01001209 /*
1210 * Use stop_machine() as it schedules the work allowing
1211 * us to modify PSTATE, instead of on_each_cpu() which
1212 * uses an IPI, giving us a PSTATE that disappears when
1213 * we return.
1214 */
Will Deacon0a0d111d2018-01-02 21:37:25 +00001215 stop_machine(caps->enable, (void *)caps, cpu_online_mask);
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001216 }
1217 }
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001218}
1219
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001220/*
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001221 * Check for CPU features that are used in early boot
1222 * based on the Boot CPU value.
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001223 */
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001224static void check_early_cpu_features(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00001225{
Suzuki K Pouloseac1ad202016-04-13 14:41:33 +01001226 verify_cpu_run_el();
Suzuki K Poulose13f417f2016-02-23 10:31:45 +00001227 verify_cpu_asid_bits();
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001228}
1229
Suzuki K Poulose75283502016-04-18 10:28:33 +01001230static void
1231verify_local_elf_hwcaps(const struct arm64_cpu_capabilities *caps)
1232{
1233
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001234 for (; caps->matches; caps++)
1235 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01001236 pr_crit("CPU%d: missing HWCAP: %s\n",
1237 smp_processor_id(), caps->desc);
1238 cpu_die_early();
1239 }
Suzuki K Poulose75283502016-04-18 10:28:33 +01001240}
1241
1242static void
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001243verify_local_cpu_features(const struct arm64_cpu_capabilities *caps_list)
Suzuki K Poulose75283502016-04-18 10:28:33 +01001244{
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001245 const struct arm64_cpu_capabilities *caps = caps_list;
Suzuki K Poulose75283502016-04-18 10:28:33 +01001246 for (; caps->matches; caps++) {
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001247 if (!cpus_have_cap(caps->capability))
Suzuki K Poulose75283502016-04-18 10:28:33 +01001248 continue;
1249 /*
1250 * If the new CPU misses an advertised feature, we cannot proceed
1251 * further, park the cpu.
1252 */
Suzuki K Poulose67948af2018-01-09 16:12:18 +00001253 if (!__this_cpu_has_cap(caps_list, caps->capability)) {
Suzuki K Poulose75283502016-04-18 10:28:33 +01001254 pr_crit("CPU%d: missing feature: %s\n",
1255 smp_processor_id(), caps->desc);
1256 cpu_die_early();
1257 }
1258 if (caps->enable)
Will Deacon0a0d111d2018-01-02 21:37:25 +00001259 caps->enable((void *)caps);
Suzuki K Poulose75283502016-04-18 10:28:33 +01001260 }
1261}
1262
Dave Martin2e0f2472017-10-31 15:51:10 +00001263static void verify_sve_features(void)
1264{
1265 u64 safe_zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1);
1266 u64 zcr = read_zcr_features();
1267
1268 unsigned int safe_len = safe_zcr & ZCR_ELx_LEN_MASK;
1269 unsigned int len = zcr & ZCR_ELx_LEN_MASK;
1270
1271 if (len < safe_len || sve_verify_vq_map()) {
1272 pr_crit("CPU%d: SVE: required vector length(s) missing\n",
1273 smp_processor_id());
1274 cpu_die_early();
1275 }
1276
1277 /* Add checks on other ZCR bits here if necessary */
1278}
1279
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001280/*
1281 * Run through the enabled system capabilities and enable() it on this CPU.
1282 * The capabilities were decided based on the available CPUs at the boot time.
1283 * Any new CPU should match the system wide status of the capability. If the
1284 * new CPU doesn't have a capability which the system now has enabled, we
1285 * cannot do anything to fix it up and could cause unexpected failures. So
1286 * we park the CPU.
1287 */
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01001288static void verify_local_cpu_capabilities(void)
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001289{
Suzuki K Poulose89ba2642016-09-09 14:07:09 +01001290 verify_local_cpu_errata_workarounds();
Suzuki K Poulose75283502016-04-18 10:28:33 +01001291 verify_local_cpu_features(arm64_features);
1292 verify_local_elf_hwcaps(arm64_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00001293
Suzuki K Poulose643d7032016-04-18 10:28:37 +01001294 if (system_supports_32bit_el0())
1295 verify_local_elf_hwcaps(compat_elf_hwcaps);
Dave Martin2e0f2472017-10-31 15:51:10 +00001296
1297 if (system_supports_sve())
1298 verify_sve_features();
Stephen Boyd894cfd12017-11-29 15:39:49 -08001299
1300 if (system_uses_ttbr0_pan())
1301 pr_info("Emulating Privileged Access Never (PAN) using TTBR0_EL1 switching\n");
Marc Zyngier359b7062015-03-27 13:09:23 +00001302}
1303
Suzuki K Poulosec47a1902016-09-09 14:07:10 +01001304void check_local_cpu_capabilities(void)
1305{
1306 /*
1307 * All secondary CPUs should conform to the early CPU features
1308 * in use by the kernel based on boot CPU.
1309 */
1310 check_early_cpu_features();
1311
1312 /*
1313 * If we haven't finalised the system capabilities, this CPU gets
1314 * a chance to update the errata work arounds.
1315 * Otherwise, this CPU should verify that it has all the system
1316 * advertised capabilities.
1317 */
1318 if (!sys_caps_initialised)
1319 update_cpu_errata_workarounds();
1320 else
1321 verify_local_cpu_capabilities();
1322}
1323
Jisheng Zhanga7c61a32015-11-20 17:59:10 +08001324static void __init setup_feature_capabilities(void)
Marc Zyngier359b7062015-03-27 13:09:23 +00001325{
Suzuki K. Poulosece8b6022015-10-19 14:24:49 +01001326 update_cpu_capabilities(arm64_features, "detected feature:");
1327 enable_cpu_capabilities(arm64_features);
Marc Zyngier359b7062015-03-27 13:09:23 +00001328}
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001329
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001330DEFINE_STATIC_KEY_FALSE(arm64_const_caps_ready);
1331EXPORT_SYMBOL(arm64_const_caps_ready);
1332
1333static void __init mark_const_caps_ready(void)
1334{
1335 static_branch_enable(&arm64_const_caps_ready);
1336}
1337
Marc Zyngier8f4137582017-01-30 15:39:52 +00001338extern const struct arm64_cpu_capabilities arm64_errata[];
1339
1340bool this_cpu_has_cap(unsigned int cap)
1341{
1342 return (__this_cpu_has_cap(arm64_features, cap) ||
1343 __this_cpu_has_cap(arm64_errata, cap));
1344}
1345
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001346void __init setup_cpu_features(void)
1347{
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001348 u32 cwg;
1349 int cls;
1350
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001351 /* Set the CPU feature capabilies */
1352 setup_feature_capabilities();
Andre Przywara8e231852016-06-28 18:07:30 +01001353 enable_errata_workarounds();
Mark Rutland63a1e1c2017-05-16 15:18:05 +01001354 mark_const_caps_ready();
Suzuki K Poulose75283502016-04-18 10:28:33 +01001355 setup_elf_hwcaps(arm64_elf_hwcaps);
Suzuki K Poulose643d7032016-04-18 10:28:37 +01001356
1357 if (system_supports_32bit_el0())
1358 setup_elf_hwcaps(compat_elf_hwcaps);
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001359
Dave Martin2e0f2472017-10-31 15:51:10 +00001360 sve_setup();
1361
Suzuki K. Poulosedbb4e152015-10-19 14:24:50 +01001362 /* Advertise that we have computed the system capabilities */
1363 set_sys_caps_initialised();
1364
Suzuki K. Poulose9cdf8ec2015-10-19 14:24:41 +01001365 /*
1366 * Check for sane CTR_EL0.CWG value.
1367 */
1368 cwg = cache_type_cwg();
1369 cls = cache_line_size();
1370 if (!cwg)
1371 pr_warn("No Cache Writeback Granule information, assuming cache line size %d\n",
1372 cls);
1373 if (L1_CACHE_BYTES < cls)
1374 pr_warn("L1_CACHE_BYTES smaller than the Cache Writeback Granule (%d < %d)\n",
1375 L1_CACHE_BYTES, cls);
Marc Zyngier359b7062015-03-27 13:09:23 +00001376}
James Morse70544192016-02-05 14:58:50 +00001377
1378static bool __maybe_unused
Suzuki K Poulose92406f02016-04-22 12:25:31 +01001379cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused)
James Morse70544192016-02-05 14:58:50 +00001380{
Suzuki K Poulosea4023f682016-11-08 13:56:20 +00001381 return (cpus_have_const_cap(ARM64_HAS_PAN) && !cpus_have_const_cap(ARM64_HAS_UAO));
James Morse70544192016-02-05 14:58:50 +00001382}
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001383
1384/*
1385 * We emulate only the following system register space.
1386 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 4 - 7]
1387 * See Table C5-6 System instruction encodings for System register accesses,
1388 * ARMv8 ARM(ARM DDI 0487A.f) for more details.
1389 */
1390static inline bool __attribute_const__ is_emulated(u32 id)
1391{
1392 return (sys_reg_Op0(id) == 0x3 &&
1393 sys_reg_CRn(id) == 0x0 &&
1394 sys_reg_Op1(id) == 0x0 &&
1395 (sys_reg_CRm(id) == 0 ||
1396 ((sys_reg_CRm(id) >= 4) && (sys_reg_CRm(id) <= 7))));
1397}
1398
1399/*
1400 * With CRm == 0, reg should be one of :
1401 * MIDR_EL1, MPIDR_EL1 or REVIDR_EL1.
1402 */
1403static inline int emulate_id_reg(u32 id, u64 *valp)
1404{
1405 switch (id) {
1406 case SYS_MIDR_EL1:
1407 *valp = read_cpuid_id();
1408 break;
1409 case SYS_MPIDR_EL1:
1410 *valp = SYS_MPIDR_SAFE_VAL;
1411 break;
1412 case SYS_REVIDR_EL1:
1413 /* IMPLEMENTATION DEFINED values are emulated with 0 */
1414 *valp = 0;
1415 break;
1416 default:
1417 return -EINVAL;
1418 }
1419
1420 return 0;
1421}
1422
1423static int emulate_sys_reg(u32 id, u64 *valp)
1424{
1425 struct arm64_ftr_reg *regp;
1426
1427 if (!is_emulated(id))
1428 return -EINVAL;
1429
1430 if (sys_reg_CRm(id) == 0)
1431 return emulate_id_reg(id, valp);
1432
1433 regp = get_arm64_ftr_reg(id);
1434 if (regp)
1435 *valp = arm64_ftr_reg_user_value(regp);
1436 else
1437 /*
1438 * The untracked registers are either IMPLEMENTATION DEFINED
1439 * (e.g, ID_AFR0_EL1) or reserved RAZ.
1440 */
1441 *valp = 0;
1442 return 0;
1443}
1444
1445static int emulate_mrs(struct pt_regs *regs, u32 insn)
1446{
1447 int rc;
1448 u32 sys_reg, dst;
1449 u64 val;
1450
1451 /*
1452 * sys_reg values are defined as used in mrs/msr instruction.
1453 * shift the imm value to get the encoding.
1454 */
1455 sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5;
1456 rc = emulate_sys_reg(sys_reg, &val);
1457 if (!rc) {
1458 dst = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn);
Mark Rutland521c6462017-02-09 15:19:20 +00001459 pt_regs_write_reg(regs, dst, val);
Julien Thierry6436bee2017-10-25 10:04:33 +01001460 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Suzuki K Poulose77c97b42017-01-09 17:28:31 +00001461 }
1462
1463 return rc;
1464}
1465
1466static struct undef_hook mrs_hook = {
1467 .instr_mask = 0xfff00000,
1468 .instr_val = 0xd5300000,
1469 .pstate_mask = COMPAT_PSR_MODE_MASK,
1470 .pstate_val = PSR_MODE_EL0t,
1471 .fn = emulate_mrs,
1472};
1473
1474static int __init enable_mrs_emulation(void)
1475{
1476 register_undef_hook(&mrs_hook);
1477 return 0;
1478}
1479
Suzuki K Poulosec0d88322017-10-06 14:16:52 +01001480core_initcall(enable_mrs_emulation);
James Morse68ddbf02018-01-15 19:38:59 +00001481
1482int cpu_clear_disr(void *__unused)
1483{
1484 /* Firmware may have left a deferred SError in this register. */
1485 write_sysreg_s(0, SYS_DISR_EL1);
1486
1487 return 0;
1488}