diff options
| author | Xiaojuan Yang <yangxiaojuan@loongson.cn> | 2022-06-06 20:43:24 +0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2022-06-06 18:12:30 +0000 |
| commit | cbff2db1e92f8759db0f0716a41a3e11b18f2eee (patch) | |
| tree | 6fe5280374fdaca25a2641efd9dc5d4309976d43 /hw/intc/meson.build | |
| parent | 249ad85a4b4ba6e949bba3c5b9932c389e07249c (diff) | |
| download | focaccia-qemu-cbff2db1e92f8759db0f0716a41a3e11b18f2eee.tar.gz focaccia-qemu-cbff2db1e92f8759db0f0716a41a3e11b18f2eee.zip | |
hw/intc: Add LoongArch extioi interrupt controller(EIOINTC)
This patch realize the EIOINTC interrupt controller. Signed-off-by: Xiaojuan Yang <yangxiaojuan@loongson.cn> Signed-off-by: Song Gao <gaosong@loongson.cn> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220606124333.2060567-35-yangxiaojuan@loongson.cn> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/intc/meson.build')
| -rw-r--r-- | hw/intc/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/intc/meson.build b/hw/intc/meson.build index 1d407c046d..bcbf22ff51 100644 --- a/hw/intc/meson.build +++ b/hw/intc/meson.build @@ -66,3 +66,4 @@ specific_ss.add(when: 'CONFIG_NIOS2_VIC', if_true: files('nios2_vic.c')) specific_ss.add(when: 'CONFIG_LOONGARCH_IPI', if_true: files('loongarch_ipi.c')) specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_PIC', if_true: files('loongarch_pch_pic.c')) specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_MSI', if_true: files('loongarch_pch_msi.c')) +specific_ss.add(when: 'CONFIG_LOONGARCH_EXTIOI', if_true: files('loongarch_extioi.c')) |