aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/errata/sifive/errata.c
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2022-06-08 14:08:49 +0200
committerPalmer Dabbelt <palmer@rivosinc.com>2022-07-07 23:09:16 -0700
commitdc5cb7a833e83a0d51373ba7d96e2ed8e1890944 (patch)
tree3226cfde47d18cda5a7d8f61983b0acd0ca4e17a /arch/riscv/errata/sifive/errata.c
parentriscv: Fix ALT_THEAD_PMA's asm parameters (diff)
downloadlinux-dev-dc5cb7a833e83a0d51373ba7d96e2ed8e1890944.tar.xz
linux-dev-dc5cb7a833e83a0d51373ba7d96e2ed8e1890944.zip
riscv: don't warn for sifive erratas in modules
The SiFive errata code contains code checking applicable erratas vs. actually applied erratas to suggest missing erratas to the user when their Kconfig options are not enabled. In the main kernel image one can be quite sure that all available erratas appear at least once, so that check will succeed. On the other hand modules can very well not use any errata-relevant code, so the newly added module-alternative support may also patch the module code, but not touch SiFive-specific erratas at all. So to restore the original behaviour don't warn when patching modules. This will keep the warning if necessary for the main kernel image but prevent spurious warnings for modules. Of course having such a vendor-specific warning may not be needed at all, as CONFIG_ERRATA_SIFIVE is selected by CONFIG_SOC_SIFIVE and the individual erratas are default-y so disabling them requires deliberate action anyway. But for now just restore the old behaviour. Fixes: a8e910168bba ("riscv: implement module alternatives") Reported-by: Ron Economos <re@w6rz.net> Signed-off-by: Heiko Stuebner <heiko@sntech.de> Tested-by: Ron Economos <re@w6rz.net> Link: https://lore.kernel.org/r/20220608120849.1695191-1-heiko@sntech.de Cc: stable@vger.kernel.org Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to '')
-rw-r--r--arch/riscv/errata/sifive/errata.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/riscv/errata/sifive/errata.c b/arch/riscv/errata/sifive/errata.c
index 672f02b21ce0..1031038423e7 100644
--- a/arch/riscv/errata/sifive/errata.c
+++ b/arch/riscv/errata/sifive/errata.c
@@ -111,6 +111,7 @@ void __init_or_module sifive_errata_patch_func(struct alt_entry *begin,
cpu_apply_errata |= tmp;
}
}
- if (cpu_apply_errata != cpu_req_errata)
+ if (stage != RISCV_ALTERNATIVES_MODULE &&
+ cpu_apply_errata != cpu_req_errata)
warn_miss_errata(cpu_req_errata - cpu_apply_errata);
}