Lines Matching +full:broken +full:- +full:save +full:- +full:restore +full:- +full:fw
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
122 * Permit PER_LINUX32 and execve() of 32-bit binaries even if not all CPUs
129 * seen at least one CPU capable of 32-bit EL0.
134 * Mask of CPUs supporting 32-bit EL0.
141 /* file-wide pr_fmt adds "CPU features: " prefix */ in dump_cpu_features()
147 BIT(reg##_##field##_WIDTH - 1) : \
148 BIT(reg##_##field##_WIDTH)) - 1)
150 #define __ARM64_MIN_NEGATIVE(reg, field) BIT(reg##_##field##_WIDTH - 1)
162 * an implicit maximum that depends on the sign-ess of the field.
175 * matching a non-implemented property.
412 * Page size not being supported at Stage-2 is not fatal. You
417 * advertises a given granule size at Stage-2 (value 2) on some
418 * vCPUs, and uses the fallback to Stage-1 (value 0) for other
434 * along with it and treat them as non-strict.
511 * Linux can handle differing I-cache policies. Userspace JITs will
513 * If we have differing I-cache policies, report it as the weakest - VIPT.
721 * id_isar[1-3], id_mmfr[1-3]
853 return (int)(unsigned long)id - (int)((const struct __ftr_reg_entry *)regp)->sys_id; in search_cmp_ftr_reg()
857 * get_arm64_ftr_reg_nowarn - Looks up a feature register entry using
862 * returns - Upon success, matching ftr_reg entry for id.
863 * - NULL on failure. It is upto the caller to decide
876 return ret->reg; in get_arm64_ftr_reg_nowarn()
881 * get_arm64_ftr_reg - Looks up a feature register entry using
884 * returns - Upon success, matching ftr_reg entry for id.
885 * - NULL on failure but with an WARN_ON().
894 * Requesting a non-existent register search is an error. Warn in get_arm64_ftr_reg()
907 reg |= (ftr_val << ftrp->shift) & mask; in arm64_ftr_set_value()
916 switch (ftrp->type) { in arm64_ftr_safe_value()
918 ret = ftrp->safe_val; in arm64_ftr_safe_value()
943 const struct arm64_ftr_bits *ftr_bits = ftr_reg->ftr_bits; in sort_ftr_regs()
950 for (; ftr_bits->width != 0; ftr_bits++, j++) { in sort_ftr_regs()
951 unsigned int width = ftr_reg->ftr_bits[j].width; in sort_ftr_regs()
952 unsigned int shift = ftr_reg->ftr_bits[j].shift; in sort_ftr_regs()
957 ftr_reg->name, shift); in sort_ftr_regs()
966 prev_shift = ftr_reg->ftr_bits[j - 1].shift; in sort_ftr_regs()
969 ftr_reg->name, shift); in sort_ftr_regs()
983 BUG_ON(arm64_ftr_regs[i].sys_id <= arm64_ftr_regs[i - 1].sys_id); in sort_ftr_regs()
991 * RES0 for the system-wide value, and must strictly match.
1006 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in init_cpu_ftr_reg()
1009 s64 ftr_ovr = arm64_ftr_value(ftrp, reg->override->val); in init_cpu_ftr_reg()
1011 if ((ftr_mask & reg->override->mask) == ftr_mask) { in init_cpu_ftr_reg()
1017 reg->override->mask &= ~ftr_mask; in init_cpu_ftr_reg()
1018 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
1031 reg->name, in init_cpu_ftr_reg()
1032 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
1033 ftrp->shift, str, in init_cpu_ftr_reg()
1034 tmp & (BIT(ftrp->width) - 1)); in init_cpu_ftr_reg()
1035 } else if ((ftr_mask & reg->override->val) == ftr_mask) { in init_cpu_ftr_reg()
1036 reg->override->val &= ~ftr_mask; in init_cpu_ftr_reg()
1038 reg->name, in init_cpu_ftr_reg()
1039 ftrp->shift + ftrp->width - 1, in init_cpu_ftr_reg()
1040 ftrp->shift); in init_cpu_ftr_reg()
1046 if (!ftrp->strict) in init_cpu_ftr_reg()
1048 if (ftrp->visible) in init_cpu_ftr_reg()
1051 reg->user_val = arm64_ftr_set_value(ftrp, in init_cpu_ftr_reg()
1052 reg->user_val, in init_cpu_ftr_reg()
1053 ftrp->safe_val); in init_cpu_ftr_reg()
1058 reg->sys_val = val; in init_cpu_ftr_reg()
1059 reg->strict_mask = strict_mask; in init_cpu_ftr_reg()
1060 reg->user_mask = user_mask; in init_cpu_ftr_reg()
1069 for (; caps->matches; caps++) { in init_cpucap_indirect_list_from_array()
1070 if (WARN(caps->capability >= ARM64_NCAPS, in init_cpucap_indirect_list_from_array()
1071 "Invalid capability %d\n", caps->capability)) in init_cpucap_indirect_list_from_array()
1073 if (WARN(cpucap_ptrs[caps->capability], in init_cpucap_indirect_list_from_array()
1075 caps->capability)) in init_cpucap_indirect_list_from_array()
1077 cpucap_ptrs[caps->capability] = caps; in init_cpucap_indirect_list_from_array()
1091 init_cpu_ftr_reg(SYS_ID_DFR0_EL1, info->reg_id_dfr0); in init_32bit_cpu_features()
1092 init_cpu_ftr_reg(SYS_ID_DFR1_EL1, info->reg_id_dfr1); in init_32bit_cpu_features()
1093 init_cpu_ftr_reg(SYS_ID_ISAR0_EL1, info->reg_id_isar0); in init_32bit_cpu_features()
1094 init_cpu_ftr_reg(SYS_ID_ISAR1_EL1, info->reg_id_isar1); in init_32bit_cpu_features()
1095 init_cpu_ftr_reg(SYS_ID_ISAR2_EL1, info->reg_id_isar2); in init_32bit_cpu_features()
1096 init_cpu_ftr_reg(SYS_ID_ISAR3_EL1, info->reg_id_isar3); in init_32bit_cpu_features()
1097 init_cpu_ftr_reg(SYS_ID_ISAR4_EL1, info->reg_id_isar4); in init_32bit_cpu_features()
1098 init_cpu_ftr_reg(SYS_ID_ISAR5_EL1, info->reg_id_isar5); in init_32bit_cpu_features()
1099 init_cpu_ftr_reg(SYS_ID_ISAR6_EL1, info->reg_id_isar6); in init_32bit_cpu_features()
1100 init_cpu_ftr_reg(SYS_ID_MMFR0_EL1, info->reg_id_mmfr0); in init_32bit_cpu_features()
1101 init_cpu_ftr_reg(SYS_ID_MMFR1_EL1, info->reg_id_mmfr1); in init_32bit_cpu_features()
1102 init_cpu_ftr_reg(SYS_ID_MMFR2_EL1, info->reg_id_mmfr2); in init_32bit_cpu_features()
1103 init_cpu_ftr_reg(SYS_ID_MMFR3_EL1, info->reg_id_mmfr3); in init_32bit_cpu_features()
1104 init_cpu_ftr_reg(SYS_ID_MMFR4_EL1, info->reg_id_mmfr4); in init_32bit_cpu_features()
1105 init_cpu_ftr_reg(SYS_ID_MMFR5_EL1, info->reg_id_mmfr5); in init_32bit_cpu_features()
1106 init_cpu_ftr_reg(SYS_ID_PFR0_EL1, info->reg_id_pfr0); in init_32bit_cpu_features()
1107 init_cpu_ftr_reg(SYS_ID_PFR1_EL1, info->reg_id_pfr1); in init_32bit_cpu_features()
1108 init_cpu_ftr_reg(SYS_ID_PFR2_EL1, info->reg_id_pfr2); in init_32bit_cpu_features()
1109 init_cpu_ftr_reg(SYS_MVFR0_EL1, info->reg_mvfr0); in init_32bit_cpu_features()
1110 init_cpu_ftr_reg(SYS_MVFR1_EL1, info->reg_mvfr1); in init_32bit_cpu_features()
1111 init_cpu_ftr_reg(SYS_MVFR2_EL1, info->reg_mvfr2); in init_32bit_cpu_features()
1131 * Detect broken MediaTek firmware that doesn't properly save and in detect_system_supports_pseudo_nmi()
1132 * restore GIC priorities. in detect_system_supports_pseudo_nmi()
1134 np = of_find_compatible_node(NULL, NULL, "arm,gic-v3"); in detect_system_supports_pseudo_nmi()
1135 if (np && of_property_read_bool(np, "mediatek,broken-save-restore-fw")) { in detect_system_supports_pseudo_nmi()
1136 pr_info("Pseudo-NMI disabled due to MediaTek Chromebook GICR save problem\n"); in detect_system_supports_pseudo_nmi()
1150 init_cpu_ftr_reg(SYS_CTR_EL0, info->reg_ctr); in init_cpu_features()
1151 init_cpu_ftr_reg(SYS_DCZID_EL0, info->reg_dczid); in init_cpu_features()
1152 init_cpu_ftr_reg(SYS_CNTFRQ_EL0, info->reg_cntfrq); in init_cpu_features()
1153 init_cpu_ftr_reg(SYS_ID_AA64DFR0_EL1, info->reg_id_aa64dfr0); in init_cpu_features()
1154 init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1); in init_cpu_features()
1155 init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0); in init_cpu_features()
1156 init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1); in init_cpu_features()
1157 init_cpu_ftr_reg(SYS_ID_AA64ISAR2_EL1, info->reg_id_aa64isar2); in init_cpu_features()
1158 init_cpu_ftr_reg(SYS_ID_AA64ISAR3_EL1, info->reg_id_aa64isar3); in init_cpu_features()
1159 init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0); in init_cpu_features()
1160 init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1); in init_cpu_features()
1161 init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2); in init_cpu_features()
1162 init_cpu_ftr_reg(SYS_ID_AA64MMFR3_EL1, info->reg_id_aa64mmfr3); in init_cpu_features()
1163 init_cpu_ftr_reg(SYS_ID_AA64MMFR4_EL1, info->reg_id_aa64mmfr4); in init_cpu_features()
1164 init_cpu_ftr_reg(SYS_ID_AA64PFR0_EL1, info->reg_id_aa64pfr0); in init_cpu_features()
1165 init_cpu_ftr_reg(SYS_ID_AA64PFR1_EL1, info->reg_id_aa64pfr1); in init_cpu_features()
1166 init_cpu_ftr_reg(SYS_ID_AA64PFR2_EL1, info->reg_id_aa64pfr2); in init_cpu_features()
1167 init_cpu_ftr_reg(SYS_ID_AA64ZFR0_EL1, info->reg_id_aa64zfr0); in init_cpu_features()
1168 init_cpu_ftr_reg(SYS_ID_AA64SMFR0_EL1, info->reg_id_aa64smfr0); in init_cpu_features()
1169 init_cpu_ftr_reg(SYS_ID_AA64FPFR0_EL1, info->reg_id_aa64fpfr0); in init_cpu_features()
1171 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) in init_cpu_features()
1172 init_32bit_cpu_features(&info->aarch32); in init_cpu_features()
1192 if (id_aa64pfr0_mpam(info->reg_id_aa64pfr0)) in init_cpu_features()
1193 init_cpu_ftr_reg(SYS_MPAMIDR_EL1, info->reg_mpamidr); in init_cpu_features()
1195 if (id_aa64pfr1_mte(info->reg_id_aa64pfr1)) in init_cpu_features()
1196 init_cpu_ftr_reg(SYS_GMID_EL1, info->reg_gmid); in init_cpu_features()
1203 for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) { in update_cpu_ftr_reg()
1204 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val); in update_cpu_ftr_reg()
1211 reg->sys_val = arm64_ftr_set_value(ftrp, reg->sys_val, ftr_new); in update_cpu_ftr_reg()
1224 if ((boot & regp->strict_mask) == (val & regp->strict_mask)) in check_update_ftr_reg()
1227 regp->name, boot, cpu, val); in check_update_ftr_reg()
1239 for (ftrp = regp->ftr_bits; ftrp->width; ftrp++) { in relax_cpu_ftr_reg()
1240 if (ftrp->shift == field) { in relax_cpu_ftr_reg()
1241 regp->strict_mask &= ~arm64_ftr_mask(ftrp); in relax_cpu_ftr_reg()
1247 WARN_ON(!ftrp->width); in relax_cpu_ftr_reg()
1258 if (id_aa64pfr0_32bit_el0(boot->reg_id_aa64pfr0)) in lazy_init_32bit_cpu_features()
1261 boot->aarch32 = info->aarch32; in lazy_init_32bit_cpu_features()
1262 init_32bit_cpu_features(&boot->aarch32); in lazy_init_32bit_cpu_features()
1274 * EL1-dependent register fields to avoid spurious sanity check fails. in update_32bit_cpu_features()
1286 info->reg_id_dfr0, boot->reg_id_dfr0); in update_32bit_cpu_features()
1288 info->reg_id_dfr1, boot->reg_id_dfr1); in update_32bit_cpu_features()
1290 info->reg_id_isar0, boot->reg_id_isar0); in update_32bit_cpu_features()
1292 info->reg_id_isar1, boot->reg_id_isar1); in update_32bit_cpu_features()
1294 info->reg_id_isar2, boot->reg_id_isar2); in update_32bit_cpu_features()
1296 info->reg_id_isar3, boot->reg_id_isar3); in update_32bit_cpu_features()
1298 info->reg_id_isar4, boot->reg_id_isar4); in update_32bit_cpu_features()
1300 info->reg_id_isar5, boot->reg_id_isar5); in update_32bit_cpu_features()
1302 info->reg_id_isar6, boot->reg_id_isar6); in update_32bit_cpu_features()
1310 info->reg_id_mmfr0, boot->reg_id_mmfr0); in update_32bit_cpu_features()
1312 info->reg_id_mmfr1, boot->reg_id_mmfr1); in update_32bit_cpu_features()
1314 info->reg_id_mmfr2, boot->reg_id_mmfr2); in update_32bit_cpu_features()
1316 info->reg_id_mmfr3, boot->reg_id_mmfr3); in update_32bit_cpu_features()
1318 info->reg_id_mmfr4, boot->reg_id_mmfr4); in update_32bit_cpu_features()
1320 info->reg_id_mmfr5, boot->reg_id_mmfr5); in update_32bit_cpu_features()
1322 info->reg_id_pfr0, boot->reg_id_pfr0); in update_32bit_cpu_features()
1324 info->reg_id_pfr1, boot->reg_id_pfr1); in update_32bit_cpu_features()
1326 info->reg_id_pfr2, boot->reg_id_pfr2); in update_32bit_cpu_features()
1328 info->reg_mvfr0, boot->reg_mvfr0); in update_32bit_cpu_features()
1330 info->reg_mvfr1, boot->reg_mvfr1); in update_32bit_cpu_features()
1332 info->reg_mvfr2, boot->reg_mvfr2); in update_32bit_cpu_features()
1339 * non-boot CPU. Also performs SANITY checks to make sure that there
1349 * The kernel can handle differing I-cache policies, but otherwise in update_cpu_features()
1354 info->reg_ctr, boot->reg_ctr); in update_cpu_features()
1362 info->reg_dczid, boot->reg_dczid); in update_cpu_features()
1364 /* If different, timekeeping will be broken (especially with KVM) */ in update_cpu_features()
1366 info->reg_cntfrq, boot->reg_cntfrq); in update_cpu_features()
1369 * The kernel uses self-hosted debug features and expects CPUs to in update_cpu_features()
1375 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0); in update_cpu_features()
1377 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1); in update_cpu_features()
1379 * Even in big.LITTLE, processors should be identical instruction-set in update_cpu_features()
1383 info->reg_id_aa64isar0, boot->reg_id_aa64isar0); in update_cpu_features()
1385 info->reg_id_aa64isar1, boot->reg_id_aa64isar1); in update_cpu_features()
1387 info->reg_id_aa64isar2, boot->reg_id_aa64isar2); in update_cpu_features()
1389 info->reg_id_aa64isar3, boot->reg_id_aa64isar3); in update_cpu_features()
1397 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0); in update_cpu_features()
1399 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1); in update_cpu_features()
1401 info->reg_id_aa64mmfr2, boot->reg_id_aa64mmfr2); in update_cpu_features()
1403 info->reg_id_aa64mmfr3, boot->reg_id_aa64mmfr3); in update_cpu_features()
1406 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0); in update_cpu_features()
1408 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1); in update_cpu_features()
1410 info->reg_id_aa64pfr2, boot->reg_id_aa64pfr2); in update_cpu_features()
1413 info->reg_id_aa64zfr0, boot->reg_id_aa64zfr0); in update_cpu_features()
1416 info->reg_id_aa64smfr0, boot->reg_id_aa64smfr0); in update_cpu_features()
1419 info->reg_id_aa64fpfr0, boot->reg_id_aa64fpfr0); in update_cpu_features()
1444 if (id_aa64pfr0_mpam(info->reg_id_aa64pfr0)) { in update_cpu_features()
1446 info->reg_mpamidr, boot->reg_mpamidr); in update_cpu_features()
1455 id_aa64pfr1_mte(info->reg_id_aa64pfr1)) { in update_cpu_features()
1457 info->reg_gmid, boot->reg_gmid); in update_cpu_features()
1468 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { in update_cpu_features()
1470 taint |= update_32bit_cpu_features(cpu, &info->aarch32, in update_cpu_features()
1471 &boot->aarch32); in update_cpu_features()
1490 return regp->sys_val; in read_sanitised_ftr_reg()
1498 * __read_sysreg_by_encoding() - Used by a STARTING cpu before cpuinfo is populated.
1558 val &= ~regp->override->mask; in __read_sysreg_by_encoding()
1559 val |= (regp->override->val & regp->override->mask); in __read_sysreg_by_encoding()
1565 #include <linux/irqchip/arm-gic-v3.h>
1579 val = cpuid_feature_extract_field_width(reg, entry->field_pos, in feature_matches()
1580 entry->field_width, in feature_matches()
1581 entry->sign); in feature_matches()
1583 tmp = entry->min_field_value; in feature_matches()
1584 tmp <<= entry->field_pos; in feature_matches()
1586 min = cpuid_feature_extract_field_width(tmp, entry->field_pos, in feature_matches()
1587 entry->field_width, in feature_matches()
1588 entry->sign); in feature_matches()
1590 tmp = entry->max_field_value; in feature_matches()
1591 tmp <<= entry->field_pos; in feature_matches()
1593 max = cpuid_feature_extract_field_width(tmp, entry->field_pos, in feature_matches()
1594 entry->field_width, in feature_matches()
1595 entry->sign); in feature_matches()
1605 return read_sanitised_ftr_reg(entry->sys_reg); in read_scoped_sysreg()
1607 return __read_sysreg_by_encoding(entry->sys_reg); in read_scoped_sysreg()
1617 regp = get_arm64_ftr_reg(entry->sys_reg); in has_user_cpuid_feature()
1621 mask = cpuid_feature_extract_unsigned_field_width(regp->user_mask, in has_user_cpuid_feature()
1622 entry->field_pos, in has_user_cpuid_feature()
1623 entry->field_width); in has_user_cpuid_feature()
1692 pr_info("detected: 32-bit EL0 Support\n"); in has_32bit_el0()
1707 entry->desc); in has_useable_gicv3_cpuif()
1754 * Kdump isn't guaranteed to power-off all secondary CPUs, CNP in has_useable_cnp()
1806 * ThunderX leads to apparent I-cache corruption of kernel text, which in unmap_kernel_at_el0()
1815 __kpti_forced = -1; in unmap_kernel_at_el0()
1828 __kpti_forced = -1; in unmap_kernel_at_el0()
1902 #define KPTI_NG_TEMP_VA (-(1UL << PMD_SHIFT))
1913 kpti_ng_temp_alloc -= PAGE_SIZE; in kpti_ng_pgd_alloc()
1939 kpti_ng_temp_pgd = (pgd_t *)(alloc + (levels - 1) * PAGE_SIZE); in __kpti_install_ng_mappings()
1948 // +--------+-/-------+-/------ +-/------ +-\\\--------+ in __kpti_install_ng_mappings()
1950 // +--------+-\-------+-\------ +-\------ +-///--------+ in __kpti_install_ng_mappings()
1956 // to be used as a ad-hoc fixmap. in __kpti_install_ng_mappings()
1982 * We don't need to rewrite the page-tables if either we've done in kpti_install_ng_mappings()
2016 __kpti_forced = enabled ? 1 : -1; in parse_kpti()
2035 /* List of CPUs which have broken DBM support. */ in cpu_has_broken_dbm()
2069 * DBM is a non-conflicting feature. i.e, the kernel can safely in has_hw_dbm()
2109 /* 0 reference values signal broken/disabled counters */ in cpu_amu_enable()
2119 * The AMU extension is a non-conflicting feature: the kernel can in has_amu()
2152 * that, freshly-onlined CPUs will set tpidr_el2, so we don't need to in cpu_copy_el2regs()
2166 pr_warn("unavailable: %s\n", cap->desc); in has_nested_virt_support()
2209 * The ptr-auth feature levels are not intercompatible with lower in has_address_auth_cpucap()
2210 * levels. Hence we must match ptr-auth feature level of the secondary in has_address_auth_cpucap()
2218 boot_val = cpuid_feature_extract_field(read_sanitised_ftr_reg(entry->sys_reg), in has_address_auth_cpucap()
2219 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2221 return boot_val >= entry->min_field_value; in has_address_auth_cpucap()
2223 sec_val = cpuid_feature_extract_field(__read_sysreg_by_encoding(entry->sys_reg), in has_address_auth_cpucap()
2224 entry->field_pos, entry->sign); in has_address_auth_cpucap()
2225 return (sec_val >= entry->min_field_value) && (sec_val == boot_val); in has_address_auth_cpucap()
2305 * Use of X16/X17 for tail-calls and trampolines that jump to in bti_enable()
2343 regp->user_mask &= ~ID_AA64ISAR1_EL1_BF16_MASK; in user_feature_fixup()
2351 regp->user_mask &= ~ID_AA64PFR1_EL1_SSBS_MASK; in user_feature_fixup()
2405 return !!(cap->type & ARM64_CPUCAP_OPTIONAL_FOR_LATE_CPU); in cpucap_late_cpu_optional()
2411 return !!(cap->type & ARM64_CPUCAP_PERMITTED_FOR_LATE_CPU); in cpucap_late_cpu_permitted()
2417 return !!(cap->type & ARM64_CPUCAP_PANIC_ON_CONFLICT); in cpucap_panic_on_conflict()
2435 * which is configured unrestricted. This avoids priority-inversion in cpu_enable_mpam()
2532 .desc = "32-bit EL1 Support",
2633 .desc = "Stage-2 Force Write-Back",
2832 .desc = "RCpc load-acquire (LDAPR)",
2910 .desc = "Stage-1 Permission Indirection Extension (S1PIE)",
2930 .desc = "52-bit Virtual Addressing for KVM (LPA2)",
2949 .desc = "52-bit Virtual Addressing (LVA)",
2952 .desc = "52-bit Virtual Addressing (LPA2)",
2984 .desc = "Stage-1 Permission Overlay Extension (S1POE)",
3210 * check is future proof, by making sure value is non-zero. in compat_has_neon()
3252 switch (cap->hwcap_type) { in cap_set_elf_hwcap()
3254 cpu_set_feature(cap->hwcap); in cap_set_elf_hwcap()
3258 compat_elf_hwcap |= (u32)cap->hwcap; in cap_set_elf_hwcap()
3261 compat_elf_hwcap2 |= (u32)cap->hwcap; in cap_set_elf_hwcap()
3275 switch (cap->hwcap_type) { in cpus_have_elf_hwcap()
3277 rc = cpu_have_feature(cap->hwcap); in cpus_have_elf_hwcap()
3281 rc = (compat_elf_hwcap & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
3284 rc = (compat_elf_hwcap2 & (u32)cap->hwcap) != 0; in cpus_have_elf_hwcap()
3299 for (; hwcaps->matches; hwcaps++) in setup_elf_hwcaps()
3300 if (hwcaps->matches(hwcaps, cpucap_default_scope(hwcaps))) in setup_elf_hwcaps()
3312 if (!caps || !(caps->type & scope_mask) || in update_cpu_capabilities()
3313 cpus_have_cap(caps->capability) || in update_cpu_capabilities()
3314 !caps->matches(caps, cpucap_default_scope(caps))) in update_cpu_capabilities()
3317 if (caps->desc && !caps->cpus) in update_cpu_capabilities()
3318 pr_info("detected: %s\n", caps->desc); in update_cpu_capabilities()
3320 __set_bit(caps->capability, system_cpucaps); in update_cpu_capabilities()
3322 if ((scope_mask & SCOPE_BOOT_CPU) && (caps->type & SCOPE_BOOT_CPU)) in update_cpu_capabilities()
3323 set_bit(caps->capability, boot_cpucaps); in update_cpu_capabilities()
3342 if (!(cap->type & non_boot_scope)) in cpu_enable_non_boot_scope_capabilities()
3345 if (cap->cpu_enable) in cpu_enable_non_boot_scope_capabilities()
3346 cap->cpu_enable(cap); in cpu_enable_non_boot_scope_capabilities()
3366 if (!caps || !(caps->type & scope_mask) || in enable_cpu_capabilities()
3367 !cpus_have_cap(caps->capability)) in enable_cpu_capabilities()
3370 if (boot_scope && caps->cpu_enable) in enable_cpu_capabilities()
3380 caps->cpu_enable(caps); in enable_cpu_capabilities()
3384 * For all non-boot scope capabilities, use stop_machine() in enable_cpu_capabilities()
3409 if (!caps || !(caps->type & scope_mask)) in verify_local_cpu_caps()
3412 cpu_has_cap = caps->matches(caps, SCOPE_LOCAL_CPU); in verify_local_cpu_caps()
3413 system_has_cap = cpus_have_cap(caps->capability); in verify_local_cpu_caps()
3428 if (caps->cpu_enable) in verify_local_cpu_caps()
3429 caps->cpu_enable(caps); in verify_local_cpu_caps()
3442 smp_processor_id(), caps->capability, in verify_local_cpu_caps()
3443 caps->desc, system_has_cap, cpu_has_cap); in verify_local_cpu_caps()
3467 for (; caps->matches; caps++) in __verify_local_elf_hwcaps()
3468 if (cpus_have_elf_hwcap(caps) && !caps->matches(caps, SCOPE_LOCAL_CPU)) { in __verify_local_elf_hwcaps()
3470 smp_processor_id(), caps->desc); in __verify_local_elf_hwcaps()
3627 return cap->matches(cap, SCOPE_LOCAL_CPU); in this_cpu_has_cap()
3636 * - The system wide safe registers are set with all the SMP CPUs and,
3637 * - The SYSTEM_FEATURE system_cpucaps may not have been set.
3645 return cap->matches(cap, SCOPE_SYSTEM); in __system_matches_cap()
3702 * Detect broken pseudo-NMI. Must be called _before_ the call to in setup_boot_cpu_features()
3714 * The system-wide safe feature register values have been finalized. in setup_system_capabilities()
3729 if (caps && caps->cpus && caps->desc && in setup_system_capabilities()
3730 cpumask_any(caps->cpus) < nr_cpu_ids) in setup_system_capabilities()
3732 caps->desc, cpumask_pr_args(caps->cpus)); in setup_system_capabilities()
3776 * The first 32-bit-capable CPU we detected and so can no longer in enable_mismatched_32bit_el0()
3777 * be offlined by userspace. -1 indicates we haven't yet onlined in enable_mismatched_32bit_el0()
3778 * a 32-bit-capable CPU. in enable_mismatched_32bit_el0()
3780 static int lucky_winner = -1; in enable_mismatched_32bit_el0()
3785 if (id_aa64pfr0_32bit_el0(info->reg_id_aa64pfr0)) { in enable_mismatched_32bit_el0()
3787 pr_info("Treating adaptive-ticks CPU %u as 64-bit only\n", cpu); in enable_mismatched_32bit_el0()
3805 * 32-bit EL0 online so that is_cpu_allowed() doesn't end up rejecting in enable_mismatched_32bit_el0()
3806 * every CPU in the system for a 32-bit task. in enable_mismatched_32bit_el0()
3810 get_cpu_device(lucky_winner)->offline_disabled = true; in enable_mismatched_32bit_el0()
3813 pr_info("Asymmetric 32-bit EL0 support detected on CPU %u; CPU hot-unplug disabled on CPU %u\n", in enable_mismatched_32bit_el0()
3824 return -ENOMEM; in init_32bit_el0_mask()
3839 * Op0 = 0x3, CRn = 0x0, Op1 = 0x0, CRm = [0, 2 - 7]
3840 * See Table C5-6 System instruction encodings for System register accesses,
3870 return -EINVAL; in emulate_id_reg()
3881 return -EINVAL; in emulate_sys_reg()