David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copied from arch/arm64/include/asm/hwcap.h |
| 4 | * |
| 5 | * Copyright (C) 2012 ARM Ltd. |
| 6 | * Copyright (C) 2017 SiFive |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | */ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 8 | #ifndef _ASM_RISCV_HWCAP_H |
| 9 | #define _ASM_RISCV_HWCAP_H |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 10 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 11 | #include <linux/bits.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | #include <uapi/asm/hwcap.h> |
| 13 | |
| 14 | #ifndef __ASSEMBLY__ |
| 15 | /* |
| 16 | * This yields a mask that user programs can use to figure out what |
| 17 | * instruction set this cpu supports. |
| 18 | */ |
| 19 | #define ELF_HWCAP (elf_hwcap) |
| 20 | |
| 21 | enum { |
| 22 | CAP_HWCAP = 1, |
| 23 | }; |
| 24 | |
| 25 | extern unsigned long elf_hwcap; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 26 | |
| 27 | #define RISCV_ISA_EXT_a ('a' - 'a') |
| 28 | #define RISCV_ISA_EXT_c ('c' - 'a') |
| 29 | #define RISCV_ISA_EXT_d ('d' - 'a') |
| 30 | #define RISCV_ISA_EXT_f ('f' - 'a') |
| 31 | #define RISCV_ISA_EXT_h ('h' - 'a') |
| 32 | #define RISCV_ISA_EXT_i ('i' - 'a') |
| 33 | #define RISCV_ISA_EXT_m ('m' - 'a') |
| 34 | #define RISCV_ISA_EXT_s ('s' - 'a') |
| 35 | #define RISCV_ISA_EXT_u ('u' - 'a') |
| 36 | |
| 37 | #define RISCV_ISA_EXT_MAX 64 |
| 38 | |
| 39 | unsigned long riscv_isa_extension_base(const unsigned long *isa_bitmap); |
| 40 | |
| 41 | #define riscv_isa_extension_mask(ext) BIT_MASK(RISCV_ISA_EXT_##ext) |
| 42 | |
| 43 | bool __riscv_isa_extension_available(const unsigned long *isa_bitmap, int bit); |
| 44 | #define riscv_isa_extension_available(isa_bitmap, ext) \ |
| 45 | __riscv_isa_extension_available(isa_bitmap, RISCV_ISA_EXT_##ext) |
| 46 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 47 | #endif |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 48 | |
| 49 | #endif /* _ASM_RISCV_HWCAP_H */ |