|
@@ -239,7 +239,6 @@ enable_smccc_arch_workaround_1(const struct arm64_cpu_capabilities *entry)
|
|
|
}
|
|
}
|
|
|
#endif /* CONFIG_HARDEN_BRANCH_PREDICTOR */
|
|
#endif /* CONFIG_HARDEN_BRANCH_PREDICTOR */
|
|
|
|
|
|
|
|
-#ifdef CONFIG_ARM64_SSBD
|
|
|
|
|
DEFINE_PER_CPU_READ_MOSTLY(u64, arm64_ssbd_callback_required);
|
|
DEFINE_PER_CPU_READ_MOSTLY(u64, arm64_ssbd_callback_required);
|
|
|
|
|
|
|
|
int ssbd_state __read_mostly = ARM64_SSBD_KERNEL;
|
|
int ssbd_state __read_mostly = ARM64_SSBD_KERNEL;
|
|
@@ -312,6 +311,11 @@ void __init arm64_enable_wa2_handling(struct alt_instr *alt,
|
|
|
|
|
|
|
|
void arm64_set_ssbd_mitigation(bool state)
|
|
void arm64_set_ssbd_mitigation(bool state)
|
|
|
{
|
|
{
|
|
|
|
|
+ if (!IS_ENABLED(CONFIG_ARM64_SSBD)) {
|
|
|
|
|
+ pr_info_once("SSBD disabled by kernel configuration\n");
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
if (this_cpu_has_cap(ARM64_SSBS)) {
|
|
if (this_cpu_has_cap(ARM64_SSBS)) {
|
|
|
if (state)
|
|
if (state)
|
|
|
asm volatile(SET_PSTATE_SSBS(0));
|
|
asm volatile(SET_PSTATE_SSBS(0));
|
|
@@ -431,7 +435,6 @@ out_printmsg:
|
|
|
|
|
|
|
|
return required;
|
|
return required;
|
|
|
}
|
|
}
|
|
|
-#endif /* CONFIG_ARM64_SSBD */
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARM64_ERRATUM_1463225
|
|
#ifdef CONFIG_ARM64_ERRATUM_1463225
|
|
|
DEFINE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
|
|
DEFINE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
|
|
@@ -710,14 +713,12 @@ const struct arm64_cpu_capabilities arm64_errata[] = {
|
|
|
ERRATA_MIDR_RANGE_LIST(arm64_harden_el2_vectors),
|
|
ERRATA_MIDR_RANGE_LIST(arm64_harden_el2_vectors),
|
|
|
},
|
|
},
|
|
|
#endif
|
|
#endif
|
|
|
-#ifdef CONFIG_ARM64_SSBD
|
|
|
|
|
{
|
|
{
|
|
|
.desc = "Speculative Store Bypass Disable",
|
|
.desc = "Speculative Store Bypass Disable",
|
|
|
.capability = ARM64_SSBD,
|
|
.capability = ARM64_SSBD,
|
|
|
.type = ARM64_CPUCAP_LOCAL_CPU_ERRATUM,
|
|
.type = ARM64_CPUCAP_LOCAL_CPU_ERRATUM,
|
|
|
.matches = has_ssbd_mitigation,
|
|
.matches = has_ssbd_mitigation,
|
|
|
},
|
|
},
|
|
|
-#endif
|
|
|
|
|
#ifdef CONFIG_ARM64_ERRATUM_1463225
|
|
#ifdef CONFIG_ARM64_ERRATUM_1463225
|
|
|
{
|
|
{
|
|
|
.desc = "ARM erratum 1463225",
|
|
.desc = "ARM erratum 1463225",
|