Lines Matching +full:secondary +full:- +full:boot +full:- +full:reg

1 // SPDX-License-Identifier: GPL-2.0-only
9 * there's a little bit of over-abstraction that tends to obscure what's going
14 * user-visible instructions are available only on a subset of the available
16 * boot CPU and comparing these with the feature registers of each secondary
18 * snapshot state to indicate the lowest-common denominator of the feature,
31 * - Mismatched features are *always* sanitised to a "safe" value, which
34 * - A mismatched feature marked with FTR_STRICT will cause a "SANITY CHECK"
38 * - Features marked as FTR_VISIBLE have their sanitised value visible to
43 * - A "feature" is typically a 4-bit register field. A "capability" is the
44 * high-level description derived from the sanitised field value.
46 * - Read the Arm ARM (DDI 0487F.a) section D13.1.3 ("Principles of the ID
50 * - KVM exposes its own view of the feature registers to guest operating
57 * - If the arm64_ftr_bits[] for a register has a missing field, then this
120 * after the MMU (with the idmap) was enabled. create_init_idmap() - which
121 * runs before early_map_kernel() and reads the variable via PTE_MAYBE_NG -
130 * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs
137 * seen at least one CPU capable of 32-bit EL0.
142 * Mask of CPUs supporting 32-bit EL0.
149 /* file-wide pr_fmt adds "CPU features: " prefix */ in dump_cpu_features()
153 #define __ARM64_MAX_POSITIVE(reg, field) \ argument
154 ((reg##_##field##_SIGNED ? \
155 BIT(reg##_##field##_WIDTH - 1) : \
156 BIT(reg##_##field##_WIDTH)) - 1)
158 #define __ARM64_MIN_NEGATIVE(reg, field) BIT(reg##_##field##_WIDTH - 1) argument
160 #define __ARM64_CPUID_FIELDS(reg, field, min_value, max_value) \ argument
161 .sys_reg = SYS_##reg, \
162 .field_pos = reg##_##field##_SHIFT, \
163 .field_width = reg##_##field##_WIDTH, \
164 .sign = reg##_##field##_SIGNED, \
170 * an implicit maximum that depends on the sign-ess of the field.
175 #define ARM64_CPUID_FIELDS(reg, field, min_value) \ argument
176 __ARM64_CPUID_FIELDS(reg, field, \
177 SYS_FIELD_VALUE(reg, field, min_value), \
178 __ARM64_MAX_POSITIVE(reg, field))
183 * matching a non-implemented property.
185 #define ARM64_CPUID_FIELDS_NEG(reg, field, max_value) \ argument
186 __ARM64_CPUID_FIELDS(reg, field, \
187 __ARM64_MIN_NEGATIVE(reg, field), \
188 SYS_FIELD_VALUE(reg, field, max_value))
420 * Page size not being supported at Stage-2 is not fatal. You
425 * advertises a given granule size at Stage-2 (value 2) on some
426 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
438 * We already refuse to boot CPUs that don't support our configured
442 * along with it and treat them as non-strict.
520 * Linux can handle differing I-cache policies. Userspace JITs will
522 * If we have differing I-cache policies, report it as the weakest - VIPT.
730 * id_isar[1-3], id_mmfr[1-3]
756 .reg = &(struct arm64_ftr_reg){ \
782 struct arm64_ftr_reg *reg; member
862 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id; in search_cmp_ftr_reg()
866 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
871 * returns - Upon success, matching ftr_reg entry for id.
872 * - NULL on failure. It is upto the caller to decide
885 return ret->reg; in get_arm64_ftr_reg_nowarn()
890 * get_arm64_ftr_reg - Looks up a feature register entry using
893 * returns - Upon success, matching ftr_reg entry for id.
894 * - NULL on failure but with an WARN_ON().
898 struct arm64_ftr_reg *reg; in get_arm64_ftr_reg() local
900 reg = get_arm64_ftr_reg_nowarn(sys_id); in get_arm64_ftr_reg()
903 * Requesting a non-existent register search is an error. Warn in get_arm64_ftr_reg()
906 WARN_ON(!reg); in get_arm64_ftr_reg()
907 return reg; in get_arm64_ftr_reg()
910 static u64 arm64_ftr_set_value(const struct arm64_ftr_bits *ftrp, s64 reg, in arm64_ftr_set_value() argument
915 reg &= ~mask; in arm64_ftr_set_value()
916 reg |= (ftr_val << ftrp->shift) & mask; in arm64_ftr_set_value()
917 return reg; in arm64_ftr_set_value()
925 switch (ftrp->type) { in arm64_ftr_safe_value()
927 ret = ftrp->safe_val; in arm64_ftr_safe_value()
951 const struct arm64_ftr_reg *ftr_reg = arm64_ftr_regs[i].reg; in sort_ftr_regs()
952 const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits; in sort_ftr_regs()
959 for (; ftr_bits->width != 0; ftr_bits++, j++) { in sort_ftr_regs()
960 unsigned int width = ftr_reg->ftr_bits[j].width; in sort_ftr_regs()
961 unsigned int shift = ftr_reg->ftr_bits[j].shift; in sort_ftr_regs()
966 ftr_reg->name, shift); in sort_ftr_regs()
975 prev_shift = ftr_reg->ftr_bits[j - 1].shift; in sort_ftr_regs()
978 ftr_reg->name, shift); in sort_ftr_regs()
992 BUG_ON(arm64_ftr_regs[i].sys_id <= arm64_ftr_regs[i - 1].sys_id); in sort_ftr_regs()
997 * Initialise the CPU feature register from Boot CPU values.
1000 * RES0 for the system-wide value, and must strictly match.
1010 struct arm64_ftr_reg *reg = get_arm64_ftr_reg(sys_reg); in init_cpu_ftr_reg() local
1012 if (!reg) in init_cpu_ftr_reg()
1015 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in init_cpu_ftr_reg()
1018 s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val); in init_cpu_ftr_reg()
1020 if ((ftr_mask & reg->override->mask) == ftr_mask) { in init_cpu_ftr_reg()
1026 reg->override->mask &= ~ftr_mask; in init_cpu_ftr_reg()
1027 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
1040 reg->name, in init_cpu_ftr_reg()
1041 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
1042 ftrp->shift, str, in init_cpu_ftr_reg()
1043 tmp & (BIT(ftrp->width) - 1)); in init_cpu_ftr_reg()
1044 } else if ((ftr_mask & reg->override->val) == ftr_mask) { in init_cpu_ftr_reg()
1045 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
1047 reg->name, in init_cpu_ftr_reg()
1048 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
1049 ftrp->shift); in init_cpu_ftr_reg()
1055 if (!ftrp->strict) in init_cpu_ftr_reg()
1057 if (ftrp->visible) in init_cpu_ftr_reg()
1060 reg->user_val = arm64_ftr_set_value(ftrp, in init_cpu_ftr_reg()
1061 reg->user_val, in init_cpu_ftr_reg()
1062 ftrp->safe_val); in init_cpu_ftr_reg()
1067 reg->sys_val = val; in init_cpu_ftr_reg()
1068 reg->strict_mask = strict_mask; in init_cpu_ftr_reg()
1069 reg->user_mask = user_mask; in init_cpu_ftr_reg()
1078 for (; caps->matches; caps++) { in init_cpucap_indirect_list_from_array()
1079 if (WARN(caps->capability >= ARM64_NCAPS, in init_cpucap_indirect_list_from_array()
1080 "Invalid capability %d\n", caps->capability)) in init_cpucap_indirect_list_from_array()
1082 if (WARN(cpucap_ptrs[caps->capability], in init_cpucap_indirect_list_from_array()
1084 caps->capability)) in init_cpucap_indirect_list_from_array()
1086 cpucap_ptrs[caps->capability] = caps; in init_cpucap_indirect_list_from_array()
1100 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0); in init_32bit_cpu_features()
1101 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1); in init_32bit_cpu_features()
1102 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0); in init_32bit_cpu_features()
1103 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1); in init_32bit_cpu_features()
1104 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2); in init_32bit_cpu_features()
1105 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3); in init_32bit_cpu_features()
1106 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4); in init_32bit_cpu_features()
1107 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5); in init_32bit_cpu_features()
1108 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6); in init_32bit_cpu_features()
1109 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0); in init_32bit_cpu_features()
1110 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1); in init_32bit_cpu_features()
1111 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2); in init_32bit_cpu_features()
1112 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3); in init_32bit_cpu_features()
1113 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4); in init_32bit_cpu_features()
1114 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5); in init_32bit_cpu_features()
1115 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0); in init_32bit_cpu_features()
1116 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1); in init_32bit_cpu_features()
1117 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2); in init_32bit_cpu_features()
1118 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0); in init_32bit_cpu_features()
1119 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1); in init_32bit_cpu_features()
1120 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2); in init_32bit_cpu_features()
1143 np = of_find_compatible_node(NULL, NULL, "arm,gic-v3"); in detect_system_supports_pseudo_nmi()
1144 if (np && of_property_read_bool(np, "mediatek,broken-save-restore-fw")) { in detect_system_supports_pseudo_nmi()
1145 pr_info("Pseudo-NMI disabled due to MediaTek Chromebook GICR save problem\n"); in detect_system_supports_pseudo_nmi()
1159 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr); in init_cpu_features()
1160 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid); in init_cpu_features()
1161 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq); in init_cpu_features()
1162 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0); in init_cpu_features()
1163 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1); in init_cpu_features()
1164 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0); in init_cpu_features()
1165 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1); in init_cpu_features()
1166 init_cpu_ftr_reg(SYS_ID_AA64ISAR2_EL1, info->reg_id_aa64isar2); in init_cpu_features()
1167 init_cpu_ftr_reg(SYS_ID_AA64ISAR3_EL1, info->reg_id_aa64isar3); in init_cpu_features()
1168 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0); in init_cpu_features()
1169 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1); in init_cpu_features()
1170 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2); in init_cpu_features()
1171 init_cpu_ftr_reg(SYS_ID_AA64MMFR3_EL1, info->reg_id_aa64mmfr3); in init_cpu_features()
1172 init_cpu_ftr_reg(SYS_ID_AA64MMFR4_EL1, info->reg_id_aa64mmfr4); in init_cpu_features()
1173 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0); in init_cpu_features()
1174 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1); in init_cpu_features()
1175 init_cpu_ftr_reg(SYS_ID_AA64PFR2_EL1, info->reg_id_aa64pfr2); in init_cpu_features()
1176 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0); in init_cpu_features()
1177 init_cpu_ftr_reg(SYS_ID_AA64SMFR0_EL1, info->reg_id_aa64smfr0); in init_cpu_features()
1178 init_cpu_ftr_reg(SYS_ID_AA64FPFR0_EL1, info->reg_id_aa64fpfr0); in init_cpu_features()
1180 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) in init_cpu_features()
1181 init_32bit_cpu_features(&info->aarch32); in init_cpu_features()
1201 if (id_aa64pfr0_mpam(info->reg_id_aa64pfr0)) in init_cpu_features()
1202 init_cpu_ftr_reg(SYS_MPAMIDR_EL1, info->reg_mpamidr); in init_cpu_features()
1204 if (id_aa64pfr1_mte(info->reg_id_aa64pfr1)) in init_cpu_features()
1205 init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid); in init_cpu_features()
1208 static void update_cpu_ftr_reg(struct arm64_ftr_reg *reg, u64 new) in update_cpu_ftr_reg() argument
1212 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in update_cpu_ftr_reg()
1213 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val); in update_cpu_ftr_reg()
1220 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new); in update_cpu_ftr_reg()
1225 static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot) in check_update_ftr_reg() argument
1233 if ((boot & regp->strict_mask) == (val & regp->strict_mask)) in check_update_ftr_reg()
1235 pr_warn("SANITY CHECK: Unexpected variation in %s. Boot CPU: %#016llx, CPU%d: %#016llx\n", in check_update_ftr_reg()
1236 regp->name, boot, cpu, val); in check_update_ftr_reg()
1248 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) { in relax_cpu_ftr_reg()
1249 if (ftrp->shift == field) { in relax_cpu_ftr_reg()
1250 regp->strict_mask &= ~arm64_ftr_mask(ftrp); in relax_cpu_ftr_reg()
1256 WARN_ON(!ftrp->width); in relax_cpu_ftr_reg()
1260 struct cpuinfo_arm64 *boot) in lazy_init_32bit_cpu_features() argument
1267 if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0)) in lazy_init_32bit_cpu_features()
1270 boot->aarch32 = info->aarch32; in lazy_init_32bit_cpu_features()
1271 init_32bit_cpu_features(&boot->aarch32); in lazy_init_32bit_cpu_features()
1276 struct cpuinfo_32bit *boot) in update_32bit_cpu_features() argument
1283 * EL1-dependent register fields to avoid spurious sanity check fails. in update_32bit_cpu_features()
1295 info->reg_id_dfr0, boot->reg_id_dfr0); in update_32bit_cpu_features()
1297 info->reg_id_dfr1, boot->reg_id_dfr1); in update_32bit_cpu_features()
1299 info->reg_id_isar0, boot->reg_id_isar0); in update_32bit_cpu_features()
1301 info->reg_id_isar1, boot->reg_id_isar1); in update_32bit_cpu_features()
1303 info->reg_id_isar2, boot->reg_id_isar2); in update_32bit_cpu_features()
1305 info->reg_id_isar3, boot->reg_id_isar3); in update_32bit_cpu_features()
1307 info->reg_id_isar4, boot->reg_id_isar4); in update_32bit_cpu_features()
1309 info->reg_id_isar5, boot->reg_id_isar5); in update_32bit_cpu_features()
1311 info->reg_id_isar6, boot->reg_id_isar6); in update_32bit_cpu_features()
1319 info->reg_id_mmfr0, boot->reg_id_mmfr0); in update_32bit_cpu_features()
1321 info->reg_id_mmfr1, boot->reg_id_mmfr1); in update_32bit_cpu_features()
1323 info->reg_id_mmfr2, boot->reg_id_mmfr2); in update_32bit_cpu_features()
1325 info->reg_id_mmfr3, boot->reg_id_mmfr3); in update_32bit_cpu_features()
1327 info->reg_id_mmfr4, boot->reg_id_mmfr4); in update_32bit_cpu_features()
1329 info->reg_id_mmfr5, boot->reg_id_mmfr5); in update_32bit_cpu_features()
1331 info->reg_id_pfr0, boot->reg_id_pfr0); in update_32bit_cpu_features()
1333 info->reg_id_pfr1, boot->reg_id_pfr1); in update_32bit_cpu_features()
1335 info->reg_id_pfr2, boot->reg_id_pfr2); in update_32bit_cpu_features()
1337 info->reg_mvfr0, boot->reg_mvfr0); in update_32bit_cpu_features()
1339 info->reg_mvfr1, boot->reg_mvfr1); in update_32bit_cpu_features()
1341 info->reg_mvfr2, boot->reg_mvfr2); in update_32bit_cpu_features()
1348 * non-boot CPU. Also performs SANITY checks to make sure that there
1349 * aren't any insane variations from that of the boot CPU.
1353 struct cpuinfo_arm64 *boot) in update_cpu_features() argument
1358 * The kernel can handle differing I-cache policies, but otherwise in update_cpu_features()
1363 info->reg_ctr, boot->reg_ctr); in update_cpu_features()
1371 info->reg_dczid, boot->reg_dczid); in update_cpu_features()
1375 info->reg_cntfrq, boot->reg_cntfrq); in update_cpu_features()
1378 * The kernel uses self-hosted debug features and expects CPUs to in update_cpu_features()
1384 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0); in update_cpu_features()
1386 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1); in update_cpu_features()
1388 * Even in big.LITTLE, processors should be identical instruction-set in update_cpu_features()
1392 info->reg_id_aa64isar0, boot->reg_id_aa64isar0); in update_cpu_features()
1394 info->reg_id_aa64isar1, boot->reg_id_aa64isar1); in update_cpu_features()
1396 info->reg_id_aa64isar2, boot->reg_id_aa64isar2); in update_cpu_features()
1398 info->reg_id_aa64isar3, boot->reg_id_aa64isar3); in update_cpu_features()
1406 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0); in update_cpu_features()
1408 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1); in update_cpu_features()
1410 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2); in update_cpu_features()
1412 info->reg_id_aa64mmfr3, boot->reg_id_aa64mmfr3); in update_cpu_features()
1415 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0); in update_cpu_features()
1417 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1); in update_cpu_features()
1419 info->reg_id_aa64pfr2, boot->reg_id_aa64pfr2); in update_cpu_features()
1422 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0); in update_cpu_features()
1425 info->reg_id_aa64smfr0, boot->reg_id_aa64smfr0); in update_cpu_features()
1428 info->reg_id_aa64fpfr0, boot->reg_id_aa64fpfr0); in update_cpu_features()
1453 if (id_aa64pfr0_mpam(info->reg_id_aa64pfr0)) { in update_cpu_features()
1455 info->reg_mpamidr, boot->reg_mpamidr); in update_cpu_features()
1464 id_aa64pfr1_mte(info->reg_id_aa64pfr1)) { in update_cpu_features()
1466 info->reg_gmid, boot->reg_gmid); in update_cpu_features()
1477 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { in update_cpu_features()
1478 lazy_init_32bit_cpu_features(info, boot); in update_cpu_features()
1479 taint |= update_32bit_cpu_features(cpu, &info->aarch32, in update_cpu_features()
1480 &boot->aarch32); in update_cpu_features()
1499 return regp->sys_val; in read_sanitised_ftr_reg()
1507 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
1567 val &= ~regp->override->mask; in __read_sysreg_by_encoding()
1568 val |= (regp->override->val & regp->override->mask); in __read_sysreg_by_encoding()
1574 #include <linux/irqchip/arm-gic-v3.h>
1583 feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry) in feature_matches() argument
1588 val = cpuid_feature_extract_field_width(reg, entry->field_pos, in feature_matches()
1589 entry->field_width, in feature_matches()
1590 entry->sign); in feature_matches()
1592 tmp = entry->min_field_value; in feature_matches()
1593 tmp <<= entry->field_pos; in feature_matches()
1595 min = cpuid_feature_extract_field_width(tmp, entry->field_pos, in feature_matches()
1596 entry->field_width, in feature_matches()
1597 entry->sign); in feature_matches()
1599 tmp = entry->max_field_value; in feature_matches()
1600 tmp <<= entry->field_pos; in feature_matches()
1602 max = cpuid_feature_extract_field_width(tmp, entry->field_pos, in feature_matches()
1603 entry->field_width, in feature_matches()
1604 entry->sign); in feature_matches()
1614 return read_sanitised_ftr_reg(entry->sys_reg); in read_scoped_sysreg()
1616 return __read_sysreg_by_encoding(entry->sys_reg); in read_scoped_sysreg()
1626 regp = get_arm64_ftr_reg(entry->sys_reg); in has_user_cpuid_feature()
1630 mask = cpuid_feature_extract_unsigned_field_width(regp->user_mask, in has_user_cpuid_feature()
1631 entry->field_pos, in has_user_cpuid_feature()
1632 entry->field_width); in has_user_cpuid_feature()
1701 pr_info("detected: 32-bit EL0 Support\n"); in has_32bit_el0()
1716 entry->desc); in has_useable_gicv3_cpuif()
1763 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP in has_useable_cnp()
1815 * ThunderX leads to apparent I-cache corruption of kernel text, which in unmap_kernel_at_el0()
1824 __kpti_forced = -1; in unmap_kernel_at_el0()
1837 __kpti_forced = -1; in unmap_kernel_at_el0()
1933 #define KPTI_NG_TEMP_VA (-(1UL << PMD_SHIFT))
1944 kpti_ng_temp_alloc -= PAGE_SIZE; in kpti_ng_pgd_alloc()
1970 kpti_ng_temp_pgd = (pgd_t *)(alloc + (levels - 1) * PAGE_SIZE); in __kpti_install_ng_mappings()
1979 // +--------+-/-------+-/------ +-/------ +-\\\--------+ in __kpti_install_ng_mappings()
1981 // +--------+-\-------+-\------ +-\------ +-///--------+ in __kpti_install_ng_mappings()
1987 // to be used as a ad-hoc fixmap. in __kpti_install_ng_mappings()
2013 * We don't need to rewrite the page-tables if either we've done in kpti_install_ng_mappings()
2047 __kpti_forced = enabled ? 1 : -1; in parse_kpti()
2100 * DBM is a non-conflicting feature. i.e, the kernel can safely in has_hw_dbm()
2150 * The AMU extension is a non-conflicting feature: the kernel can in has_amu()
2157 * including secondary and hotplugged, marking this feature as in has_amu()
2183 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to in cpu_copy_el2regs()
2197 pr_warn("unavailable: %s\n", cap->desc); in has_nested_virt_support()
2240 * The ptr-auth feature levels are not intercompatible with lower in has_address_auth_cpucap()
2241 * levels. Hence we must match ptr-auth feature level of the secondary in has_address_auth_cpucap()
2242 * CPUs with that of the boot CPU. The level of boot cpu is fetched in has_address_auth_cpucap()
2244 * the secondary CPUs. in has_address_auth_cpucap()
2246 * boot CPU as a mismatched secondary CPU is parked before it gets in has_address_auth_cpucap()
2249 boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg), in has_address_auth_cpucap()
2250 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2252 return boot_val >= entry->min_field_value; in has_address_auth_cpucap()
2253 /* Now check for the secondary CPUs with SCOPE_LOCAL_CPU scope */ in has_address_auth_cpucap()
2254 sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg), in has_address_auth_cpucap()
2255 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2256 return (sec_val >= entry->min_field_value) && (sec_val == boot_val); in has_address_auth_cpucap()
2293 * ARM64_HAS_GIC_CPUIF_SYSREGS has a lower index, and is a boot CPU in can_use_gic_priorities()
2312 * ARM64_HAS_GIC_PRIO_MASKING has a lower index, and is a boot CPU in has_gic_prio_relaxed_sync()
2336 * Use of X16/X17 for tail-calls and trampolines that jump to in bti_enable()
2374 regp->user_mask &= ~ID_AA64ISAR1_EL1_BF16_MASK; in user_feature_fixup()
2382 regp->user_mask &= ~ID_AA64PFR1_EL1_SSBS_MASK; in user_feature_fixup()
2436 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU); in cpucap_late_cpu_optional()
2442 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU); in cpucap_late_cpu_permitted()
2448 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT); in cpucap_panic_on_conflict()
2466 * which is configured unrestricted. This avoids priority-inversion in cpu_enable_mpam()
2573 .desc = "32-bit EL1 Support",
2674 .desc = "Stage-2 Force Write-Back",
2873 .desc = "RCpc load-acquire (LDAPR)",
2951 .desc = "Stage-1 Permission Indirection Extension (S1PIE)",
2971 .desc = "52-bit Virtual Addressing for KVM (LPA2)",
2990 .desc = "52-bit Virtual Addressing (LVA)",
2993 .desc = "52-bit Virtual Addressing (LPA2)",
3025 .desc = "Stage-1 Permission Overlay Extension (S1POE)",
3054 #define HWCAP_CPUID_MATCH(reg, field, min_value) \ argument
3056 ARM64_CPUID_FIELDS(reg, field, min_value)
3064 #define HWCAP_CAP(reg, field, min_value, cap_type, cap) \ argument
3067 HWCAP_CPUID_MATCH(reg, field, min_value) \
3083 #define HWCAP_CAP_MATCH_ID(match, reg, field, min_value, cap_type, cap) \ argument
3086 HWCAP_CPUID_MATCH(reg, field, min_value) \
3259 * check is future proof, by making sure value is non-zero. in compat_has_neon()
3301 switch (cap->hwcap_type) { in cap_set_elf_hwcap()
3303 cpu_set_feature(cap->hwcap); in cap_set_elf_hwcap()
3307 compat_elf_hwcap |= (u32)cap->hwcap; in cap_set_elf_hwcap()
3310 compat_elf_hwcap2 |= (u32)cap->hwcap; in cap_set_elf_hwcap()
3324 switch (cap->hwcap_type) { in cpus_have_elf_hwcap()
3326 rc = cpu_have_feature(cap->hwcap); in cpus_have_elf_hwcap()
3330 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
3333 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
3348 for (; hwcaps->matches; hwcaps++) in setup_elf_hwcaps()
3349 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps))) in setup_elf_hwcaps()
3361 if (!caps || !(caps->type & scope_mask) || in update_cpu_capabilities()
3362 cpus_have_cap(caps->capability) || in update_cpu_capabilities()
3363 !caps->matches(caps, cpucap_default_scope(caps))) in update_cpu_capabilities()
3366 if (caps->desc && !caps->cpus) in update_cpu_capabilities()
3367 pr_info("detected: %s\n", caps->desc); in update_cpu_capabilities()
3369 __set_bit(caps->capability, system_cpucaps); in update_cpu_capabilities()
3371 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU)) in update_cpu_capabilities()
3372 set_bit(caps->capability, boot_cpucaps); in update_cpu_capabilities()
3391 if (!(cap->type & non_boot_scope)) in cpu_enable_non_boot_scope_capabilities()
3394 if (cap->cpu_enable) in cpu_enable_non_boot_scope_capabilities()
3395 cap->cpu_enable(cap); in cpu_enable_non_boot_scope_capabilities()
3415 if (!caps || !(caps->type & scope_mask) || in enable_cpu_capabilities()
3416 !cpus_have_cap(caps->capability)) in enable_cpu_capabilities()
3419 if (boot_scope && caps->cpu_enable) in enable_cpu_capabilities()
3422 * before any secondary CPU boots. Thus, each secondary in enable_cpu_capabilities()
3425 * the boot CPU, for which the capability must be in enable_cpu_capabilities()
3429 caps->cpu_enable(caps); in enable_cpu_capabilities()
3433 * For all non-boot scope capabilities, use stop_machine() in enable_cpu_capabilities()
3458 if (!caps || !(caps->type & scope_mask)) in verify_local_cpu_caps()
3461 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU); in verify_local_cpu_caps()
3462 system_has_cap = cpus_have_cap(caps->capability); in verify_local_cpu_caps()
3477 if (caps->cpu_enable) in verify_local_cpu_caps()
3478 caps->cpu_enable(caps); in verify_local_cpu_caps()
3491 smp_processor_id(), caps->capability, in verify_local_cpu_caps()
3492 caps->desc, system_has_cap, cpu_has_cap); in verify_local_cpu_caps()
3502 * Check for CPU features that are used in early boot
3503 * based on the Boot CPU value.
3516 for (; caps->matches; caps++) in __verify_local_elf_hwcaps()
3517 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) { in __verify_local_elf_hwcaps()
3519 smp_processor_id(), caps->desc); in __verify_local_elf_hwcaps()
3621 * The capabilities were decided based on the available CPUs at the boot time.
3632 * on all secondary CPUs. in verify_local_cpu_capabilities()
3653 * All secondary CPUs should conform to the early CPU features in check_local_cpu_capabilities()
3654 * in use by the kernel based on boot CPU. in check_local_cpu_capabilities()
3676 return cap->matches(cap, SCOPE_LOCAL_CPU); in this_cpu_has_cap()
3685 * - The system wide safe registers are set with all the SMP CPUs and,
3686 * - The SYSTEM_FEATURE system_cpucaps may not have been set.
3694 return cap->matches(cap, SCOPE_SYSTEM); in __system_matches_cap()
3734 * The boot CPU's feature register values have been recorded. Detect in setup_boot_cpu_capabilities()
3735 * boot cpucaps and local cpucaps for the boot CPU, then enable and in setup_boot_cpu_capabilities()
3736 * patch alternatives for the available boot cpucaps. in setup_boot_cpu_capabilities()
3747 * handle the boot CPU. in setup_boot_cpu_features()
3752 * Detect broken pseudo-NMI. Must be called _before_ the call to in setup_boot_cpu_features()
3764 * The system-wide safe feature register values have been finalized. in setup_system_capabilities()
3779 if (caps && caps->cpus && caps->desc && in setup_system_capabilities()
3780 cpumask_any(caps->cpus) < nr_cpu_ids) in setup_system_capabilities()
3782 caps->desc, cpumask_pr_args(caps->cpus)); in setup_system_capabilities()
3826 * The first 32-bit-capable CPU we detected and so can no longer in enable_mismatched_32bit_el0()
3827 * be offlined by userspace. -1 indicates we haven't yet onlined in enable_mismatched_32bit_el0()
3828 * a 32-bit-capable CPU. in enable_mismatched_32bit_el0()
3830 static int lucky_winner = -1; in enable_mismatched_32bit_el0()
3835 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { in enable_mismatched_32bit_el0()
3837 pr_info("Treating adaptive-ticks CPU %u as 64-bit only\n", cpu); in enable_mismatched_32bit_el0()
3855 * 32-bit EL0 online so that is_cpu_allowed() doesn't end up rejecting in enable_mismatched_32bit_el0()
3856 * every CPU in the system for a 32-bit task. in enable_mismatched_32bit_el0()
3860 get_cpu_device(lucky_winner)->offline_disabled = true; in enable_mismatched_32bit_el0()
3863 pr_info("Asymmetric 32-bit EL0 support detected on CPU %u; CPU hot-unplug disabled on CPU %u\n", in enable_mismatched_32bit_el0()
3874 return -ENOMEM; in init_32bit_el0_mask()
3889 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 2 - 7]
3890 * See Table C5-6 System instruction encodings for System register accesses,
3903 * With CRm == 0, reg should be one of :
3920 return -EINVAL; in emulate_id_reg()
3931 return -EINVAL; in emulate_sys_reg()