]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
arm64/kernel: enable A53 erratum #8434319 handling at runtime
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Tue, 6 Mar 2018 17:15:35 +0000 (17:15 +0000)
committerWill Deacon <will.deacon@arm.com>
Fri, 9 Mar 2018 13:23:09 +0000 (13:23 +0000)
Omit patching of ADRP instruction at module load time if the current
CPUs are not susceptible to the erratum.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
[will: Drop duplicate initialisation of .def_scope field]
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/include/asm/cpucaps.h
arch/arm64/kernel/cpu_errata.c
arch/arm64/kernel/module-plts.c
arch/arm64/kernel/module.c

index bb263820de133c1f78b1361cbddf4a1eed0b67cc..39134c46bb136d23a15bdedc4672838b62cef053 100644 (file)
@@ -45,7 +45,8 @@
 #define ARM64_HARDEN_BRANCH_PREDICTOR          24
 #define ARM64_HARDEN_BP_POST_GUEST_EXIT                25
 #define ARM64_HAS_RAS_EXTN                     26
+#define ARM64_WORKAROUND_843419                        27
 
-#define ARM64_NCAPS                            27
+#define ARM64_NCAPS                            28
 
 #endif /* __ASM_CPUCAPS_H */
index b161abdd6e27e7cdcd963fd40a041ea69c26ea98..186c0fc61dcda300ad40d122a85296f5bf5750e8 100644 (file)
@@ -298,6 +298,15 @@ const struct arm64_cpu_capabilities arm64_errata[] = {
                           MIDR_CPU_VAR_REV(1, 2)),
        },
 #endif
+#ifdef CONFIG_ARM64_ERRATUM_843419
+       {
+       /* Cortex-A53 r0p[01234] */
+               .desc = "ARM erratum 843419",
+               .capability = ARM64_WORKAROUND_843419,
+               MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x04),
+               MIDR_FIXED(0x4, BIT(8)),
+       },
+#endif
 #ifdef CONFIG_ARM64_ERRATUM_845719
        {
        /* Cortex-A53 r0p[01234] */
index 271b77390de04a6873f375f730ac19eec56bb5ca..fa3637284a3d8f4c7dbfe4b7e107af9af94f2685 100644 (file)
@@ -158,7 +158,8 @@ static unsigned int count_plts(Elf64_Sym *syms, Elf64_Rela *rela, int num,
                        break;
                case R_AARCH64_ADR_PREL_PG_HI21_NC:
                case R_AARCH64_ADR_PREL_PG_HI21:
-                       if (!IS_ENABLED(CONFIG_ARM64_ERRATUM_843419))
+                       if (!IS_ENABLED(CONFIG_ARM64_ERRATUM_843419) ||
+                           !cpus_have_const_cap(ARM64_WORKAROUND_843419))
                                break;
 
                        /*
index f9d824947c344758094fdbf766c4d8d8c8cd4dbd..719fde8dcc19042b38164ddcaa7da429cd2180b2 100644 (file)
@@ -203,6 +203,7 @@ static int reloc_insn_adrp(struct module *mod, __le32 *place, u64 val)
        u32 insn;
 
        if (!IS_ENABLED(CONFIG_ARM64_ERRATUM_843419) ||
+           !cpus_have_const_cap(ARM64_WORKAROUND_843419) ||
            ((u64)place & 0xfff) < 0xff8)
                return reloc_insn_imm(RELOC_OP_PAGE, place, val, 12, 21,
                                      AARCH64_INSN_IMM_ADR);