70 lines
2.5 KiB
Diff
70 lines
2.5 KiB
Diff
|
|
From cd506fbf0d9a00aa0f25de1e7bd26ad4335c8257 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Song Gao <gaosong@loongson.cn>
|
||
|
|
Date: Fri, 26 Apr 2024 17:15:44 +0800
|
||
|
|
Subject: [PATCH 09/78] hw/loongarch: fdt adds cpu interrupt controller node
|
||
|
|
|
||
|
|
fdt adds cpu interrupt controller node,
|
||
|
|
we use 'loongson,cpu-interrupt-controller'.
|
||
|
|
|
||
|
|
See:
|
||
|
|
https://github.com/torvalds/linux/blob/v6.7/drivers/irqchip/irq-loongarch-cpu.c
|
||
|
|
https://lore.kernel.org/r/20221114113824.1880-2-liupeibao@loongson.cn
|
||
|
|
|
||
|
|
Signed-off-by: Song Gao <gaosong@loongson.cn>
|
||
|
|
Reviewed-by: Bibo Mao <maobibo@loongson.cn>
|
||
|
|
Message-Id: <20240426091551.2397867-11-gaosong@loongson.cn>
|
||
|
|
Signed-off-by: Xianglai Li <lixianglai@loongson.cn>
|
||
|
|
---
|
||
|
|
hw/loongarch/virt.c | 21 +++++++++++++++++++++
|
||
|
|
1 file changed, 21 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/hw/loongarch/virt.c b/hw/loongarch/virt.c
|
||
|
|
index 99a3dc8696..fdc4a5d708 100644
|
||
|
|
--- a/hw/loongarch/virt.c
|
||
|
|
+++ b/hw/loongarch/virt.c
|
||
|
|
@@ -133,6 +133,23 @@ static void virt_flash_map(LoongArchMachineState *lams,
|
||
|
|
virt_flash_map1(flash1, VIRT_FLASH1_BASE, VIRT_FLASH1_SIZE, sysmem);
|
||
|
|
}
|
||
|
|
|
||
|
|
+static void fdt_add_cpuic_node(LoongArchMachineState *lams,
|
||
|
|
+ uint32_t *cpuintc_phandle)
|
||
|
|
+{
|
||
|
|
+ MachineState *ms = MACHINE(lams);
|
||
|
|
+ char *nodename;
|
||
|
|
+
|
||
|
|
+ *cpuintc_phandle = qemu_fdt_alloc_phandle(ms->fdt);
|
||
|
|
+ nodename = g_strdup_printf("/cpuic");
|
||
|
|
+ qemu_fdt_add_subnode(ms->fdt, nodename);
|
||
|
|
+ qemu_fdt_setprop_cell(ms->fdt, nodename, "phandle", *cpuintc_phandle);
|
||
|
|
+ qemu_fdt_setprop_string(ms->fdt, nodename, "compatible",
|
||
|
|
+ "loongson,cpu-interrupt-controller");
|
||
|
|
+ qemu_fdt_setprop(ms->fdt, nodename, "interrupt-controller", NULL, 0);
|
||
|
|
+ qemu_fdt_setprop_cell(ms->fdt, nodename, "#interrupt-cells", 1);
|
||
|
|
+ g_free(nodename);
|
||
|
|
+}
|
||
|
|
+
|
||
|
|
static void fdt_add_flash_node(LoongArchMachineState *lams)
|
||
|
|
{
|
||
|
|
MachineState *ms = MACHINE(lams);
|
||
|
|
@@ -557,6 +574,7 @@ static void loongarch_irq_init(LoongArchMachineState *lams)
|
||
|
|
CPULoongArchState *env;
|
||
|
|
CPUState *cpu_state;
|
||
|
|
int cpu, pin, i, start, num;
|
||
|
|
+ uint32_t cpuintc_phandle;
|
||
|
|
|
||
|
|
/*
|
||
|
|
* The connection of interrupts:
|
||
|
|
@@ -591,6 +609,9 @@ static void loongarch_irq_init(LoongArchMachineState *lams)
|
||
|
|
memory_region_add_subregion(&lams->system_iocsr, MAIL_SEND_ADDR,
|
||
|
|
sysbus_mmio_get_region(SYS_BUS_DEVICE(ipi), 1));
|
||
|
|
|
||
|
|
+ /* Add cpu interrupt-controller */
|
||
|
|
+ fdt_add_cpuic_node(lams, &cpuintc_phandle);
|
||
|
|
+
|
||
|
|
for (cpu = 0; cpu < ms->smp.cpus; cpu++) {
|
||
|
|
cpu_state = qemu_get_cpu(cpu);
|
||
|
|
cpudev = DEVICE(cpu_state);
|
||
|
|
--
|
||
|
|
2.39.1
|
||
|
|
|