137 lines
4.5 KiB
Diff
137 lines
4.5 KiB
Diff
|
|
From 24bd774f8146247c7ac6071492f6016140a97267 Mon Sep 17 00:00:00 2001
|
||
|
|
From: gaosong <gaosong@loongson.cn>
|
||
|
|
Date: Sun, 8 Sep 2024 22:18:50 +0800
|
||
|
|
Subject: [PATCH 75/78] hw/loongarch: Add KVM pch msi device support
|
||
|
|
|
||
|
|
Added pch_msi interrupt controller handling
|
||
|
|
during kernel emulation of irq chip.
|
||
|
|
|
||
|
|
Signed-off-by: gaosong <gaosong@loongson.cn>
|
||
|
|
Signed-off-by: Xianglai Li <lixianglai@loongson.cn>
|
||
|
|
---
|
||
|
|
hw/intc/loongarch_pch_msi.c | 39 ++++++++++++++++++++++-------
|
||
|
|
hw/loongarch/virt.c | 22 +++++++++-------
|
||
|
|
include/hw/intc/loongarch_pch_msi.h | 2 +-
|
||
|
|
3 files changed, 44 insertions(+), 19 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/hw/intc/loongarch_pch_msi.c b/hw/intc/loongarch_pch_msi.c
|
||
|
|
index ecf3ed0267..901c2c21be 100644
|
||
|
|
--- a/hw/intc/loongarch_pch_msi.c
|
||
|
|
+++ b/hw/intc/loongarch_pch_msi.c
|
||
|
|
@@ -14,6 +14,8 @@
|
||
|
|
#include "hw/misc/unimp.h"
|
||
|
|
#include "migration/vmstate.h"
|
||
|
|
#include "trace.h"
|
||
|
|
+#include "sysemu/kvm.h"
|
||
|
|
+#include "hw/loongarch/virt.h"
|
||
|
|
|
||
|
|
static uint64_t loongarch_msi_mem_read(void *opaque, hwaddr addr, unsigned size)
|
||
|
|
{
|
||
|
|
@@ -26,14 +28,24 @@ static void loongarch_msi_mem_write(void *opaque, hwaddr addr,
|
||
|
|
LoongArchPCHMSI *s = (LoongArchPCHMSI *)opaque;
|
||
|
|
int irq_num;
|
||
|
|
|
||
|
|
- /*
|
||
|
|
- * vector number is irq number from upper extioi intc
|
||
|
|
- * need subtract irq base to get msi vector offset
|
||
|
|
- */
|
||
|
|
- irq_num = (val & 0xff) - s->irq_base;
|
||
|
|
- trace_loongarch_msi_set_irq(irq_num);
|
||
|
|
- assert(irq_num < s->irq_num);
|
||
|
|
- qemu_set_irq(s->pch_msi_irq[irq_num], 1);
|
||
|
|
+ MSIMessage msg = {
|
||
|
|
+ .address = addr,
|
||
|
|
+ .data = val,
|
||
|
|
+ };
|
||
|
|
+
|
||
|
|
+ if (kvm_enabled() && kvm_irqchip_in_kernel()) {
|
||
|
|
+ kvm_irqchip_send_msi(kvm_state, msg);
|
||
|
|
+ } else {
|
||
|
|
+ /*
|
||
|
|
+ * vector number is irq number from upper extioi intc
|
||
|
|
+ * need subtract irq base to get msi vector offset
|
||
|
|
+ */
|
||
|
|
+ irq_num = (val & 0xff) - s->irq_base;
|
||
|
|
+ trace_loongarch_msi_set_irq(irq_num);
|
||
|
|
+ assert(irq_num < s->irq_num);
|
||
|
|
+
|
||
|
|
+ qemu_set_irq(s->pch_msi_irq[irq_num], 1);
|
||
|
|
+ }
|
||
|
|
}
|
||
|
|
|
||
|
|
static const MemoryRegionOps loongarch_pch_msi_ops = {
|
||
|
|
@@ -46,7 +58,16 @@ static void pch_msi_irq_handler(void *opaque, int irq, int level)
|
||
|
|
{
|
||
|
|
LoongArchPCHMSI *s = LOONGARCH_PCH_MSI(opaque);
|
||
|
|
|
||
|
|
- qemu_set_irq(s->pch_msi_irq[irq], level);
|
||
|
|
+ MSIMessage msg = {
|
||
|
|
+ .address = 0,
|
||
|
|
+ .data = irq,
|
||
|
|
+ };
|
||
|
|
+
|
||
|
|
+ if (kvm_enabled() && kvm_irqchip_in_kernel()) {
|
||
|
|
+ kvm_irqchip_send_msi(kvm_state, msg);
|
||
|
|
+ } else {
|
||
|
|
+ qemu_set_irq(s->pch_msi_irq[irq], level);
|
||
|
|
+ }
|
||
|
|
}
|
||
|
|
|
||
|
|
static void loongarch_pch_msi_realize(DeviceState *dev, Error **errp)
|
||
|
|
diff --git a/hw/loongarch/virt.c b/hw/loongarch/virt.c
|
||
|
|
index 270dcfd38f..5b0468f6cb 100644
|
||
|
|
--- a/hw/loongarch/virt.c
|
||
|
|
+++ b/hw/loongarch/virt.c
|
||
|
|
@@ -928,22 +928,26 @@ static void virt_irq_init(LoongArchVirtMachineState *lvms)
|
||
|
|
for (i = 0; i < num; i++) {
|
||
|
|
qdev_connect_gpio_out(DEVICE(d), i, qdev_get_gpio_in(extioi, i));
|
||
|
|
}
|
||
|
|
+ }
|
||
|
|
|
||
|
|
- pch_msi = qdev_new(TYPE_LOONGARCH_PCH_MSI);
|
||
|
|
- start = num;
|
||
|
|
- num = EXTIOI_IRQS - start;
|
||
|
|
- qdev_prop_set_uint32(pch_msi, "msi_irq_base", start);
|
||
|
|
- qdev_prop_set_uint32(pch_msi, "msi_irq_num", num);
|
||
|
|
- d = SYS_BUS_DEVICE(pch_msi);
|
||
|
|
- sysbus_realize_and_unref(d, &error_fatal);
|
||
|
|
- sysbus_mmio_map(d, 0, VIRT_PCH_MSI_ADDR_LOW);
|
||
|
|
+ pch_msi = qdev_new(TYPE_LOONGARCH_PCH_MSI);
|
||
|
|
+ num = VIRT_PCH_PIC_IRQ_NUM;
|
||
|
|
+ start = num;
|
||
|
|
+ num = EXTIOI_IRQS - start;
|
||
|
|
+ qdev_prop_set_uint32(pch_msi, "msi_irq_base", start);
|
||
|
|
+ qdev_prop_set_uint32(pch_msi, "msi_irq_num", num);
|
||
|
|
+ d = SYS_BUS_DEVICE(pch_msi);
|
||
|
|
+ sysbus_realize_and_unref(d, &error_fatal);
|
||
|
|
+
|
||
|
|
+ if (!(kvm_enabled() && kvm_irqchip_in_kernel())) {
|
||
|
|
+ /* Connect pch_msi irqs to extioi */
|
||
|
|
for (i = 0; i < num; i++) {
|
||
|
|
- /* Connect pch_msi irqs to extioi */
|
||
|
|
qdev_connect_gpio_out(DEVICE(d), i,
|
||
|
|
qdev_get_gpio_in(extioi, i + start));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
+ sysbus_mmio_map(d, 0, VIRT_PCH_MSI_ADDR_LOW);
|
||
|
|
virt_devices_init(pch_pic, lvms, &pch_pic_phandle, &pch_msi_phandle);
|
||
|
|
}
|
||
|
|
|
||
|
|
diff --git a/include/hw/intc/loongarch_pch_msi.h b/include/hw/intc/loongarch_pch_msi.h
|
||
|
|
index b8586fb3b6..fd4ea97a83 100644
|
||
|
|
--- a/include/hw/intc/loongarch_pch_msi.h
|
||
|
|
+++ b/include/hw/intc/loongarch_pch_msi.h
|
||
|
|
@@ -7,7 +7,7 @@
|
||
|
|
|
||
|
|
#include "hw/sysbus.h"
|
||
|
|
|
||
|
|
-#define TYPE_LOONGARCH_PCH_MSI "loongarch_pch_msi"
|
||
|
|
+#define TYPE_LOONGARCH_PCH_MSI "loongarch_pch_msi"
|
||
|
|
OBJECT_DECLARE_SIMPLE_TYPE(LoongArchPCHMSI, LOONGARCH_PCH_MSI)
|
||
|
|
|
||
|
|
/* MSI irq start from 32 to 255 */
|
||
|
|
--
|
||
|
|
2.39.1
|
||
|
|
|