[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC PATCH V2 1/5] include: Add macro definitions needed for interru
From: |
Cornelia Huck |
Subject: |
Re: [RFC PATCH V2 1/5] include: Add macro definitions needed for interrupt controller kvm emulation |
Date: |
Tue, 10 Sep 2024 15:49:03 +0200 |
User-agent: |
Notmuch/0.38.3 (https://notmuchmail.org) |
On Tue, Sep 10 2024, Xianglai Li <lixianglai@loongson.cn> wrote:
> Add macro definitions needed for interrupt controller kvm emulation.
>
> Signed-off-by: Xianglai Li <lixianglai@loongson.cn>
> ---
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Cc: Song Gao <gaosong@loongson.cn>
> Cc: Jiaxun Yang <jiaxun.yang@flygoat.com>
> Cc: Huacai Chen <chenhuacai@kernel.org>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Cornelia Huck <cohuck@redhat.com>
> Cc: kvm@vger.kernel.org
> Cc: Bibo Mao <maobibo@loongson.cn>
> Cc: Xianglai Li <lixianglai@loongson.cn>
>
> include/hw/intc/loongarch_extioi.h | 38 ++++++++++++++++--
> include/hw/intc/loongarch_ipi.h | 15 +++++++
> include/hw/intc/loongarch_pch_pic.h | 58 +++++++++++++++++++++++++--
> include/hw/intc/loongson_ipi.h | 1 -
> include/hw/intc/loongson_ipi_common.h | 2 +
> include/hw/loongarch/virt.h | 15 +++++++
> linux-headers/asm-loongarch/kvm.h | 18 +++++++++
> linux-headers/linux/kvm.h | 6 +++
> 8 files changed, 146 insertions(+), 7 deletions(-)
The parts you need to split out into a separate patch are the changes
under linux-headers/ (because they get updated via a script); the
changes under include/hw/ are internal to QEMU and should go where it
makes sense (probably with the actual changes in .c files, but I didn't
check what the patch actually does.)
- [RFC PATCH V2 0/5] Added Interrupt controller emulation for loongarch kvm, Xianglai Li, 2024/09/10
- [RFC PATCH V2 5/5] hw/loongarch: Add KVM pch msi device support, Xianglai Li, 2024/09/10
- [RFC PATCH V2 4/5] hw/loongarch: Add KVM pch pic device support, Xianglai Li, 2024/09/10
- [RFC PATCH V2 3/5] hw/loongarch: Add KVM extioi device support, Xianglai Li, 2024/09/10
- [RFC PATCH V2 1/5] include: Add macro definitions needed for interrupt controller kvm emulation, Xianglai Li, 2024/09/10
- [RFC PATCH V2 2/5] hw/loongarch: Add KVM IPI device support, Xianglai Li, 2024/09/10