Lines Matching +full:reserved +full:- +full:ipi +full:- +full:vectors

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
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
92 #include <asm/vectors.h>
117 DEFINE_PER_CPU_READ_MOSTLY(const char *, this_cpu_vector) = vectors;
120 * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs
127 * seen at least one CPU capable of 32-bit EL0.
132 * Mask of CPUs supporting 32-bit EL0.
139 /* file-wide pr_fmt adds "CPU features: " prefix */ in dump_cpu_features()
327 * Page size not being supported at Stage-2 is not fatal. You
332 * advertises a given granule size at Stage-2 (value 2) on some
333 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
349 * along with it and treat them as non-strict.
418 * Linux can handle differing I-cache policies. Userspace JITs will
420 * If we have differing I-cache policies, report it as the weakest - VIPT.
620 * id_isar[1-3], id_mmfr[1-3]
741 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id; in search_cmp_ftr_reg()
745 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
750 * returns - Upon success, matching ftr_reg entry for id.
751 * - NULL on failure. It is upto the caller to decide
764 return ret->reg; in get_arm64_ftr_reg_nowarn()
769 * get_arm64_ftr_reg - Looks up a feature register entry using
772 * returns - Upon success, matching ftr_reg entry for id.
773 * - NULL on failure but with an WARN_ON().
782 * Requesting a non-existent register search is an error. Warn in get_arm64_ftr_reg()
795 reg |= (ftr_val << ftrp->shift) & mask; in arm64_ftr_set_value()
804 switch (ftrp->type) { in arm64_ftr_safe_value()
806 ret = ftrp->safe_val; in arm64_ftr_safe_value()
831 const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits; in sort_ftr_regs()
838 for (; ftr_bits->width != 0; ftr_bits++, j++) { in sort_ftr_regs()
839 unsigned int width = ftr_reg->ftr_bits[j].width; in sort_ftr_regs()
840 unsigned int shift = ftr_reg->ftr_bits[j].shift; in sort_ftr_regs()
845 ftr_reg->name, shift); in sort_ftr_regs()
854 prev_shift = ftr_reg->ftr_bits[j - 1].shift; in sort_ftr_regs()
857 ftr_reg->name, shift); in sort_ftr_regs()
871 BUG_ON(arm64_ftr_regs[i].sys_id <= arm64_ftr_regs[i - 1].sys_id); in sort_ftr_regs()
879 * RES0 for the system-wide value, and must strictly match.
894 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in init_cpu_ftr_reg()
897 s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val); in init_cpu_ftr_reg()
899 if ((ftr_mask & reg->override->mask) == ftr_mask) { in init_cpu_ftr_reg()
905 reg->override->mask &= ~ftr_mask; in init_cpu_ftr_reg()
906 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
920 reg->name, in init_cpu_ftr_reg()
921 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
922 ftrp->shift, str, tmp); in init_cpu_ftr_reg()
923 } else if ((ftr_mask & reg->override->val) == ftr_mask) { in init_cpu_ftr_reg()
924 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
926 reg->name, in init_cpu_ftr_reg()
927 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
928 ftrp->shift); in init_cpu_ftr_reg()
934 if (!ftrp->strict) in init_cpu_ftr_reg()
936 if (ftrp->visible) in init_cpu_ftr_reg()
939 reg->user_val = arm64_ftr_set_value(ftrp, in init_cpu_ftr_reg()
940 reg->user_val, in init_cpu_ftr_reg()
941 ftrp->safe_val); in init_cpu_ftr_reg()
946 reg->sys_val = val; in init_cpu_ftr_reg()
947 reg->strict_mask = strict_mask; in init_cpu_ftr_reg()
948 reg->user_mask = user_mask; in init_cpu_ftr_reg()
957 for (; caps->matches; caps++) { in init_cpucap_indirect_list_from_array()
958 if (WARN(caps->capability >= ARM64_NCAPS, in init_cpucap_indirect_list_from_array()
959 "Invalid capability %d\n", caps->capability)) in init_cpucap_indirect_list_from_array()
961 if (WARN(cpucap_ptrs[caps->capability], in init_cpucap_indirect_list_from_array()
963 caps->capability)) in init_cpucap_indirect_list_from_array()
965 cpucap_ptrs[caps->capability] = caps; in init_cpucap_indirect_list_from_array()
979 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0); in init_32bit_cpu_features()
980 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1); in init_32bit_cpu_features()
981 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0); in init_32bit_cpu_features()
982 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1); in init_32bit_cpu_features()
983 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2); in init_32bit_cpu_features()
984 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3); in init_32bit_cpu_features()
985 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4); in init_32bit_cpu_features()
986 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5); in init_32bit_cpu_features()
987 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6); in init_32bit_cpu_features()
988 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0); in init_32bit_cpu_features()
989 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1); in init_32bit_cpu_features()
990 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2); in init_32bit_cpu_features()
991 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3); in init_32bit_cpu_features()
992 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4); in init_32bit_cpu_features()
993 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5); in init_32bit_cpu_features()
994 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0); in init_32bit_cpu_features()
995 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1); in init_32bit_cpu_features()
996 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2); in init_32bit_cpu_features()
997 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0); in init_32bit_cpu_features()
998 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1); in init_32bit_cpu_features()
999 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2); in init_32bit_cpu_features()
1022 np = of_find_compatible_node(NULL, NULL, "arm,gic-v3"); in detect_system_supports_pseudo_nmi()
1023 if (np && of_property_read_bool(np, "mediatek,broken-save-restore-fw")) { in detect_system_supports_pseudo_nmi()
1024 pr_info("Pseudo-NMI disabled due to MediaTek Chromebook GICR save problem\n"); in detect_system_supports_pseudo_nmi()
1038 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr); in init_cpu_features()
1039 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid); in init_cpu_features()
1040 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq); in init_cpu_features()
1041 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0); in init_cpu_features()
1042 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1); in init_cpu_features()
1043 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0); in init_cpu_features()
1044 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1); in init_cpu_features()
1045 init_cpu_ftr_reg(SYS_ID_AA64ISAR2_EL1, info->reg_id_aa64isar2); in init_cpu_features()
1046 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0); in init_cpu_features()
1047 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1); in init_cpu_features()
1048 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2); in init_cpu_features()
1049 init_cpu_ftr_reg(SYS_ID_AA64MMFR3_EL1, info->reg_id_aa64mmfr3); in init_cpu_features()
1050 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0); in init_cpu_features()
1051 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1); in init_cpu_features()
1052 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0); in init_cpu_features()
1053 init_cpu_ftr_reg(SYS_ID_AA64SMFR0_EL1, info->reg_id_aa64smfr0); in init_cpu_features()
1055 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) in init_cpu_features()
1056 init_32bit_cpu_features(&info->aarch32); in init_cpu_features()
1076 info->reg_smidr = read_cpuid(SMIDR_EL1) & ~SMIDR_EL1_SMPS; in init_cpu_features()
1082 if (id_aa64pfr1_mte(info->reg_id_aa64pfr1)) in init_cpu_features()
1083 init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid); in init_cpu_features()
1090 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in update_cpu_ftr_reg()
1091 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val); in update_cpu_ftr_reg()
1098 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new); in update_cpu_ftr_reg()
1111 if ((boot & regp->strict_mask) == (val & regp->strict_mask)) in check_update_ftr_reg()
1114 regp->name, boot, cpu, val); in check_update_ftr_reg()
1126 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) { in relax_cpu_ftr_reg()
1127 if (ftrp->shift == field) { in relax_cpu_ftr_reg()
1128 regp->strict_mask &= ~arm64_ftr_mask(ftrp); in relax_cpu_ftr_reg()
1134 WARN_ON(!ftrp->width); in relax_cpu_ftr_reg()
1145 if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0)) in lazy_init_32bit_cpu_features()
1148 boot->aarch32 = info->aarch32; in lazy_init_32bit_cpu_features()
1149 init_32bit_cpu_features(&boot->aarch32); in lazy_init_32bit_cpu_features()
1161 * EL1-dependent register fields to avoid spurious sanity check fails. in update_32bit_cpu_features()
1173 info->reg_id_dfr0, boot->reg_id_dfr0); in update_32bit_cpu_features()
1175 info->reg_id_dfr1, boot->reg_id_dfr1); in update_32bit_cpu_features()
1177 info->reg_id_isar0, boot->reg_id_isar0); in update_32bit_cpu_features()
1179 info->reg_id_isar1, boot->reg_id_isar1); in update_32bit_cpu_features()
1181 info->reg_id_isar2, boot->reg_id_isar2); in update_32bit_cpu_features()
1183 info->reg_id_isar3, boot->reg_id_isar3); in update_32bit_cpu_features()
1185 info->reg_id_isar4, boot->reg_id_isar4); in update_32bit_cpu_features()
1187 info->reg_id_isar5, boot->reg_id_isar5); in update_32bit_cpu_features()
1189 info->reg_id_isar6, boot->reg_id_isar6); in update_32bit_cpu_features()
1197 info->reg_id_mmfr0, boot->reg_id_mmfr0); in update_32bit_cpu_features()
1199 info->reg_id_mmfr1, boot->reg_id_mmfr1); in update_32bit_cpu_features()
1201 info->reg_id_mmfr2, boot->reg_id_mmfr2); in update_32bit_cpu_features()
1203 info->reg_id_mmfr3, boot->reg_id_mmfr3); in update_32bit_cpu_features()
1205 info->reg_id_mmfr4, boot->reg_id_mmfr4); in update_32bit_cpu_features()
1207 info->reg_id_mmfr5, boot->reg_id_mmfr5); in update_32bit_cpu_features()
1209 info->reg_id_pfr0, boot->reg_id_pfr0); in update_32bit_cpu_features()
1211 info->reg_id_pfr1, boot->reg_id_pfr1); in update_32bit_cpu_features()
1213 info->reg_id_pfr2, boot->reg_id_pfr2); in update_32bit_cpu_features()
1215 info->reg_mvfr0, boot->reg_mvfr0); in update_32bit_cpu_features()
1217 info->reg_mvfr1, boot->reg_mvfr1); in update_32bit_cpu_features()
1219 info->reg_mvfr2, boot->reg_mvfr2); in update_32bit_cpu_features()
1226 * non-boot CPU. Also performs SANITY checks to make sure that there
1236 * The kernel can handle differing I-cache policies, but otherwise in update_cpu_features()
1241 info->reg_ctr, boot->reg_ctr); in update_cpu_features()
1249 info->reg_dczid, boot->reg_dczid); in update_cpu_features()
1253 info->reg_cntfrq, boot->reg_cntfrq); in update_cpu_features()
1256 * The kernel uses self-hosted debug features and expects CPUs to in update_cpu_features()
1262 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0); in update_cpu_features()
1264 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1); in update_cpu_features()
1266 * Even in big.LITTLE, processors should be identical instruction-set in update_cpu_features()
1270 info->reg_id_aa64isar0, boot->reg_id_aa64isar0); in update_cpu_features()
1272 info->reg_id_aa64isar1, boot->reg_id_aa64isar1); in update_cpu_features()
1274 info->reg_id_aa64isar2, boot->reg_id_aa64isar2); in update_cpu_features()
1282 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0); in update_cpu_features()
1284 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1); in update_cpu_features()
1286 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2); in update_cpu_features()
1288 info->reg_id_aa64mmfr3, boot->reg_id_aa64mmfr3); in update_cpu_features()
1291 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0); in update_cpu_features()
1293 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1); in update_cpu_features()
1296 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0); in update_cpu_features()
1299 info->reg_id_aa64smfr0, boot->reg_id_aa64smfr0); in update_cpu_features()
1322 info->reg_smidr = read_cpuid(SMIDR_EL1) & ~SMIDR_EL1_SMPS; in update_cpu_features()
1337 id_aa64pfr1_mte(info->reg_id_aa64pfr1)) { in update_cpu_features()
1339 info->reg_gmid, boot->reg_gmid); in update_cpu_features()
1350 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { in update_cpu_features()
1352 taint |= update_32bit_cpu_features(cpu, &info->aarch32, in update_cpu_features()
1353 &boot->aarch32); in update_cpu_features()
1372 return regp->sys_val; in read_sanitised_ftr_reg()
1380 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
1436 val &= ~regp->override->mask; in __read_sysreg_by_encoding()
1437 val |= (regp->override->val & regp->override->mask); in __read_sysreg_by_encoding()
1443 #include <linux/irqchip/arm-gic-v3.h>
1454 int val = cpuid_feature_extract_field_width(reg, entry->field_pos, in feature_matches()
1455 entry->field_width, in feature_matches()
1456 entry->sign); in feature_matches()
1458 return val >= entry->min_field_value; in feature_matches()
1466 return read_sanitised_ftr_reg(entry->sys_reg); in read_scoped_sysreg()
1468 return __read_sysreg_by_encoding(entry->sys_reg); in read_scoped_sysreg()
1478 regp = get_arm64_ftr_reg(entry->sys_reg); in has_user_cpuid_feature()
1482 mask = cpuid_feature_extract_unsigned_field_width(regp->user_mask, in has_user_cpuid_feature()
1483 entry->field_pos, in has_user_cpuid_feature()
1484 entry->field_width); in has_user_cpuid_feature()
1548 pr_info("detected: 32-bit EL0 Support\n"); in has_32bit_el0()
1563 entry->desc); in has_useable_gicv3_cpuif()
1610 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP in has_useable_cnp()
1626 * CPU to detect the need for non-global mappings and thus avoiding a
1627 * pagetable re-write after all the CPUs are booted. This check will be
1629 * state once the SMP CPUs are up and thus make the switch to non-global
1702 * ThunderX leads to apparent I-cache corruption of kernel text, which in unmap_kernel_at_el0()
1711 __kpti_forced = -1; in unmap_kernel_at_el0()
1724 __kpti_forced = -1; in unmap_kernel_at_el0()
1776 #define KPTI_NG_TEMP_VA (-(1UL << PMD_SHIFT))
1787 kpti_ng_temp_alloc -= PAGE_SIZE; in kpti_ng_pgd_alloc()
1808 kpti_ng_temp_pgd = (pgd_t *)(alloc + (levels - 1) * PAGE_SIZE); in __kpti_install_ng_mappings()
1817 // +--------+-/-------+-/------ +-\\--------+ in __kpti_install_ng_mappings()
1819 // +--------+-\-------+-\------ +-//--------+ in __kpti_install_ng_mappings()
1825 // to be used as a ad-hoc fixmap. in __kpti_install_ng_mappings()
1851 * We don't need to rewrite the page-tables if either we've done in kpti_install_ng_mappings()
1869 if (__this_cpu_read(this_cpu_vector) == vectors) { in cpu_enable_kpti()
1885 __kpti_forced = enabled ? 1 : -1; in parse_kpti()
1938 * DBM is a non-conflicting feature. i.e, the kernel can safely in has_hw_dbm()
1988 * The AMU extension is a non-conflicting feature: the kernel can in has_amu()
2021 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to in cpu_copy_el2regs()
2035 pr_warn("unavailable: %s\n", cap->desc); in has_nested_virt_support()
2085 * The ptr-auth feature levels are not intercompatible with lower in has_address_auth_cpucap()
2086 * levels. Hence we must match ptr-auth feature level of the secondary in has_address_auth_cpucap()
2094 boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg), in has_address_auth_cpucap()
2095 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2097 return boot_val >= entry->min_field_value; in has_address_auth_cpucap()
2099 sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg), in has_address_auth_cpucap()
2100 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2101 return (sec_val >= entry->min_field_value) && (sec_val == boot_val); in has_address_auth_cpucap()
2181 * Use of X16/X17 for tail-calls and trampolines that jump to in bti_enable()
2219 regp->user_mask &= ~ID_AA64ISAR1_EL1_BF16_MASK; in user_feature_fixup()
2257 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU); in cpucap_late_cpu_optional()
2263 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU); in cpucap_late_cpu_permitted()
2269 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT); in cpucap_panic_on_conflict()
2354 .desc = "32-bit EL1 Support",
2455 .desc = "Stage-2 Force Write-Back",
2639 .desc = "RCpc load-acquire (LDAPR)",
2717 .desc = "Stage-1 Permission Indirection Extension (S1PIE)",
2737 .desc = "52-bit Virtual Addressing for KVM (LPA2)",
2900 * check is future proof, by making sure value is non-zero. in compat_has_neon()
2942 switch (cap->hwcap_type) { in cap_set_elf_hwcap()
2944 cpu_set_feature(cap->hwcap); in cap_set_elf_hwcap()
2948 compat_elf_hwcap |= (u32)cap->hwcap; in cap_set_elf_hwcap()
2951 compat_elf_hwcap2 |= (u32)cap->hwcap; in cap_set_elf_hwcap()
2965 switch (cap->hwcap_type) { in cpus_have_elf_hwcap()
2967 rc = cpu_have_feature(cap->hwcap); in cpus_have_elf_hwcap()
2971 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
2974 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
2989 for (; hwcaps->matches; hwcaps++) in setup_elf_hwcaps()
2990 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps))) in setup_elf_hwcaps()
3002 if (!caps || !(caps->type & scope_mask) || in update_cpu_capabilities()
3003 cpus_have_cap(caps->capability) || in update_cpu_capabilities()
3004 !caps->matches(caps, cpucap_default_scope(caps))) in update_cpu_capabilities()
3007 if (caps->desc && !caps->cpus) in update_cpu_capabilities()
3008 pr_info("detected: %s\n", caps->desc); in update_cpu_capabilities()
3010 __set_bit(caps->capability, system_cpucaps); in update_cpu_capabilities()
3012 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU)) in update_cpu_capabilities()
3013 set_bit(caps->capability, boot_cpucaps); in update_cpu_capabilities()
3032 if (!(cap->type & non_boot_scope)) in cpu_enable_non_boot_scope_capabilities()
3035 if (cap->cpu_enable) in cpu_enable_non_boot_scope_capabilities()
3036 cap->cpu_enable(cap); in cpu_enable_non_boot_scope_capabilities()
3058 if (!caps || !(caps->type & scope_mask)) in enable_cpu_capabilities()
3060 num = caps->capability; in enable_cpu_capabilities()
3064 if (boot_scope && caps->cpu_enable) in enable_cpu_capabilities()
3074 caps->cpu_enable(caps); in enable_cpu_capabilities()
3078 * For all non-boot scope capabilities, use stop_machine() in enable_cpu_capabilities()
3080 * instead of on_each_cpu() which uses an IPI, giving us a in enable_cpu_capabilities()
3103 if (!caps || !(caps->type & scope_mask)) in verify_local_cpu_caps()
3106 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU); in verify_local_cpu_caps()
3107 system_has_cap = cpus_have_cap(caps->capability); in verify_local_cpu_caps()
3122 if (caps->cpu_enable) in verify_local_cpu_caps()
3123 caps->cpu_enable(caps); in verify_local_cpu_caps()
3136 smp_processor_id(), caps->capability, in verify_local_cpu_caps()
3137 caps->desc, system_has_cap, cpu_has_cap); in verify_local_cpu_caps()
3161 for (; caps->matches; caps++) in __verify_local_elf_hwcaps()
3162 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) { in __verify_local_elf_hwcaps()
3164 smp_processor_id(), caps->desc); in __verify_local_elf_hwcaps()
3288 return cap->matches(cap, SCOPE_LOCAL_CPU); in this_cpu_has_cap()
3297 * - The system wide safe registers are set with all the SMP CPUs and,
3298 * - The SYSTEM_FEATURE system_cpucaps may not have been set.
3306 return cap->matches(cap, SCOPE_SYSTEM); in __system_matches_cap()
3358 * Detect broken pseudo-NMI. Must be called _before_ the call to in setup_boot_cpu_features()
3370 * The system-wide safe feature register values have been finalized. in setup_system_capabilities()
3385 if (caps && caps->cpus && caps->desc && in setup_system_capabilities()
3386 cpumask_any(caps->cpus) < nr_cpu_ids) in setup_system_capabilities()
3388 caps->desc, cpumask_pr_args(caps->cpus)); in setup_system_capabilities()
3432 * The first 32-bit-capable CPU we detected and so can no longer in enable_mismatched_32bit_el0()
3433 * be offlined by userspace. -1 indicates we haven't yet onlined in enable_mismatched_32bit_el0()
3434 * a 32-bit-capable CPU. in enable_mismatched_32bit_el0()
3436 static int lucky_winner = -1; in enable_mismatched_32bit_el0()
3439 bool cpu_32bit = id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0); in enable_mismatched_32bit_el0()
3454 * 32-bit EL0 online so that is_cpu_allowed() doesn't end up rejecting in enable_mismatched_32bit_el0()
3455 * every CPU in the system for a 32-bit task. in enable_mismatched_32bit_el0()
3459 get_cpu_device(lucky_winner)->offline_disabled = true; in enable_mismatched_32bit_el0()
3462 pr_info("Asymmetric 32-bit EL0 support detected on CPU %u; CPU hot-unplug disabled on CPU %u\n", in enable_mismatched_32bit_el0()
3473 return -ENOMEM; in init_32bit_el0_mask()
3488 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 2 - 7]
3489 * See Table C5-6 System instruction encodings for System register accesses,
3519 return -EINVAL; in emulate_id_reg()
3530 return -EINVAL; in emulate_sys_reg()
3541 * (e.g, ID_AFR0_EL1) or reserved RAZ. in emulate_sys_reg()