riscv: remove riscv_isa_ext_keys[] array and related usage
All users have switched to riscv_has_extension_*, remove unused definitions, vars and related setting code. Signed-off-by: Jisheng Zhang <jszhang@kernel.org> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Heiko Stuebner <heiko@sntech.de> Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Reviewed-by: Guo Ren <guoren@kernel.org> Link: https://lore.kernel.org/r/20230128172856.3814-14-jszhang@kernel.org Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
Родитель
e8ad17d2b5
Коммит
03966594e1
|
@ -61,20 +61,6 @@ enum {
|
||||||
|
|
||||||
extern unsigned long elf_hwcap;
|
extern unsigned long elf_hwcap;
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This enum represents the logical ID for each RISC-V ISA extension static
|
|
||||||
* keys. We can use static key to optimize code path if some ISA extensions
|
|
||||||
* are available.
|
|
||||||
* Entries are sorted alphabetically.
|
|
||||||
*/
|
|
||||||
enum riscv_isa_ext_key {
|
|
||||||
RISCV_ISA_EXT_KEY_FPU, /* For 'F' and 'D' */
|
|
||||||
RISCV_ISA_EXT_KEY_SVINVAL,
|
|
||||||
RISCV_ISA_EXT_KEY_ZIHINTPAUSE,
|
|
||||||
RISCV_ISA_EXT_KEY_MAX,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct riscv_isa_ext_data {
|
struct riscv_isa_ext_data {
|
||||||
/* Name of the extension displayed to userspace via /proc/cpuinfo */
|
/* Name of the extension displayed to userspace via /proc/cpuinfo */
|
||||||
char uprop[RISCV_ISA_EXT_NAME_LEN_MAX];
|
char uprop[RISCV_ISA_EXT_NAME_LEN_MAX];
|
||||||
|
@ -82,24 +68,6 @@ struct riscv_isa_ext_data {
|
||||||
unsigned int isa_ext_id;
|
unsigned int isa_ext_id;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern struct static_key_false riscv_isa_ext_keys[RISCV_ISA_EXT_KEY_MAX];
|
|
||||||
|
|
||||||
static __always_inline int riscv_isa_ext2key(int num)
|
|
||||||
{
|
|
||||||
switch (num) {
|
|
||||||
case RISCV_ISA_EXT_f:
|
|
||||||
return RISCV_ISA_EXT_KEY_FPU;
|
|
||||||
case RISCV_ISA_EXT_d:
|
|
||||||
return RISCV_ISA_EXT_KEY_FPU;
|
|
||||||
case RISCV_ISA_EXT_SVINVAL:
|
|
||||||
return RISCV_ISA_EXT_KEY_SVINVAL;
|
|
||||||
case RISCV_ISA_EXT_ZIHINTPAUSE:
|
|
||||||
return RISCV_ISA_EXT_KEY_ZIHINTPAUSE;
|
|
||||||
default:
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static __always_inline bool
|
static __always_inline bool
|
||||||
riscv_has_extension_likely(const unsigned long ext)
|
riscv_has_extension_likely(const unsigned long ext)
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,9 +29,6 @@ unsigned long elf_hwcap __read_mostly;
|
||||||
/* Host ISA bitmap */
|
/* Host ISA bitmap */
|
||||||
static DECLARE_BITMAP(riscv_isa, RISCV_ISA_EXT_MAX) __read_mostly;
|
static DECLARE_BITMAP(riscv_isa, RISCV_ISA_EXT_MAX) __read_mostly;
|
||||||
|
|
||||||
DEFINE_STATIC_KEY_ARRAY_FALSE(riscv_isa_ext_keys, RISCV_ISA_EXT_KEY_MAX);
|
|
||||||
EXPORT_SYMBOL(riscv_isa_ext_keys);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* riscv_isa_extension_base() - Get base extension word
|
* riscv_isa_extension_base() - Get base extension word
|
||||||
*
|
*
|
||||||
|
@ -267,12 +264,6 @@ void __init riscv_fill_hwcap(void)
|
||||||
if (elf_hwcap & BIT_MASK(i))
|
if (elf_hwcap & BIT_MASK(i))
|
||||||
print_str[j++] = (char)('a' + i);
|
print_str[j++] = (char)('a' + i);
|
||||||
pr_info("riscv: ELF capabilities %s\n", print_str);
|
pr_info("riscv: ELF capabilities %s\n", print_str);
|
||||||
|
|
||||||
for_each_set_bit(i, riscv_isa, RISCV_ISA_EXT_MAX) {
|
|
||||||
j = riscv_isa_ext2key(i);
|
|
||||||
if (j >= 0)
|
|
||||||
static_branch_enable(&riscv_isa_ext_keys[j]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_RISCV_ALTERNATIVE
|
#ifdef CONFIG_RISCV_ALTERNATIVE
|
||||||
|
|
Загрузка…
Ссылка в новой задаче