qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 09/24] nios2: cpu: add TARGET_DEFAULT_CPU_TYPE macro


From: Igor Mammedov
Subject: [Qemu-devel] [PATCH 09/24] nios2: cpu: add TARGET_DEFAULT_CPU_TYPE macro
Date: Wed, 17 Jan 2018 16:43:21 +0100

it will be used for for 2 purposes, 1st is to
provide to cpu name resolving class for machine 'none'
  cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model)
and later to drop a bunch of ifdefs *-user/main.c that
set default cpu_model.

For the later default is set to bogus 'any', and
nios2_cpu_class_by_name() always returns TYPE_NIOS2_CPU class
regardless of cpu_model value. So use this type for default.

Signed-off-by: Igor Mammedov <address@hidden>
---
CC: Chris Wulff <address@hidden>
CC: Marek Vasut <address@hidden>
---
 target/nios2/cpu.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/target/nios2/cpu.h b/target/nios2/cpu.h
index 88823a6..2d03958 100644
--- a/target/nios2/cpu.h
+++ b/target/nios2/cpu.h
@@ -232,6 +232,7 @@ void nios2_check_interrupts(CPUNios2State *env);
 #endif
 
 #define cpu_init(cpu_model) cpu_generic_init(TYPE_NIOS2_CPU, cpu_model)
+#define TARGET_DEFAULT_CPU_TYPE TYPE_NIOS2_CPU
 
 #define cpu_gen_code cpu_nios2_gen_code
 #define cpu_signal_handler cpu_nios2_signal_handler
-- 
2.7.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]