mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-01 14:31:52 -06:00
hw/intc/loongarch_pch_msi: add irq number property
This patch adds irq number property for loongarch msi interrupt controller, and remove hard coding irq number macro. Signed-off-by: Tianrui Zhao <zhaotianrui@loongson.cn> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230104020518.2564263-2-zhaotianrui@loongson.cn> Signed-off-by: Song Gao <gaosong@loongson.cn>
This commit is contained in:
parent
d1852caab1
commit
6027d27405
4 changed files with 36 additions and 10 deletions
|
@ -32,7 +32,7 @@ static void loongarch_msi_mem_write(void *opaque, hwaddr addr,
|
||||||
*/
|
*/
|
||||||
irq_num = (val & 0xff) - s->irq_base;
|
irq_num = (val & 0xff) - s->irq_base;
|
||||||
trace_loongarch_msi_set_irq(irq_num);
|
trace_loongarch_msi_set_irq(irq_num);
|
||||||
assert(irq_num < PCH_MSI_IRQ_NUM);
|
assert(irq_num < s->irq_num);
|
||||||
qemu_set_irq(s->pch_msi_irq[irq_num], 1);
|
qemu_set_irq(s->pch_msi_irq[irq_num], 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,6 +49,28 @@ static void pch_msi_irq_handler(void *opaque, int irq, int level)
|
||||||
qemu_set_irq(s->pch_msi_irq[irq], level);
|
qemu_set_irq(s->pch_msi_irq[irq], level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void loongarch_pch_msi_realize(DeviceState *dev, Error **errp)
|
||||||
|
{
|
||||||
|
LoongArchPCHMSI *s = LOONGARCH_PCH_MSI(dev);
|
||||||
|
|
||||||
|
if (!s->irq_num || s->irq_num > PCH_MSI_IRQ_NUM) {
|
||||||
|
error_setg(errp, "Invalid 'msi_irq_num'");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->pch_msi_irq = g_new(qemu_irq, s->irq_num);
|
||||||
|
|
||||||
|
qdev_init_gpio_out(dev, s->pch_msi_irq, s->irq_num);
|
||||||
|
qdev_init_gpio_in(dev, pch_msi_irq_handler, s->irq_num);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void loongarch_pch_msi_unrealize(DeviceState *dev)
|
||||||
|
{
|
||||||
|
LoongArchPCHMSI *s = LOONGARCH_PCH_MSI(dev);
|
||||||
|
|
||||||
|
g_free(s->pch_msi_irq);
|
||||||
|
}
|
||||||
|
|
||||||
static void loongarch_pch_msi_init(Object *obj)
|
static void loongarch_pch_msi_init(Object *obj)
|
||||||
{
|
{
|
||||||
LoongArchPCHMSI *s = LOONGARCH_PCH_MSI(obj);
|
LoongArchPCHMSI *s = LOONGARCH_PCH_MSI(obj);
|
||||||
|
@ -59,12 +81,11 @@ static void loongarch_pch_msi_init(Object *obj)
|
||||||
sysbus_init_mmio(sbd, &s->msi_mmio);
|
sysbus_init_mmio(sbd, &s->msi_mmio);
|
||||||
msi_nonbroken = true;
|
msi_nonbroken = true;
|
||||||
|
|
||||||
qdev_init_gpio_out(DEVICE(obj), s->pch_msi_irq, PCH_MSI_IRQ_NUM);
|
|
||||||
qdev_init_gpio_in(DEVICE(obj), pch_msi_irq_handler, PCH_MSI_IRQ_NUM);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static Property loongarch_msi_properties[] = {
|
static Property loongarch_msi_properties[] = {
|
||||||
DEFINE_PROP_UINT32("msi_irq_base", LoongArchPCHMSI, irq_base, 0),
|
DEFINE_PROP_UINT32("msi_irq_base", LoongArchPCHMSI, irq_base, 0),
|
||||||
|
DEFINE_PROP_UINT32("msi_irq_num", LoongArchPCHMSI, irq_num, 0),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -72,6 +93,8 @@ static void loongarch_pch_msi_class_init(ObjectClass *klass, void *data)
|
||||||
{
|
{
|
||||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||||
|
|
||||||
|
dc->realize = loongarch_pch_msi_realize;
|
||||||
|
dc->unrealize = loongarch_pch_msi_unrealize;
|
||||||
device_class_set_props(dc, loongarch_msi_properties);
|
device_class_set_props(dc, loongarch_msi_properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -553,7 +553,7 @@ static void loongarch_irq_init(LoongArchMachineState *lams)
|
||||||
LoongArchCPU *lacpu;
|
LoongArchCPU *lacpu;
|
||||||
CPULoongArchState *env;
|
CPULoongArchState *env;
|
||||||
CPUState *cpu_state;
|
CPUState *cpu_state;
|
||||||
int cpu, pin, i;
|
int cpu, pin, i, start, num;
|
||||||
|
|
||||||
ipi = qdev_new(TYPE_LOONGARCH_IPI);
|
ipi = qdev_new(TYPE_LOONGARCH_IPI);
|
||||||
sysbus_realize_and_unref(SYS_BUS_DEVICE(ipi), &error_fatal);
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(ipi), &error_fatal);
|
||||||
|
@ -633,14 +633,17 @@ static void loongarch_irq_init(LoongArchMachineState *lams)
|
||||||
}
|
}
|
||||||
|
|
||||||
pch_msi = qdev_new(TYPE_LOONGARCH_PCH_MSI);
|
pch_msi = qdev_new(TYPE_LOONGARCH_PCH_MSI);
|
||||||
qdev_prop_set_uint32(pch_msi, "msi_irq_base", PCH_MSI_IRQ_START);
|
start = PCH_PIC_IRQ_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);
|
d = SYS_BUS_DEVICE(pch_msi);
|
||||||
sysbus_realize_and_unref(d, &error_fatal);
|
sysbus_realize_and_unref(d, &error_fatal);
|
||||||
sysbus_mmio_map(d, 0, VIRT_PCH_MSI_ADDR_LOW);
|
sysbus_mmio_map(d, 0, VIRT_PCH_MSI_ADDR_LOW);
|
||||||
for (i = 0; i < PCH_MSI_IRQ_NUM; i++) {
|
for (i = 0; i < num; i++) {
|
||||||
/* Connect 192 pch_msi irqs to extioi */
|
/* Connect pch_msi irqs to extioi */
|
||||||
qdev_connect_gpio_out(DEVICE(d), i,
|
qdev_connect_gpio_out(DEVICE(d), i,
|
||||||
qdev_get_gpio_in(extioi, i + PCH_MSI_IRQ_START));
|
qdev_get_gpio_in(extioi, i + start));
|
||||||
}
|
}
|
||||||
|
|
||||||
loongarch_devices_init(pch_pic, lams);
|
loongarch_devices_init(pch_pic, lams);
|
||||||
|
|
|
@ -15,8 +15,9 @@ OBJECT_DECLARE_SIMPLE_TYPE(LoongArchPCHMSI, LOONGARCH_PCH_MSI)
|
||||||
|
|
||||||
struct LoongArchPCHMSI {
|
struct LoongArchPCHMSI {
|
||||||
SysBusDevice parent_obj;
|
SysBusDevice parent_obj;
|
||||||
qemu_irq pch_msi_irq[PCH_MSI_IRQ_NUM];
|
qemu_irq *pch_msi_irq;
|
||||||
MemoryRegion msi_mmio;
|
MemoryRegion msi_mmio;
|
||||||
/* irq base passed to upper extioi intc */
|
/* irq base passed to upper extioi intc */
|
||||||
unsigned int irq_base;
|
unsigned int irq_base;
|
||||||
|
unsigned int irq_num;
|
||||||
};
|
};
|
||||||
|
|
|
@ -34,7 +34,6 @@
|
||||||
*/
|
*/
|
||||||
#define PCH_PIC_IRQ_OFFSET 64
|
#define PCH_PIC_IRQ_OFFSET 64
|
||||||
#define VIRT_DEVICE_IRQS 16
|
#define VIRT_DEVICE_IRQS 16
|
||||||
#define VIRT_PCI_IRQS 48
|
|
||||||
#define VIRT_UART_IRQ (PCH_PIC_IRQ_OFFSET + 2)
|
#define VIRT_UART_IRQ (PCH_PIC_IRQ_OFFSET + 2)
|
||||||
#define VIRT_UART_BASE 0x1fe001e0
|
#define VIRT_UART_BASE 0x1fe001e0
|
||||||
#define VIRT_UART_SIZE 0X100
|
#define VIRT_UART_SIZE 0X100
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue