[Buildroot] [PATCH 2/2] arch/riscv: Added support for RISC-V vector extension on the architecture menu.

Abel Bernabeu abel at x-silicon.com
Sun Jul 3 23:26:07 UTC 2022


>From d8f288513e88cfb7f78f090ad0c02e6122a99097 Mon Sep 17 00:00:00 2001
From: Abel Bernabeu <abel at x-silicon.com>
Date: Mon, 4 Jul 2022 00:41:09 +0200
Subject: [PATCH 2/2] arch/riscv: Added support for RISC-V vector extension
on
 the architecture menu.

This new setting will allow to test new toolchains already available
that support the vector extension (more patches coming soon).
---
 arch/Config.in.riscv | 7 +++++++
 arch/arch.mk.riscv   | 4 ++++
 2 files changed, 11 insertions(+)

diff --git a/arch/Config.in.riscv b/arch/Config.in.riscv
index 288ed833eb..e4dc936cf8 100644
--- a/arch/Config.in.riscv
+++ b/arch/Config.in.riscv
@@ -18,6 +18,9 @@ config BR2_RISCV_ISA_RVD
 config BR2_RISCV_ISA_RVC
        bool

+config BR2_RISCV_ISA_RVV
+       bool
+
 choice
        prompt "Target Architecture Variant"
        default BR2_riscv_g
@@ -63,6 +66,10 @@ config BR2_RISCV_ISA_CUSTOM_RVD
 config BR2_RISCV_ISA_CUSTOM_RVC
        bool "Compressed Instructions (C)"
        select BR2_RISCV_ISA_RVC
+
+config BR2_RISCV_ISA_CUSTOM_RVV
+       bool "Vector Instructions (V)"
+       select BR2_RISCV_ISA_RVV
 endif

 choice
diff --git a/arch/arch.mk.riscv b/arch/arch.mk.riscv
index f3bf2b3467..07a94aa6a4 100644
--- a/arch/arch.mk.riscv
+++ b/arch/arch.mk.riscv
@@ -26,5 +26,9 @@ endif
 ifeq ($(BR2_RISCV_ISA_RVC),y)
 GCC_TARGET_ARCH := $(GCC_TARGET_ARCH)c
 endif
+ifeq ($(BR2_RISCV_ISA_RVV),y)
+GCC_TARGET_ARCH := $(GCC_TARGET_ARCH)v
+endif
+

 endif
-- 
2.25.1
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.buildroot.org/pipermail/buildroot/attachments/20220704/a59ec0d6/attachment.html>


More information about the buildroot mailing list