2024-07-19 09:15:18 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
#include <asm/cpufeature.h>
|
|
|
|
#include <asm/vendor_extensions.h>
|
|
|
|
#include <asm/vendor_extensions/andes.h>
|
|
|
|
|
|
|
|
#include <linux/array_size.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
/* All Andes vendor extensions supported in Linux */
|
2024-08-07 17:27:42 -07:00
|
|
|
static const struct riscv_isa_ext_data riscv_isa_vendor_ext_andes[] = {
|
2024-07-19 09:15:18 -07:00
|
|
|
__RISCV_ISA_EXT_DATA(xandespmu, RISCV_ISA_VENDOR_EXT_XANDESPMU),
|
|
|
|
};
|
|
|
|
|
|
|
|
struct riscv_isa_vendor_ext_data_list riscv_isa_vendor_ext_list_andes = {
|
|
|
|
.ext_data_count = ARRAY_SIZE(riscv_isa_vendor_ext_andes),
|
|
|
|
.ext_data = riscv_isa_vendor_ext_andes,
|
|
|
|
};
|