riscv: Extend cpufeature.c to detect vendor extensions
authorCharlie Jenkins <charlie@rivosinc.com>
Fri, 19 Jul 2024 16:15:18 +0000 (09:15 -0700)
committerPalmer Dabbelt <palmer@rivosinc.com>
Mon, 22 Jul 2024 22:36:54 +0000 (15:36 -0700)
commit23c996fc2bc1978a02c64eddb90b4ab5d309c8df
treed668d065eb0e3aab62c1d766fad8376a3f78dc1c
parent5ee121a39330e437cae0d64feeb459c7ec9e9500
riscv: Extend cpufeature.c to detect vendor extensions

Instead of grouping all vendor extensions into the same riscv_isa_ext
that standard instructions use, create a struct
"riscv_isa_vendor_ext_data_list" that allows each vendor to maintain
their vendor extensions independently of the standard extensions.
xandespmu is currently the only vendor extension so that is the only
extension that is affected by this change.

An additional benefit of this is that the extensions of each vendor can
be conditionally enabled. A config RISCV_ISA_VENDOR_EXT_ANDES has been
added to allow for that.

Signed-off-by: Charlie Jenkins <charlie@rivosinc.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Andy Chiu <andy.chiu@sifive.com>
Tested-by: Yu Chien Peter Lin <peterlin@andestech.com>
Reviewed-by: Yu Chien Peter Lin <peterlin@andestech.com>
Link: https://lore.kernel.org/r/20240719-support_vendor_extensions-v3-1-0af7587bbec0@rivosinc.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
15 files changed:
arch/riscv/Kconfig
arch/riscv/Kconfig.vendor [new file with mode: 0644]
arch/riscv/errata/andes/errata.c
arch/riscv/errata/sifive/errata.c
arch/riscv/errata/thead/errata.c
arch/riscv/include/asm/cpufeature.h
arch/riscv/include/asm/hwcap.h
arch/riscv/include/asm/vendor_extensions.h [new file with mode: 0644]
arch/riscv/include/asm/vendor_extensions/andes.h [new file with mode: 0644]
arch/riscv/kernel/Makefile
arch/riscv/kernel/cpufeature.c
arch/riscv/kernel/vendor_extensions.c [new file with mode: 0644]
arch/riscv/kernel/vendor_extensions/Makefile [new file with mode: 0644]
arch/riscv/kernel/vendor_extensions/andes.c [new file with mode: 0644]
drivers/perf/riscv_pmu_sbi.c