@@ -29,4 +29,6 @@ OBJECT_DECLARE_CPU_TYPE(M68kCPU, M68kCPUClass, M68K_CPU)
#define M68K_CPU_TYPE_SUFFIX "-" TYPE_M68K_CPU
#define M68K_CPU_TYPE_NAME(model) model M68K_CPU_TYPE_SUFFIX
+void m68k_set_irq_level(M68kCPU *cpu, int level, uint8_t vector);
+
#endif
@@ -472,7 +472,6 @@ typedef enum {
#define MACSR_V 0x002
#define MACSR_EV 0x001
-void m68k_set_irq_level(M68kCPU *cpu, int level, uint8_t vector);
void m68k_switch_sp(CPUM68KState *env);
void do_m68k_semihosting(CPUM68KState *env, int nr);
@@ -8,12 +8,12 @@
*/
#include "qemu/osdep.h"
-#include "cpu.h"
#include "migration/vmstate.h"
#include "hw/qdev-properties.h"
#include "hw/nmi.h"
#include "hw/intc/intc.h"
#include "hw/intc/m68k_irqc.h"
+#include "target/m68k/cpu-qom.h"
static bool m68k_irqc_get_statistics(InterruptStatsProvider *obj,
@@ -67,7 +67,7 @@ specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('xics_spapr.c', 'spapr_xi
specific_ss.add(when: 'CONFIG_XIVE', if_true: files('xive.c'))
specific_ss.add(when: ['CONFIG_KVM', 'CONFIG_XIVE'],
if_true: files('spapr_xive_kvm.c'))
-specific_ss.add(when: 'CONFIG_M68K_IRQC', if_true: files('m68k_irqc.c'))
+system_ss.add(when: 'CONFIG_M68K_IRQC', if_true: files('m68k_irqc.c'))
specific_ss.add(when: 'CONFIG_LOONGSON_IPI_COMMON', if_true: files('loongson_ipi_common.c'))
specific_ss.add(when: 'CONFIG_LOONGSON_IPI', if_true: files('loongson_ipi.c'))
specific_ss.add(when: 'CONFIG_LOONGARCH_IPI', if_true: files('loongarch_ipi.c'))
m68k_set_irq_level() prototype doesn't use target-specific types, move its declaration from target-specific "cpu.h" to target-agnostic "cpu-qom.h". Doing so we can remove the "cpu.h" header in m68k_irqc.c, making it target-agnostic, which can be build as part of the system_ss[] source set. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- target/m68k/cpu-qom.h | 2 ++ target/m68k/cpu.h | 1 - hw/intc/m68k_irqc.c | 2 +- hw/intc/meson.build | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-)