[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v16 02/23] target/riscv: remove CONFIG_TCG, as it is always TCG
From: |
Claudio Fontana |
Subject: |
[PATCH v16 02/23] target/riscv: remove CONFIG_TCG, as it is always TCG |
Date: |
Thu, 4 Feb 2021 17:39:10 +0100 |
for now only TCG is allowed as an accelerator for riscv,
so remove the CONFIG_TCG use.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
---
target/riscv/cpu.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
index 567f6790a9..60d0b43153 100644
--- a/target/riscv/cpu.c
+++ b/target/riscv/cpu.c
@@ -617,10 +617,9 @@ static void riscv_cpu_class_init(ObjectClass *c, void
*data)
#endif
cc->gdb_arch_name = riscv_gdb_arch_name;
cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml;
-#ifdef CONFIG_TCG
cc->tcg_ops.initialize = riscv_translate_init;
cc->tlb_fill = riscv_cpu_tlb_fill;
-#endif
+
device_class_set_props(dc, riscv_cpu_properties);
}
--
2.26.2
- [PATCH v16 00/23] i386 cleanup PART 2, Claudio Fontana, 2021/02/04
- [PATCH v16 02/23] target/riscv: remove CONFIG_TCG, as it is always TCG,
Claudio Fontana <=
- [PATCH v16 03/23] accel/tcg: split TCG-only code from cpu_exec_realizefn, Claudio Fontana, 2021/02/04
- [PATCH v16 05/23] cpu: Move cpu_exec_* to tcg_ops, Claudio Fontana, 2021/02/04
- [PATCH v16 06/23] cpu: Move tlb_fill to tcg_ops, Claudio Fontana, 2021/02/04
- [PATCH v16 04/23] cpu: Move synchronize_from_tb() to tcg_ops, Claudio Fontana, 2021/02/04
- [PATCH v16 01/23] cpu: Introduce TCGCpuOperations struct, Claudio Fontana, 2021/02/04