|
@@ -647,6 +647,34 @@ static void rv64_tt_ascalon_cpu_init(Object *obj)
|
|
#endif
|
|
#endif
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void rv64_xiangshan_nanhu_cpu_init(Object *obj)
|
|
|
|
+{
|
|
|
|
+ CPURISCVState *env = &RISCV_CPU(obj)->env;
|
|
|
|
+ RISCVCPU *cpu = RISCV_CPU(obj);
|
|
|
|
+
|
|
|
|
+ riscv_cpu_set_misa_ext(env, RVG | RVC | RVB | RVS | RVU);
|
|
|
|
+ env->priv_ver = PRIV_VERSION_1_12_0;
|
|
|
|
+
|
|
|
|
+ /* Enable ISA extensions */
|
|
|
|
+ cpu->cfg.ext_zbc = true;
|
|
|
|
+ cpu->cfg.ext_zbkb = true;
|
|
|
|
+ cpu->cfg.ext_zbkc = true;
|
|
|
|
+ cpu->cfg.ext_zbkx = true;
|
|
|
|
+ cpu->cfg.ext_zknd = true;
|
|
|
|
+ cpu->cfg.ext_zkne = true;
|
|
|
|
+ cpu->cfg.ext_zknh = true;
|
|
|
|
+ cpu->cfg.ext_zksed = true;
|
|
|
|
+ cpu->cfg.ext_zksh = true;
|
|
|
|
+ cpu->cfg.ext_svinval = true;
|
|
|
|
+
|
|
|
|
+ cpu->cfg.mmu = true;
|
|
|
|
+ cpu->cfg.pmp = true;
|
|
|
|
+
|
|
|
|
+#ifndef CONFIG_USER_ONLY
|
|
|
|
+ set_satp_mode_max_supported(cpu, VM_1_10_SV39);
|
|
|
|
+#endif
|
|
|
|
+}
|
|
|
|
+
|
|
#ifdef CONFIG_TCG
|
|
#ifdef CONFIG_TCG
|
|
static void rv128_base_cpu_init(Object *obj)
|
|
static void rv128_base_cpu_init(Object *obj)
|
|
{
|
|
{
|
|
@@ -3056,6 +3084,8 @@ static const TypeInfo riscv_cpu_type_infos[] = {
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_THEAD_C906, MXL_RV64, rv64_thead_c906_cpu_init),
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_THEAD_C906, MXL_RV64, rv64_thead_c906_cpu_init),
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_TT_ASCALON, MXL_RV64, rv64_tt_ascalon_cpu_init),
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_TT_ASCALON, MXL_RV64, rv64_tt_ascalon_cpu_init),
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_VEYRON_V1, MXL_RV64, rv64_veyron_v1_cpu_init),
|
|
DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_VEYRON_V1, MXL_RV64, rv64_veyron_v1_cpu_init),
|
|
|
|
+ DEFINE_VENDOR_CPU(TYPE_RISCV_CPU_XIANGSHAN_NANHU,
|
|
|
|
+ MXL_RV64, rv64_xiangshan_nanhu_cpu_init),
|
|
#ifdef CONFIG_TCG
|
|
#ifdef CONFIG_TCG
|
|
DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE128, MXL_RV128, rv128_base_cpu_init),
|
|
DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE128, MXL_RV128, rv128_base_cpu_init),
|
|
#endif /* CONFIG_TCG */
|
|
#endif /* CONFIG_TCG */
|