qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Ran Wang <wangran@bosc.ac.cn>
To: alistair23@gmail.com
Cc: 3543977024@qq.com, palmer@dabbelt.com, alistair.francis@wdc.com,
	liwei1518@gmail.com, dbarboza@ventanamicro.com,
	zhiwei_liu@linux.alibaba.com, qemu-riscv@nongnu.org,
	qemu-devel@nongnu.org
Subject: [PATCH v4 1/2] target/riscv: Add BOSC's Xiangshan Kunminghu CPU
Date: Fri, 25 Apr 2025 20:22:12 +0800	[thread overview]
Message-ID: <20250425122212.364-1-wangran@bosc.ac.cn> (raw)

From: Huang Borong <3543977024@qq.com>

Add a CPU entry for the Xiangshan Kunminghu CPU, an open-source,
high-performance RISC-V processor. More details can be found at:
https://github.com/OpenXiangShan/XiangShan

Note: The ISA extensions supported by the Xiangshan Kunminghu CPU are
categorized based on four RISC-V specifications: Volume I: Unprivileged
Architecture, Volume II: Privileged Architecture, AIA, and RVA23. The
extensions within each category are organized according to the chapter
order in the specifications.

Signed-off-by: Yu Hu <huyu@bosc.ac.cn>
Signed-off-by: Ran Wang <wangran@bosc.ac.cn>
Signed-off-by: Borong Huang <3543977024@qq.com>
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
---
 target/riscv/cpu-qom.h |  1 +
 target/riscv/cpu.c     | 64 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/target/riscv/cpu-qom.h b/target/riscv/cpu-qom.h
index 1ee05eb393..75f4e43408 100644
--- a/target/riscv/cpu-qom.h
+++ b/target/riscv/cpu-qom.h
@@ -55,6 +55,7 @@
 #define TYPE_RISCV_CPU_VEYRON_V1        RISCV_CPU_TYPE_NAME("veyron-v1")
 #define TYPE_RISCV_CPU_TT_ASCALON       RISCV_CPU_TYPE_NAME("tt-ascalon")
 #define TYPE_RISCV_CPU_XIANGSHAN_NANHU  RISCV_CPU_TYPE_NAME("xiangshan-nanhu")
+#define TYPE_RISCV_CPU_XIANGSHAN_KMH    RISCV_CPU_TYPE_NAME("xiangshan-kunminghu")
 #define TYPE_RISCV_CPU_HOST             RISCV_CPU_TYPE_NAME("host")
 
 OBJECT_DECLARE_CPU_TYPE(RISCVCPU, RISCVCPUClass, RISCV_CPU)
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
index ee20bd7ca2..1fde2769bf 100644
--- a/target/riscv/cpu.c
+++ b/target/riscv/cpu.c
@@ -3171,6 +3171,70 @@ static const TypeInfo riscv_cpu_type_infos[] = {
         .cfg.max_satp_mode = VM_1_10_SV39,
     ),
 
+    DEFINE_RISCV_CPU(TYPE_RISCV_CPU_XIANGSHAN_KMH, TYPE_RISCV_VENDOR_CPU,
+        .misa_mxl_max = MXL_RV64,
+        .misa_ext = RVG | RVC | RVB | RVS | RVU | RVH | RVV,
+        .priv_spec = PRIV_VERSION_1_13_0,
+
+	/*
+	 * The RISC-V Instruction Set Manual: Volume I
+	 * Unprivileged Architecture
+	 */
+	.cfg.ext_zicntr = true,
+	.cfg.ext_zihpm = true,
+	.cfg.ext_zihintntl = true,
+	.cfg.ext_zihintpause = true,
+	.cfg.ext_zimop = true,
+	.cfg.ext_zcmop = true,
+	.cfg.ext_zicond = true,
+	.cfg.ext_zawrs = true,
+	.cfg.ext_zacas = true,
+	.cfg.ext_zfh = true,
+	.cfg.ext_zfa = true,
+	.cfg.ext_zcb = true,
+	.cfg.ext_zbc = true,
+	.cfg.ext_zvfh = true,
+	.cfg.ext_zkn = true,
+	.cfg.ext_zks = true,
+	.cfg.ext_zkt = true,
+	.cfg.ext_zvbb = true,
+	.cfg.ext_zvkt = true,
+
+	/*
+	 * The RISC-V Instruction Set Manual: Volume II
+	 * Privileged Architecture
+	 */
+	.cfg.ext_smstateen = true,
+	.cfg.ext_smcsrind = true,
+	.cfg.ext_sscsrind = true,
+	.cfg.ext_svnapot = true,
+	.cfg.ext_svpbmt = true,
+	.cfg.ext_svinval = true,
+	.cfg.ext_sstc = true,
+	.cfg.ext_sscofpmf = true,
+	.cfg.ext_ssdbltrp = true,
+	.cfg.ext_ssnpm = true,
+	.cfg.ext_smnpm = true,
+	.cfg.ext_smmpm = true,
+	.cfg.ext_sspm = true,
+	.cfg.ext_supm = true,
+
+	/* The RISC-V Advanced Interrupt Architecture */
+	.cfg.ext_smaia = true,
+	.cfg.ext_ssaia = true,
+
+	/* RVA23 Profiles */
+	.cfg.ext_zicbom = true,
+	.cfg.ext_zicbop = true,
+	.cfg.ext_zicboz = true,
+	.cfg.ext_svade = true,
+
+        .cfg.mmu = true,
+        .cfg.pmp = true,
+
+        .cfg.max_satp_mode = VM_1_10_SV48,
+    ),
+
 #ifdef CONFIG_TCG
     DEFINE_RISCV_CPU(TYPE_RISCV_CPU_BASE128, TYPE_RISCV_DYNAMIC_CPU,
         .cfg.max_satp_mode = VM_1_10_SV57,
-- 
2.34.1



             reply	other threads:[~2025-04-25 14:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-25 12:22 Ran Wang [this message]
2025-06-02  5:25 ` [PATCH v4 1/2] target/riscv: Add BOSC's Xiangshan Kunminghu CPU Alistair Francis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250425122212.364-1-wangran@bosc.ac.cn \
    --to=wangran@bosc.ac.cn \
    --cc=3543977024@qq.com \
    --cc=alistair.francis@wdc.com \
    --cc=alistair23@gmail.com \
    --cc=dbarboza@ventanamicro.com \
    --cc=liwei1518@gmail.com \
    --cc=palmer@dabbelt.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-riscv@nongnu.org \
    --cc=zhiwei_liu@linux.alibaba.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).