Re: [PATCH v1 32/43] hw/loongarch: Add LoongArch ipi interrupt support(IPI)

2022-04-17 Thread Richard Henderson
On 4/15/22 02:40, Xiaojuan Yang wrote: +static const VMStateDescription vmstate_loongarch_ipi = { +.name = TYPE_LOONGARCH_IPI, +.version_id = 0, +.minimum_version_id = 0, +.fields = (VMStateField[]) { +VMSTATE_END_OF_LIST() +} Why are there no fields here? There's

[PATCH v1 32/43] hw/loongarch: Add LoongArch ipi interrupt support(IPI)

2022-04-15 Thread Xiaojuan Yang
This patch realize the IPI interrupt controller. Signed-off-by: Xiaojuan Yang Signed-off-by: Song Gao --- MAINTAINERS | 2 + hw/intc/Kconfig | 3 + hw/intc/loongarch_ipi.c | 145 +++ hw/intc/meson.build