mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
loongarch queue
-----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQQNhkKjomWfgLCz0aQfewwSUazn0QUCZ2PKBQAKCRAfewwSUazn 0QAZAQCxbLnvzOb9TPORlg5w0n/xFaKCL7dJbJE4WjlM7dhLkAEA5G8JVoP5Ju2B mcK7wbymyXNX1ocsukL/JM2JavHS+AI= =JoSk -----END PGP SIGNATURE----- Merge tag 'pull-loongarch-20241219' of https://gitlab.com/bibo-mao/qemu into staging loongarch queue # -----BEGIN PGP SIGNATURE----- # # iHUEABYKAB0WIQQNhkKjomWfgLCz0aQfewwSUazn0QUCZ2PKBQAKCRAfewwSUazn # 0QAZAQCxbLnvzOb9TPORlg5w0n/xFaKCL7dJbJE4WjlM7dhLkAEA5G8JVoP5Ju2B # mcK7wbymyXNX1ocsukL/JM2JavHS+AI= # =JoSk # -----END PGP SIGNATURE----- # gpg: Signature made Thu 19 Dec 2024 02:23:49 EST # gpg: using EDDSA key 0D8642A3A2659F80B0B3D1A41F7B0C1251ACE7D1 # gpg: Good signature from "bibo mao <maobibo@loongson.cn>" [unknown] # gpg: WARNING: This key is not certified with a trusted signature! # gpg: There is no indication that the signature belongs to the owner. # Primary key fingerprint: 7044 3A00 19C0 E97A 31C7 13C4 8E86 8FB7 A176 9D4C # Subkey fingerprint: 0D86 42A3 A265 9F80 B0B3 D1A4 1F7B 0C12 51AC E7D1 * tag 'pull-loongarch-20241219' of https://gitlab.com/bibo-mao/qemu: hw/intc/loongarch_extioi: Code cleanup about loongarch_extioi hw/intc/loongarch_extioi: Add pre_save interface hw/intc/loongarch_extioi: Inherit from loongarch_extioi_common hw/intc/loongarch_extioi: Add common file loongarch_extioi_common hw/intc/loongarch_extioi: Add unrealize interface hw/intc/loongarch_extioi: Add common realize interface hw/intc/loongarch_extioi: Rename LoongArchExtIOI with LoongArchExtIOICommonState include: Rename LoongArchExtIOI with LoongArchExtIOICommonState include: Move struct LoongArchExtIOI to header file loongarch_extioi_common include: Add loongarch_extioi_common header file hw/intc/loongarch_pch: Code cleanup about loongarch_pch_pic hw/intc/loongarch_pch: Add pre_save and post_load interfaces hw/intc/loongarch_pch: Inherit from loongarch_pic_common hw/intc/loongarch_pch: Move some functions to file loongarch_pic_common hw/intc/loongarch_pch: Rename LoongArchPCHPIC with LoongArchPICCommonState hw/intc/loongarch_pch: Merge instance_init() into realize() include: Move struct LoongArchPCHPIC to loongarch_pic_common header file include: Add loongarch_pic_common header file Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
commit
9863d46a5a
10 changed files with 497 additions and 285 deletions
|
@ -10,16 +10,13 @@
|
|||
#include "qemu/log.h"
|
||||
#include "qapi/error.h"
|
||||
#include "hw/irq.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/loongarch/virt.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "hw/intc/loongarch_extioi.h"
|
||||
#include "migration/vmstate.h"
|
||||
#include "trace.h"
|
||||
|
||||
|
||||
static void extioi_update_irq(LoongArchExtIOI *s, int irq, int level)
|
||||
static void extioi_update_irq(LoongArchExtIOICommonState *s, int irq, int level)
|
||||
{
|
||||
int ipnum, cpu, found, irq_index, irq_mask;
|
||||
|
||||
|
@ -54,7 +51,7 @@ static void extioi_update_irq(LoongArchExtIOI *s, int irq, int level)
|
|||
|
||||
static void extioi_setirq(void *opaque, int irq, int level)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
trace_loongarch_extioi_setirq(irq, level);
|
||||
if (level) {
|
||||
set_bit32(irq, s->isr);
|
||||
|
@ -67,7 +64,7 @@ static void extioi_setirq(void *opaque, int irq, int level)
|
|||
static MemTxResult extioi_readw(void *opaque, hwaddr addr, uint64_t *data,
|
||||
unsigned size, MemTxAttrs attrs)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
unsigned long offset = addr & 0xffff;
|
||||
uint32_t index, cpu;
|
||||
|
||||
|
@ -106,7 +103,7 @@ static MemTxResult extioi_readw(void *opaque, hwaddr addr, uint64_t *data,
|
|||
return MEMTX_OK;
|
||||
}
|
||||
|
||||
static inline void extioi_enable_irq(LoongArchExtIOI *s, int index,\
|
||||
static inline void extioi_enable_irq(LoongArchExtIOICommonState *s, int index,\
|
||||
uint32_t mask, int level)
|
||||
{
|
||||
uint32_t val;
|
||||
|
@ -125,8 +122,8 @@ static inline void extioi_enable_irq(LoongArchExtIOI *s, int index,\
|
|||
}
|
||||
}
|
||||
|
||||
static inline void extioi_update_sw_coremap(LoongArchExtIOI *s, int irq,
|
||||
uint64_t val, bool notify)
|
||||
static inline void extioi_update_sw_coremap(LoongArchExtIOICommonState *s,
|
||||
int irq, uint64_t val, bool notify)
|
||||
{
|
||||
int i, cpu;
|
||||
|
||||
|
@ -162,8 +159,8 @@ static inline void extioi_update_sw_coremap(LoongArchExtIOI *s, int irq,
|
|||
}
|
||||
}
|
||||
|
||||
static inline void extioi_update_sw_ipmap(LoongArchExtIOI *s, int index,
|
||||
uint64_t val)
|
||||
static inline void extioi_update_sw_ipmap(LoongArchExtIOICommonState *s,
|
||||
int index, uint64_t val)
|
||||
{
|
||||
int i;
|
||||
uint8_t ipnum;
|
||||
|
@ -186,7 +183,7 @@ static MemTxResult extioi_writew(void *opaque, hwaddr addr,
|
|||
uint64_t val, unsigned size,
|
||||
MemTxAttrs attrs)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
int cpu, index, old_data, irq;
|
||||
uint32_t offset;
|
||||
|
||||
|
@ -266,7 +263,7 @@ static const MemoryRegionOps extioi_ops = {
|
|||
static MemTxResult extioi_virt_readw(void *opaque, hwaddr addr, uint64_t *data,
|
||||
unsigned size, MemTxAttrs attrs)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
|
||||
switch (addr) {
|
||||
case EXTIOI_VIRT_FEATURES:
|
||||
|
@ -286,7 +283,7 @@ static MemTxResult extioi_virt_writew(void *opaque, hwaddr addr,
|
|||
uint64_t val, unsigned size,
|
||||
MemTxAttrs attrs)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
|
||||
switch (addr) {
|
||||
case EXTIOI_VIRT_FEATURES:
|
||||
|
@ -320,12 +317,15 @@ static const MemoryRegionOps extioi_virt_ops = {
|
|||
|
||||
static void loongarch_extioi_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(dev);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(dev);
|
||||
LoongArchExtIOIClass *lec = LOONGARCH_EXTIOI_GET_CLASS(dev);
|
||||
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
||||
Error *local_err = NULL;
|
||||
int i, pin;
|
||||
|
||||
if (s->num_cpu == 0) {
|
||||
error_setg(errp, "num-cpu must be at least 1");
|
||||
lec->parent_realize(dev, &local_err);
|
||||
if (local_err) {
|
||||
error_propagate(errp, local_err);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -360,23 +360,23 @@ static void loongarch_extioi_realize(DeviceState *dev, Error **errp)
|
|||
}
|
||||
}
|
||||
|
||||
static void loongarch_extioi_finalize(Object *obj)
|
||||
static void loongarch_extioi_unrealize(DeviceState *dev)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(obj);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(dev);
|
||||
|
||||
g_free(s->cpu);
|
||||
}
|
||||
|
||||
static void loongarch_extioi_reset(DeviceState *d)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(d);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(d);
|
||||
|
||||
s->status = 0;
|
||||
}
|
||||
|
||||
static int vmstate_extioi_post_load(void *opaque, int version_id)
|
||||
{
|
||||
LoongArchExtIOI *s = LOONGARCH_EXTIOI(opaque);
|
||||
LoongArchExtIOICommonState *s = LOONGARCH_EXTIOI_COMMON(opaque);
|
||||
int i, start_irq;
|
||||
|
||||
for (i = 0; i < (EXTIOI_IRQS / 4); i++) {
|
||||
|
@ -391,66 +391,28 @@ static int vmstate_extioi_post_load(void *opaque, int version_id)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_extioi_core = {
|
||||
.name = "extioi-core",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32_ARRAY(coreisr, ExtIOICore, EXTIOI_IRQS_GROUP_COUNT),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const VMStateDescription vmstate_loongarch_extioi = {
|
||||
.name = TYPE_LOONGARCH_EXTIOI,
|
||||
.version_id = 3,
|
||||
.minimum_version_id = 3,
|
||||
.post_load = vmstate_extioi_post_load,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32_ARRAY(bounce, LoongArchExtIOI, EXTIOI_IRQS_GROUP_COUNT),
|
||||
VMSTATE_UINT32_ARRAY(nodetype, LoongArchExtIOI,
|
||||
EXTIOI_IRQS_NODETYPE_COUNT / 2),
|
||||
VMSTATE_UINT32_ARRAY(enable, LoongArchExtIOI, EXTIOI_IRQS / 32),
|
||||
VMSTATE_UINT32_ARRAY(isr, LoongArchExtIOI, EXTIOI_IRQS / 32),
|
||||
VMSTATE_UINT32_ARRAY(ipmap, LoongArchExtIOI, EXTIOI_IRQS_IPMAP_SIZE / 4),
|
||||
VMSTATE_UINT32_ARRAY(coremap, LoongArchExtIOI, EXTIOI_IRQS / 4),
|
||||
|
||||
VMSTATE_STRUCT_VARRAY_POINTER_UINT32(cpu, LoongArchExtIOI, num_cpu,
|
||||
vmstate_extioi_core, ExtIOICore),
|
||||
VMSTATE_UINT32(features, LoongArchExtIOI),
|
||||
VMSTATE_UINT32(status, LoongArchExtIOI),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const Property extioi_properties[] = {
|
||||
DEFINE_PROP_UINT32("num-cpu", LoongArchExtIOI, num_cpu, 1),
|
||||
DEFINE_PROP_BIT("has-virtualization-extension", LoongArchExtIOI, features,
|
||||
EXTIOI_HAS_VIRT_EXTENSION, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void loongarch_extioi_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
LoongArchExtIOIClass *lec = LOONGARCH_EXTIOI_CLASS(klass);
|
||||
LoongArchExtIOICommonClass *lecc = LOONGARCH_EXTIOI_COMMON_CLASS(klass);
|
||||
|
||||
dc->realize = loongarch_extioi_realize;
|
||||
device_class_set_parent_realize(dc, loongarch_extioi_realize,
|
||||
&lec->parent_realize);
|
||||
device_class_set_parent_unrealize(dc, loongarch_extioi_unrealize,
|
||||
&lec->parent_unrealize);
|
||||
device_class_set_legacy_reset(dc, loongarch_extioi_reset);
|
||||
device_class_set_props(dc, extioi_properties);
|
||||
dc->vmsd = &vmstate_loongarch_extioi;
|
||||
lecc->post_load = vmstate_extioi_post_load;
|
||||
}
|
||||
|
||||
static const TypeInfo loongarch_extioi_info = {
|
||||
.name = TYPE_LOONGARCH_EXTIOI,
|
||||
.parent = TYPE_SYS_BUS_DEVICE,
|
||||
.instance_size = sizeof(struct LoongArchExtIOI),
|
||||
.class_init = loongarch_extioi_class_init,
|
||||
.instance_finalize = loongarch_extioi_finalize,
|
||||
static const TypeInfo loongarch_extioi_types[] = {
|
||||
{
|
||||
.name = TYPE_LOONGARCH_EXTIOI,
|
||||
.parent = TYPE_LOONGARCH_EXTIOI_COMMON,
|
||||
.instance_size = sizeof(LoongArchExtIOIState),
|
||||
.class_size = sizeof(LoongArchExtIOIClass),
|
||||
.class_init = loongarch_extioi_class_init,
|
||||
}
|
||||
};
|
||||
|
||||
static void loongarch_extioi_register_types(void)
|
||||
{
|
||||
type_register_static(&loongarch_extioi_info);
|
||||
}
|
||||
|
||||
type_init(loongarch_extioi_register_types)
|
||||
DEFINE_TYPES(loongarch_extioi_types)
|
||||
|
|
113
hw/intc/loongarch_extioi_common.c
Normal file
113
hw/intc/loongarch_extioi_common.c
Normal file
|
@ -0,0 +1,113 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* Loongson extioi interrupt controller emulation
|
||||
* Copyright (C) 2024 Loongson Technology Corporation Limited
|
||||
*/
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/module.h"
|
||||
#include "qapi/error.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "hw/intc/loongarch_extioi_common.h"
|
||||
#include "migration/vmstate.h"
|
||||
|
||||
static void loongarch_extioi_common_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
LoongArchExtIOICommonState *s = (LoongArchExtIOICommonState *)dev;
|
||||
|
||||
if (s->num_cpu == 0) {
|
||||
error_setg(errp, "num-cpu must be at least 1");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
static int loongarch_extioi_common_pre_save(void *opaque)
|
||||
{
|
||||
LoongArchExtIOICommonState *s = (LoongArchExtIOICommonState *)opaque;
|
||||
LoongArchExtIOICommonClass *lecc = LOONGARCH_EXTIOI_COMMON_GET_CLASS(s);
|
||||
|
||||
if (lecc->pre_save) {
|
||||
return lecc->pre_save(s);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int loongarch_extioi_common_post_load(void *opaque, int version_id)
|
||||
{
|
||||
LoongArchExtIOICommonState *s = (LoongArchExtIOICommonState *)opaque;
|
||||
LoongArchExtIOICommonClass *lecc = LOONGARCH_EXTIOI_COMMON_GET_CLASS(s);
|
||||
|
||||
if (lecc->post_load) {
|
||||
return lecc->post_load(s, version_id);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_extioi_core = {
|
||||
.name = "extioi-core",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32_ARRAY(coreisr, ExtIOICore, EXTIOI_IRQS_GROUP_COUNT),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const VMStateDescription vmstate_loongarch_extioi = {
|
||||
.name = "loongarch.extioi",
|
||||
.version_id = 3,
|
||||
.minimum_version_id = 3,
|
||||
.pre_save = loongarch_extioi_common_pre_save,
|
||||
.post_load = loongarch_extioi_common_post_load,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32_ARRAY(bounce, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS_GROUP_COUNT),
|
||||
VMSTATE_UINT32_ARRAY(nodetype, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS_NODETYPE_COUNT / 2),
|
||||
VMSTATE_UINT32_ARRAY(enable, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS / 32),
|
||||
VMSTATE_UINT32_ARRAY(isr, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS / 32),
|
||||
VMSTATE_UINT32_ARRAY(ipmap, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS_IPMAP_SIZE / 4),
|
||||
VMSTATE_UINT32_ARRAY(coremap, LoongArchExtIOICommonState,
|
||||
EXTIOI_IRQS / 4),
|
||||
VMSTATE_STRUCT_VARRAY_POINTER_UINT32(cpu, LoongArchExtIOICommonState,
|
||||
num_cpu, vmstate_extioi_core, ExtIOICore),
|
||||
VMSTATE_UINT32(features, LoongArchExtIOICommonState),
|
||||
VMSTATE_UINT32(status, LoongArchExtIOICommonState),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const Property extioi_properties[] = {
|
||||
DEFINE_PROP_UINT32("num-cpu", LoongArchExtIOICommonState, num_cpu, 1),
|
||||
DEFINE_PROP_BIT("has-virtualization-extension", LoongArchExtIOICommonState,
|
||||
features, EXTIOI_HAS_VIRT_EXTENSION, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void loongarch_extioi_common_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
LoongArchExtIOICommonClass *lecc = LOONGARCH_EXTIOI_COMMON_CLASS(klass);
|
||||
|
||||
device_class_set_parent_realize(dc, loongarch_extioi_common_realize,
|
||||
&lecc->parent_realize);
|
||||
device_class_set_props(dc, extioi_properties);
|
||||
dc->vmsd = &vmstate_loongarch_extioi;
|
||||
}
|
||||
|
||||
static const TypeInfo loongarch_extioi_common_types[] = {
|
||||
{
|
||||
.name = TYPE_LOONGARCH_EXTIOI_COMMON,
|
||||
.parent = TYPE_SYS_BUS_DEVICE,
|
||||
.instance_size = sizeof(LoongArchExtIOICommonState),
|
||||
.class_size = sizeof(LoongArchExtIOICommonClass),
|
||||
.class_init = loongarch_extioi_common_class_init,
|
||||
.abstract = true,
|
||||
}
|
||||
};
|
||||
|
||||
DEFINE_TYPES(loongarch_extioi_common_types)
|
|
@ -7,17 +7,13 @@
|
|||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/bitops.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/loongarch/virt.h"
|
||||
#include "hw/pci-host/ls7a.h"
|
||||
#include "hw/irq.h"
|
||||
#include "hw/intc/loongarch_pch_pic.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "migration/vmstate.h"
|
||||
#include "trace.h"
|
||||
#include "qapi/error.h"
|
||||
|
||||
static void pch_pic_update_irq(LoongArchPCHPIC *s, uint64_t mask, int level)
|
||||
static void pch_pic_update_irq(LoongArchPICCommonState *s, uint64_t mask,
|
||||
int level)
|
||||
{
|
||||
uint64_t val;
|
||||
int irq;
|
||||
|
@ -45,7 +41,7 @@ static void pch_pic_update_irq(LoongArchPCHPIC *s, uint64_t mask, int level)
|
|||
|
||||
static void pch_pic_irq_handler(void *opaque, int irq, int level)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint64_t mask = 1ULL << irq;
|
||||
|
||||
assert(irq < s->irq_num);
|
||||
|
@ -78,7 +74,7 @@ static void pch_pic_irq_handler(void *opaque, int irq, int level)
|
|||
static uint64_t loongarch_pch_pic_low_readw(void *opaque, hwaddr addr,
|
||||
unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint64_t val = 0;
|
||||
uint32_t offset = addr & 0xfff;
|
||||
|
||||
|
@ -136,7 +132,7 @@ static uint64_t get_writew_val(uint64_t value, uint32_t target, bool hi)
|
|||
static void loongarch_pch_pic_low_writew(void *opaque, hwaddr addr,
|
||||
uint64_t value, unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint32_t offset, old_valid, data = (uint32_t)value;
|
||||
uint64_t old, int_mask;
|
||||
offset = addr & 0xfff;
|
||||
|
@ -208,7 +204,7 @@ static void loongarch_pch_pic_low_writew(void *opaque, hwaddr addr,
|
|||
static uint64_t loongarch_pch_pic_high_readw(void *opaque, hwaddr addr,
|
||||
unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint64_t val = 0;
|
||||
uint32_t offset = addr & 0xfff;
|
||||
|
||||
|
@ -236,7 +232,7 @@ static uint64_t loongarch_pch_pic_high_readw(void *opaque, hwaddr addr,
|
|||
static void loongarch_pch_pic_high_writew(void *opaque, hwaddr addr,
|
||||
uint64_t value, unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint32_t offset, data = (uint32_t)value;
|
||||
offset = addr & 0xfff;
|
||||
|
||||
|
@ -263,7 +259,7 @@ static void loongarch_pch_pic_high_writew(void *opaque, hwaddr addr,
|
|||
static uint64_t loongarch_pch_pic_readb(void *opaque, hwaddr addr,
|
||||
unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
uint64_t val = 0;
|
||||
uint32_t offset = (addr & 0xfff) + PCH_PIC_ROUTE_ENTRY_OFFSET;
|
||||
int64_t offset_tmp;
|
||||
|
@ -292,7 +288,7 @@ static uint64_t loongarch_pch_pic_readb(void *opaque, hwaddr addr,
|
|||
static void loongarch_pch_pic_writeb(void *opaque, hwaddr addr,
|
||||
uint64_t data, unsigned size)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(opaque);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(opaque);
|
||||
int32_t offset_tmp;
|
||||
uint32_t offset = (addr & 0xfff) + PCH_PIC_ROUTE_ENTRY_OFFSET;
|
||||
|
||||
|
@ -360,7 +356,7 @@ static const MemoryRegionOps loongarch_pch_pic_reg8_ops = {
|
|||
|
||||
static void loongarch_pch_pic_reset(DeviceState *d)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(d);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(d);
|
||||
int i;
|
||||
|
||||
s->int_mask = -1;
|
||||
|
@ -379,30 +375,27 @@ static void loongarch_pch_pic_reset(DeviceState *d)
|
|||
s->int_polarity = 0x0;
|
||||
}
|
||||
|
||||
static void loongarch_pch_pic_realize(DeviceState *dev, Error **errp)
|
||||
static void loongarch_pic_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(dev);
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(dev);
|
||||
LoongarchPICClass *lpc = LOONGARCH_PIC_GET_CLASS(dev);
|
||||
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
||||
Error *local_err = NULL;
|
||||
|
||||
if (!s->irq_num || s->irq_num > VIRT_PCH_PIC_IRQ_NUM) {
|
||||
error_setg(errp, "Invalid 'pic_irq_num'");
|
||||
lpc->parent_realize(dev, &local_err);
|
||||
if (local_err) {
|
||||
error_propagate(errp, local_err);
|
||||
return;
|
||||
}
|
||||
|
||||
qdev_init_gpio_out(dev, s->parent_irq, s->irq_num);
|
||||
qdev_init_gpio_in(dev, pch_pic_irq_handler, s->irq_num);
|
||||
}
|
||||
|
||||
static void loongarch_pch_pic_init(Object *obj)
|
||||
{
|
||||
LoongArchPCHPIC *s = LOONGARCH_PCH_PIC(obj);
|
||||
SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
|
||||
|
||||
memory_region_init_io(&s->iomem32_low, obj,
|
||||
memory_region_init_io(&s->iomem32_low, OBJECT(dev),
|
||||
&loongarch_pch_pic_reg32_low_ops,
|
||||
s, PCH_PIC_NAME(.reg32_part1), 0x100);
|
||||
memory_region_init_io(&s->iomem8, obj, &loongarch_pch_pic_reg8_ops,
|
||||
memory_region_init_io(&s->iomem8, OBJECT(dev), &loongarch_pch_pic_reg8_ops,
|
||||
s, PCH_PIC_NAME(.reg8), 0x2a0);
|
||||
memory_region_init_io(&s->iomem32_high, obj,
|
||||
memory_region_init_io(&s->iomem32_high, OBJECT(dev),
|
||||
&loongarch_pch_pic_reg32_high_ops,
|
||||
s, PCH_PIC_NAME(.reg32_part2), 0xc60);
|
||||
sysbus_init_mmio(sbd, &s->iomem32_low);
|
||||
|
@ -411,53 +404,24 @@ static void loongarch_pch_pic_init(Object *obj)
|
|||
|
||||
}
|
||||
|
||||
static const Property loongarch_pch_pic_properties[] = {
|
||||
DEFINE_PROP_UINT32("pch_pic_irq_num", LoongArchPCHPIC, irq_num, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
static void loongarch_pic_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
LoongarchPICClass *lpc = LOONGARCH_PIC_CLASS(klass);
|
||||
|
||||
static const VMStateDescription vmstate_loongarch_pch_pic = {
|
||||
.name = TYPE_LOONGARCH_PCH_PIC,
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT64(int_mask, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(htmsi_en, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(intedge, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(intclr, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(auto_crtl0, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(auto_crtl1, LoongArchPCHPIC),
|
||||
VMSTATE_UINT8_ARRAY(route_entry, LoongArchPCHPIC, 64),
|
||||
VMSTATE_UINT8_ARRAY(htmsi_vector, LoongArchPCHPIC, 64),
|
||||
VMSTATE_UINT64(last_intirr, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(intirr, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(intisr, LoongArchPCHPIC),
|
||||
VMSTATE_UINT64(int_polarity, LoongArchPCHPIC),
|
||||
VMSTATE_END_OF_LIST()
|
||||
device_class_set_legacy_reset(dc, loongarch_pch_pic_reset);
|
||||
device_class_set_parent_realize(dc, loongarch_pic_realize,
|
||||
&lpc->parent_realize);
|
||||
}
|
||||
|
||||
static const TypeInfo loongarch_pic_types[] = {
|
||||
{
|
||||
.name = TYPE_LOONGARCH_PIC,
|
||||
.parent = TYPE_LOONGARCH_PIC_COMMON,
|
||||
.instance_size = sizeof(LoongarchPICState),
|
||||
.class_size = sizeof(LoongarchPICClass),
|
||||
.class_init = loongarch_pic_class_init,
|
||||
}
|
||||
};
|
||||
|
||||
static void loongarch_pch_pic_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
|
||||
dc->realize = loongarch_pch_pic_realize;
|
||||
device_class_set_legacy_reset(dc, loongarch_pch_pic_reset);
|
||||
dc->vmsd = &vmstate_loongarch_pch_pic;
|
||||
device_class_set_props(dc, loongarch_pch_pic_properties);
|
||||
}
|
||||
|
||||
static const TypeInfo loongarch_pch_pic_info = {
|
||||
.name = TYPE_LOONGARCH_PCH_PIC,
|
||||
.parent = TYPE_SYS_BUS_DEVICE,
|
||||
.instance_size = sizeof(LoongArchPCHPIC),
|
||||
.instance_init = loongarch_pch_pic_init,
|
||||
.class_init = loongarch_pch_pic_class_init,
|
||||
};
|
||||
|
||||
static void loongarch_pch_pic_register_types(void)
|
||||
{
|
||||
type_register_static(&loongarch_pch_pic_info);
|
||||
}
|
||||
|
||||
type_init(loongarch_pch_pic_register_types)
|
||||
DEFINE_TYPES(loongarch_pic_types)
|
||||
|
|
97
hw/intc/loongarch_pic_common.c
Normal file
97
hw/intc/loongarch_pic_common.c
Normal file
|
@ -0,0 +1,97 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* QEMU Loongson 7A1000 I/O interrupt controller.
|
||||
* Copyright (C) 2024 Loongson Technology Corporation Limited
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qapi/error.h"
|
||||
#include "hw/intc/loongarch_pic_common.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "migration/vmstate.h"
|
||||
|
||||
static int loongarch_pic_pre_save(void *opaque)
|
||||
{
|
||||
LoongArchPICCommonState *s = (LoongArchPICCommonState *)opaque;
|
||||
LoongArchPICCommonClass *lpcc = LOONGARCH_PIC_COMMON_GET_CLASS(s);
|
||||
|
||||
if (lpcc->pre_save) {
|
||||
return lpcc->pre_save(s);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int loongarch_pic_post_load(void *opaque, int version_id)
|
||||
{
|
||||
LoongArchPICCommonState *s = (LoongArchPICCommonState *)opaque;
|
||||
LoongArchPICCommonClass *lpcc = LOONGARCH_PIC_COMMON_GET_CLASS(s);
|
||||
|
||||
if (lpcc->post_load) {
|
||||
return lpcc->post_load(s, version_id);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void loongarch_pic_common_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
LoongArchPICCommonState *s = LOONGARCH_PIC_COMMON(dev);
|
||||
|
||||
if (!s->irq_num || s->irq_num > VIRT_PCH_PIC_IRQ_NUM) {
|
||||
error_setg(errp, "Invalid 'pic_irq_num'");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
static const Property loongarch_pic_common_properties[] = {
|
||||
DEFINE_PROP_UINT32("pch_pic_irq_num", LoongArchPICCommonState, irq_num, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static const VMStateDescription vmstate_loongarch_pic_common = {
|
||||
.name = "loongarch_pch_pic",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.pre_save = loongarch_pic_pre_save,
|
||||
.post_load = loongarch_pic_post_load,
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT64(int_mask, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(htmsi_en, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(intedge, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(intclr, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(auto_crtl0, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(auto_crtl1, LoongArchPICCommonState),
|
||||
VMSTATE_UINT8_ARRAY(route_entry, LoongArchPICCommonState, 64),
|
||||
VMSTATE_UINT8_ARRAY(htmsi_vector, LoongArchPICCommonState, 64),
|
||||
VMSTATE_UINT64(last_intirr, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(intirr, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(intisr, LoongArchPICCommonState),
|
||||
VMSTATE_UINT64(int_polarity, LoongArchPICCommonState),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static void loongarch_pic_common_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
LoongArchPICCommonClass *lpcc = LOONGARCH_PIC_COMMON_CLASS(klass);
|
||||
|
||||
device_class_set_parent_realize(dc, loongarch_pic_common_realize,
|
||||
&lpcc->parent_realize);
|
||||
device_class_set_props(dc, loongarch_pic_common_properties);
|
||||
dc->vmsd = &vmstate_loongarch_pic_common;
|
||||
}
|
||||
|
||||
static const TypeInfo loongarch_pic_common_types[] = {
|
||||
{
|
||||
.name = TYPE_LOONGARCH_PIC_COMMON,
|
||||
.parent = TYPE_SYS_BUS_DEVICE,
|
||||
.instance_size = sizeof(LoongArchPICCommonState),
|
||||
.class_size = sizeof(LoongArchPICCommonClass),
|
||||
.class_init = loongarch_pic_common_class_init,
|
||||
.abstract = true,
|
||||
}
|
||||
};
|
||||
|
||||
DEFINE_TYPES(loongarch_pic_common_types)
|
|
@ -71,6 +71,6 @@ specific_ss.add(when: 'CONFIG_M68K_IRQC', if_true: files('m68k_irqc.c'))
|
|||
specific_ss.add(when: 'CONFIG_LOONGSON_IPI_COMMON', if_true: files('loongson_ipi_common.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGSON_IPI', if_true: files('loongson_ipi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_IPI', if_true: files('loongarch_ipi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_PIC', if_true: files('loongarch_pch_pic.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_PIC', if_true: files('loongarch_pch_pic.c', 'loongarch_pic_common.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_PCH_MSI', if_true: files('loongarch_pch_msi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_EXTIOI', if_true: files('loongarch_extioi.c'))
|
||||
specific_ss.add(when: 'CONFIG_LOONGARCH_EXTIOI', if_true: files('loongarch_extioi.c', 'loongarch_extioi_common.c'))
|
||||
|
|
|
@ -894,7 +894,7 @@ static void virt_irq_init(LoongArchVirtMachineState *lvms)
|
|||
/* Add Extend I/O Interrupt Controller node */
|
||||
fdt_add_eiointc_node(lvms, &cpuintc_phandle, &eiointc_phandle);
|
||||
|
||||
pch_pic = qdev_new(TYPE_LOONGARCH_PCH_PIC);
|
||||
pch_pic = qdev_new(TYPE_LOONGARCH_PIC);
|
||||
num = VIRT_PCH_PIC_IRQ_NUM;
|
||||
qdev_prop_set_uint32(pch_pic, "pch_pic_irq_num", num);
|
||||
d = SYS_BUS_DEVICE(pch_pic);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue